├── .gitignore ├── LICENSE ├── README.md ├── bookmarks.md ├── buffer_overflow ├── assembly │ ├── 64_ia_32_jmp_instructions.pdf │ ├── IntelCodeTable_x86.pdf │ ├── Radare2 cheat sheet.txt │ ├── course_notes.md │ ├── debuging.md │ ├── images │ │ ├── 0x80_interupt_system_calls.png │ │ ├── IntelRegisters.gif │ │ ├── cpu_modes.png │ │ ├── general_purpose_registers.png │ │ ├── linux_models.png │ │ ├── memory_arch.png │ │ ├── memory_maps.png │ │ ├── memory_models.png │ │ └── write_system_call.png │ ├── x86_assembly_x86_architecture.pdf │ └── x86_opcode_structure_and_instruction_overview.png ├── buffer_overflows.md ├── gdb_cheat_sheet.pdf ├── r2_cheatsheet.pdf ├── scripts │ ├── bad_chars.txt │ ├── disable_linux_security.sh │ ├── linux_bo_exploit.rb │ ├── linux_bo_poc.py │ ├── payload.py │ ├── windows_bo_exploit.rb │ └── windows_bo_fuzzer.py └── win32_buffer_overflow_exploitation.md ├── cheatSheets ├── Cheatsheet_AIXBuild.txt ├── Cheatsheet_AVBypass.txt ├── Cheatsheet_ApacheSSL.txt ├── Cheatsheet_AttackingMSSQL.txt ├── Cheatsheet_BashScripting.txt ├── Cheatsheet_BuildReviews.txt ├── Cheatsheet_CTF.txt ├── Cheatsheet_CiscoIOS.txt ├── Cheatsheet_CookieStealing.txt ├── Cheatsheet_DomainAdminExploitation.txt ├── Cheatsheet_ExploitDev.txt ├── Cheatsheet_GDB.txt ├── Cheatsheet_GPG.txt ├── Cheatsheet_HTTPBasicAuth.txt ├── Cheatsheet_IKEScan.txt ├── Cheatsheet_LinuxPrivilegeEsc.txt ├── Cheatsheet_LocalSamDump.txt ├── Cheatsheet_MSFPostExploitation.txt ├── Cheatsheet_Metasploit.pdf ├── Cheatsheet_MetasploitPayloads.txt ├── Cheatsheet_MobileAppTesting.txt ├── Cheatsheet_Networking.txt ├── Cheatsheet_OWASPCheckList.txt ├── Cheatsheet_Oracle.txt ├── Cheatsheet_PenTesting.txt ├── Cheatsheet_Pyinstaller.txt ├── Cheatsheet_Python.pdf ├── Cheatsheet_Remediations.txt ├── Cheatsheet_SMBCapture.txt ├── Cheatsheet_SMBEnumeration.txt ├── Cheatsheet_SMTPOpenRelay.txt ├── Cheatsheet_SQLInjection.txt ├── Cheatsheet_SSLStrip.txt ├── Cheatsheet_Solaris.txt ├── Cheatsheet_Tools.txt ├── Cheatsheet_UsefulCommands.txt ├── Cheatsheet_VOIP.txt ├── Cheatsheet_Vlans.txt ├── Cheatsheet_VulnVerify.txt ├── Cheatsheet_WindowsCommandLine.pdf ├── Cheatsheet_WirelessTesting.txt ├── Cheatsheet_scp.txt ├── beginners_python_cheat_sheet.pdf ├── complexity_cheatsheet.pdf ├── egghead-react-cheat-sheet-0-14-7.pdf ├── egghead-redux-cheat-sheet-3-2-1.pdf ├── emmet_cheat_sheet.pdf ├── es6_cheat_sheet.txt ├── html5_cheat_sheet.pdf ├── jquery_cheat_sheet_1.3.2.pdf ├── reverse_shell_with_msfvenom.txt ├── sass.png ├── sass_functions.pdf └── sass_functions.txt ├── client_side └── signed_applet.java ├── crypto └── Crypto101.pdf ├── enumeration ├── active_information_gathering.md ├── configuration_management.md ├── dns_enumeration.md ├── file_enumeration.md ├── http_enumeration.md ├── information_gathering_owasp_guide.md ├── miniserv_webmin_enumeration.md ├── ms_sql_server_enumeration.md ├── nfs_enumeration.md ├── osint_recon_ng.md ├── passive_information_gathering.md ├── pop3_enumeration.md ├── rpc_enumeration.md ├── scanning.md ├── smb_enumeration.md ├── smtp_enumeration.md ├── snmb_enumeration.md ├── tools │ ├── host_list.sh │ ├── linenumv2.sh │ ├── mass.sh │ ├── recon_scan │ │ ├── dirbust.py │ │ ├── dnsrecon.py │ │ ├── finger-user-enum.pl │ │ ├── ftprecon.py │ │ ├── readme.txt │ │ ├── reconscan.py │ │ ├── samrdump.py │ │ ├── smbrecon.py │ │ ├── smtp-user-enum.pl │ │ ├── smtprecon.py │ │ ├── snmprecon.py │ │ └── sshrecon.py │ ├── reconscan.py │ └── remoterecon.py ├── vulnerability_scanning.md └── windows_enumeration.md ├── exploitation ├── 643-fixed ├── File_Transfers.md ├── Post-Exploitation.md ├── Public Exploits.md ├── computer_network_exploits.md ├── downloadproxy.ps1 ├── ftp-txt ├── jsp_processbuilder_shell.java ├── jspb64_shell.java ├── minimum_csharp_shell.java ├── nc_transfers.txt ├── openfuck.c ├── powershell_to_meterpreter.sh ├── reverse.ps1 ├── reverse_shell.py ├── reverse_shell_with_msfvenom.md ├── setuid.c ├── trans2open.c ├── useradd.c ├── wget-ps1 ├── wget-vbs └── wget.vbs ├── images ├── 33.png ├── 34.png ├── 35.png ├── 36.png ├── 37.png ├── 38.png ├── 39.png ├── 40.png ├── 41.png ├── 42.png ├── 43.png ├── 44.png ├── FDDI_Dual_Token_Ring.jpg ├── ICMP-Header.png ├── IP-Header-v6.png ├── IP-Header.png ├── TCP-Header.png ├── Token_ring.svg ├── UDP-Header.png ├── active_passive_ftp.png ├── arp.png ├── broadcast_addresses.png ├── cable_categories.png ├── cable_categories_2.png ├── cidr.png ├── common_ports.jpg ├── dns.png ├── dns_hierarchy.png ├── dns_security.png ├── encapsulation_decapcultations.png ├── fddi_basic2.gif ├── ftp.png ├── how_protocal_stacks_communicate.png ├── how_tcp_packets_are_created.png ├── icmp_header_2.png ├── inside_stack.png ├── ip6_addressing.png ├── ip6_features.png ├── ip6_vs_ip4.png ├── ip_osi.png ├── ip_v6_addressing.png ├── ipv6-ipv4-vs-ipv6-header.png ├── mac_ip_1.png ├── mac_ip_2.png ├── network_design.png ├── network_device.png ├── new_breed_of_swithces.png ├── osi_model.jpg ├── osi_tcp_models.png ├── osi_vs_tcp_ip.png ├── ping.png ├── ports_protocols.png ├── private_addresses.png ├── private_adresses.png ├── routing.png ├── subnet_classes.png ├── tcp.png ├── tcp_close_connection.png ├── tcp_connection.png ├── tcp_header_2.png ├── tcp_uses.png ├── tcp_vs_udp.png ├── traceroute.png ├── udp.png ├── udp_header_2.png ├── upd_uses.png └── vlan_nac.png ├── md_tree.sh ├── networking ├── bpf_syntax.md ├── networking_concept.md ├── nmap_quick_reference_guide.pdf └── tcpdump.pdf ├── os ├── kali_linux_commands.md ├── lunux_windows_commands.md ├── preparing_kali.md ├── preparing_windows.md └── useful_commands.md ├── oscp_resources ├── OSCP-Survival-Guide.md ├── jolly_frog.html └── oscp_course_layout.md ├── password_attack └── common_password_topologies.txt ├── port_forwarding └── nc_relays.txt ├── priv_escalation ├── Privilege_Escalation.md ├── Privledge_Logic_Transport.md ├── escalation_gathering.sh ├── windows_priv_escalation.md └── windows_priv_escalation_practical.md ├── scripts ├── cred_check.py ├── hash_check.py ├── sqldeli.py ├── string_decode.py └── xploit_installer.py ├── social_engineering ├── social_engineering.md └── tools │ └── scythe │ ├── README.md │ ├── accountfile.txt │ ├── documentation │ └── module_overview.md │ ├── license │ ├── logfile.txt │ ├── modules │ ├── blogs │ │ ├── blogspot_user.xml │ │ ├── delicious_user.xml │ │ ├── goodreads_user.xml │ │ ├── livejournal_user.xml │ │ ├── mahalo_user.xml │ │ ├── newsvine_user.xml │ │ ├── posterous_user.xml │ │ ├── resumebucket_user.xml │ │ ├── squidoo_user.xml │ │ ├── tumblr.com_email.xml │ │ ├── tumblr.com_username.xml │ │ └── wordpress.com.xml │ ├── commerce │ │ ├── ebay.com_user.xml │ │ ├── etsy_user.xml │ │ └── kaboodle_user.xml │ ├── development │ │ ├── github.com_email.xml │ │ └── github.com_user.xml │ ├── examples.xml │ ├── forums │ │ ├── backtrack_forum_username.xml │ │ ├── buzznet_user.xml │ │ ├── cafemom_user.xml │ │ ├── colourlovers_user.xml │ │ ├── deviantart_user.xml │ │ ├── epinions_user.xml │ │ ├── families_user.xml │ │ ├── fanpop_user.xml │ │ ├── instructables_user.xml │ │ └── wikipedia_user.xml │ ├── games │ │ ├── kongregate_user.xml │ │ └── xfire_user.xml │ ├── media │ │ ├── dailymotion_user.xml │ │ ├── flickr_user.xml │ │ ├── funnyordie_user.xml │ │ ├── hulu_user.xml │ │ ├── justintv_user.xml │ │ ├── lastfm_user.xml │ │ ├── photobucket_user.xml │ │ ├── soundcloud_user.xml │ │ ├── twitpic_user.xml │ │ ├── ustream_user.xml │ │ ├── vimeo_user.xml │ │ ├── yfrog_user.xml │ │ ├── youtube_user.xml │ │ └── zooomr_user.xml │ ├── social │ │ ├── badoo_user.xml │ │ ├── bitly_user.xml │ │ ├── cardcloud_user.xml │ │ ├── disqus_user.xml │ │ ├── facebook_email_phone.com.xml │ │ ├── flixster_user.xml │ │ ├── foursquare_user.xml │ │ ├── gather_user.xml │ │ ├── linkedin_user.xml │ │ ├── myspace_user.xml │ │ ├── reddit.com_username.xml │ │ ├── slideshare_user.xml │ │ ├── stumbleupon_user.xml │ │ ├── twitter.com_email_phone.xml │ │ ├── twitter.com_username.xml │ │ ├── wefollow_user.xml │ │ └── xing.com.xml │ └── webmail │ │ ├── gmail_user.xml │ │ ├── hushmail.xml │ │ └── yahoo_email.xml │ ├── scythe.ico │ ├── scythe.py │ ├── scythe_0.2.8.exe │ └── test.log ├── templates ├── PWKv1-REPORT.doc ├── linux-template.md ├── pwkv1_report.doc └── windows-template.md ├── useful_tricks.md ├── web_pentest ├── auxiliary_info.md ├── file_upload.md ├── scripts │ ├── dir_run_gobuster.sh │ ├── lfi_infile.py │ ├── sqli_timebased.py │ ├── xss_bmp_header.py │ └── xss_gif_header.py ├── sqli.md ├── sqli_cheatsheet.md ├── web_app_security.md ├── xss.json ├── xss.md ├── xss.png └── xss_actionscript └── wifi └── wifi_penetration_testing.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/README.md -------------------------------------------------------------------------------- /bookmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/bookmarks.md -------------------------------------------------------------------------------- /buffer_overflow/assembly/64_ia_32_jmp_instructions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/assembly/64_ia_32_jmp_instructions.pdf -------------------------------------------------------------------------------- /buffer_overflow/assembly/IntelCodeTable_x86.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/assembly/IntelCodeTable_x86.pdf -------------------------------------------------------------------------------- /buffer_overflow/assembly/Radare2 cheat sheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/assembly/Radare2 cheat sheet.txt -------------------------------------------------------------------------------- /buffer_overflow/assembly/course_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/assembly/course_notes.md -------------------------------------------------------------------------------- /buffer_overflow/assembly/debuging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/assembly/debuging.md -------------------------------------------------------------------------------- /buffer_overflow/assembly/images/0x80_interupt_system_calls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/assembly/images/0x80_interupt_system_calls.png -------------------------------------------------------------------------------- /buffer_overflow/assembly/images/IntelRegisters.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/assembly/images/IntelRegisters.gif -------------------------------------------------------------------------------- /buffer_overflow/assembly/images/cpu_modes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/assembly/images/cpu_modes.png -------------------------------------------------------------------------------- /buffer_overflow/assembly/images/general_purpose_registers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/assembly/images/general_purpose_registers.png -------------------------------------------------------------------------------- /buffer_overflow/assembly/images/linux_models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/assembly/images/linux_models.png -------------------------------------------------------------------------------- /buffer_overflow/assembly/images/memory_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/assembly/images/memory_arch.png -------------------------------------------------------------------------------- /buffer_overflow/assembly/images/memory_maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/assembly/images/memory_maps.png -------------------------------------------------------------------------------- /buffer_overflow/assembly/images/memory_models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/assembly/images/memory_models.png -------------------------------------------------------------------------------- /buffer_overflow/assembly/images/write_system_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/assembly/images/write_system_call.png -------------------------------------------------------------------------------- /buffer_overflow/assembly/x86_assembly_x86_architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/assembly/x86_assembly_x86_architecture.pdf -------------------------------------------------------------------------------- /buffer_overflow/assembly/x86_opcode_structure_and_instruction_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/assembly/x86_opcode_structure_and_instruction_overview.png -------------------------------------------------------------------------------- /buffer_overflow/buffer_overflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/buffer_overflows.md -------------------------------------------------------------------------------- /buffer_overflow/gdb_cheat_sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/gdb_cheat_sheet.pdf -------------------------------------------------------------------------------- /buffer_overflow/r2_cheatsheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/r2_cheatsheet.pdf -------------------------------------------------------------------------------- /buffer_overflow/scripts/bad_chars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/scripts/bad_chars.txt -------------------------------------------------------------------------------- /buffer_overflow/scripts/disable_linux_security.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/scripts/disable_linux_security.sh -------------------------------------------------------------------------------- /buffer_overflow/scripts/linux_bo_exploit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/scripts/linux_bo_exploit.rb -------------------------------------------------------------------------------- /buffer_overflow/scripts/linux_bo_poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/scripts/linux_bo_poc.py -------------------------------------------------------------------------------- /buffer_overflow/scripts/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/scripts/payload.py -------------------------------------------------------------------------------- /buffer_overflow/scripts/windows_bo_exploit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/scripts/windows_bo_exploit.rb -------------------------------------------------------------------------------- /buffer_overflow/scripts/windows_bo_fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/scripts/windows_bo_fuzzer.py -------------------------------------------------------------------------------- /buffer_overflow/win32_buffer_overflow_exploitation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/buffer_overflow/win32_buffer_overflow_exploitation.md -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_AIXBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_AIXBuild.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_AVBypass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_AVBypass.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_ApacheSSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_ApacheSSL.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_AttackingMSSQL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_AttackingMSSQL.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_BashScripting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_BashScripting.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_BuildReviews.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_BuildReviews.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_CTF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_CTF.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_CiscoIOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_CiscoIOS.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_CookieStealing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_CookieStealing.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_DomainAdminExploitation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_DomainAdminExploitation.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_ExploitDev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_ExploitDev.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_GDB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_GDB.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_GPG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_GPG.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_HTTPBasicAuth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_HTTPBasicAuth.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_IKEScan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_IKEScan.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_LinuxPrivilegeEsc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_LinuxPrivilegeEsc.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_LocalSamDump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_LocalSamDump.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_MSFPostExploitation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_MSFPostExploitation.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_Metasploit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_Metasploit.pdf -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_MetasploitPayloads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_MetasploitPayloads.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_MobileAppTesting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_MobileAppTesting.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_Networking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_Networking.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_OWASPCheckList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_OWASPCheckList.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_Oracle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_Oracle.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_PenTesting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_PenTesting.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_Pyinstaller.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_Pyinstaller.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_Python.pdf -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_Remediations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_Remediations.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_SMBCapture.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_SMBCapture.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_SMBEnumeration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_SMBEnumeration.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_SMTPOpenRelay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_SMTPOpenRelay.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_SQLInjection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_SQLInjection.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_SSLStrip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_SSLStrip.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_Solaris.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_Solaris.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_Tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_Tools.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_UsefulCommands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_UsefulCommands.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_VOIP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_VOIP.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_Vlans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_Vlans.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_VulnVerify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_VulnVerify.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_WindowsCommandLine.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_WindowsCommandLine.pdf -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_WirelessTesting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_WirelessTesting.txt -------------------------------------------------------------------------------- /cheatSheets/Cheatsheet_scp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/Cheatsheet_scp.txt -------------------------------------------------------------------------------- /cheatSheets/beginners_python_cheat_sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/beginners_python_cheat_sheet.pdf -------------------------------------------------------------------------------- /cheatSheets/complexity_cheatsheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/complexity_cheatsheet.pdf -------------------------------------------------------------------------------- /cheatSheets/egghead-react-cheat-sheet-0-14-7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/egghead-react-cheat-sheet-0-14-7.pdf -------------------------------------------------------------------------------- /cheatSheets/egghead-redux-cheat-sheet-3-2-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/egghead-redux-cheat-sheet-3-2-1.pdf -------------------------------------------------------------------------------- /cheatSheets/emmet_cheat_sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/emmet_cheat_sheet.pdf -------------------------------------------------------------------------------- /cheatSheets/es6_cheat_sheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/es6_cheat_sheet.txt -------------------------------------------------------------------------------- /cheatSheets/html5_cheat_sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/html5_cheat_sheet.pdf -------------------------------------------------------------------------------- /cheatSheets/jquery_cheat_sheet_1.3.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/jquery_cheat_sheet_1.3.2.pdf -------------------------------------------------------------------------------- /cheatSheets/reverse_shell_with_msfvenom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/reverse_shell_with_msfvenom.txt -------------------------------------------------------------------------------- /cheatSheets/sass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/sass.png -------------------------------------------------------------------------------- /cheatSheets/sass_functions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/sass_functions.pdf -------------------------------------------------------------------------------- /cheatSheets/sass_functions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/cheatSheets/sass_functions.txt -------------------------------------------------------------------------------- /client_side/signed_applet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/client_side/signed_applet.java -------------------------------------------------------------------------------- /crypto/Crypto101.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/crypto/Crypto101.pdf -------------------------------------------------------------------------------- /enumeration/active_information_gathering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/active_information_gathering.md -------------------------------------------------------------------------------- /enumeration/configuration_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/configuration_management.md -------------------------------------------------------------------------------- /enumeration/dns_enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/dns_enumeration.md -------------------------------------------------------------------------------- /enumeration/file_enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/file_enumeration.md -------------------------------------------------------------------------------- /enumeration/http_enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/http_enumeration.md -------------------------------------------------------------------------------- /enumeration/information_gathering_owasp_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/information_gathering_owasp_guide.md -------------------------------------------------------------------------------- /enumeration/miniserv_webmin_enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/miniserv_webmin_enumeration.md -------------------------------------------------------------------------------- /enumeration/ms_sql_server_enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/ms_sql_server_enumeration.md -------------------------------------------------------------------------------- /enumeration/nfs_enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/nfs_enumeration.md -------------------------------------------------------------------------------- /enumeration/osint_recon_ng.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/osint_recon_ng.md -------------------------------------------------------------------------------- /enumeration/passive_information_gathering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/passive_information_gathering.md -------------------------------------------------------------------------------- /enumeration/pop3_enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/pop3_enumeration.md -------------------------------------------------------------------------------- /enumeration/rpc_enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/rpc_enumeration.md -------------------------------------------------------------------------------- /enumeration/scanning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/scanning.md -------------------------------------------------------------------------------- /enumeration/smb_enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/smb_enumeration.md -------------------------------------------------------------------------------- /enumeration/smtp_enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/smtp_enumeration.md -------------------------------------------------------------------------------- /enumeration/snmb_enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/snmb_enumeration.md -------------------------------------------------------------------------------- /enumeration/tools/host_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/tools/host_list.sh -------------------------------------------------------------------------------- /enumeration/tools/linenumv2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/tools/linenumv2.sh -------------------------------------------------------------------------------- /enumeration/tools/mass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/tools/mass.sh -------------------------------------------------------------------------------- /enumeration/tools/recon_scan/dirbust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/tools/recon_scan/dirbust.py -------------------------------------------------------------------------------- /enumeration/tools/recon_scan/dnsrecon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/tools/recon_scan/dnsrecon.py -------------------------------------------------------------------------------- /enumeration/tools/recon_scan/finger-user-enum.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/tools/recon_scan/finger-user-enum.pl -------------------------------------------------------------------------------- /enumeration/tools/recon_scan/ftprecon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/tools/recon_scan/ftprecon.py -------------------------------------------------------------------------------- /enumeration/tools/recon_scan/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/tools/recon_scan/readme.txt -------------------------------------------------------------------------------- /enumeration/tools/recon_scan/reconscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/tools/recon_scan/reconscan.py -------------------------------------------------------------------------------- /enumeration/tools/recon_scan/samrdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/tools/recon_scan/samrdump.py -------------------------------------------------------------------------------- /enumeration/tools/recon_scan/smbrecon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/tools/recon_scan/smbrecon.py -------------------------------------------------------------------------------- /enumeration/tools/recon_scan/smtp-user-enum.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/tools/recon_scan/smtp-user-enum.pl -------------------------------------------------------------------------------- /enumeration/tools/recon_scan/smtprecon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/tools/recon_scan/smtprecon.py -------------------------------------------------------------------------------- /enumeration/tools/recon_scan/snmprecon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/tools/recon_scan/snmprecon.py -------------------------------------------------------------------------------- /enumeration/tools/recon_scan/sshrecon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/tools/recon_scan/sshrecon.py -------------------------------------------------------------------------------- /enumeration/tools/reconscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/tools/reconscan.py -------------------------------------------------------------------------------- /enumeration/tools/remoterecon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/tools/remoterecon.py -------------------------------------------------------------------------------- /enumeration/vulnerability_scanning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/vulnerability_scanning.md -------------------------------------------------------------------------------- /enumeration/windows_enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/enumeration/windows_enumeration.md -------------------------------------------------------------------------------- /exploitation/643-fixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/643-fixed -------------------------------------------------------------------------------- /exploitation/File_Transfers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/File_Transfers.md -------------------------------------------------------------------------------- /exploitation/Post-Exploitation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/Post-Exploitation.md -------------------------------------------------------------------------------- /exploitation/Public Exploits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/Public Exploits.md -------------------------------------------------------------------------------- /exploitation/computer_network_exploits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/computer_network_exploits.md -------------------------------------------------------------------------------- /exploitation/downloadproxy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/downloadproxy.ps1 -------------------------------------------------------------------------------- /exploitation/ftp-txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/ftp-txt -------------------------------------------------------------------------------- /exploitation/jsp_processbuilder_shell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/jsp_processbuilder_shell.java -------------------------------------------------------------------------------- /exploitation/jspb64_shell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/jspb64_shell.java -------------------------------------------------------------------------------- /exploitation/minimum_csharp_shell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/minimum_csharp_shell.java -------------------------------------------------------------------------------- /exploitation/nc_transfers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/nc_transfers.txt -------------------------------------------------------------------------------- /exploitation/openfuck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/openfuck.c -------------------------------------------------------------------------------- /exploitation/powershell_to_meterpreter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/powershell_to_meterpreter.sh -------------------------------------------------------------------------------- /exploitation/reverse.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/reverse.ps1 -------------------------------------------------------------------------------- /exploitation/reverse_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/reverse_shell.py -------------------------------------------------------------------------------- /exploitation/reverse_shell_with_msfvenom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/reverse_shell_with_msfvenom.md -------------------------------------------------------------------------------- /exploitation/setuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/setuid.c -------------------------------------------------------------------------------- /exploitation/trans2open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/trans2open.c -------------------------------------------------------------------------------- /exploitation/useradd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/useradd.c -------------------------------------------------------------------------------- /exploitation/wget-ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/wget-ps1 -------------------------------------------------------------------------------- /exploitation/wget-vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/wget-vbs -------------------------------------------------------------------------------- /exploitation/wget.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/exploitation/wget.vbs -------------------------------------------------------------------------------- /images/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/33.png -------------------------------------------------------------------------------- /images/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/34.png -------------------------------------------------------------------------------- /images/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/35.png -------------------------------------------------------------------------------- /images/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/36.png -------------------------------------------------------------------------------- /images/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/37.png -------------------------------------------------------------------------------- /images/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/38.png -------------------------------------------------------------------------------- /images/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/39.png -------------------------------------------------------------------------------- /images/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/40.png -------------------------------------------------------------------------------- /images/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/41.png -------------------------------------------------------------------------------- /images/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/42.png -------------------------------------------------------------------------------- /images/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/43.png -------------------------------------------------------------------------------- /images/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/44.png -------------------------------------------------------------------------------- /images/FDDI_Dual_Token_Ring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/FDDI_Dual_Token_Ring.jpg -------------------------------------------------------------------------------- /images/ICMP-Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/ICMP-Header.png -------------------------------------------------------------------------------- /images/IP-Header-v6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/IP-Header-v6.png -------------------------------------------------------------------------------- /images/IP-Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/IP-Header.png -------------------------------------------------------------------------------- /images/TCP-Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/TCP-Header.png -------------------------------------------------------------------------------- /images/Token_ring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/Token_ring.svg -------------------------------------------------------------------------------- /images/UDP-Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/UDP-Header.png -------------------------------------------------------------------------------- /images/active_passive_ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/active_passive_ftp.png -------------------------------------------------------------------------------- /images/arp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/arp.png -------------------------------------------------------------------------------- /images/broadcast_addresses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/broadcast_addresses.png -------------------------------------------------------------------------------- /images/cable_categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/cable_categories.png -------------------------------------------------------------------------------- /images/cable_categories_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/cable_categories_2.png -------------------------------------------------------------------------------- /images/cidr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/cidr.png -------------------------------------------------------------------------------- /images/common_ports.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/common_ports.jpg -------------------------------------------------------------------------------- /images/dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/dns.png -------------------------------------------------------------------------------- /images/dns_hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/dns_hierarchy.png -------------------------------------------------------------------------------- /images/dns_security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/dns_security.png -------------------------------------------------------------------------------- /images/encapsulation_decapcultations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/encapsulation_decapcultations.png -------------------------------------------------------------------------------- /images/fddi_basic2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/fddi_basic2.gif -------------------------------------------------------------------------------- /images/ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/ftp.png -------------------------------------------------------------------------------- /images/how_protocal_stacks_communicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/how_protocal_stacks_communicate.png -------------------------------------------------------------------------------- /images/how_tcp_packets_are_created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/how_tcp_packets_are_created.png -------------------------------------------------------------------------------- /images/icmp_header_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/icmp_header_2.png -------------------------------------------------------------------------------- /images/inside_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/inside_stack.png -------------------------------------------------------------------------------- /images/ip6_addressing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/ip6_addressing.png -------------------------------------------------------------------------------- /images/ip6_features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/ip6_features.png -------------------------------------------------------------------------------- /images/ip6_vs_ip4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/ip6_vs_ip4.png -------------------------------------------------------------------------------- /images/ip_osi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/ip_osi.png -------------------------------------------------------------------------------- /images/ip_v6_addressing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/ip_v6_addressing.png -------------------------------------------------------------------------------- /images/ipv6-ipv4-vs-ipv6-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/ipv6-ipv4-vs-ipv6-header.png -------------------------------------------------------------------------------- /images/mac_ip_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/mac_ip_1.png -------------------------------------------------------------------------------- /images/mac_ip_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/mac_ip_2.png -------------------------------------------------------------------------------- /images/network_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/network_design.png -------------------------------------------------------------------------------- /images/network_device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/network_device.png -------------------------------------------------------------------------------- /images/new_breed_of_swithces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/new_breed_of_swithces.png -------------------------------------------------------------------------------- /images/osi_model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/osi_model.jpg -------------------------------------------------------------------------------- /images/osi_tcp_models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/osi_tcp_models.png -------------------------------------------------------------------------------- /images/osi_vs_tcp_ip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/osi_vs_tcp_ip.png -------------------------------------------------------------------------------- /images/ping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/ping.png -------------------------------------------------------------------------------- /images/ports_protocols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/ports_protocols.png -------------------------------------------------------------------------------- /images/private_addresses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/private_addresses.png -------------------------------------------------------------------------------- /images/private_adresses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/private_adresses.png -------------------------------------------------------------------------------- /images/routing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/routing.png -------------------------------------------------------------------------------- /images/subnet_classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/subnet_classes.png -------------------------------------------------------------------------------- /images/tcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/tcp.png -------------------------------------------------------------------------------- /images/tcp_close_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/tcp_close_connection.png -------------------------------------------------------------------------------- /images/tcp_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/tcp_connection.png -------------------------------------------------------------------------------- /images/tcp_header_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/tcp_header_2.png -------------------------------------------------------------------------------- /images/tcp_uses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/tcp_uses.png -------------------------------------------------------------------------------- /images/tcp_vs_udp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/tcp_vs_udp.png -------------------------------------------------------------------------------- /images/traceroute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/traceroute.png -------------------------------------------------------------------------------- /images/udp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/udp.png -------------------------------------------------------------------------------- /images/udp_header_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/udp_header_2.png -------------------------------------------------------------------------------- /images/upd_uses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/upd_uses.png -------------------------------------------------------------------------------- /images/vlan_nac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/images/vlan_nac.png -------------------------------------------------------------------------------- /md_tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/md_tree.sh -------------------------------------------------------------------------------- /networking/bpf_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/networking/bpf_syntax.md -------------------------------------------------------------------------------- /networking/networking_concept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/networking/networking_concept.md -------------------------------------------------------------------------------- /networking/nmap_quick_reference_guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/networking/nmap_quick_reference_guide.pdf -------------------------------------------------------------------------------- /networking/tcpdump.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/networking/tcpdump.pdf -------------------------------------------------------------------------------- /os/kali_linux_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/os/kali_linux_commands.md -------------------------------------------------------------------------------- /os/lunux_windows_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/os/lunux_windows_commands.md -------------------------------------------------------------------------------- /os/preparing_kali.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/os/preparing_kali.md -------------------------------------------------------------------------------- /os/preparing_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/os/preparing_windows.md -------------------------------------------------------------------------------- /os/useful_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/os/useful_commands.md -------------------------------------------------------------------------------- /oscp_resources/OSCP-Survival-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/oscp_resources/OSCP-Survival-Guide.md -------------------------------------------------------------------------------- /oscp_resources/jolly_frog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/oscp_resources/jolly_frog.html -------------------------------------------------------------------------------- /oscp_resources/oscp_course_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/oscp_resources/oscp_course_layout.md -------------------------------------------------------------------------------- /password_attack/common_password_topologies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/password_attack/common_password_topologies.txt -------------------------------------------------------------------------------- /port_forwarding/nc_relays.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/port_forwarding/nc_relays.txt -------------------------------------------------------------------------------- /priv_escalation/Privilege_Escalation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/priv_escalation/Privilege_Escalation.md -------------------------------------------------------------------------------- /priv_escalation/Privledge_Logic_Transport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/priv_escalation/Privledge_Logic_Transport.md -------------------------------------------------------------------------------- /priv_escalation/escalation_gathering.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/priv_escalation/escalation_gathering.sh -------------------------------------------------------------------------------- /priv_escalation/windows_priv_escalation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/priv_escalation/windows_priv_escalation.md -------------------------------------------------------------------------------- /priv_escalation/windows_priv_escalation_practical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/priv_escalation/windows_priv_escalation_practical.md -------------------------------------------------------------------------------- /scripts/cred_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/scripts/cred_check.py -------------------------------------------------------------------------------- /scripts/hash_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/scripts/hash_check.py -------------------------------------------------------------------------------- /scripts/sqldeli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/scripts/sqldeli.py -------------------------------------------------------------------------------- /scripts/string_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/scripts/string_decode.py -------------------------------------------------------------------------------- /scripts/xploit_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/scripts/xploit_installer.py -------------------------------------------------------------------------------- /social_engineering/social_engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/social_engineering.md -------------------------------------------------------------------------------- /social_engineering/tools/scythe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/README.md -------------------------------------------------------------------------------- /social_engineering/tools/scythe/accountfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/accountfile.txt -------------------------------------------------------------------------------- /social_engineering/tools/scythe/documentation/module_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/documentation/module_overview.md -------------------------------------------------------------------------------- /social_engineering/tools/scythe/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/license -------------------------------------------------------------------------------- /social_engineering/tools/scythe/logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/logfile.txt -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/blogs/blogspot_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/blogs/blogspot_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/blogs/delicious_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/blogs/delicious_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/blogs/goodreads_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/blogs/goodreads_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/blogs/livejournal_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/blogs/livejournal_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/blogs/mahalo_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/blogs/mahalo_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/blogs/newsvine_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/blogs/newsvine_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/blogs/posterous_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/blogs/posterous_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/blogs/resumebucket_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/blogs/resumebucket_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/blogs/squidoo_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/blogs/squidoo_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/blogs/tumblr.com_email.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/blogs/tumblr.com_email.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/blogs/tumblr.com_username.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/blogs/tumblr.com_username.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/blogs/wordpress.com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/blogs/wordpress.com.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/commerce/ebay.com_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/commerce/ebay.com_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/commerce/etsy_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/commerce/etsy_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/commerce/kaboodle_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/commerce/kaboodle_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/development/github.com_email.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/development/github.com_email.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/development/github.com_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/development/github.com_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/examples.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/forums/backtrack_forum_username.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/forums/backtrack_forum_username.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/forums/buzznet_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/forums/buzznet_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/forums/cafemom_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/forums/cafemom_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/forums/colourlovers_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/forums/colourlovers_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/forums/deviantart_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/forums/deviantart_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/forums/epinions_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/forums/epinions_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/forums/families_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/forums/families_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/forums/fanpop_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/forums/fanpop_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/forums/instructables_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/forums/instructables_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/forums/wikipedia_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/forums/wikipedia_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/games/kongregate_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/games/kongregate_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/games/xfire_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/games/xfire_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/media/dailymotion_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/media/dailymotion_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/media/flickr_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/media/flickr_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/media/funnyordie_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/media/funnyordie_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/media/hulu_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/media/hulu_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/media/justintv_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/media/justintv_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/media/lastfm_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/media/lastfm_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/media/photobucket_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/media/photobucket_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/media/soundcloud_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/media/soundcloud_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/media/twitpic_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/media/twitpic_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/media/ustream_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/media/ustream_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/media/vimeo_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/media/vimeo_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/media/yfrog_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/media/yfrog_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/media/youtube_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/media/youtube_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/media/zooomr_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/media/zooomr_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/social/badoo_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/social/badoo_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/social/bitly_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/social/bitly_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/social/cardcloud_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/social/cardcloud_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/social/disqus_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/social/disqus_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/social/facebook_email_phone.com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/social/facebook_email_phone.com.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/social/flixster_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/social/flixster_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/social/foursquare_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/social/foursquare_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/social/gather_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/social/gather_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/social/linkedin_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/social/linkedin_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/social/myspace_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/social/myspace_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/social/reddit.com_username.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/social/reddit.com_username.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/social/slideshare_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/social/slideshare_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/social/stumbleupon_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/social/stumbleupon_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/social/twitter.com_email_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/social/twitter.com_email_phone.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/social/twitter.com_username.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/social/twitter.com_username.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/social/wefollow_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/social/wefollow_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/social/xing.com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/social/xing.com.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/webmail/gmail_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/webmail/gmail_user.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/webmail/hushmail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/webmail/hushmail.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/modules/webmail/yahoo_email.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/modules/webmail/yahoo_email.xml -------------------------------------------------------------------------------- /social_engineering/tools/scythe/scythe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/scythe.ico -------------------------------------------------------------------------------- /social_engineering/tools/scythe/scythe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/scythe.py -------------------------------------------------------------------------------- /social_engineering/tools/scythe/scythe_0.2.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/scythe_0.2.8.exe -------------------------------------------------------------------------------- /social_engineering/tools/scythe/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/social_engineering/tools/scythe/test.log -------------------------------------------------------------------------------- /templates/PWKv1-REPORT.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/templates/PWKv1-REPORT.doc -------------------------------------------------------------------------------- /templates/linux-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/templates/linux-template.md -------------------------------------------------------------------------------- /templates/pwkv1_report.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/templates/pwkv1_report.doc -------------------------------------------------------------------------------- /templates/windows-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/templates/windows-template.md -------------------------------------------------------------------------------- /useful_tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/useful_tricks.md -------------------------------------------------------------------------------- /web_pentest/auxiliary_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/web_pentest/auxiliary_info.md -------------------------------------------------------------------------------- /web_pentest/file_upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/web_pentest/file_upload.md -------------------------------------------------------------------------------- /web_pentest/scripts/dir_run_gobuster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/web_pentest/scripts/dir_run_gobuster.sh -------------------------------------------------------------------------------- /web_pentest/scripts/lfi_infile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/web_pentest/scripts/lfi_infile.py -------------------------------------------------------------------------------- /web_pentest/scripts/sqli_timebased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/web_pentest/scripts/sqli_timebased.py -------------------------------------------------------------------------------- /web_pentest/scripts/xss_bmp_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/web_pentest/scripts/xss_bmp_header.py -------------------------------------------------------------------------------- /web_pentest/scripts/xss_gif_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/web_pentest/scripts/xss_gif_header.py -------------------------------------------------------------------------------- /web_pentest/sqli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/web_pentest/sqli.md -------------------------------------------------------------------------------- /web_pentest/sqli_cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/web_pentest/sqli_cheatsheet.md -------------------------------------------------------------------------------- /web_pentest/web_app_security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/web_pentest/web_app_security.md -------------------------------------------------------------------------------- /web_pentest/xss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/web_pentest/xss.json -------------------------------------------------------------------------------- /web_pentest/xss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/web_pentest/xss.md -------------------------------------------------------------------------------- /web_pentest/xss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/web_pentest/xss.png -------------------------------------------------------------------------------- /web_pentest/xss_actionscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/web_pentest/xss_actionscript -------------------------------------------------------------------------------- /wifi/wifi_penetration_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muckitymuck/OSCP-Study-Guide/HEAD/wifi/wifi_penetration_testing.md --------------------------------------------------------------------------------