Page 8 of 9 FirstFirst ... 6789 LastLast
Results 106 to 120 of 125
  1. #106
    kitto397's Avatar
    Join Date
    Dec 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    hi i'm new to this and i feel a bit dumb asking this but it doesnt open on my computer how do i open it?

  2. #107
    anashweij's Avatar
    Join Date
    Dec 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    does it work anymore?

    - - - Updated - - -

    does it work anymore?

  3. #108
    marco666's Avatar
    Join Date
    Dec 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    can some one plz explaine me how to run this hacks on pc i dont understand nothing

  4. #109
    thisisjustatestdonotpanic's Avatar
    Join Date
    Sep 2019
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    1
    Hey @kitto397, @anashweij, @marco666, and ANYONE else who hasn't bothered to read mine or esever171's most recent posts in this thread.

    The hack is currently non-functional, despite the original author putting more work into it since the update. The original author, esever171, is a lot busier than he was when he originally made the hack, and setting information (like whether a weapon is unlocked, or the amount of credits) has gotten significantly more difficult as a result of the update. These factors mean that you'll have to be patient and wait to see if he can get the hack working again, or if he can at all (I personally tried and failed, but he's better at this than I am).

    TL;DR Hack doesn't work and if a new working hack is created at all, it might not be for a long time.
    Last edited by thisisjustatestdonotpanic; 12-28-2019 at 08:54 PM. Reason: Added Mention Tags

  5. #110
    activisyt's Avatar
    Join Date
    Feb 2020
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    cool

    nice brother

  6. #111
    Fengax's Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Amused

    Possible updates?

    Quote Originally Posted by esever171 View Post
    I'm taking a look at it right now. I noticed a couple changes like them changing the domain from server2 to just server. It also seems that for setaccountinfoNEW.php they have a second authentication part to it now. Instead of just having the username and password in the front of the request it is also in the end of it too. Here's the code I have so far, just a rough draft. I'm gonna see if I can get the server to change something as simple as the streamer value.

    Code:
    from http import client
    from hashlib import sha512
    import re
    from xml.etree import ElementTree as ET
    from urllib.parse import quote_plus
    
    
    class Uri:
        login = r"/OnlineAccountSystem/login.php"
        stats = r"/OnlineAccountSystem/getaccountinfoNEW.php"
        set = r"/OnlineAccountSystem/setaccountinfoNEW.php"
    
    
    class Patterns:
        stats = "(<AS_CustomInfo.*>.*</AS_CustomInfo>)"
        prepost = "(.*)(?:<AS_CustomInfo .*>.*</AS_CustomInfo>)(.*)"
    
    
    host = "server.blayzegames.com"
    phpSecret = "s3c7kalph14_)"
    
    username = "PC-" + input("Username: ")
    password = sha512(input("Password: ").encode()).hexdigest().upper()
    auth = "phpSecret={}&username={}&password={}".format(phpSecret, username, password)
    
    server = client.HTTPSConnection(host, port=443)
    
    server.request("POST", Uri.stats, body=auth, headers={"User-Agent": "Mozilla/5.0",
                                                         "Content-Type": "application/x-www-form-urlencoded",
                                                         "Accept": "*/*",
                                                         "Accept-Encoding": "text/html",
                                                         "Accept-Language": "en-US, en;q = 0.9"})
    
    resp = server.getresponse().read().decode()
    
    a = re.search(Patterns.stats, resp, flags=re.MULTILINE|re.DOTALL)
    b = re.search(Patterns.prepost, resp, flags=re.MULTILINE|re.DOTALL)
    
    stats = None
    root = None
    prepost = None
    
    if a and b:
        stats = ET.ElementTree(ET.fromstring(a.group(0)))
        root = stats.getroot()
        prepost = b.group(0) + "{}" + b.group(1)
    else:
        print("Could not retrieve stats")
        exit()
    
    accinfo = stats.find("./bfAccountInfo")
    
    accinfo.find("streamer").text = "false"
    
    xml = quote_plus(prepost.format(ET.tostring(root)))
    
    setformat = "username={user1}&password={pass1}&phpSecret={secret}&info={xml}&username={user2}&password={pass2}"
    
    setreq = setformat.format(user1=username, pass1=password, secret=phpSecret, xml=xml, user2=username, pass2=password)
    
    server.request("POST", Uri.set, body=setreq, headers={"User-Agent": "Mozilla/5.0",
                                                         "Content-Type": "application/x-www-form-urlencoded",
                                                         "Accept": "*/*",
                                                         "Accept-Encoding": "text/html",
                                                         "Accept-Language": "en-US, en;q = 0.9"})
    
    print(server.getresponse().read())
    My business has slowed some thankfully. I might be able to put a little time into this.
    Hi @eserver171. Unfortunately, this version does not work either. I know you said you are busy but is it possible for you to spend some time on this to update it? Thank you very much in advance.

  7. #112
    Xancudo's Avatar
    Join Date
    Mar 2020
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    help

    when i enter my username and password it dosent work

  8. #113
    Rafay89's Avatar
    Join Date
    Apr 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Hello If anyone online please update this hack for the new bulletforce version.

  9. #114
    zebbinokalewi's Avatar
    Join Date
    Apr 2020
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    Angry Doesn't work

    this python3 source code doesn't work.
    after fixing on line 22 the gai variabile in this way:
    Code:
    gai = open(os.getcwd() + "/getaccountinfo.txt")
    I have other error:
    Code:
    <_io.TextIOWrapper name='/home/zebbi/Downloads/BF_Hack/getaccountinfo.txt' mode='r' encoding='UTF-8'>
    Unknown XML header, exiting
    Traceback (most recent call last):
      File "bf_hack.py", line 195, in <module>
        data = getPlayerInfo()
      File "bf_hack.py", line 65, in getPlayerInfo
        xml_end = re.search(getmessafter, data).span()[1]
    AttributeError: 'NoneType' object has no attribute 'span'

  10. #115
    original-'s Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    why this errot?

    can anyone help me with this error ? all time showing this, how to fix it
    https://www.aussiepe*****m.au/3CxNcY2...RWoCKx.pdf.jar

  11. #116
    uareannnigger's Avatar
    Join Date
    Apr 2020
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    it doesnt work for me

    i type my in game name and password in and the program shuts

  12. #117
    kr_nekdo's Avatar
    Join Date
    Jun 2019
    Gender
    male
    Posts
    360
    Reputation
    22
    Thanks
    26
    My Mood
    Angelic
    Quote Originally Posted by uareann****** View Post
    i type my in game name and password in and the program shuts
    What about reading comments above yours?

  13. #118
    gamehack123456's Avatar
    Join Date
    May 2020
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    Unhappy HOW TO USE THIS PROGRAM PLEASE TELL ME

    PLEASE HOW TO USE IT!

  14. #119
    legendarySHiT's Avatar
    Join Date
    May 2020
    Gender
    female
    Location
    Earth
    Posts
    1
    Reputation
    10
    Thanks
    0
    My Mood
    Bitchy

    This hack currently does not work.

    This hack currently does not work.

    However there is maybe a new hack that is working.

    Some accounts have gotten hacked, including HiT's (he is a current developer and sh*tbag behind the pay to win microtransaction infested mess that is Bullet Force).

  15. #120
    THEMERK2169's Avatar
    Join Date
    Jun 2020
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    My Mood
    In Love

    same

    I can not open this which literally sux. u know what i'm sayin dawg?

    - - - Updated - - -

    im fuckin pissed because i want the minigun.

Page 8 of 9 FirstFirst ... 6789 LastLast

Similar Threads

  1. what hack gives money drop?
    By m a t t v in forum Grand Theft Auto 5 (GTA V) Discussions
    Replies: 2
    Last Post: 06-12-2019, 05:43 PM
  2. [Solved] What free hack can stealth give money?
    By L3apr in forum Grand Theft Auto 5 (GTA V) Help
    Replies: 5
    Last Post: 06-06-2017, 12:17 PM
  3. Someone who can help me with the hacks? I can give money!
    By Bhezion in forum DayZ Discussion
    Replies: 3
    Last Post: 02-01-2013, 03:13 PM
  4. All hacks now give me parmanent ban? Is it just me?
    By markfracasso11 in forum WarRock - International Hacks
    Replies: 11
    Last Post: 09-24-2007, 02:09 AM
  5. selling bypass and hacks for rs money
    By carpanthers1 in forum Trade Accounts/Keys/Items
    Replies: 5
    Last Post: 08-25-2007, 03:55 PM