├── .gitignore ├── Notes.Checklist.txt ├── Notes.Exploits.txt ├── Notes.Helpers.txt ├── Notes.Wordlists.txt ├── README.md ├── Target.Host.OS.Linux.txt ├── Target.Host.OS.Shells.txt ├── Target.Host.OS.Windows.txt ├── Target.Host.Service.AD.txt ├── Target.Host.Service.AMQP.txt ├── Target.Host.Service.DB.MSSQL.txt ├── Target.Host.Service.DB.MySQL.txt ├── Target.Host.Service.DB.PostgreSQL.txt ├── Target.Host.Service.FTP.txt ├── Target.Host.Service.HTTP.txt ├── Target.Host.Service.IDENT.txt ├── Target.Host.Service.LDAP.txt ├── Target.Host.Service.MSRPC.txt ├── Target.Host.Service.NFS.txt ├── Target.Host.Service.POP3.txt ├── Target.Host.Service.RDP.txt ├── Target.Host.Service.RPC.txt ├── Target.Host.Service.SMB.txt ├── Target.Host.Service.SMTP.txt ├── Target.Host.Service.SNMP.txt ├── Target.Host.Service.SSH.txt ├── Target.Host.Service.TELNET.txt ├── Target.Host.Service.VNC.txt ├── Target.Host.Service.X11.txt ├── Target.Network.Pivoting.txt ├── Target.Network.Scanning.txt ├── Target.Network.Wireless.txt ├── Target.Recon.DNS.txt ├── Target.Recon.Dorks.txt ├── Target.Recon.OSINT.txt ├── bin ├── direnum_combo.sh ├── dns_cnames.sh ├── dns_resolve.sh ├── dns_transfer.sh ├── download_files.sh ├── download_int.sh ├── ftp_server.py ├── hexdecode.py ├── hexreverse.py ├── http_codes.sh ├── httpd.py ├── mac_oui.sh ├── mitm_toolkit.py ├── parse_gnmap.sh ├── ping.py ├── ping.sh ├── quote.py ├── scan_top.sh ├── snmp_enum.sh ├── snmp_public_hosts.sh ├── ssh_enum_malform.py ├── ssh_enum_time.py ├── tomcat_brute.py ├── vba_format.py ├── vbe_decoder.py └── xor.py └── snippets ├── html └── smuggling.html ├── java ├── shells │ ├── reverse │ │ ├── reverse.jsp │ │ ├── reverse_bash.java │ │ └── reverse_php.java │ └── web │ │ └── webshell.jsp └── utils │ └── jenkins_console.groovy ├── linux ├── backdoors │ ├── ssh_reconnect.sh │ ├── suid_popen.c │ └── suid_shell.c ├── maldocs │ └── runner-1.c ├── shells │ ├── bind │ │ └── udp.sh │ └── reverse │ │ ├── reverse.c │ │ └── reverse.pl └── utils │ ├── bruteforce.sh │ ├── ld_preload.c │ ├── persistence.py │ ├── port_scanning1.sh │ ├── ps_monitoring.sh │ ├── python_pickle.py │ └── so_injection.c ├── php └── recursive_dir.php ├── python └── port_scanning.py ├── windows ├── maldocs │ ├── downloader-1.cs │ ├── downloader-1.js │ ├── downloader-1.ps1 │ ├── downloader-1.vba │ ├── downloader-1.vbs │ ├── downloader-1.xls │ ├── downloader-2.js │ ├── downloader-2.vba │ ├── evasion-1.cs │ ├── evasion-1.hta │ ├── evasion-1.inf │ ├── evasion-1.sct │ ├── evasion-1.url │ ├── evasion-1.wsf │ ├── evasion-2.hta │ ├── evasion-2.inf │ ├── evasion-2.sct │ ├── evasion-msxml.xml │ ├── evasion-msxml.xsl │ ├── ntlm-1.url │ ├── ntlm-evasion-mssql-1.csproj │ ├── runner-1.cs │ ├── runner-1.ps1 │ └── runner-1.vba ├── shells │ ├── bind │ │ ├── PortListener.ps1 │ │ ├── web1.asp │ │ ├── web2.asp │ │ ├── web3.asp │ │ └── web4.aspx │ └── reverse │ │ ├── reverse1.bat │ │ ├── reverse1.cpp │ │ ├── reverse1.cs │ │ ├── reverse1.ps1 │ │ ├── reverse2.cpp │ │ ├── reverse2.ps1 │ │ └── reverse_dll.c └── utils │ ├── DomainPasswordSpray.ps1 │ ├── Enable-Privilege.ps1 │ ├── GrabAndRun.ps1 │ ├── Invoke-Mimikatz-latest.ps1 │ ├── PortScanning.ps1 │ ├── Self-Elevate.ps1 │ ├── SharingIsCaring.ps1 │ ├── Start-WebServer.ps1 │ ├── SuperPing.ps1 │ ├── Win10FirewallRules.ps1 │ ├── WindowsEnum.ps1 │ ├── base64.vbs │ ├── ftp.bat │ ├── icacls.bat │ ├── info.aspx │ ├── mimikatz-Invoke-Mimikatz-obfuscate.sh │ ├── mimikatz-clone-obfuscated.sh │ ├── minidump.cs │ ├── run_bat.c │ ├── run_dll1.c │ ├── run_dll2.cpp │ ├── runas1.bat │ ├── runas2.bat │ ├── schcheck.bat │ ├── tcpwrecovery.py │ ├── update_invoke_mimikatz.py │ ├── useradd.c │ ├── wget_ps1.bat │ ├── wget_vbs.bat │ └── winscppassword.py └── xml └── xee.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Notes.Checklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Notes.Checklist.txt -------------------------------------------------------------------------------- /Notes.Exploits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Notes.Exploits.txt -------------------------------------------------------------------------------- /Notes.Helpers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Notes.Helpers.txt -------------------------------------------------------------------------------- /Notes.Wordlists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Notes.Wordlists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/README.md -------------------------------------------------------------------------------- /Target.Host.OS.Linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.OS.Linux.txt -------------------------------------------------------------------------------- /Target.Host.OS.Shells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.OS.Shells.txt -------------------------------------------------------------------------------- /Target.Host.OS.Windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.OS.Windows.txt -------------------------------------------------------------------------------- /Target.Host.Service.AD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.AD.txt -------------------------------------------------------------------------------- /Target.Host.Service.AMQP.txt: -------------------------------------------------------------------------------- 1 | `` RabbitMQ 2 | 3 | ~$ nmap -Pn -sV -p 5672 --script amqp-info VAR_TARGET_HOST 4 | -------------------------------------------------------------------------------- /Target.Host.Service.DB.MSSQL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.DB.MSSQL.txt -------------------------------------------------------------------------------- /Target.Host.Service.DB.MySQL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.DB.MySQL.txt -------------------------------------------------------------------------------- /Target.Host.Service.DB.PostgreSQL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.DB.PostgreSQL.txt -------------------------------------------------------------------------------- /Target.Host.Service.FTP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.FTP.txt -------------------------------------------------------------------------------- /Target.Host.Service.HTTP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.HTTP.txt -------------------------------------------------------------------------------- /Target.Host.Service.IDENT.txt: -------------------------------------------------------------------------------- 1 | `` User enumeration 2 | 3 | ~$ nmap -n -v -p 113 --script auth-owners VAR_TARGET_HOST -------------------------------------------------------------------------------- /Target.Host.Service.LDAP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.LDAP.txt -------------------------------------------------------------------------------- /Target.Host.Service.MSRPC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.MSRPC.txt -------------------------------------------------------------------------------- /Target.Host.Service.NFS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.NFS.txt -------------------------------------------------------------------------------- /Target.Host.Service.POP3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.POP3.txt -------------------------------------------------------------------------------- /Target.Host.Service.RDP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.RDP.txt -------------------------------------------------------------------------------- /Target.Host.Service.RPC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.RPC.txt -------------------------------------------------------------------------------- /Target.Host.Service.SMB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.SMB.txt -------------------------------------------------------------------------------- /Target.Host.Service.SMTP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.SMTP.txt -------------------------------------------------------------------------------- /Target.Host.Service.SNMP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.SNMP.txt -------------------------------------------------------------------------------- /Target.Host.Service.SSH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.SSH.txt -------------------------------------------------------------------------------- /Target.Host.Service.TELNET.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.TELNET.txt -------------------------------------------------------------------------------- /Target.Host.Service.VNC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.VNC.txt -------------------------------------------------------------------------------- /Target.Host.Service.X11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Host.Service.X11.txt -------------------------------------------------------------------------------- /Target.Network.Pivoting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Network.Pivoting.txt -------------------------------------------------------------------------------- /Target.Network.Scanning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Network.Scanning.txt -------------------------------------------------------------------------------- /Target.Network.Wireless.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Network.Wireless.txt -------------------------------------------------------------------------------- /Target.Recon.DNS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Recon.DNS.txt -------------------------------------------------------------------------------- /Target.Recon.Dorks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Recon.Dorks.txt -------------------------------------------------------------------------------- /Target.Recon.OSINT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/Target.Recon.OSINT.txt -------------------------------------------------------------------------------- /bin/direnum_combo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/direnum_combo.sh -------------------------------------------------------------------------------- /bin/dns_cnames.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/dns_cnames.sh -------------------------------------------------------------------------------- /bin/dns_resolve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/dns_resolve.sh -------------------------------------------------------------------------------- /bin/dns_transfer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/dns_transfer.sh -------------------------------------------------------------------------------- /bin/download_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/download_files.sh -------------------------------------------------------------------------------- /bin/download_int.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/download_int.sh -------------------------------------------------------------------------------- /bin/ftp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/ftp_server.py -------------------------------------------------------------------------------- /bin/hexdecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/hexdecode.py -------------------------------------------------------------------------------- /bin/hexreverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/hexreverse.py -------------------------------------------------------------------------------- /bin/http_codes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/http_codes.sh -------------------------------------------------------------------------------- /bin/httpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/httpd.py -------------------------------------------------------------------------------- /bin/mac_oui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/mac_oui.sh -------------------------------------------------------------------------------- /bin/mitm_toolkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/mitm_toolkit.py -------------------------------------------------------------------------------- /bin/parse_gnmap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/parse_gnmap.sh -------------------------------------------------------------------------------- /bin/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/ping.py -------------------------------------------------------------------------------- /bin/ping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/ping.sh -------------------------------------------------------------------------------- /bin/quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/quote.py -------------------------------------------------------------------------------- /bin/scan_top.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/scan_top.sh -------------------------------------------------------------------------------- /bin/snmp_enum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/snmp_enum.sh -------------------------------------------------------------------------------- /bin/snmp_public_hosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/snmp_public_hosts.sh -------------------------------------------------------------------------------- /bin/ssh_enum_malform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/ssh_enum_malform.py -------------------------------------------------------------------------------- /bin/ssh_enum_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/ssh_enum_time.py -------------------------------------------------------------------------------- /bin/tomcat_brute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/tomcat_brute.py -------------------------------------------------------------------------------- /bin/vba_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/vba_format.py -------------------------------------------------------------------------------- /bin/vbe_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/vbe_decoder.py -------------------------------------------------------------------------------- /bin/xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/bin/xor.py -------------------------------------------------------------------------------- /snippets/html/smuggling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/html/smuggling.html -------------------------------------------------------------------------------- /snippets/java/shells/reverse/reverse.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/java/shells/reverse/reverse.jsp -------------------------------------------------------------------------------- /snippets/java/shells/reverse/reverse_bash.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/java/shells/reverse/reverse_bash.java -------------------------------------------------------------------------------- /snippets/java/shells/reverse/reverse_php.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/java/shells/reverse/reverse_php.java -------------------------------------------------------------------------------- /snippets/java/shells/web/webshell.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/java/shells/web/webshell.jsp -------------------------------------------------------------------------------- /snippets/java/utils/jenkins_console.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/java/utils/jenkins_console.groovy -------------------------------------------------------------------------------- /snippets/linux/backdoors/ssh_reconnect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/linux/backdoors/ssh_reconnect.sh -------------------------------------------------------------------------------- /snippets/linux/backdoors/suid_popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/linux/backdoors/suid_popen.c -------------------------------------------------------------------------------- /snippets/linux/backdoors/suid_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/linux/backdoors/suid_shell.c -------------------------------------------------------------------------------- /snippets/linux/maldocs/runner-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/linux/maldocs/runner-1.c -------------------------------------------------------------------------------- /snippets/linux/shells/bind/udp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/linux/shells/bind/udp.sh -------------------------------------------------------------------------------- /snippets/linux/shells/reverse/reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/linux/shells/reverse/reverse.c -------------------------------------------------------------------------------- /snippets/linux/shells/reverse/reverse.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/linux/shells/reverse/reverse.pl -------------------------------------------------------------------------------- /snippets/linux/utils/bruteforce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/linux/utils/bruteforce.sh -------------------------------------------------------------------------------- /snippets/linux/utils/ld_preload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/linux/utils/ld_preload.c -------------------------------------------------------------------------------- /snippets/linux/utils/persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/linux/utils/persistence.py -------------------------------------------------------------------------------- /snippets/linux/utils/port_scanning1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/linux/utils/port_scanning1.sh -------------------------------------------------------------------------------- /snippets/linux/utils/ps_monitoring.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/linux/utils/ps_monitoring.sh -------------------------------------------------------------------------------- /snippets/linux/utils/python_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/linux/utils/python_pickle.py -------------------------------------------------------------------------------- /snippets/linux/utils/so_injection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/linux/utils/so_injection.c -------------------------------------------------------------------------------- /snippets/php/recursive_dir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/php/recursive_dir.php -------------------------------------------------------------------------------- /snippets/python/port_scanning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/python/port_scanning.py -------------------------------------------------------------------------------- /snippets/windows/maldocs/downloader-1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/downloader-1.cs -------------------------------------------------------------------------------- /snippets/windows/maldocs/downloader-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/downloader-1.js -------------------------------------------------------------------------------- /snippets/windows/maldocs/downloader-1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/downloader-1.ps1 -------------------------------------------------------------------------------- /snippets/windows/maldocs/downloader-1.vba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/downloader-1.vba -------------------------------------------------------------------------------- /snippets/windows/maldocs/downloader-1.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/downloader-1.vbs -------------------------------------------------------------------------------- /snippets/windows/maldocs/downloader-1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/downloader-1.xls -------------------------------------------------------------------------------- /snippets/windows/maldocs/downloader-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/downloader-2.js -------------------------------------------------------------------------------- /snippets/windows/maldocs/downloader-2.vba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/downloader-2.vba -------------------------------------------------------------------------------- /snippets/windows/maldocs/evasion-1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/evasion-1.cs -------------------------------------------------------------------------------- /snippets/windows/maldocs/evasion-1.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/evasion-1.hta -------------------------------------------------------------------------------- /snippets/windows/maldocs/evasion-1.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/evasion-1.inf -------------------------------------------------------------------------------- /snippets/windows/maldocs/evasion-1.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/evasion-1.sct -------------------------------------------------------------------------------- /snippets/windows/maldocs/evasion-1.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=file:///c:\windows\system32\calc.exe 3 | -------------------------------------------------------------------------------- /snippets/windows/maldocs/evasion-1.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/evasion-1.wsf -------------------------------------------------------------------------------- /snippets/windows/maldocs/evasion-2.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/evasion-2.hta -------------------------------------------------------------------------------- /snippets/windows/maldocs/evasion-2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/evasion-2.inf -------------------------------------------------------------------------------- /snippets/windows/maldocs/evasion-2.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/evasion-2.sct -------------------------------------------------------------------------------- /snippets/windows/maldocs/evasion-msxml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/evasion-msxml.xml -------------------------------------------------------------------------------- /snippets/windows/maldocs/evasion-msxml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/evasion-msxml.xsl -------------------------------------------------------------------------------- /snippets/windows/maldocs/ntlm-1.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/ntlm-1.url -------------------------------------------------------------------------------- /snippets/windows/maldocs/ntlm-evasion-mssql-1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/ntlm-evasion-mssql-1.csproj -------------------------------------------------------------------------------- /snippets/windows/maldocs/runner-1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/runner-1.cs -------------------------------------------------------------------------------- /snippets/windows/maldocs/runner-1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/runner-1.ps1 -------------------------------------------------------------------------------- /snippets/windows/maldocs/runner-1.vba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/maldocs/runner-1.vba -------------------------------------------------------------------------------- /snippets/windows/shells/bind/PortListener.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/shells/bind/PortListener.ps1 -------------------------------------------------------------------------------- /snippets/windows/shells/bind/web1.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/shells/bind/web1.asp -------------------------------------------------------------------------------- /snippets/windows/shells/bind/web2.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/shells/bind/web2.asp -------------------------------------------------------------------------------- /snippets/windows/shells/bind/web3.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/shells/bind/web3.asp -------------------------------------------------------------------------------- /snippets/windows/shells/bind/web4.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/shells/bind/web4.aspx -------------------------------------------------------------------------------- /snippets/windows/shells/reverse/reverse1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/shells/reverse/reverse1.bat -------------------------------------------------------------------------------- /snippets/windows/shells/reverse/reverse1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/shells/reverse/reverse1.cpp -------------------------------------------------------------------------------- /snippets/windows/shells/reverse/reverse1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/shells/reverse/reverse1.cs -------------------------------------------------------------------------------- /snippets/windows/shells/reverse/reverse1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/shells/reverse/reverse1.ps1 -------------------------------------------------------------------------------- /snippets/windows/shells/reverse/reverse2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/shells/reverse/reverse2.cpp -------------------------------------------------------------------------------- /snippets/windows/shells/reverse/reverse2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/shells/reverse/reverse2.ps1 -------------------------------------------------------------------------------- /snippets/windows/shells/reverse/reverse_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/shells/reverse/reverse_dll.c -------------------------------------------------------------------------------- /snippets/windows/utils/DomainPasswordSpray.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/DomainPasswordSpray.ps1 -------------------------------------------------------------------------------- /snippets/windows/utils/Enable-Privilege.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/Enable-Privilege.ps1 -------------------------------------------------------------------------------- /snippets/windows/utils/GrabAndRun.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/GrabAndRun.ps1 -------------------------------------------------------------------------------- /snippets/windows/utils/Invoke-Mimikatz-latest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/Invoke-Mimikatz-latest.ps1 -------------------------------------------------------------------------------- /snippets/windows/utils/PortScanning.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/PortScanning.ps1 -------------------------------------------------------------------------------- /snippets/windows/utils/Self-Elevate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/Self-Elevate.ps1 -------------------------------------------------------------------------------- /snippets/windows/utils/SharingIsCaring.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/SharingIsCaring.ps1 -------------------------------------------------------------------------------- /snippets/windows/utils/Start-WebServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/Start-WebServer.ps1 -------------------------------------------------------------------------------- /snippets/windows/utils/SuperPing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/SuperPing.ps1 -------------------------------------------------------------------------------- /snippets/windows/utils/Win10FirewallRules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/Win10FirewallRules.ps1 -------------------------------------------------------------------------------- /snippets/windows/utils/WindowsEnum.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/WindowsEnum.ps1 -------------------------------------------------------------------------------- /snippets/windows/utils/base64.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/base64.vbs -------------------------------------------------------------------------------- /snippets/windows/utils/ftp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/ftp.bat -------------------------------------------------------------------------------- /snippets/windows/utils/icacls.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/icacls.bat -------------------------------------------------------------------------------- /snippets/windows/utils/info.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/info.aspx -------------------------------------------------------------------------------- /snippets/windows/utils/mimikatz-Invoke-Mimikatz-obfuscate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/mimikatz-Invoke-Mimikatz-obfuscate.sh -------------------------------------------------------------------------------- /snippets/windows/utils/mimikatz-clone-obfuscated.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/mimikatz-clone-obfuscated.sh -------------------------------------------------------------------------------- /snippets/windows/utils/minidump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/minidump.cs -------------------------------------------------------------------------------- /snippets/windows/utils/run_bat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/run_bat.c -------------------------------------------------------------------------------- /snippets/windows/utils/run_dll1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/run_dll1.c -------------------------------------------------------------------------------- /snippets/windows/utils/run_dll2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/run_dll2.cpp -------------------------------------------------------------------------------- /snippets/windows/utils/runas1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/runas1.bat -------------------------------------------------------------------------------- /snippets/windows/utils/runas2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/runas2.bat -------------------------------------------------------------------------------- /snippets/windows/utils/schcheck.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/schcheck.bat -------------------------------------------------------------------------------- /snippets/windows/utils/tcpwrecovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/tcpwrecovery.py -------------------------------------------------------------------------------- /snippets/windows/utils/update_invoke_mimikatz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/update_invoke_mimikatz.py -------------------------------------------------------------------------------- /snippets/windows/utils/useradd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/useradd.c -------------------------------------------------------------------------------- /snippets/windows/utils/wget_ps1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/wget_ps1.bat -------------------------------------------------------------------------------- /snippets/windows/utils/wget_vbs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/wget_vbs.bat -------------------------------------------------------------------------------- /snippets/windows/utils/winscppassword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/windows/utils/winscppassword.py -------------------------------------------------------------------------------- /snippets/xml/xee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasooshi/pentesting-cookbook/HEAD/snippets/xml/xee.txt --------------------------------------------------------------------------------