Thursday, January 9, 2020

Ultimate and Fastest adfly Traffic bot. Earn $200 per day.

Hello guys, Today i am releasing my ultimate adfly traffic bot v3.0. With this bot, if you have nice internet connection, then you make about 200$ per day! Cool right?

If you wanna see my previous Version Click here.

SO WHAT'S NEW


  1. My previous version was using only 1 thread. This version uses multiple threads so a significant increase in the speed.
  2. My previous program had bugs like getting stopped working etc.. All got fixed here now.
  3. Improved performance. You can use this program smoothly now.

How to use the program.


  • Open the adflybot.exe.
    1. Enter the Url in then url entry.
    2. Add the proxies list. The link for getting free proxies is given below.
    3. Choose the proxy type. This application supports http and socks5 proxy.
    4. And finally click on Start. Wait it until the loading bar finishes.

    Common Reported Errors

    1. Chromedriver Executable not Found:  This error occurs when the chromedriver does not match with your current google chrome web browser. To fix this download Chromedriver based on the version of your current google chrome. Click here to download.
    2. Icon.ico Not found: This happens when you delete icon.ico file in the archive.

    FAQ

    1. Is this for 64 bit?
    Ans: It works both on 64bit and 32 bit. But for 32bit users need to download a new chromdriver, its link is given above.

    2. Why i don't get any earnings?
    Ans: Make sure that you have checked the proxies before running the program. It may be a result as the proxies may be dead or not working. You can check your proxies here. Adfly takes 1 - 2 hour to process the traffic, after few hours you can see a gradual increase in your earnings. So the main thing is that you have to patient.

    More Faqs will be given here soon.

    Links to get free proxies.

    1. Checkerproxy
    2. Openproxy
    3. Spys
    4. Gatherproxy
    Click on any of the links above, to go to the website.

    Download The File

    Click here to Download the file

    Steps To download The file

    1. Click on the link given above.
    2. Click continue till recieving "Get Link " option.
    3. Click "Get Link" and download the file.

    PS: My websites will be shown while running the program. These sites are related to the topics you may Like. You can review them if you want. Else you can Ignore them.

    If you feel like to donate. Then donate here.

    Enjoy.

    Monday, December 23, 2019

    Ultimate Adfly Traffic Bot. Earn $175 a day.

    Hello guys, Today i am releasing my ultimate adfly traffic bot. With this bot, if you have nice internet connection, then you make about 175$ per day! Cool right?

    So here is the pic of my application:


    How to use the program

    1. Open the adflybot.exe.
    2. Enter the Url in then url entry.
    3. Add the proxies list. The link for getting free proxies is given below.
    4. Choose the proxy type. This application supports http and socks5 proxy.
    5. And finally click on Start.

    Common Bugs or Errors

    1. Chromedriver Executable not Found:  This error occurs when the chromedriver does not match with your current google chrome web browser. To fix this download Chromedriver based on the version of your current google chrome. Click here to download.
    2. Adflybot.exe Stopped Working: After addding the proxies list , other all things are running through the console you can see there. If you want to stop the program click on the window of console and press CTRL+C twice. It will show keyboard interrupt. The app seems stopped working till the completion of giving traffic.
    More bugs or errors, will be displayed , AsAp after reporting

    Links to get free proxies.

    1. Checkerproxy
    2. Openproxy
    3. Spys
    4. Gatherproxy
    Click on any of the links above, to go to the website.


    Click Here To Download the Latest File



    Click on the above link, wait 2 -3 secs , click continue and wait 5 secs and click get link. Thats it.

    Older Versions

    Sunday, December 22, 2019

    Django admin app recreated.

    Hello Guys, thank you for visiting my blog. This project is just a replica of default admin app in django-frame work. Anyone can make one. The link of the source code can be found below.


    Django Admin App

    An admin page is basically a page that contains all the details stored in your data. Django provides us a default admin app. You can visit this app by going to www.yourwebip.com/admin . 

    You can be the superuser of the admin app by typing

    py manage.py createsuperuser

    Informations about my project.

    Extra-Modules Created:

    1 . Mod.py

    Mod py conatins two functions getclass(), getmembers().

    1.getclass()

    This function is used to get the names of all the classes in models.py . This function uses "inspect", which is used to get get the details of class. So by this i can get the names of the all classes. Here is the code of the function getclass.

    def getclass():
        p = inspect.getmembers(models,inspect.isclass)
        l = []
        print(p)
        for key, data in inspect.getmembers(models, inspect.isclass):
            print('{} : {!r}'.format(key,data))
            p1 ='{}'.format(key)
            l.append(p1)
        return l


    2.getmembers()

    This function works about same as getclass. What is the difference is that it used to get the members of the class. That is inside models we are creating some rows, and it will get the names of the members. Here is the code of the function getmembers().

    def getmembers(mclass):
        example = mclass
        members = [attr for attr in dir(example) if not callable(getattr(example, attr)) and not attr.startswith("_")]
        print(members)
        return members

    So these are the details of the extra created module mod.py

    Some Important Functions in Views:

    1. test(request).

    def test(request):
        p = getclass()
        return render(request, "admin.html", {"l":p})

    This function simple get the names of models using getclass(), function. And displays them by passing it through the dictionary of render.

    2. details()

    def details(requestdet):
        print(det,type(det))
        p = getclass()
        x = eval(det)
        print(x, type(x),"gfggggggggggggggggggggggggggggggggggggggggggggggggggg")
        f = x.objects.all()
        print(f)
        return render(request, "adetails.html", {"l":p, "f":f, "g":det})

    This function is simply to get the details of data's stored in a model. det is variable that gets the model name through the run. I use the eval() function to convert the string into python expressions. and "f" gets the data's stored in it. And Finally it displays.

    3. Info()

    def info(requestdetid):
        va = {}
        y = id
        x = eval(det)
        f = x.objects.get(id = y)
        p = getclass()
        d = getmembers(x)
        k = x.objects.all().values()
        for ite in k:
            for ui,vi in ite.items():
                if ui == "id" and vi == int(y):
                    va = ite
        f = va
        mname = det
        return render(request, "ainfo.html", {"l":p, "g":d, "j":f, "i":y, "c":mname})

    This function simply shows the information of the clicked data. If you have any doubts regarding this, you can comment here. Just go through the code its easy to understand. If you don't get it i can help.

    4. adminadd()

    def adminadd(request,det):
        l = []
        if request.method == "POST":
            word = det + "("
            x = eval(det)
            fld = getmembers(x)
            for y in fld:
                if y == 'id' or y == 'pk' or y == 'objects' or y == 'user':
                    continue                
                else:
                    an = request.POST.get(y)
                    print(an, type(an),"+++++++++++++++++++++++++++++++++++++++++")         
                    word = word + y
                    word = word + "=" +'"' + an + '"' + ", "
                    l.append(request.POST.get(y))

            word = word + ")"   
            print(l)
            print(word)
            x = eval(word)
            x.save()

            return redirect(test)
        else:
            x = eval(det)
            fld = getmembers(x)
            p = getclass()
            usd = User.objects.all()
            return render(request, "adminadd.html", {"l":p, "g":fld, "c":det, "usr":usd})

    This function is to add data's to the database. What it is really doing is to get the values such as model name etc.. in the form of string and use eval function to convert it into python expression so simple.


    So these are some of the important functions to know.


    Please support me for my efforts: https://paypal.me/matneb


    Download the source Code here :

    Friday, October 20, 2017

    Modern Combat 5 Android Hack Unlock Everything

    Modern Combat 5 Android Hack Unlock Everything Using Cheat Engine

    Things You need:

    1. PC with ADB installed. If you dont have adb download and Install from here
    2. You need to android phone that have given root access to adb. If you can't give root access download and install supersu. Click Here for INstallation Guide


    ads by google








    IMPORTANT NOTES:

    1. Im not Responsible if anything happen's to your device.

    2. It is a very Lengthy and Risky step so newbies will Find it somewhat difficult.

    3. This requires rooting your device. Rooting will be a threat to your warranty.

    ads by google






    Steps:

    1) Download the Attachments Given Below
    2) Extract the Files to a Directory
    3) Now press Windows Key + R and type cmd Then run it.
    4) Now connect your phone to pc with usb cable.
    5) Make Sure that you have enabled USB DEBUGGING MODE. else Enable it.
         (If you don't know how to enable GOOGLE IT :p )
    6) After that type in cmd adb devices.
    7) Now it will list your device name.
    8) Now move the directory you've extracted the rar file.
        (for example if extracted it on e:\ce. Then in cmd type e: then type cd ce)
    9) Now in cmd Type adb root. So that adb can access the root files.
    10) Now in cmd type adb remount. So that adb can remount.
    11) Make sure that your phone has x86 architecture
          (Don't Know how to find that? Google has Everything)
          if you have x86 architecture follow the next steps
    12) Type in cmd adb push ceserver_x86 /system/xbin   (if you have bin folder then ....../system/bin)
    13) Then type adb push ceserver_x86_nopie /system/xbin (if you have bin folder then .. / system/bin)
    14) Type adb push libceserver-extension_x86.so /system/xbin
    15) After That adb install cheat.apk
    16) Then type adb shell
    17) Then type cd /system/xbin (if you have bin folder then /system/bin)
    18) then type chmod 777 ceserver_x86
    19) type chmod 777 ceserver_x86_nopie
    20) type chmod 777 libceserver-extension_x86.so
    21) Download The android terminal from playstore
    21) Open it and type cd /system/xbin
    22) type ceserver_x86
    23) Open Cheat Engine 6.5 and click on Network Then connect and then close it.
    24) Open cmd type adb shell 
    25) Then type cd /system/xbin
    26) Then type ceserver_x86
    27) Take cheat Engine Click on Computer Icon and Select Network then Connect
    28) Select the process ..com.gameloft......
    29) Select Value type as String and Type locked and Press Scan
    30) Now you'll see the address select them all using shift and put it to the address list.
    31) Press Ctrl + A to select all address and Change the value to equip.

    Finally Finished EveryTHing is UNlocked.

    Now its time to enjoy.

    ads by google











    Attachments:
    ce.rar
    Cheat Engine 6.5 (Scroll Down and Download CHeat engine 6.5)
    Android Terminal Emulator
    SuperSU(Optional)

    ------------------------------------------------------THE END----------------------------------------------------



    Wednesday, June 21, 2017

    Modern Combat 5 online AutoKnife/ AutoButcher Hack.



    Hello guys i just made a simple hack as one of you had suggested for this. Its a very simple hack so it does not contain that much only some kbs.






    ##### IMPORTANT #########

    MAKE SURE THAT YOUR CONTROL TO KNIFE IS SET TO KEY 'E' OR ELSE IT WON'T WORK.
    ########################'

    How to use it:

    Its very simple to use it.
    1. Download the hack
    2. Open game and set your control Knife control to 'E'.
    3.Enjoy..


    Download Here:





    Sunday, June 11, 2017

    Modern Combat Health Hack or Fast Healing hack Download.


    Modern Combat 5 Health or Fast Healer















    Steps to install

    1 Click on Download Button Below
    2 Download The file and Extract it
    3, Enjoy
























    Friday, June 9, 2017

    Modern Combat 5 Health Hack Trainer












    hello guys how are you all,,

    I have finally released a trainer for modern combat 5 with much difficulty. Redistribution of this product without permission will be given a free hate,

    How to use it:

    1. Download the FIles
    2. Extract the MC5Trainer.zip
    3. Run the Game. Let it Load
    4. Run trainer.
    5.Press f4 on your keyboard to enable it. 

    Enjoy my Trainer.




    Sunday, March 5, 2017

    How to Play Gta Network on Pirated GTA V

    Hello Guys,

    Now the New Alternative Multiplayer(GTA:Network) released. But the pirated users cant play it because the wont support pirated Grand Theft Auto 5.

    So i decided to make a crack and release it for the publishers..

    Finally i made it .....

    Its a little bit buggy and difficult to use...
    So if you support me i will help you guys...


    Here Is the steps For doing it:


    1. Download the file Given Below
    2. Extract the files in rar to Grand Theft Auto V directory
    3. Then Run Gta:Network
    4. In the console Type the Path of your Gta 5 directory
    5. Thats it Enjoy

    Here is the video tutorial:




















     click here to download

    Thursday, November 10, 2016

    FiveReborn Gta 5 7gb Update error Fix.

    Fix Fivereborn 7 gb error Update Now.


                                                                               



    All you have to do this to download this 7gb file and Install it on Grand theft Auto directory






                                                     Download links(Mirrors)




    Tuesday, November 1, 2016

    WWe 2k16 highly comperssed 100 mb!!!

    WWE 2K16 highly compressed 100mb DOwnload Now:




    Download NOW::






    Tuesday, October 25, 2016

    Mafia III for android.

    Download Mafia 3 for Android:


    Android System Requirements:
    3gb Ram
    Android Lollipop.



    Monday, October 24, 2016

    Improve performance in GTA V without loosing graphics

    Here is the secrete trick to improve the performance of Grand Theft Auto 5 without loosing graphics

    Software Used here.

     Contig.exe

    Follow these Steps:

    Step 1: Download "Contig" From technet by Microsoft (Click contig.exe given above)

    Step 2: Access your game's files in your computer
    C:\Program Files (x86)\Rockstar Games\Grand Theft Auto V

    Step 3: Open the games main folder and drag Contig into it (You can also copy and paste it in case you would want to use it on another game)

    Step 4: This is very important. 
    - With contig in your game's main files, right click contig.
    - Create a shortcut
    - Drag the shortcut to your desktop
    - Right click the shortcut and select "Properties"
    In the properties it should say something like this 
    "C:\Program Files (x86)\
    Rockstar Games\Grand Theft Auto V\Contig.exe"
    (Very Important) at the very end of that line type a "space", -s *.* -v
    "C:\Program Files (x86)\
    Rockstar Games\Grand Theft Auto V\Contig.exe" -s

    -Now exit the properties.
    -Right click on the shortcut and click "Run as administrator". 

    A black box should appear on your screen with a lot of lines of text running through it, don't freak out and think you've destroyed your PC or anything, this is just contig reorganzing your game files. 


    Video tutorial



    Monday, September 12, 2016

    Farcry Primal for Android!

    Far Cry Primal For Android


    System RequireMents:
    OS : Android MarchMallow 
    Ram : 2gb
    Rom:Given Below






    Download Here:


    Thursday, January 7, 2016

    Fallout 4 Highly compressed 1gb

    Fallout 4 Highly compressed 1 gb!!!



    Fallout 4 Minimum Requirements

    CPU:Intel Core i5-2300 2.8 GHz/AMD Phenom II X4 945 3.0 GHz or equivalent
    CPU Speed:Info
    RAM:8 GB
    OS:Windows 7/8/10 (64-bit OS required)
    Video Card:NVIDIA GTX 550 Ti 2GB/AMD Radeon HD 7870 2GB or equivalent
    Free Disk Space:30 GB

    Fallout 4 Recommended Requirements

    CPU:Intel Core i7 4790 3.6 GHz/AMD FX-9590 4.7 GHz or equivalent
    CPU Speed:Info
    RAM:8 GB
    OS:Windows 7/8/10 (64-bit OS required)
    Video Card:NVIDIA GTX 780 3GB/AMD Radeon R9 290X 4GB or equivalent
    Free Disk Space:30 GB

    Download here:

    Sunday, December 6, 2015

    Forza Motosport 6 for android

                             Forza Motosport 6 for Android!!


                                                           

    Saturday, October 17, 2015

    Monday, October 5, 2015

    Internet Speed Hack

    Hack Your Internet Speed

    Get More SpeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeD


    Download here:


    Saturday, September 5, 2015

    Afly Money Hack

    Afly Money Hack


    hello guys its a very simple hack:

    Note very important


    You Must run the bat in administrator or else it will not work...

    Thnx For Veiwing my blog


    Comments system