├── Buffer_overflow └── info.txt ├── ENUMERATION ├── CMS │ ├── Drupal │ │ ├── 34984.py │ │ ├── CVE2014-3704.py │ │ ├── drupal-finduser.sh │ │ └── drupalbrute.py │ └── cms-explorer-1.0 │ │ ├── LICENSE.txt │ │ ├── LW2.pm │ │ ├── README.txt │ │ ├── cms-explorer.pl │ │ ├── drupal_plugins.txt │ │ ├── drupal_themes.txt │ │ ├── joomla_plugins.txt │ │ ├── joomla_themes.txt │ │ ├── wp_plugins.txt │ │ └── wp_themes.txt ├── DNS │ ├── DNS-subdomain-bruteforce.sh │ └── DNS-zone-transfer-check.sh ├── FINGER │ └── finger_enum_user.sh ├── FTP │ └── ftp_commaands ├── NFS-RPC │ └── commands.txt ├── SMB │ ├── SMB-check-vulns.rb │ └── commands.txt ├── SMTP │ ├── SMTP-enum.rb │ ├── smtp-vrfy-from-file │ └── smtp_commands.txt ├── SNMP │ ├── commands.txt │ └── snmp-enumeration-snmpwalk-from-list.sh ├── SQL │ └── Microsoft_SQL.txt ├── SSH │ └── commands.txt ├── TELNET │ └── telnet_commands.txt ├── discover-master │ ├── .gitignore │ ├── LICENCE │ ├── README.md │ ├── alias │ ├── crack-wifi.sh │ ├── discover.sh │ ├── misc │ │ ├── compare-sites.sh │ │ ├── crawl.sh │ │ ├── dns-forward.sh │ │ ├── dns-reverse.sh │ │ ├── dns-transfer.sh │ │ ├── enum-linux.sh │ │ ├── enum-solaris.sh │ │ ├── netblocks.sh │ │ ├── netblocks.txt │ │ ├── nse.sh │ │ ├── ping-sweep.sh │ │ └── python │ │ │ ├── discover.py │ │ │ ├── ex1.py │ │ │ ├── ex2.py │ │ │ ├── multitabs.py │ │ │ ├── notes.txt │ │ │ ├── recon.py │ │ │ └── test.py │ ├── mods │ │ ├── goog-mail.py │ │ └── goohost.sh │ ├── notes │ │ ├── MSSQL Injection Cheat Sheet.pdf │ │ ├── bash.txt │ │ ├── buffer-overflows.txt │ │ ├── burp.txt │ │ ├── databases.txt │ │ ├── dns.txt │ │ ├── exploits.txt │ │ ├── git.txt │ │ ├── hack3rcon │ │ │ ├── main.sh │ │ │ ├── nmap.sh │ │ │ ├── open-list.sh │ │ │ ├── recon-domain.sh │ │ │ ├── recon-people.sh │ │ │ └── robots.sh │ │ ├── insecure-protocols.txt │ │ ├── kali.txt │ │ ├── linux.txt │ │ ├── maltego.txt │ │ ├── metasploit │ │ │ ├── Analysis of MSF Relative to PTES.pdf │ │ │ └── metasploit.txt │ │ ├── misc.txt │ │ ├── mobile.txt │ │ ├── nexpose.txt │ │ ├── oracle.txt │ │ ├── passwords.txt │ │ ├── pwk.txt │ │ ├── python.txt │ │ ├── smtp.txt │ │ ├── snmp.txt │ │ ├── sqli.txt │ │ ├── ssl.txt │ │ ├── unix.txt │ │ ├── web-apps.txt │ │ └── windows.txt │ ├── parsers │ │ ├── parse-burp.py │ │ ├── parse-nessus-feed.py │ │ ├── parse-nessus.py │ │ ├── parse-nexpose.py │ │ ├── parse-nippar.py │ │ ├── parse-nmap.py │ │ ├── parse-qualys.py │ │ └── utfdictcsv.py │ ├── report │ │ ├── css │ │ │ ├── defaults.css │ │ │ ├── ie.css │ │ │ └── style.css │ │ ├── data │ │ │ ├── active-recon.htm │ │ │ ├── doc.htm │ │ │ ├── emails.htm │ │ │ ├── hosts.htm │ │ │ ├── loadbalancing.htm │ │ │ ├── names.htm │ │ │ ├── passive-recon.htm │ │ │ ├── pdf.htm │ │ │ ├── ppt.htm │ │ │ ├── records.htm │ │ │ ├── squatting.htm │ │ │ ├── subdomains.htm │ │ │ ├── traceroute.htm │ │ │ ├── txt.htm │ │ │ ├── waf.htm │ │ │ ├── whatweb.htm │ │ │ ├── whois-domain.htm │ │ │ ├── whois-ip.htm │ │ │ ├── xls.htm │ │ │ └── zonetransfer.htm │ │ ├── images │ │ │ ├── icons │ │ │ │ ├── blue.png │ │ │ │ ├── green.png │ │ │ │ ├── red.png │ │ │ │ └── yellow.png │ │ │ └── logo.png │ │ ├── index.htm │ │ └── pages │ │ │ ├── active-recon.htm │ │ │ ├── black-listed.htm │ │ │ ├── config.htm │ │ │ ├── doc.htm │ │ │ ├── emails.htm │ │ │ ├── hosts.htm │ │ │ ├── loadbalancing.htm │ │ │ ├── names.htm │ │ │ ├── netcraft.htm │ │ │ ├── passive-recon.htm │ │ │ ├── pdf.htm │ │ │ ├── ppt.htm │ │ │ ├── records.htm │ │ │ ├── squatting.htm │ │ │ ├── subdomains.htm │ │ │ ├── traceroute.htm │ │ │ ├── txt.htm │ │ │ ├── waf.htm │ │ │ ├── whatweb.htm │ │ │ ├── whois-domain.htm │ │ │ ├── whois-ip.htm │ │ │ ├── xls.htm │ │ │ └── zonetransfer.htm │ ├── resource │ │ ├── adobe.rc │ │ ├── afp.rc │ │ ├── backdoor.rc │ │ ├── chargen.rc │ │ ├── citrix.rc │ │ ├── couchdb.rc │ │ ├── db2-2.rc │ │ ├── db2.rc │ │ ├── dcerpc.rc │ │ ├── dcerpc2.rc │ │ ├── emc.rc │ │ ├── emc2.rc │ │ ├── finger.rc │ │ ├── ftp.rc │ │ ├── h323.rc │ │ ├── http.rc │ │ ├── imap.rc │ │ ├── ipmi.rc │ │ ├── lotus.rc │ │ ├── misc.rc │ │ ├── misc │ │ │ ├── java.rc │ │ │ ├── listener.rc │ │ │ └── post.rc │ │ ├── motorola.rc │ │ ├── mssql.rc │ │ ├── mysql.rc │ │ ├── nessus.rc │ │ ├── netbios.rc │ │ ├── nfs.rc │ │ ├── ntp.rc │ │ ├── oracle.rc │ │ ├── oracle2.rc │ │ ├── oracle3.rc │ │ ├── oracle4.rc │ │ ├── pcanywhere.rc │ │ ├── pcanywhere2.rc │ │ ├── pop3.rc │ │ ├── postgres.rc │ │ ├── printers.rc │ │ ├── rdp.rc │ │ ├── recon-ng │ │ │ ├── active.rc │ │ │ ├── export.rc │ │ │ └── passive.rc │ │ ├── redis.rc │ │ ├── rmi.rc │ │ ├── rservices.rc │ │ ├── rservices2.rc │ │ ├── rservices3.rc │ │ ├── scada.rc │ │ ├── scada2.rc │ │ ├── scada3.rc │ │ ├── scada4.rc │ │ ├── scada5.rc │ │ ├── scada6.rc │ │ ├── sip.rc │ │ ├── sip2.rc │ │ ├── smb.rc │ │ ├── smtp.rc │ │ ├── smtp2.rc │ │ ├── snmp.rc │ │ ├── ssh.rc │ │ ├── telnet.rc │ │ ├── telnet2.rc │ │ ├── telnet3.rc │ │ ├── tftp.rc │ │ ├── tomcat.rc │ │ ├── upnp.rc │ │ ├── vmware.rc │ │ ├── vmware2.rc │ │ ├── vnc.rc │ │ ├── vxworks.rc │ │ ├── winrm.rc │ │ └── x11.rc │ ├── setup.sh │ └── update.sh ├── enumeration └── port scan & ping sweep │ ├── fping_sweep │ ├── nc-port-scanner.sh │ ├── nmap-ARP-ping.sh │ └── ping-sweep.sh ├── EXAM ├── documentation-strategy ├── pentest-reports │ └── curated-list-pentest-reports ├── tips └── useful-notes ├── KNOWN-vulnerabilities ├── PRIVESC ├── Linux │ ├── LinEnum.sh │ ├── PRIVESC_commands.txt │ ├── netcat-and-crontab.sh │ └── unix-privesc-check ├── Windows │ ├── Windows_commands │ ├── accesschk.exe │ ├── convert-python-exploits-to-exe │ ├── sysinternals │ │ ├── Eula.txt │ │ ├── PsExec.exe │ │ ├── PsGetsid.exe │ │ ├── PsInfo.exe │ │ ├── PsLoggedon.exe │ │ ├── PsService.exe │ │ ├── Pstools.chm │ │ ├── psfile.exe │ │ ├── pskill.exe │ │ ├── pslist.exe │ │ ├── psloglist.exe │ │ ├── pspasswd.exe │ │ ├── psping.exe │ │ ├── psshutdown.exe │ │ ├── pssuspend.exe │ │ └── psversion.txt │ └── useradd.c └── ncat_transfr files.txt ├── Post-exploitation └── windows.txt ├── Python_Servers ├── README.md ├── bruteforce & password_attacks ├── Crack Ms Office _ 2007 │ ├── Makefile │ ├── RC4-40-brute.c │ ├── README.md │ ├── rc4.c │ ├── rc4.h │ └── zip.hashes ├── bruteforce_commands.txt ├── office2john.py │ ├── office2john.py │ └── read-me ├── pass-the-haash ├── steghide-bruteforce-tool └── zip-cracker.sh ├── gain access └── shells │ ├── php-reverse-shell-1.0 │ └── php-reverse-shell.php │ └── spawn_shell_or break_out_of_jail.txt ├── persistence └── persistence_windows.txt └── whatis ├── RPC-definition └── SMB(CIFS)-definition /Buffer_overflow/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/Buffer_overflow/info.txt -------------------------------------------------------------------------------- /ENUMERATION/CMS/Drupal/34984.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/CMS/Drupal/34984.py -------------------------------------------------------------------------------- /ENUMERATION/CMS/Drupal/CVE2014-3704.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/CMS/Drupal/CVE2014-3704.py -------------------------------------------------------------------------------- /ENUMERATION/CMS/Drupal/drupal-finduser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/CMS/Drupal/drupal-finduser.sh -------------------------------------------------------------------------------- /ENUMERATION/CMS/Drupal/drupalbrute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/CMS/Drupal/drupalbrute.py -------------------------------------------------------------------------------- /ENUMERATION/CMS/cms-explorer-1.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/CMS/cms-explorer-1.0/LICENSE.txt -------------------------------------------------------------------------------- /ENUMERATION/CMS/cms-explorer-1.0/LW2.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/CMS/cms-explorer-1.0/LW2.pm -------------------------------------------------------------------------------- /ENUMERATION/CMS/cms-explorer-1.0/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/CMS/cms-explorer-1.0/README.txt -------------------------------------------------------------------------------- /ENUMERATION/CMS/cms-explorer-1.0/cms-explorer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/CMS/cms-explorer-1.0/cms-explorer.pl -------------------------------------------------------------------------------- /ENUMERATION/CMS/cms-explorer-1.0/drupal_plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/CMS/cms-explorer-1.0/drupal_plugins.txt -------------------------------------------------------------------------------- /ENUMERATION/CMS/cms-explorer-1.0/drupal_themes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/CMS/cms-explorer-1.0/drupal_themes.txt -------------------------------------------------------------------------------- /ENUMERATION/CMS/cms-explorer-1.0/joomla_plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/CMS/cms-explorer-1.0/joomla_plugins.txt -------------------------------------------------------------------------------- /ENUMERATION/CMS/cms-explorer-1.0/joomla_themes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/CMS/cms-explorer-1.0/joomla_themes.txt -------------------------------------------------------------------------------- /ENUMERATION/CMS/cms-explorer-1.0/wp_plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/CMS/cms-explorer-1.0/wp_plugins.txt -------------------------------------------------------------------------------- /ENUMERATION/CMS/cms-explorer-1.0/wp_themes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/CMS/cms-explorer-1.0/wp_themes.txt -------------------------------------------------------------------------------- /ENUMERATION/DNS/DNS-subdomain-bruteforce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/DNS/DNS-subdomain-bruteforce.sh -------------------------------------------------------------------------------- /ENUMERATION/DNS/DNS-zone-transfer-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/DNS/DNS-zone-transfer-check.sh -------------------------------------------------------------------------------- /ENUMERATION/FINGER/finger_enum_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/FINGER/finger_enum_user.sh -------------------------------------------------------------------------------- /ENUMERATION/FTP/ftp_commaands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/FTP/ftp_commaands -------------------------------------------------------------------------------- /ENUMERATION/NFS-RPC/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/NFS-RPC/commands.txt -------------------------------------------------------------------------------- /ENUMERATION/SMB/SMB-check-vulns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/SMB/SMB-check-vulns.rb -------------------------------------------------------------------------------- /ENUMERATION/SMB/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/SMB/commands.txt -------------------------------------------------------------------------------- /ENUMERATION/SMTP/SMTP-enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/SMTP/SMTP-enum.rb -------------------------------------------------------------------------------- /ENUMERATION/SMTP/smtp-vrfy-from-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/SMTP/smtp-vrfy-from-file -------------------------------------------------------------------------------- /ENUMERATION/SMTP/smtp_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/SMTP/smtp_commands.txt -------------------------------------------------------------------------------- /ENUMERATION/SNMP/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/SNMP/commands.txt -------------------------------------------------------------------------------- /ENUMERATION/SNMP/snmp-enumeration-snmpwalk-from-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/SNMP/snmp-enumeration-snmpwalk-from-list.sh -------------------------------------------------------------------------------- /ENUMERATION/SQL/Microsoft_SQL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/SQL/Microsoft_SQL.txt -------------------------------------------------------------------------------- /ENUMERATION/SSH/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/SSH/commands.txt -------------------------------------------------------------------------------- /ENUMERATION/TELNET/telnet_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/TELNET/telnet_commands.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/.gitignore -------------------------------------------------------------------------------- /ENUMERATION/discover-master/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/LICENCE -------------------------------------------------------------------------------- /ENUMERATION/discover-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/README.md -------------------------------------------------------------------------------- /ENUMERATION/discover-master/alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/alias -------------------------------------------------------------------------------- /ENUMERATION/discover-master/crack-wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/crack-wifi.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/discover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/discover.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/compare-sites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/compare-sites.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/crawl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/crawl.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/dns-forward.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/dns-forward.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/dns-reverse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/dns-reverse.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/dns-transfer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/dns-transfer.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/enum-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/enum-linux.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/enum-solaris.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/enum-solaris.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/netblocks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/netblocks.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/netblocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/netblocks.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/nse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/nse.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/ping-sweep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/ping-sweep.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/python/discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/python/discover.py -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/python/ex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/python/ex1.py -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/python/ex2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/python/ex2.py -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/python/multitabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/python/multitabs.py -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/python/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/python/notes.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/python/recon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/python/recon.py -------------------------------------------------------------------------------- /ENUMERATION/discover-master/misc/python/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/misc/python/test.py -------------------------------------------------------------------------------- /ENUMERATION/discover-master/mods/goog-mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/mods/goog-mail.py -------------------------------------------------------------------------------- /ENUMERATION/discover-master/mods/goohost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/mods/goohost.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/MSSQL Injection Cheat Sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/MSSQL Injection Cheat Sheet.pdf -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/bash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/bash.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/buffer-overflows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/buffer-overflows.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/burp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/burp.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/databases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/databases.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/dns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/dns.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/exploits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/exploits.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/git.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/git.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/hack3rcon/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/hack3rcon/main.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/hack3rcon/nmap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/hack3rcon/nmap.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/hack3rcon/open-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/hack3rcon/open-list.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/hack3rcon/recon-domain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/hack3rcon/recon-domain.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/hack3rcon/recon-people.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/hack3rcon/recon-people.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/hack3rcon/robots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/hack3rcon/robots.sh -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/insecure-protocols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/insecure-protocols.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/kali.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/kali.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/linux.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/maltego.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/maltego.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/metasploit/Analysis of MSF Relative to PTES.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/metasploit/Analysis of MSF Relative to PTES.pdf -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/metasploit/metasploit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/metasploit/metasploit.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/misc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/misc.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/mobile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/mobile.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/nexpose.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/nexpose.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/oracle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/oracle.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/passwords.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/pwk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/pwk.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/python.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/python.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/smtp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/smtp.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/snmp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/snmp.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/sqli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/sqli.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/ssl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/ssl.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/unix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/unix.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/web-apps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/web-apps.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/notes/windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/notes/windows.txt -------------------------------------------------------------------------------- /ENUMERATION/discover-master/parsers/parse-burp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/parsers/parse-burp.py -------------------------------------------------------------------------------- /ENUMERATION/discover-master/parsers/parse-nessus-feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/parsers/parse-nessus-feed.py -------------------------------------------------------------------------------- /ENUMERATION/discover-master/parsers/parse-nessus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/parsers/parse-nessus.py -------------------------------------------------------------------------------- /ENUMERATION/discover-master/parsers/parse-nexpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/parsers/parse-nexpose.py -------------------------------------------------------------------------------- /ENUMERATION/discover-master/parsers/parse-nippar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/parsers/parse-nippar.py -------------------------------------------------------------------------------- /ENUMERATION/discover-master/parsers/parse-nmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/parsers/parse-nmap.py -------------------------------------------------------------------------------- /ENUMERATION/discover-master/parsers/parse-qualys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/parsers/parse-qualys.py -------------------------------------------------------------------------------- /ENUMERATION/discover-master/parsers/utfdictcsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/parsers/utfdictcsv.py -------------------------------------------------------------------------------- /ENUMERATION/discover-master/report/css/defaults.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/css/defaults.css -------------------------------------------------------------------------------- /ENUMERATION/discover-master/report/css/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/css/ie.css -------------------------------------------------------------------------------- /ENUMERATION/discover-master/report/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/css/style.css -------------------------------------------------------------------------------- /ENUMERATION/discover-master/report/data/active-recon.htm: -------------------------------------------------------------------------------- 1 |
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/doc.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/emails.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/hosts.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/loadbalancing.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/names.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/passive-recon.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/pdf.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/ppt.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/records.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/squatting.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/subdomains.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/traceroute.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/txt.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/waf.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/whatweb.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/whois-domain.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/whois-ip.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/xls.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/data/zonetransfer.htm:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/images/icons/blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/images/icons/blue.png


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/images/icons/green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/images/icons/green.png


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/images/icons/red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/images/icons/red.png


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/images/icons/yellow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/images/icons/yellow.png


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/images/logo.png


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/index.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/index.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/active-recon.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/active-recon.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/black-listed.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/black-listed.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/config.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/config.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/doc.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/doc.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/emails.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/emails.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/hosts.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/hosts.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/loadbalancing.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/loadbalancing.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/names.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/names.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/netcraft.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/netcraft.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/passive-recon.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/passive-recon.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/pdf.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/pdf.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/ppt.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/ppt.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/records.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/records.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/squatting.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/squatting.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/subdomains.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/subdomains.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/traceroute.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/traceroute.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/txt.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/txt.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/waf.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/waf.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/whatweb.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/whatweb.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/whois-domain.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/whois-domain.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/whois-ip.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/whois-ip.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/xls.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/xls.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/report/pages/zonetransfer.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/report/pages/zonetransfer.htm


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/adobe.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/adobe.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/afp.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/afp.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/backdoor.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/backdoor.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/chargen.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/chargen.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/citrix.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/citrix.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/couchdb.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/couchdb.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/db2-2.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/db2-2.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/db2.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/db2.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/dcerpc.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/dcerpc.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/dcerpc2.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/dcerpc2.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/emc.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/emc.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/emc2.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/emc2.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/finger.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/finger.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/ftp.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/ftp.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/h323.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/h323.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/http.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/http.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/imap.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/imap.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/ipmi.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/ipmi.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/lotus.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/lotus.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/misc.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/misc.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/misc/java.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/misc/java.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/misc/listener.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/misc/listener.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/misc/post.rc:
--------------------------------------------------------------------------------
1 | getsystem
2 | sysinfo
3 | hasdump
4 | 
5 | 


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/motorola.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/motorola.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/mssql.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/mssql.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/mysql.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/mysql.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/nessus.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/nessus.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/netbios.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/netbios.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/nfs.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/nfs.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/ntp.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/ntp.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/oracle.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/oracle.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/oracle2.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/oracle2.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/oracle3.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/oracle3.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/oracle4.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/oracle4.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/pcanywhere.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/pcanywhere.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/pcanywhere2.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/pcanywhere2.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/pop3.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/pop3.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/postgres.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/postgres.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/printers.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/printers.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/rdp.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/rdp.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/recon-ng/active.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/recon-ng/active.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/recon-ng/export.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/recon-ng/export.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/recon-ng/passive.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/recon-ng/passive.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/redis.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/redis.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/rmi.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/rmi.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/rservices.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/rservices.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/rservices2.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/rservices2.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/rservices3.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/rservices3.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/scada.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/scada.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/scada2.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/scada2.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/scada3.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/scada3.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/scada4.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/scada4.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/scada5.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/scada5.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/scada6.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/scada6.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/sip.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/sip.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/sip2.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/sip2.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/smb.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/smb.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/smtp.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/smtp.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/smtp2.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/smtp2.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/snmp.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/snmp.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/ssh.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/ssh.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/telnet.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/telnet.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/telnet2.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/telnet2.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/telnet3.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/telnet3.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/tftp.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/tftp.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/tomcat.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/tomcat.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/upnp.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/upnp.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/vmware.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/vmware.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/vmware2.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/vmware2.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/vnc.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/vnc.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/vxworks.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/vxworks.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/winrm.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/winrm.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/resource/x11.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/resource/x11.rc


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/setup.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/setup.sh


--------------------------------------------------------------------------------
/ENUMERATION/discover-master/update.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/discover-master/update.sh


--------------------------------------------------------------------------------
/ENUMERATION/enumeration:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/enumeration


--------------------------------------------------------------------------------
/ENUMERATION/port scan & ping sweep/fping_sweep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/port scan & ping sweep/fping_sweep


--------------------------------------------------------------------------------
/ENUMERATION/port scan & ping sweep/nc-port-scanner.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/port scan & ping sweep/nc-port-scanner.sh


--------------------------------------------------------------------------------
/ENUMERATION/port scan & ping sweep/nmap-ARP-ping.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/port scan & ping sweep/nmap-ARP-ping.sh


--------------------------------------------------------------------------------
/ENUMERATION/port scan & ping sweep/ping-sweep.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/ENUMERATION/port scan & ping sweep/ping-sweep.sh


--------------------------------------------------------------------------------
/EXAM/documentation-strategy:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/EXAM/documentation-strategy


--------------------------------------------------------------------------------
/EXAM/pentest-reports/curated-list-pentest-reports:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/EXAM/pentest-reports/curated-list-pentest-reports


--------------------------------------------------------------------------------
/EXAM/tips:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/EXAM/tips


--------------------------------------------------------------------------------
/EXAM/useful-notes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/EXAM/useful-notes


--------------------------------------------------------------------------------
/KNOWN-vulnerabilities:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/KNOWN-vulnerabilities


--------------------------------------------------------------------------------
/PRIVESC/Linux/LinEnum.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Linux/LinEnum.sh


--------------------------------------------------------------------------------
/PRIVESC/Linux/PRIVESC_commands.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Linux/PRIVESC_commands.txt


--------------------------------------------------------------------------------
/PRIVESC/Linux/netcat-and-crontab.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Linux/netcat-and-crontab.sh


--------------------------------------------------------------------------------
/PRIVESC/Linux/unix-privesc-check:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Linux/unix-privesc-check


--------------------------------------------------------------------------------
/PRIVESC/Windows/Windows_commands:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/Windows_commands


--------------------------------------------------------------------------------
/PRIVESC/Windows/accesschk.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/accesschk.exe


--------------------------------------------------------------------------------
/PRIVESC/Windows/convert-python-exploits-to-exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/convert-python-exploits-to-exe


--------------------------------------------------------------------------------
/PRIVESC/Windows/sysinternals/Eula.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/sysinternals/Eula.txt


--------------------------------------------------------------------------------
/PRIVESC/Windows/sysinternals/PsExec.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/sysinternals/PsExec.exe


--------------------------------------------------------------------------------
/PRIVESC/Windows/sysinternals/PsGetsid.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/sysinternals/PsGetsid.exe


--------------------------------------------------------------------------------
/PRIVESC/Windows/sysinternals/PsInfo.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/sysinternals/PsInfo.exe


--------------------------------------------------------------------------------
/PRIVESC/Windows/sysinternals/PsLoggedon.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/sysinternals/PsLoggedon.exe


--------------------------------------------------------------------------------
/PRIVESC/Windows/sysinternals/PsService.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/sysinternals/PsService.exe


--------------------------------------------------------------------------------
/PRIVESC/Windows/sysinternals/Pstools.chm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/sysinternals/Pstools.chm


--------------------------------------------------------------------------------
/PRIVESC/Windows/sysinternals/psfile.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/sysinternals/psfile.exe


--------------------------------------------------------------------------------
/PRIVESC/Windows/sysinternals/pskill.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/sysinternals/pskill.exe


--------------------------------------------------------------------------------
/PRIVESC/Windows/sysinternals/pslist.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/sysinternals/pslist.exe


--------------------------------------------------------------------------------
/PRIVESC/Windows/sysinternals/psloglist.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/sysinternals/psloglist.exe


--------------------------------------------------------------------------------
/PRIVESC/Windows/sysinternals/pspasswd.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/sysinternals/pspasswd.exe


--------------------------------------------------------------------------------
/PRIVESC/Windows/sysinternals/psping.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/sysinternals/psping.exe


--------------------------------------------------------------------------------
/PRIVESC/Windows/sysinternals/psshutdown.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/sysinternals/psshutdown.exe


--------------------------------------------------------------------------------
/PRIVESC/Windows/sysinternals/pssuspend.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/sysinternals/pssuspend.exe


--------------------------------------------------------------------------------
/PRIVESC/Windows/sysinternals/psversion.txt:
--------------------------------------------------------------------------------
1 | PsTools Version in this package: 2.44
2 | 


--------------------------------------------------------------------------------
/PRIVESC/Windows/useradd.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/Windows/useradd.c


--------------------------------------------------------------------------------
/PRIVESC/ncat_transfr files.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/PRIVESC/ncat_transfr files.txt


--------------------------------------------------------------------------------
/Post-exploitation/windows.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/Post-exploitation/windows.txt


--------------------------------------------------------------------------------
/Python_Servers:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/Python_Servers


--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/README.md


--------------------------------------------------------------------------------
/bruteforce & password_attacks/Crack Ms Office _ 2007/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/bruteforce & password_attacks/Crack Ms Office _ 2007/Makefile


--------------------------------------------------------------------------------
/bruteforce & password_attacks/Crack Ms Office _ 2007/RC4-40-brute.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/bruteforce & password_attacks/Crack Ms Office _ 2007/RC4-40-brute.c


--------------------------------------------------------------------------------
/bruteforce & password_attacks/Crack Ms Office _ 2007/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/bruteforce & password_attacks/Crack Ms Office _ 2007/README.md


--------------------------------------------------------------------------------
/bruteforce & password_attacks/Crack Ms Office _ 2007/rc4.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/bruteforce & password_attacks/Crack Ms Office _ 2007/rc4.c


--------------------------------------------------------------------------------
/bruteforce & password_attacks/Crack Ms Office _ 2007/rc4.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/bruteforce & password_attacks/Crack Ms Office _ 2007/rc4.h


--------------------------------------------------------------------------------
/bruteforce & password_attacks/Crack Ms Office _ 2007/zip.hashes:
--------------------------------------------------------------------------------
1 | 


--------------------------------------------------------------------------------
/bruteforce & password_attacks/bruteforce_commands.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/bruteforce & password_attacks/bruteforce_commands.txt


--------------------------------------------------------------------------------
/bruteforce & password_attacks/office2john.py/office2john.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/bruteforce & password_attacks/office2john.py/office2john.py


--------------------------------------------------------------------------------
/bruteforce & password_attacks/office2john.py/read-me:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/bruteforce & password_attacks/office2john.py/read-me


--------------------------------------------------------------------------------
/bruteforce & password_attacks/pass-the-haash:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/bruteforce & password_attacks/pass-the-haash


--------------------------------------------------------------------------------
/bruteforce & password_attacks/steghide-bruteforce-tool:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/bruteforce & password_attacks/steghide-bruteforce-tool


--------------------------------------------------------------------------------
/bruteforce & password_attacks/zip-cracker.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/bruteforce & password_attacks/zip-cracker.sh


--------------------------------------------------------------------------------
/gain access/shells/php-reverse-shell-1.0/php-reverse-shell.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/gain access/shells/php-reverse-shell-1.0/php-reverse-shell.php


--------------------------------------------------------------------------------
/gain access/shells/spawn_shell_or break_out_of_jail.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/gain access/shells/spawn_shell_or break_out_of_jail.txt


--------------------------------------------------------------------------------
/persistence/persistence_windows.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/persistence/persistence_windows.txt


--------------------------------------------------------------------------------
/whatis/RPC-definition:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/whatis/RPC-definition


--------------------------------------------------------------------------------
/whatis/SMB(CIFS)-definition:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/UserXGnu/OSCP-cheat-sheet-1/HEAD/whatis/SMB(CIFS)-definition


--------------------------------------------------------------------------------