-
Notifications
You must be signed in to change notification settings - Fork 2
Home
PyScripts is a simple project contains some useful and simple python scripts that may be helpful in penetration testing. This project can be used for learning scripting with Python and creating simple pentesting tools. I used different and multiple ways by using different libraries to show how we can program a script with different libraries. That may help beginners to learn different libraries and their usage.
I included different categories on the last release for ease of use. Each directory/category contains some scripts related to that category, In each directory, you'll find a README.md
file that describes the usage of each script.
For a better understanding of any script, you can take a look at the comments in that script so you can understand what it does.
Writing your own code and tools is good, but writing code and tools that
can also be useful as modules too, not just standalone tools are better.
The simplest way to do this is to implement the main logic of a program in
a function and then create a main()
function that does argument parsing and
passing to the logic function.
For example