Sinisterly
Against.py Best SSH Bruteforcer - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Hacking (https://sinister.ly/Forum-Hacking)
+--- Forum: Hacking Tools (https://sinister.ly/Forum-Hacking-Tools)
+--- Thread: Against.py Best SSH Bruteforcer (/Thread-Against-py-Best-SSH-Bruteforcer)



Against.py Best SSH Bruteforcer - Hellborn - 03-03-2014

http://www.nullsecurity.net/tools/cracker/against.py
Already rooted a few boxes with this.


RE: Against.py Best SSH Bruteforcer - Reiko - 03-03-2014

tbh, install a PAM logger backdoor on your own system and log failed SSH attempts, then try to SSH into the attackers' boxes with the same password. Quite a few lame worms are going around that try to guess bad SSH passes.


RE: Against.py Best SSH Bruteforcer - 3SidedSquare - 03-03-2014

I would like to say that this script is a bad idea in almost every sense. Wherever there should have been multi-processing, there is multi-threading, not that either can bypass the global thread lock anyway. Additionally, using an interpreted language for brute forcing is like using a recursive method when an iterative one will do. That is to say, it's largely more expensive and slower. As if that wasn't enough, the script is terrible optimized and is not multi-platform.

Why yes, I am mad, why do you ask?


RE: Against.py Best SSH Bruteforcer - w00t - 03-03-2014

You really should look up the difference between the python modules for threading and multiprocessing, the latter does indeed bypass the GIL.

As for your worries about using an IL, the bottleneck for any networked bruteforce will always be network bandwidth, not processing speed of the sender. The only valid concern would be the increased memory footprint on the client.


RE: Against.py Best SSH Bruteforcer - JzJad - 03-05-2014

(03-05-2014, 05:20 AM)misnar Wrote: i love you too you FUCKING BLACK NIGGER APE

But i may just be the whitest kid you know Smile you cute little orangutan you!
[Image: 400_F_46151614_Csbvnz2QELwqrObUrmobdaFh0JrX3hI5.jpg]


RE: Against.py Best SSH Bruteforcer - Equinox - 03-05-2014

It's made for a different version of Python, this is a bitch to me since I have to take time to convert it to my version's syntax.

Ex:

print 'fuck you'

and

print('fuck you')

Also, I'm with 3ss. This isn't the best.


RE: Against.py Best SSH Bruteforcer - w00t - 03-05-2014

(03-05-2014, 08:27 AM)Duubz Wrote: It's made for a different version of Python, this is a bitch to me since I have to take time to convert it to my version's syntax.

Ex:

print 'fuck you'

and

print('fuck you')

Also, I'm with 3ss. This isn't the best.

What system are you running that you don't have both python2.7.x and python3


RE: Against.py Best SSH Bruteforcer - Equinox - 03-05-2014

(03-05-2014, 04:41 PM)w00t Wrote: What system are you running that you don't have both python2.7.x and python3

I only run Py33. Windows 8. Not that I can't run both but I don't.