- Burp Suite - https://portswigger.net/burp/communitydownload
- OWASP ZAP - https://www.zaproxy.org/download/
- sqlmap http://sqlmap.org/
- Metasploit Framework - https://www.metasploit.com/download
- Nmap https://nmap.org/download.html
- Nikto https://github.com/sullo/nikto
- Dirb - https://sourceforge.net/projects/dirb/
- Wfuzz - https://github.com/xmendez/wfuzz
- Gobuster- https://github.com/OJ/gobuster
- Sublist3r https://github.com/aboul3la/Sublist3r
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/pentestmonkey/windows-privesc-check | |
| https://github.com/inquisb/keimpx | |
| https://github.com/Spiderlabs/Responder | |
| https://github.com/infobyte/faraday | |
| https://github.com/koto/xsschef | |
| https://github.com/darkoperator/Meterpreter-Scripts | |
| https://github.com/mubix/Not-In-Pentesting-Class | |
| https://github.com/scoopex/scriptreplay_ng | |
| https://github.com/irsdl/updated-SWFIntruder | |
| https://github.com/pentestgeek/smbexec |
24x7x365 SUPPORT http://www.captiongenerator.com/320492/Offsec-Student-Admins
# Enumerate databases
sqlmap --dbms=mysql -u "$URL" --dbs
# Enumerate tables
sqlmap --dbms=mysql -u "$URL" -D "$DATABASE" --tables
# Dump table data
sqlmap --dbms=mysql -u "$URL" -D "$DATABASE" -T "$TABLE" --dumpPeople
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "io" | |
| "io/ioutil" | |
| "log" | |
| "net" | |
| "os" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "log" | |
| "math/rand" | |
| "net" | |
| "os" | |
| "os/signal" | |
| "syscall" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * HID RFID Reader Wiegand Interface for Arduino Uno | |
| * Originally by Daniel Smith, 2012.01.30 -- http://www.pagemac.com/projects/rfid/arduino_wiegand | |
| * | |
| * Updated 2016-11-23 by Jon "ShakataGaNai" Davis. | |
| * See https://obviate.io/?p=7470 for more details & instructions | |
| */ | |
| #define MAX_BITS 100 // max number of bits |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # PowerView's last major overhaul is detailed here: http://www.harmj0y.net/blog/powershell/make-powerview-great-again/ | |
| # tricks for the 'old' PowerView are at https://gist.github.com/HarmJ0y/3328d954607d71362e3c | |
| # the most up-to-date version of PowerView will always be in the dev branch of PowerSploit: | |
| # https://github.com/PowerShellMafia/PowerSploit/blob/dev/Recon/PowerView.ps1 | |
| # New function naming schema: | |
| # Verbs: | |
| # Get : retrieve full raw data sets | |
| # Find : βfindβ specific data entries in a data set |