Page 1 of 2 12 LastLast
Results 1 to 15 of 18
  1. #1
    ploplokoon's Avatar
    Join Date
    Dec 2015
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    2

    Code Lock Brute Force

    Hey guys, I've been trying to locate a script that will brute force code locks but haven't had any luck. I'm looking for anything that will help, whether it's an actual link to a script or just some piece of information you've heard. I'm cool with a private or public script, and it doesn't have to be on this forum. Thanks.

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

    biosd (07-28-2023),maxmaxa (05-05-2016)

  3. #2
    yoloplays11's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    1
    My Mood
    Drunk
    M8 if there was ever anything on the rust forms i would wish it was a experimental hack and not a comment but i h8 to say there is nothing left to hack on rust except for legacy

  4. #3
    bearoegaming's Avatar
    Join Date
    Aug 2014
    Gender
    female
    Posts
    3
    Reputation
    10
    Thanks
    0

    Lightbulb

    made something like what you want a few weeks ago, down side is that when you put a code in you loose 1 hp

    alas it is still a prototype as i lost interest in it... it takes about 3.5h to test every code starting from 0000-9999.

    basically its just a autohotkey script that starts when you press F3 and it will pause if you press F4 (gotta hold it till it goes though the script atleast once)


    Var1 represents the first button in the sequence var2, the second, ect. not sure how accurate it will be on a differing screen resolution and such but anyway, my screen resolution is 1920x1080 16:9. Happy hunting.

    Code:
    	
    var1:="0"
    var2:="0"
    var3:="0"
    var4:="0"
    F3::                        ; If you press F3
    SetFormat, Float, 04.0
    Loop, 9999 { 
    
    
    If stop = 1
    Break
    
    
    sleep 430
    send {e down}
    sleep 75
    send {e up}
    sleep 220
    
    if (var1 = 0)
    {
    MouseClick, left, 930, 670
    sleep 93
    Goto, Next1
    }
    if (var1 = 1)
    {
    MouseClick, left, 893, 608
    sleep 93
    Goto, Next1
    }
    if (var1 = 2)
    {
    MouseClick, left, 939, 607
    sleep 93
    Goto, Next1
    }
    if (var1 = 3)
    {
    MouseClick, left, 1021, 607
    sleep 93
    Goto, Next1
    }
    if (var1 = 4)
    {
    MouseClick, left, 903, 545
    sleep 93
    Goto, Next1
    }
    if (var1 = 5)
    {
    MouseClick, left, 937, 542
    sleep 93
    Goto, Next1
    }
    if (var1 = 6)
    {
    MouseClick, left, 1024, 544
    sleep 93
    Goto, Next1
    }
    if (var1 = 7)
    {
    MouseClick, left, 897, 473
    sleep 93
    Goto, Next1
    }
    if (var1 = 8)
    {
    MouseClick, left, 937, 477
    sleep 93
    Goto, Next1
    }
    if (var1 = 9)
    {
    MouseClick, left, 1021, 475
    sleep 93
    Goto, Next1
    }
    
    
    
    Next1:
    if (var2 = 0)
    {
    MouseClick, left, 930, 670
    sleep 93
    Goto, Next2
    }
    if (var2 = 1)
    {
    MouseClick, left, 893, 608
    sleep 93
    Goto, Next2
    }
    if (var2 = 2)
    {
    MouseClick, left, 939, 607
    sleep 93
    Goto, Next2
    }
    if (var2 = 3)
    {
    MouseClick, left, 1021, 607
    sleep 93
    Goto, Next2
    }
    if (var2 = 4)
    {
    MouseClick, left, 903, 545
    sleep 93
    Goto, Next2
    }
    if (var2 = 5)
    {
    MouseClick, left, 937, 542
    sleep 93
    Goto, Next2
    }
    if (var2 = 6)
    {
    MouseClick, left, 1024, 544
    sleep 93
    Goto, Next2
    }
    if (var2 = 7)
    {
    MouseClick, left, 897, 473
    sleep 93
    Goto, Next2
    }
    if (var2 = 8)
    {
    MouseClick, left, 937, 477
    sleep 93
    Goto, Next2
    }
    if (var2 = 9)
    {
    MouseClick, left, 1021, 475
    sleep 93
    Goto, Next2
    }
    
    
    
    
    Next2:
    sleep 93
    if (var3 = 0)
    {
    MouseClick, left, 930, 670
    sleep 93
    Goto, Next3
    }
    if (var3 = 1)
    {
    MouseClick, left, 893, 608
    sleep 93
    Goto, Next3
    }
    if (var3 = 2)
    {
    MouseClick, left, 939, 607
    sleep 93
    Goto, Next3
    }
    if (var3 = 3)
    {
    MouseClick, left, 1021, 607
    sleep 93
    Goto, Next3
    }
    if (var3 = 4)
    {
    MouseClick, left, 903, 545
    sleep 93
    Goto, Next3
    }
    if (var3 = 5)
    {
    MouseClick, left, 937, 542
    sleep 93
    Goto, Next3
    }
    if (var3 = 6)
    {
    MouseClick, left, 1024, 544
    sleep 93
    Goto, Next3
    }
    if (var3 = 7)
    {
    MouseClick, left, 897, 473
    sleep 93
    Goto, Next3
    }
    if (var3 = 8)
    {
    MouseClick, left, 937, 477
    sleep 93
    Goto, Next3
    }
    if (var3 = 9)
    {
    MouseClick, left, 1021, 475
    sleep 93
    Goto, Next3
    }
    
    
    
    
    
    Next3:
    
    sleep 93
    
    
    
    
    if (var4 = 0)
    {
    MouseClick, left, 930, 670
    sleep 93
    Goto, Next4
    }
    if (var4 = 1)
    {
    MouseClick, left, 893, 608
    sleep 93
    Goto, Next4
    }
    if (var4 = 2)
    {
    MouseClick, left, 939, 607
    sleep 93
    Goto, Next4
    }
    if (var4 = 3)
    {
    MouseClick, left, 1021, 607
    sleep 93
    Goto, Next4
    }
    if (var4 = 4)
    {
    MouseClick, left, 903, 545
    sleep 93
    Goto, Next4
    }
    if (var4 = 5)
    {
    MouseClick, left, 937, 542
    sleep 93
    Goto, Next4
    }
    if (var4 = 6)
    {
    MouseClick, left, 1024, 544
    sleep 93
    Goto, Next4
    }
    if (var4 = 7)
    {
    MouseClick, left, 897, 473
    sleep 93
    Goto, Next4
    }
    if (var4 = 8)
    {
    MouseClick, left, 937, 477
    sleep 93
    Goto, Next4
    }
    if (var4 = 9)
    {
    MouseClick, left, 1021, 475
    sleep 93
    Goto, Next4
    }
    Next4:
    var4 += 2
    if (var4 >= 10)
    {
    var4 = 0
    var3 += 2
    }
    if (var3 >= 10)
    {
    var3 = 0
    var2 += 2
    }
    
    if (var2 >= 10)
    {
    var2 = 0
    var1 += 1
    }
    var5 += 2
    
    }
    F4::
    if stop = 0
    stop = 1
    else
    stop = 0
    - - - Updated - - -

    note that i did make a small modification to it before putting it up so if it doesnt work tell me. had to delete a portion that was made to stop after 55 since i spawned with 55 health but its random each time you respawn soooo yeah... hope it works o/

    - - - Updated - - -

    ps: so far as of about 24h of testing ive seen no traces of antihack detection (just dont let an admin see you. its a bit fast lol)

  5. #4
    Skiniy's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by bearoegaming View Post
    made something like what you want a few weeks ago, down side is that when you put a code in you loose 1 hp

    alas it is still a prototype as i lost interest in it... it takes about 3.5h to test every code starting from 0000-9999.

    basically its just a autohotkey script that starts when you press F3 and it will pause if you press F4 (gotta hold it till it goes though the script atleast once)


    Var1 represents the first button in the sequence var2, the second, ect. not sure how accurate it will be on a differing screen resolution and such but anyway, my screen resolution is 1920x1080 16:9. Happy hunting.

    Code:
    	
    var1:="0"
    var2:="0"
    var3:="0"
    var4:="0"
    F3::                        ; If you press F3
    SetFormat, Float, 04.0
    Loop, 9999 { 
    
    
    If stop = 1
    Break
    
    
    sleep 430
    send {e down}
    sleep 75
    send {e up}
    sleep 220
    
    if (var1 = 0)
    {
    MouseClick, left, 930, 670
    sleep 93
    Goto, Next1
    }
    if (var1 = 1)
    {
    MouseClick, left, 893, 608
    sleep 93
    Goto, Next1
    }
    if (var1 = 2)
    {
    MouseClick, left, 939, 607
    sleep 93
    Goto, Next1
    }
    if (var1 = 3)
    {
    MouseClick, left, 1021, 607
    sleep 93
    Goto, Next1
    }
    if (var1 = 4)
    {
    MouseClick, left, 903, 545
    sleep 93
    Goto, Next1
    }
    if (var1 = 5)
    {
    MouseClick, left, 937, 542
    sleep 93
    Goto, Next1
    }
    if (var1 = 6)
    {
    MouseClick, left, 1024, 544
    sleep 93
    Goto, Next1
    }
    if (var1 = 7)
    {
    MouseClick, left, 897, 473
    sleep 93
    Goto, Next1
    }
    if (var1 = 8)
    {
    MouseClick, left, 937, 477
    sleep 93
    Goto, Next1
    }
    if (var1 = 9)
    {
    MouseClick, left, 1021, 475
    sleep 93
    Goto, Next1
    }
    
    
    
    Next1:
    if (var2 = 0)
    {
    MouseClick, left, 930, 670
    sleep 93
    Goto, Next2
    }
    if (var2 = 1)
    {
    MouseClick, left, 893, 608
    sleep 93
    Goto, Next2
    }
    if (var2 = 2)
    {
    MouseClick, left, 939, 607
    sleep 93
    Goto, Next2
    }
    if (var2 = 3)
    {
    MouseClick, left, 1021, 607
    sleep 93
    Goto, Next2
    }
    if (var2 = 4)
    {
    MouseClick, left, 903, 545
    sleep 93
    Goto, Next2
    }
    if (var2 = 5)
    {
    MouseClick, left, 937, 542
    sleep 93
    Goto, Next2
    }
    if (var2 = 6)
    {
    MouseClick, left, 1024, 544
    sleep 93
    Goto, Next2
    }
    if (var2 = 7)
    {
    MouseClick, left, 897, 473
    sleep 93
    Goto, Next2
    }
    if (var2 = 8)
    {
    MouseClick, left, 937, 477
    sleep 93
    Goto, Next2
    }
    if (var2 = 9)
    {
    MouseClick, left, 1021, 475
    sleep 93
    Goto, Next2
    }
    
    
    
    
    Next2:
    sleep 93
    if (var3 = 0)
    {
    MouseClick, left, 930, 670
    sleep 93
    Goto, Next3
    }
    if (var3 = 1)
    {
    MouseClick, left, 893, 608
    sleep 93
    Goto, Next3
    }
    if (var3 = 2)
    {
    MouseClick, left, 939, 607
    sleep 93
    Goto, Next3
    }
    if (var3 = 3)
    {
    MouseClick, left, 1021, 607
    sleep 93
    Goto, Next3
    }
    if (var3 = 4)
    {
    MouseClick, left, 903, 545
    sleep 93
    Goto, Next3
    }
    if (var3 = 5)
    {
    MouseClick, left, 937, 542
    sleep 93
    Goto, Next3
    }
    if (var3 = 6)
    {
    MouseClick, left, 1024, 544
    sleep 93
    Goto, Next3
    }
    if (var3 = 7)
    {
    MouseClick, left, 897, 473
    sleep 93
    Goto, Next3
    }
    if (var3 = 8)
    {
    MouseClick, left, 937, 477
    sleep 93
    Goto, Next3
    }
    if (var3 = 9)
    {
    MouseClick, left, 1021, 475
    sleep 93
    Goto, Next3
    }
    
    
    
    
    
    Next3:
    
    sleep 93
    
    
    
    
    if (var4 = 0)
    {
    MouseClick, left, 930, 670
    sleep 93
    Goto, Next4
    }
    if (var4 = 1)
    {
    MouseClick, left, 893, 608
    sleep 93
    Goto, Next4
    }
    if (var4 = 2)
    {
    MouseClick, left, 939, 607
    sleep 93
    Goto, Next4
    }
    if (var4 = 3)
    {
    MouseClick, left, 1021, 607
    sleep 93
    Goto, Next4
    }
    if (var4 = 4)
    {
    MouseClick, left, 903, 545
    sleep 93
    Goto, Next4
    }
    if (var4 = 5)
    {
    MouseClick, left, 937, 542
    sleep 93
    Goto, Next4
    }
    if (var4 = 6)
    {
    MouseClick, left, 1024, 544
    sleep 93
    Goto, Next4
    }
    if (var4 = 7)
    {
    MouseClick, left, 897, 473
    sleep 93
    Goto, Next4
    }
    if (var4 = 8)
    {
    MouseClick, left, 937, 477
    sleep 93
    Goto, Next4
    }
    if (var4 = 9)
    {
    MouseClick, left, 1021, 475
    sleep 93
    Goto, Next4
    }
    Next4:
    var4 += 2
    if (var4 >= 10)
    {
    var4 = 0
    var3 += 2
    }
    if (var3 >= 10)
    {
    var3 = 0
    var2 += 2
    }
    
    if (var2 >= 10)
    {
    var2 = 0
    var1 += 1
    }
    var5 += 2
    
    }
    F4::
    if stop = 0
    stop = 1
    else
    stop = 0
    - - - Updated - - -

    note that i did make a small modification to it before putting it up so if it doesnt work tell me. had to delete a portion that was made to stop after 55 since i spawned with 55 health but its random each time you respawn soooo yeah... hope it works o/

    - - - Updated - - -

    ps: so far as of about 24h of testing ive seen no traces of antihack detection (just dont let an admin see you. its a bit fast lol)
    Pls how to put the code in game ?

  6. #5
    thom898a's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    My Mood
    Doh
    Skiniy you copy the code, download autohotkey, paste the code to a text file, save as AHK script, and then run it. Idk if you save it as script inside of autohotkey but I think it is this way.

  7. #6
    bearoegaming's Avatar
    Join Date
    Aug 2014
    Gender
    female
    Posts
    3
    Reputation
    10
    Thanks
    0
    ^ This is pretty much it ^.^

  8. #7
    BunnehMaloneh's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Posts
    40
    Reputation
    10
    Thanks
    6
    My Mood
    Drunk
    Better off doing it urself to tell you the truth it will still take less time or just make c4.

  9. #8
    cdh108's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    39
    clicks the 8 key incorrectly
    also seems to skip odd numbers
    Last edited by cdh108; 01-17-2016 at 06:43 PM.

  10. #9
    cdh108's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    39

    Rust Code Lock Brute Force

    I redid the code so it should be up to date as of 1/18/16. It damages you once for every incorrect code, so I made it eat whatever is in in slot 6. F3 starts it, F4 pauses it (must hold for a full cycle), and the delete key stops it.
    <b>Downloadable Files</b> Downloadable Files

  11. The Following 39 Users Say Thank You to cdh108 For This Useful Post:

    algerias (06-27-2016),Averlome (03-30-2016),[MPGH]AVGN (02-06-2016),Awesome Pie Man (01-24-2016),AyeCharlie (04-18-2020),biosd (07-28-2023),Bobro1 (07-05-2016),Brikaer (01-24-2016),CyborgCatZ (05-01-2016),Doodle313 (01-20-2016),erenmuslu (04-29-2016),geriace (05-09-2016),HhDevil (03-31-2016),jamiscool (03-26-2016),jerryz (05-12-2016),Jirapon (04-26-2016),KourisBP (02-08-2016),ktakahashi (06-30-2018),Kyplk (03-01-2021),legionhd (03-30-2016),llNitchll (07-05-2016),moimemepédé (12-22-2017),netpark (03-05-2019),pokemona123 (07-02-2016),Pokerozz (04-13-2016),popogigio (08-16-2016),S0ulR3ap3r (01-28-2016),silvio_berlusconi (04-14-2016),SkyApple (03-24-2016),slysnake96 (04-05-2016),snoopy10 (01-21-2016),sparky145432 (07-08-2016),Stefanel121212 (05-22-2016),terminal6 (07-14-2016),That_One_Gut (02-25-2017),tightosighto (01-29-2017),tolea0077 (12-28-2019),vicrocket12321 (07-09-2016),Word.exe (01-19-2016)

  12. #10
    Word.exe's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    New Zealand
    Posts
    75
    Reputation
    10
    Thanks
    2
    My Mood
    Amazed
    Does not work for me. Line 300 ;eats is invelid

  13. #11
    AJAY420's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    31
    Reputation
    10
    Thanks
    3
    Quote Originally Posted by Word.exe View Post
    Does not work for me. Line 300 ;eats is invelid
    Getting the same problem

  14. #12
    klumel8's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    The hague
    Posts
    37
    Reputation
    10
    Thanks
    46
    My Mood
    Angelic
    Ive never coded in this "language" before, but im pretty sute that if you replace:
    if (var5 >= 2);eats chicken in slot 6
    {sleep 100
    With:
    if (var5 >= 2){
    sleep 100
    Tell me if it worked!

    Edit:
    Also replace:
    F4:: ;hold to pause code
    stop = 1
    else
    stop = 0
    Del::ExitApp ;del key stops it
    With:
    F4::
    if stop = 0
    stop = 1
    else
    stop = 0
    Please leave like, if I helped you out.
    Last edited by klumel8; 01-25-2016 at 08:54 AM.
    Stay awesome, stay rainbow!

  15. The Following User Says Thank You to klumel8 For This Useful Post:

    Obinook (04-25-2016)

  16. #13
    flickblud's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    try and fix the pause thats such a good feature

    also once the code is guessed, how do you remember it for all the doors?
    youre not going to sit there for 3 hours watching it so? thanks
    Last edited by flickblud; 01-24-2016 at 04:36 PM.

  17. #14
    klumel8's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    The hague
    Posts
    37
    Reputation
    10
    Thanks
    46
    My Mood
    Angelic
    I THINK I found a fix for the pausing.
    Replace:
    F4:: ;hold to pause code
    stop = 1
    else
    stop = 0
    Del::ExitApp ;del key stops it
    With:
    F4::
    if stop = 0
    stop = 1
    else
    stop = 0
    Last edited by klumel8; 01-25-2016 at 08:55 AM.
    Stay awesome, stay rainbow!

  18. #15
    flickblud's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    it started looping for me after an 1 hour and 40 mins

Page 1 of 2 12 LastLast

Similar Threads

  1. Cpanel Password Brute Force Tool EXPLOIT
    By RoB07 in forum Exploits
    Replies: 19
    Last Post: 02-20-2014, 05:48 PM
  2. [WTS] Selling Brute Force/Cracker Source Code
    By johnstalie in forum Selling Accounts/Keys/Items
    Replies: 3
    Last Post: 07-05-2013, 08:10 PM
  3. Compiling and/or Brute Forcing
    By 9Lives CatsEyes in forum General Hacking
    Replies: 0
    Last Post: 08-21-2008, 08:21 PM
  4. brute force cracking
    By ace76543 in forum Spammers Corner
    Replies: 2
    Last Post: 08-15-2006, 01:23 AM
  5. How To Brute Force
    By Flawless in forum Game Hacking Tutorials
    Replies: 0
    Last Post: 01-01-2006, 05:01 PM