Results 1 to 9 of 9
  1. #1
    yolonewb's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    82
    Reputation
    10
    Thanks
    607
    My Mood
    Psychedelic

    Thumbs up Auto junk adder Python

    This is a very basic python program, it get's it done, more updates will come with GUI hopefully soon!

    1) Download python2.7 setup from the official website.
    2) Install it on your computer.
    3) Download and run the file.
    4) Enter the FULL PATH to your project folder.
    5) Wait for it to finish, window should close.



    For people who want the source:
    Code:
    import random 
    import os
    import sys
    
    
    def randomword(length):
       s = ""
       for i in range(length):
           a = random.randint(97, 122)
           s += chr(a)
       return s
    
    def replace(original_string, string_to_replace):
        result_string = ""
        while original_string.find(string_to_replace) >= 0:
          pos = original_string.find(string_to_replace)
          result_string += original_string[0: pos]
          result_string += randomword(40)
          next_pos = pos+2
          original_string = original_string[next_pos:]
        result_string += original_string[:]
        return result_string
    
    junk = """
    #include <stdio.h>
    #include <string>
    #include <iostream>
    
    using namespace std;
    
    class {} {
    public:
    int {};
    int {};
    int {};
    int {}();
    string {}(int {}, int {}, int {});
    double {}();
    string {}(int {}, double {});
    double {}(double {}, int {}, string {});
    string {}(int {}, bool {}, string {}, string {}, double {}, double {}, string {}, bool {});
    
    protected:
    double {};
    
    void {}(bool {}, double {}, bool {}, double {}, int {}, int {});
    void {}(bool {}, double {}, int {}, int {}, bool {}, double {}, int {});
    int {}();
    int {}(int {}, double {}, int {}, string {}, string {}, int {}, string {}, double {}, bool {}, bool {});
    double {}(int {}, string {}, int {}, double {});
    bool {}(int {});
    bool {}(string {}, double {}, bool {}, string {}, int {}, int {}, double {}, bool {}, double {});
    void {}(double {}, int {}, int {}, string {}, double {}, double {});
    
    private:
    int {};
    int {};
    
    double {}(bool {}, double {});
    
    };
    
    
    
    
    void {}(bool {}, double {}, bool {}, double {}, int {}, int {}) {
    
    }
    
    void {}(bool {}, double {}, int {}, int {}, bool {}, double {}, int {}) {
    int {} = 8745;
    int {} = 4532;
    bool {} = true;
    bool {} = false;
    int {} = 2342;
    double {} = 6576;
    int {} = 1234;
    int {} = 3345;
    string {} = "{}";
    int {} = 4565;
    if (string("{}") != string("{}")) {
    int {}; 
    }
    
    }
    """
    
    file_name = raw_input("Enter the EXACT path to your .cpp files:")
    
    def add_junk():
       for root, dirs, files in os.walk(file_name):
          for file in files:
             if file.endswith(".cpp"):
                stra = replace(junk, "{}")
                with open(os.path.join(root, file), 'a+') as file1:
                   file1.write('\n')
                   file1.write('\n')
                   file1.write(stra)  
                print 'Adding Junk to ' + file
    
    for _ in range(200):
       add_junk()
       print 'Passes:' + _
    ~ Virus scans:
    https://virusscan.jotti.org/en-US/fi...job/0qsgmu929k
    https://www.virustotal.com/#/file/d6...1162/detection

    GET YOUR OWN NEWJERSEYHOOK, NEWYORKHOOK, CALIFORNIAHOOK WITH THIS METHOD, HELL YOU NAME IT ANY DAMN STATE YOU WANT! YOU KNOW THE BONUS TO THIS IS YOU CAN ACTUALLY TAKE CREDIT FOR THE CHEAT XDDDD.
    <b>Downloadable Files</b> Downloadable Files

    Find me on youtube!

    shitty pastas make smth yourself

  2. The Following 14 Users Say Thank You to yolonewb For This Useful Post:

    3playz (01-17-2018),Alex S. (01-26-2018),aminejack07 (01-27-2018),chaseglenn (12-29-2017),FatHooker (01-08-2018),frobergen (01-22-2018),joikl12 (03-02-2018),karimwaks (12-29-2017),michaelpio09 (01-02-2018),Naskyro22 (01-17-2018),Sasuke_Ninja (02-03-2018),Thaeglor (12-29-2017),tontopolla (01-03-2018),verbalproccessing (02-18-2018)

  3. #2
    KMWTW's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Location
    www.learncpp.com
    Posts
    2,466
    Reputation
    321
    Thanks
    14,450
    My Mood
    Blah
    junk code = trash code = shit = still detected.

  4. #3
    Ally's Avatar
    Join Date
    Dec 2014
    Gender
    female
    Location
       ♥
    Posts
    8,697
    Reputation
    1610
    Thanks
    8,500
    My Mood
    Angelic
    //Approved

    Premium Member 22/4/16
    Steam Minion 22/12/2017
    OFPS Minion 5/2/2019
    MMO Minion 5/2/2019
    Minion+ 5/2/2019
    Mod 8/11/2020
    Retired 3/10/2022
    22 / Dec 7, 2001

  5. #4
    shattering's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    53
    Reputation
    10
    Thanks
    7
    It is taking over 30min adding 200 times junk in ~100 cpp files but the tool looks good.

  6. #5
    yolonewb's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    82
    Reputation
    10
    Thanks
    607
    My Mood
    Psychedelic
    Quote Originally Posted by shattering View Post
    It is taking over 30min adding 200 times junk in ~100 cpp files but the tool looks good.
    Cheers, this script is faster than the C++ version of the tool. If you want, you can change the code so that it only adds the junk 50 times or however many times you feel is enough, 50 times should be more than enough.

    Change :

    Code:
    for _ in range(200):
    To :

    Code:
    for _ in range(50):

  7. The Following User Says Thank You to yolonewb For This Useful Post:

    shattering (01-03-2018)

  8. #6
    IcyTree's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Its working, thanks <3
    Last edited by IcyTree; 01-07-2018 at 04:10 AM.

  9. #7
    weleasda's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    i changed the range from 200 to 400 and i got 50%+5% different signature from first untouched dll works like a charm thank you so much dude you did a great job.

  10. #8
    T-800's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    Romania
    Posts
    17,076
    Reputation
    1688
    Thanks
    84,839
    Quote Originally Posted by weleasda View Post
    i changed the range from 200 to 400 and i got 50%+5% different signature from first untouched dll works like a charm thank you so much dude you did a great job.
    Make sure to turn off optimization

    "Never stop being a good person because of bad people"


    Super User -> 15-7-2020
    Global Moderator -> 23-3-2019 - 15-7-2020
    Steam Moderator -> 12-12-2017 - 23-3-2019
    Steam Minion+ -> 09-04-2017 - 12-12-2017
    Steam Minion -> 03-01-2017 - 09-04-2017


  11. #9
    weleasda's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by gerassss View Post
    Make sure to turn off optimization
    That's the first rule of pasting

Similar Threads

  1. [WTS] Selling ava acc 5 mega weps, frf2 noel, mosin, katana, python, auto 9 and others!
    By Paviannn in forum Alliance of Valiant Arms (AVA) Selling / Trading / Buying
    Replies: 22
    Last Post: 04-22-2014, 11:13 AM
  2. [Detected] uB Auto Box Adder Bot For LD:E 1.0
    By UCSerge in forum Alliance of Valiant Arms (AVA) Spammers, Injectors and Multi Tools
    Replies: 57
    Last Post: 03-14-2014, 03:57 AM
  3. Euro Adder and Auto F5 Dll.
    By Ma3rabi in forum Alliance of Valiant Arms (AVA) Help
    Replies: 2
    Last Post: 02-16-2013, 08:36 AM
  4. WarRock Auto Vehicle Repair Hack
    By mortis123 in forum WarRock - International Hacks
    Replies: 12
    Last Post: 01-17-2006, 08:40 PM
  5. WarRock Auto Healer
    By Flawless in forum WarRock - International Hacks
    Replies: 8
    Last Post: 12-31-2005, 03:44 AM

Tags for this Thread