- 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 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" --dump
People
![]() :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: |
yum install certbot python2-certbot-nginx
letsencrypt run -d domain.ro -d www.domain.ro
30 5 * * * /usr/bin/letsencrypt renew --cert-name domain.ro --post-hook "/bin/systemctl restart nginx" --quiet
This file contains 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 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 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 |