├── LICENSE ├── README.md ├── azure_ad ├── azurehound.txt ├── enumeration.txt ├── initial_access.txt ├── post_exploitation.txt └── recon.txt ├── binary_exploitation ├── buffer_overflow │ ├── egg_hunting │ │ ├── bighead.py │ │ ├── info.txt │ │ └── vulnserver.py │ ├── immunityDbg.txt │ ├── linux │ │ ├── guide.txt │ │ ├── htbNodeOverflow.py │ │ └── htbOctoberOverflow.py │ ├── msfvenom.txt │ ├── nasmShell.txt │ ├── patternCreate.txt │ ├── patternOffset.txt │ ├── remote_overflow.py │ ├── remote_overflow.txt │ ├── rop.txt │ └── windows │ │ └── slMail.txt └── reverse_engineering │ ├── gdb.txt │ ├── ghidra.txt │ ├── radare2.txt │ └── recon.txt ├── bruteforce ├── 7zCrack.sh ├── fcrackzip.txt ├── generateWordlist.txt ├── hashcat.txt ├── hydra.txt ├── john.txt ├── openssl.txt ├── padbusterCookie.txt ├── password-spray.txt ├── patator.txt ├── pdfCrack.txt └── rdp.txt ├── certificates ├── generateCA.txt └── openssl.txt ├── databases ├── nosql │ └── mongo │ │ └── mongo.txt └── sql │ ├── blindSqli.py │ ├── blindSqli.txt │ ├── mssql │ ├── mssql.txt │ ├── mssqlclient.txt │ └── sqsh.txt │ ├── mysql.txt │ ├── oracle │ ├── cli.txt │ ├── odat.txt │ ├── oscanner.txt │ ├── sqlplus.txt │ └── tnscmd.txt │ ├── postgresqlCli.txt │ ├── sqli.txt │ └── sqlmap.txt ├── defense_evasion └── amsi │ ├── AmsiInitFailed.ps1 │ ├── AmsiPatchInMemory.ps1 │ └── OverwriteAmsiContext.ps1 ├── development ├── cross-compile.txt └── nasm.txt ├── file_inclusion ├── lfi.txt └── uploadFile.txt ├── filetransfer ├── base64.txt ├── dev_tcp.txt ├── ftp_commands.txt ├── ftp_server.txt ├── http_server.txt ├── nc.txt ├── nginx_file_transfer.txt ├── nginx_setup.txt ├── rsync.txt ├── scp.txt ├── smb.txt ├── smb_server.py └── windows │ ├── tftp.txt │ ├── vbs.txt │ ├── web_request.txt │ ├── webrequest.txt │ ├── wget.txt │ └── winrm.txt ├── forensics ├── convert.txt ├── dit.txt ├── luks_encrypted.txt └── volatility.txt ├── git └── git.txt ├── google_dorks └── dorks.txt ├── infrastructure ├── linux.txt └── windows.txt ├── ldap ├── blind_ldap_injection.txt └── recon.txt ├── mail ├── imap │ └── imapCurl.txt ├── sendemail.txt └── smtp │ └── smtp.txt ├── metasploit └── metasploit.txt ├── networking ├── firewall.txt ├── iptables.txt ├── netdiscover.txt ├── packets │ ├── capturePackets.py │ ├── icmpReadFile.txt │ └── sniffPackets.py ├── route.txt ├── tcpdump.txt └── vm_bridge.txt ├── nfs ├── mountShares.txt └── showmount.txt ├── package_injection └── package_injection.txt ├── persistence ├── linux │ ├── ssh.txt │ └── techniques.txt └── windows │ ├── schtasks.txt │ └── wmi.txt ├── pivoting ├── chisel.txt ├── meterpreter.txt ├── ncat.txt ├── portForwarding.txt ├── socat.txt ├── ssh.txt ├── sshuttle.txt └── windows │ ├── netsh.txt │ ├── plink.txt │ └── wmic.txt ├── port_knocking └── portKnock.txt ├── post_exploitation └── windows │ ├── com_hijack.txt │ ├── disable_monitoring.txt │ ├── fgdump.txt │ ├── mimikatz.txt │ └── schtasks.txt ├── privesc ├── linux │ └── find-suid.txt └── windows │ ├── hashdump.txt │ ├── sherlock.txt │ └── unquoted-service-paths.txt ├── recon ├── curl.txt ├── dns.txt ├── droopescan.txt ├── enum4linux.txt ├── gobuster.txt ├── iis_shortname.txt ├── masscan.txt ├── nbtscan.txt ├── ncat.txt ├── netstat.txt ├── nikto.txt ├── nmap.txt ├── onesixtyone.txt ├── openvas.txt ├── password_gathering.txt ├── recon-ng.txt ├── reconsteps.txt ├── smtp_enum.txt ├── snmpwalk.txt ├── theharvester.txt ├── usernames.txt ├── webdav.txt ├── wfuzz.txt └── wpscan.txt ├── remote_connection ├── ftp.txt ├── psExec.txt ├── psRemoting.txt ├── pth-winexe.txt ├── remote_desktop.txt ├── scp.txt ├── ssh.txt ├── telnet.txt ├── winrm.rb ├── winrm.txt └── winrm_cert.rb ├── restricted_shell └── methods.txt ├── reverse_shell ├── interactive_shell.txt └── msfvenom.txt ├── scripts ├── assembly2shellcode.sh ├── blind_nosqli.py ├── blind_sqli.py ├── byte_order_converter.py ├── checkPort.py ├── convert_to_vbs.py ├── decryptRSA.py ├── ipScan.sh ├── iraw2png.pl ├── pingNetwork.py ├── pingNetwork.sh ├── portscan.py ├── portscan.sh ├── printAllAscii.py ├── printAllAscii.sh ├── psMonitor.sh ├── setuid.c ├── smbver.sh ├── smtpVrfyUserList.py ├── smtpVrfyUsers.py ├── socketShell.py ├── split_binary.sh ├── subnetscan.ps1 ├── subnetscan.sh └── zonetransfer.sh ├── smb ├── mount_shares.txt ├── rpcclient.txt ├── setup.txt ├── smb_relay.txt ├── smb_scf.txt ├── smbclient.txt ├── smbmap.txt └── version.txt ├── tokens └── jwt.txt └── windows ├── active_directory ├── asreproasting.txt ├── bloodhound.txt ├── constrained_delegation.txt ├── getDomainController.txt ├── group_policy_objects.txt ├── kerberoasting.txt ├── powerview.txt ├── recon.txt ├── rubeus.txt ├── tickets.txt ├── unconstrained_delegation.txt └── writeDACL.txt ├── ads.txt ├── base64.txt ├── check_antivirus.txt ├── check_architecture.txt ├── check_services.txt ├── constrained_powershell_bypass.txt ├── crackmapexec.txt ├── create_account.txt ├── download.txt ├── dpapi.txt ├── enable_rdp.txt ├── file_permissions.txt ├── get_os.txt ├── llmnr.txt ├── mssql.txt ├── pass_the_hash.txt ├── powershell_language_mode.txt ├── prompt_credentials.txt ├── putty.txt ├── rdesktop.txt ├── reg_query.txt ├── rlwrap.txt ├── runas.txt └── switch_user.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/README.md -------------------------------------------------------------------------------- /azure_ad/azurehound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/azure_ad/azurehound.txt -------------------------------------------------------------------------------- /azure_ad/enumeration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/azure_ad/enumeration.txt -------------------------------------------------------------------------------- /azure_ad/initial_access.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/azure_ad/initial_access.txt -------------------------------------------------------------------------------- /azure_ad/post_exploitation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/azure_ad/post_exploitation.txt -------------------------------------------------------------------------------- /azure_ad/recon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/azure_ad/recon.txt -------------------------------------------------------------------------------- /binary_exploitation/buffer_overflow/egg_hunting/bighead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/buffer_overflow/egg_hunting/bighead.py -------------------------------------------------------------------------------- /binary_exploitation/buffer_overflow/egg_hunting/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/buffer_overflow/egg_hunting/info.txt -------------------------------------------------------------------------------- /binary_exploitation/buffer_overflow/egg_hunting/vulnserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/buffer_overflow/egg_hunting/vulnserver.py -------------------------------------------------------------------------------- /binary_exploitation/buffer_overflow/immunityDbg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/buffer_overflow/immunityDbg.txt -------------------------------------------------------------------------------- /binary_exploitation/buffer_overflow/linux/guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/buffer_overflow/linux/guide.txt -------------------------------------------------------------------------------- /binary_exploitation/buffer_overflow/linux/htbNodeOverflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/buffer_overflow/linux/htbNodeOverflow.py -------------------------------------------------------------------------------- /binary_exploitation/buffer_overflow/linux/htbOctoberOverflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/buffer_overflow/linux/htbOctoberOverflow.py -------------------------------------------------------------------------------- /binary_exploitation/buffer_overflow/msfvenom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/buffer_overflow/msfvenom.txt -------------------------------------------------------------------------------- /binary_exploitation/buffer_overflow/nasmShell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/buffer_overflow/nasmShell.txt -------------------------------------------------------------------------------- /binary_exploitation/buffer_overflow/patternCreate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/buffer_overflow/patternCreate.txt -------------------------------------------------------------------------------- /binary_exploitation/buffer_overflow/patternOffset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/buffer_overflow/patternOffset.txt -------------------------------------------------------------------------------- /binary_exploitation/buffer_overflow/remote_overflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/buffer_overflow/remote_overflow.py -------------------------------------------------------------------------------- /binary_exploitation/buffer_overflow/remote_overflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/buffer_overflow/remote_overflow.txt -------------------------------------------------------------------------------- /binary_exploitation/buffer_overflow/rop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/buffer_overflow/rop.txt -------------------------------------------------------------------------------- /binary_exploitation/buffer_overflow/windows/slMail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/buffer_overflow/windows/slMail.txt -------------------------------------------------------------------------------- /binary_exploitation/reverse_engineering/gdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/reverse_engineering/gdb.txt -------------------------------------------------------------------------------- /binary_exploitation/reverse_engineering/ghidra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/reverse_engineering/ghidra.txt -------------------------------------------------------------------------------- /binary_exploitation/reverse_engineering/radare2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/reverse_engineering/radare2.txt -------------------------------------------------------------------------------- /binary_exploitation/reverse_engineering/recon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/binary_exploitation/reverse_engineering/recon.txt -------------------------------------------------------------------------------- /bruteforce/7zCrack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/bruteforce/7zCrack.sh -------------------------------------------------------------------------------- /bruteforce/fcrackzip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/bruteforce/fcrackzip.txt -------------------------------------------------------------------------------- /bruteforce/generateWordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/bruteforce/generateWordlist.txt -------------------------------------------------------------------------------- /bruteforce/hashcat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/bruteforce/hashcat.txt -------------------------------------------------------------------------------- /bruteforce/hydra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/bruteforce/hydra.txt -------------------------------------------------------------------------------- /bruteforce/john.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/bruteforce/john.txt -------------------------------------------------------------------------------- /bruteforce/openssl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/bruteforce/openssl.txt -------------------------------------------------------------------------------- /bruteforce/padbusterCookie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/bruteforce/padbusterCookie.txt -------------------------------------------------------------------------------- /bruteforce/password-spray.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/bruteforce/password-spray.txt -------------------------------------------------------------------------------- /bruteforce/patator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/bruteforce/patator.txt -------------------------------------------------------------------------------- /bruteforce/pdfCrack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/bruteforce/pdfCrack.txt -------------------------------------------------------------------------------- /bruteforce/rdp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/bruteforce/rdp.txt -------------------------------------------------------------------------------- /certificates/generateCA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/certificates/generateCA.txt -------------------------------------------------------------------------------- /certificates/openssl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/certificates/openssl.txt -------------------------------------------------------------------------------- /databases/nosql/mongo/mongo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/databases/nosql/mongo/mongo.txt -------------------------------------------------------------------------------- /databases/sql/blindSqli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/databases/sql/blindSqli.py -------------------------------------------------------------------------------- /databases/sql/blindSqli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/databases/sql/blindSqli.txt -------------------------------------------------------------------------------- /databases/sql/mssql/mssql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/databases/sql/mssql/mssql.txt -------------------------------------------------------------------------------- /databases/sql/mssql/mssqlclient.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/databases/sql/mssql/mssqlclient.txt -------------------------------------------------------------------------------- /databases/sql/mssql/sqsh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/databases/sql/mssql/sqsh.txt -------------------------------------------------------------------------------- /databases/sql/mysql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/databases/sql/mysql.txt -------------------------------------------------------------------------------- /databases/sql/oracle/cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/databases/sql/oracle/cli.txt -------------------------------------------------------------------------------- /databases/sql/oracle/odat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/databases/sql/oracle/odat.txt -------------------------------------------------------------------------------- /databases/sql/oracle/oscanner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/databases/sql/oracle/oscanner.txt -------------------------------------------------------------------------------- /databases/sql/oracle/sqlplus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/databases/sql/oracle/sqlplus.txt -------------------------------------------------------------------------------- /databases/sql/oracle/tnscmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/databases/sql/oracle/tnscmd.txt -------------------------------------------------------------------------------- /databases/sql/postgresqlCli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/databases/sql/postgresqlCli.txt -------------------------------------------------------------------------------- /databases/sql/sqli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/databases/sql/sqli.txt -------------------------------------------------------------------------------- /databases/sql/sqlmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/databases/sql/sqlmap.txt -------------------------------------------------------------------------------- /defense_evasion/amsi/AmsiInitFailed.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/defense_evasion/amsi/AmsiInitFailed.ps1 -------------------------------------------------------------------------------- /defense_evasion/amsi/AmsiPatchInMemory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/defense_evasion/amsi/AmsiPatchInMemory.ps1 -------------------------------------------------------------------------------- /defense_evasion/amsi/OverwriteAmsiContext.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/defense_evasion/amsi/OverwriteAmsiContext.ps1 -------------------------------------------------------------------------------- /development/cross-compile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/development/cross-compile.txt -------------------------------------------------------------------------------- /development/nasm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/development/nasm.txt -------------------------------------------------------------------------------- /file_inclusion/lfi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/file_inclusion/lfi.txt -------------------------------------------------------------------------------- /file_inclusion/uploadFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/file_inclusion/uploadFile.txt -------------------------------------------------------------------------------- /filetransfer/base64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/filetransfer/base64.txt -------------------------------------------------------------------------------- /filetransfer/dev_tcp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/filetransfer/dev_tcp.txt -------------------------------------------------------------------------------- /filetransfer/ftp_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/filetransfer/ftp_commands.txt -------------------------------------------------------------------------------- /filetransfer/ftp_server.txt: -------------------------------------------------------------------------------- 1 | sudo python -m pyftpdlib -p 21 2 | -------------------------------------------------------------------------------- /filetransfer/http_server.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/filetransfer/http_server.txt -------------------------------------------------------------------------------- /filetransfer/nc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/filetransfer/nc.txt -------------------------------------------------------------------------------- /filetransfer/nginx_file_transfer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/filetransfer/nginx_file_transfer.txt -------------------------------------------------------------------------------- /filetransfer/nginx_setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/filetransfer/nginx_setup.txt -------------------------------------------------------------------------------- /filetransfer/rsync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/filetransfer/rsync.txt -------------------------------------------------------------------------------- /filetransfer/scp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/filetransfer/scp.txt -------------------------------------------------------------------------------- /filetransfer/smb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/filetransfer/smb.txt -------------------------------------------------------------------------------- /filetransfer/smb_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/filetransfer/smb_server.py -------------------------------------------------------------------------------- /filetransfer/windows/tftp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/filetransfer/windows/tftp.txt -------------------------------------------------------------------------------- /filetransfer/windows/vbs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/filetransfer/windows/vbs.txt -------------------------------------------------------------------------------- /filetransfer/windows/web_request.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/filetransfer/windows/web_request.txt -------------------------------------------------------------------------------- /filetransfer/windows/webrequest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/filetransfer/windows/webrequest.txt -------------------------------------------------------------------------------- /filetransfer/windows/wget.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/filetransfer/windows/wget.txt -------------------------------------------------------------------------------- /filetransfer/windows/winrm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/filetransfer/windows/winrm.txt -------------------------------------------------------------------------------- /forensics/convert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/forensics/convert.txt -------------------------------------------------------------------------------- /forensics/dit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/forensics/dit.txt -------------------------------------------------------------------------------- /forensics/luks_encrypted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/forensics/luks_encrypted.txt -------------------------------------------------------------------------------- /forensics/volatility.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/forensics/volatility.txt -------------------------------------------------------------------------------- /git/git.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/git/git.txt -------------------------------------------------------------------------------- /google_dorks/dorks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/google_dorks/dorks.txt -------------------------------------------------------------------------------- /infrastructure/linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/infrastructure/linux.txt -------------------------------------------------------------------------------- /infrastructure/windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/infrastructure/windows.txt -------------------------------------------------------------------------------- /ldap/blind_ldap_injection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/ldap/blind_ldap_injection.txt -------------------------------------------------------------------------------- /ldap/recon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/ldap/recon.txt -------------------------------------------------------------------------------- /mail/imap/imapCurl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/mail/imap/imapCurl.txt -------------------------------------------------------------------------------- /mail/sendemail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/mail/sendemail.txt -------------------------------------------------------------------------------- /mail/smtp/smtp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/mail/smtp/smtp.txt -------------------------------------------------------------------------------- /metasploit/metasploit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/metasploit/metasploit.txt -------------------------------------------------------------------------------- /networking/firewall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/networking/firewall.txt -------------------------------------------------------------------------------- /networking/iptables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/networking/iptables.txt -------------------------------------------------------------------------------- /networking/netdiscover.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/networking/netdiscover.txt -------------------------------------------------------------------------------- /networking/packets/capturePackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/networking/packets/capturePackets.py -------------------------------------------------------------------------------- /networking/packets/icmpReadFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/networking/packets/icmpReadFile.txt -------------------------------------------------------------------------------- /networking/packets/sniffPackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/networking/packets/sniffPackets.py -------------------------------------------------------------------------------- /networking/route.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/networking/route.txt -------------------------------------------------------------------------------- /networking/tcpdump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/networking/tcpdump.txt -------------------------------------------------------------------------------- /networking/vm_bridge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/networking/vm_bridge.txt -------------------------------------------------------------------------------- /nfs/mountShares.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/nfs/mountShares.txt -------------------------------------------------------------------------------- /nfs/showmount.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/nfs/showmount.txt -------------------------------------------------------------------------------- /package_injection/package_injection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/package_injection/package_injection.txt -------------------------------------------------------------------------------- /persistence/linux/ssh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/persistence/linux/ssh.txt -------------------------------------------------------------------------------- /persistence/linux/techniques.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/persistence/linux/techniques.txt -------------------------------------------------------------------------------- /persistence/windows/schtasks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/persistence/windows/schtasks.txt -------------------------------------------------------------------------------- /persistence/windows/wmi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/persistence/windows/wmi.txt -------------------------------------------------------------------------------- /pivoting/chisel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/pivoting/chisel.txt -------------------------------------------------------------------------------- /pivoting/meterpreter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/pivoting/meterpreter.txt -------------------------------------------------------------------------------- /pivoting/ncat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/pivoting/ncat.txt -------------------------------------------------------------------------------- /pivoting/portForwarding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/pivoting/portForwarding.txt -------------------------------------------------------------------------------- /pivoting/socat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/pivoting/socat.txt -------------------------------------------------------------------------------- /pivoting/ssh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/pivoting/ssh.txt -------------------------------------------------------------------------------- /pivoting/sshuttle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/pivoting/sshuttle.txt -------------------------------------------------------------------------------- /pivoting/windows/netsh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/pivoting/windows/netsh.txt -------------------------------------------------------------------------------- /pivoting/windows/plink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/pivoting/windows/plink.txt -------------------------------------------------------------------------------- /pivoting/windows/wmic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/pivoting/windows/wmic.txt -------------------------------------------------------------------------------- /port_knocking/portKnock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/port_knocking/portKnock.txt -------------------------------------------------------------------------------- /post_exploitation/windows/com_hijack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/post_exploitation/windows/com_hijack.txt -------------------------------------------------------------------------------- /post_exploitation/windows/disable_monitoring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/post_exploitation/windows/disable_monitoring.txt -------------------------------------------------------------------------------- /post_exploitation/windows/fgdump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/post_exploitation/windows/fgdump.txt -------------------------------------------------------------------------------- /post_exploitation/windows/mimikatz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/post_exploitation/windows/mimikatz.txt -------------------------------------------------------------------------------- /post_exploitation/windows/schtasks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/post_exploitation/windows/schtasks.txt -------------------------------------------------------------------------------- /privesc/linux/find-suid.txt: -------------------------------------------------------------------------------- 1 | find / -user root -perm -4000 -print 2>/dev/null 2 | -------------------------------------------------------------------------------- /privesc/windows/hashdump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/privesc/windows/hashdump.txt -------------------------------------------------------------------------------- /privesc/windows/sherlock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/privesc/windows/sherlock.txt -------------------------------------------------------------------------------- /privesc/windows/unquoted-service-paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/privesc/windows/unquoted-service-paths.txt -------------------------------------------------------------------------------- /recon/curl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/curl.txt -------------------------------------------------------------------------------- /recon/dns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/dns.txt -------------------------------------------------------------------------------- /recon/droopescan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/droopescan.txt -------------------------------------------------------------------------------- /recon/enum4linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/enum4linux.txt -------------------------------------------------------------------------------- /recon/gobuster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/gobuster.txt -------------------------------------------------------------------------------- /recon/iis_shortname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/iis_shortname.txt -------------------------------------------------------------------------------- /recon/masscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/masscan.txt -------------------------------------------------------------------------------- /recon/nbtscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/nbtscan.txt -------------------------------------------------------------------------------- /recon/ncat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/ncat.txt -------------------------------------------------------------------------------- /recon/netstat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/netstat.txt -------------------------------------------------------------------------------- /recon/nikto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/nikto.txt -------------------------------------------------------------------------------- /recon/nmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/nmap.txt -------------------------------------------------------------------------------- /recon/onesixtyone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/onesixtyone.txt -------------------------------------------------------------------------------- /recon/openvas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/openvas.txt -------------------------------------------------------------------------------- /recon/password_gathering.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/password_gathering.txt -------------------------------------------------------------------------------- /recon/recon-ng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/recon-ng.txt -------------------------------------------------------------------------------- /recon/reconsteps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/reconsteps.txt -------------------------------------------------------------------------------- /recon/smtp_enum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/smtp_enum.txt -------------------------------------------------------------------------------- /recon/snmpwalk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/snmpwalk.txt -------------------------------------------------------------------------------- /recon/theharvester.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/theharvester.txt -------------------------------------------------------------------------------- /recon/usernames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/usernames.txt -------------------------------------------------------------------------------- /recon/webdav.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/webdav.txt -------------------------------------------------------------------------------- /recon/wfuzz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/wfuzz.txt -------------------------------------------------------------------------------- /recon/wpscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/recon/wpscan.txt -------------------------------------------------------------------------------- /remote_connection/ftp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/remote_connection/ftp.txt -------------------------------------------------------------------------------- /remote_connection/psExec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/remote_connection/psExec.txt -------------------------------------------------------------------------------- /remote_connection/psRemoting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/remote_connection/psRemoting.txt -------------------------------------------------------------------------------- /remote_connection/pth-winexe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/remote_connection/pth-winexe.txt -------------------------------------------------------------------------------- /remote_connection/remote_desktop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/remote_connection/remote_desktop.txt -------------------------------------------------------------------------------- /remote_connection/scp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/remote_connection/scp.txt -------------------------------------------------------------------------------- /remote_connection/ssh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/remote_connection/ssh.txt -------------------------------------------------------------------------------- /remote_connection/telnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/remote_connection/telnet.txt -------------------------------------------------------------------------------- /remote_connection/winrm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/remote_connection/winrm.rb -------------------------------------------------------------------------------- /remote_connection/winrm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/remote_connection/winrm.txt -------------------------------------------------------------------------------- /remote_connection/winrm_cert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/remote_connection/winrm_cert.rb -------------------------------------------------------------------------------- /restricted_shell/methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/restricted_shell/methods.txt -------------------------------------------------------------------------------- /reverse_shell/interactive_shell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/reverse_shell/interactive_shell.txt -------------------------------------------------------------------------------- /reverse_shell/msfvenom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/reverse_shell/msfvenom.txt -------------------------------------------------------------------------------- /scripts/assembly2shellcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/assembly2shellcode.sh -------------------------------------------------------------------------------- /scripts/blind_nosqli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/blind_nosqli.py -------------------------------------------------------------------------------- /scripts/blind_sqli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/blind_sqli.py -------------------------------------------------------------------------------- /scripts/byte_order_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/byte_order_converter.py -------------------------------------------------------------------------------- /scripts/checkPort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/checkPort.py -------------------------------------------------------------------------------- /scripts/convert_to_vbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/convert_to_vbs.py -------------------------------------------------------------------------------- /scripts/decryptRSA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/decryptRSA.py -------------------------------------------------------------------------------- /scripts/ipScan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/ipScan.sh -------------------------------------------------------------------------------- /scripts/iraw2png.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/iraw2png.pl -------------------------------------------------------------------------------- /scripts/pingNetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/pingNetwork.py -------------------------------------------------------------------------------- /scripts/pingNetwork.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/pingNetwork.sh -------------------------------------------------------------------------------- /scripts/portscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/portscan.py -------------------------------------------------------------------------------- /scripts/portscan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/portscan.sh -------------------------------------------------------------------------------- /scripts/printAllAscii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/printAllAscii.py -------------------------------------------------------------------------------- /scripts/printAllAscii.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/printAllAscii.sh -------------------------------------------------------------------------------- /scripts/psMonitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/psMonitor.sh -------------------------------------------------------------------------------- /scripts/setuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/setuid.c -------------------------------------------------------------------------------- /scripts/smbver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/smbver.sh -------------------------------------------------------------------------------- /scripts/smtpVrfyUserList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/smtpVrfyUserList.py -------------------------------------------------------------------------------- /scripts/smtpVrfyUsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/smtpVrfyUsers.py -------------------------------------------------------------------------------- /scripts/socketShell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/socketShell.py -------------------------------------------------------------------------------- /scripts/split_binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/split_binary.sh -------------------------------------------------------------------------------- /scripts/subnetscan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/subnetscan.ps1 -------------------------------------------------------------------------------- /scripts/subnetscan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/subnetscan.sh -------------------------------------------------------------------------------- /scripts/zonetransfer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/scripts/zonetransfer.sh -------------------------------------------------------------------------------- /smb/mount_shares.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/smb/mount_shares.txt -------------------------------------------------------------------------------- /smb/rpcclient.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/smb/rpcclient.txt -------------------------------------------------------------------------------- /smb/setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/smb/setup.txt -------------------------------------------------------------------------------- /smb/smb_relay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/smb/smb_relay.txt -------------------------------------------------------------------------------- /smb/smb_scf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/smb/smb_scf.txt -------------------------------------------------------------------------------- /smb/smbclient.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/smb/smbclient.txt -------------------------------------------------------------------------------- /smb/smbmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/smb/smbmap.txt -------------------------------------------------------------------------------- /smb/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/smb/version.txt -------------------------------------------------------------------------------- /tokens/jwt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/tokens/jwt.txt -------------------------------------------------------------------------------- /windows/active_directory/asreproasting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/active_directory/asreproasting.txt -------------------------------------------------------------------------------- /windows/active_directory/bloodhound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/active_directory/bloodhound.txt -------------------------------------------------------------------------------- /windows/active_directory/constrained_delegation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/active_directory/constrained_delegation.txt -------------------------------------------------------------------------------- /windows/active_directory/getDomainController.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/active_directory/getDomainController.txt -------------------------------------------------------------------------------- /windows/active_directory/group_policy_objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/active_directory/group_policy_objects.txt -------------------------------------------------------------------------------- /windows/active_directory/kerberoasting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/active_directory/kerberoasting.txt -------------------------------------------------------------------------------- /windows/active_directory/powerview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/active_directory/powerview.txt -------------------------------------------------------------------------------- /windows/active_directory/recon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/active_directory/recon.txt -------------------------------------------------------------------------------- /windows/active_directory/rubeus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/active_directory/rubeus.txt -------------------------------------------------------------------------------- /windows/active_directory/tickets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/active_directory/tickets.txt -------------------------------------------------------------------------------- /windows/active_directory/unconstrained_delegation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/active_directory/unconstrained_delegation.txt -------------------------------------------------------------------------------- /windows/active_directory/writeDACL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/active_directory/writeDACL.txt -------------------------------------------------------------------------------- /windows/ads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/ads.txt -------------------------------------------------------------------------------- /windows/base64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/base64.txt -------------------------------------------------------------------------------- /windows/check_antivirus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/check_antivirus.txt -------------------------------------------------------------------------------- /windows/check_architecture.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/check_architecture.txt -------------------------------------------------------------------------------- /windows/check_services.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/check_services.txt -------------------------------------------------------------------------------- /windows/constrained_powershell_bypass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/constrained_powershell_bypass.txt -------------------------------------------------------------------------------- /windows/crackmapexec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/crackmapexec.txt -------------------------------------------------------------------------------- /windows/create_account.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/create_account.txt -------------------------------------------------------------------------------- /windows/download.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/download.txt -------------------------------------------------------------------------------- /windows/dpapi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/dpapi.txt -------------------------------------------------------------------------------- /windows/enable_rdp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/enable_rdp.txt -------------------------------------------------------------------------------- /windows/file_permissions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/file_permissions.txt -------------------------------------------------------------------------------- /windows/get_os.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/get_os.txt -------------------------------------------------------------------------------- /windows/llmnr.txt: -------------------------------------------------------------------------------- 1 | Check if LLMNR is enabled: 2 | example: gpresult /Scope Computer /v 3 | -------------------------------------------------------------------------------- /windows/mssql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/mssql.txt -------------------------------------------------------------------------------- /windows/pass_the_hash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/pass_the_hash.txt -------------------------------------------------------------------------------- /windows/powershell_language_mode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/powershell_language_mode.txt -------------------------------------------------------------------------------- /windows/prompt_credentials.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/prompt_credentials.txt -------------------------------------------------------------------------------- /windows/putty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/putty.txt -------------------------------------------------------------------------------- /windows/rdesktop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/rdesktop.txt -------------------------------------------------------------------------------- /windows/reg_query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/reg_query.txt -------------------------------------------------------------------------------- /windows/rlwrap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/rlwrap.txt -------------------------------------------------------------------------------- /windows/runas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/runas.txt -------------------------------------------------------------------------------- /windows/switch_user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorBobeye/pentest-cheatsheet/HEAD/windows/switch_user.txt --------------------------------------------------------------------------------