https://github.com/rockneurotiko/violentpython
A repo where I will upload the codes since I'm reading the book Violent Python
https://github.com/rockneurotiko/violentpython
Last synced: 2 months ago
JSON representation
A repo where I will upload the codes since I'm reading the book Violent Python
- Host: GitHub
- URL: https://github.com/rockneurotiko/violentpython
- Owner: rockneurotiko
- Created: 2013-04-14T12:32:41.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-05-03T16:02:54.000Z (about 12 years ago)
- Last Synced: 2025-04-01T21:03:50.844Z (2 months ago)
- Language: Python
- Size: 185 KB
- Stars: 3
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
ViolentPython
=============A repo where I will upload the codes since I'm reading the book Violent Python.
The codes are not exactly as is writed in the book, I modified the examples, trying to improve it,
or just writing whatever I want in that moment.
Cheers and don't be evil ;-)Chapter 1
=============
An introduction to python with some codes.[X] Reading.
[X] Code writing.
Codes:
1) VulnerabilityScanner.py --> A simple vulnerability scanner with sockets and banners, the banner vulnerabilities are in a file.
2) UnixPasswordCracker.py --> A simple unix password cracker (/etc/shadow) with dictionary, just works with an old encription (Python educational purposes)
3) ZipPasswordCracker.py --> A zip password cracker with threads and parsing the arguments. Uses a dictionary, but with the right dictionary works so nice.
Chapter 2
=============
Penetration testing with Python.On the way with the two states (read and write at the same time :-P)
[O] Reading.
[O] Code Writing
Codes:
1)TCPPortScanner.py --> A simple port scanner using sockets, threads and semaphores (to write in order on screen).
2)nmapPortScanner.py --> A port scanner using nmap library for python.
3)first\_SSH.py --> A simple SSH connection from the book
4)SSHTool.py --> A script tool made by myself to make a SSH connection and then send commands and get the answer... Check it pls ;-)
5)CrackSSHDict.py --> A script to crack a SSH password with a dictionary, with threads and Semaphore to have a max conncetions.
[[CONTINUE...]]