├── 1.Information-Gathering ├── How-to-gather-Whois-Information-Gathering.md ├── How-to-gather-dns-information.md ├── Linux │ └── README.md ├── README.md └── Windows │ └── README.md ├── 2.Vulnerability-Assessment ├── Android-Assessment │ └── README.md ├── Database-Assessment │ ├── mongodb │ │ ├── MongoDB Pentesting for Absolute Beginners.pdf │ │ ├── MongoDB_Lab.zip │ │ └── mongodb_hacking.md │ ├── mysql │ │ └── README.md │ ├── postgresql │ │ └── postgresql_hacking.md │ └── sqlite │ │ ├── curl_hacking.md │ │ └── sqlite_hacking.md ├── Network-Assessment │ ├── Fuzzers │ │ └── sulley │ │ │ └── fuzz_PCManftpd32.py │ └── Jenkins │ │ ├── Jenkins_hacking.md │ │ ├── execmd.groovy │ │ └── writefile.groovy ├── OS-Assessment │ └── OSX │ │ └── README.md └── README.md ├── 3.Exploitation-Tools ├── Network-Exploitation │ └── ports_number.md └── README.md ├── 4.Post-Exploitation ├── How-to-hack-Cisco-ASA-with-CVE-2016-6366.md ├── README.md └── Windows_ActiveDirectory │ ├── Execute_metasploit_vbs_payload_in_cmd_shell.md │ ├── Hacking_Windows_Active_Directory.md │ ├── How-to-dump-windows2012-credentials.md │ ├── How-to-use-vssadmin.md │ ├── PowerSploit_Invoke-Mimikatz_in_cmd.md │ ├── Windows_AD_commands.md │ ├── msf-download-execute-vbs-payload.png │ ├── msf-execute-vbs-payload.png │ ├── us-15-Metcalf-Red-Vs-Blue-Modern-Active-Directory-Attacks-Detection-And-Protection-wp.pdf │ ├── us-15-Metcalf-Red-Vs-Blue-Modern-Active-Directory-Attacks-Detection-And-Protection.pdf │ └── windows-2012-lsass-dump.png ├── 5.Privilege-Escalation └── README.md ├── 6.Maintaining-Access └── README.md ├── 7.Reporting ├── README.md └── amanhardikar-keepnote │ ├── knextinfra.zip │ ├── knwebapps.zip │ └── knwireless.zip ├── Books └── README.md ├── CTFS ├── Flick │ └── README.md ├── Nebula │ ├── README.md │ ├── level00.md │ ├── level01.md │ ├── level02.md │ ├── level03.md │ ├── level04.md │ ├── level05.md │ ├── level06.md │ ├── level07.md │ ├── level08.md │ ├── level09.md │ ├── level10.md │ ├── level11.md │ ├── level12.md │ ├── level13.md │ ├── level14.md │ ├── level15.md │ ├── level16.md │ ├── level17.md │ ├── level17.py │ ├── level18.md │ └── level19.md ├── NullByte │ └── NullByte-1.md └── README.md ├── Information-Security-Conferences └── README.md ├── LICENSE ├── README.md ├── Reverse-Engineering ├── IDA │ ├── Background_Analysis.md │ ├── Command_line_swithes.md │ ├── IDA-command-line-options.png │ ├── Instant_debugger.md │ ├── Main_Idea.md │ ├── Plugin_Options.md │ ├── The_Names_Windows.md │ └── TiGa-vid1_reverseMe │ │ ├── Keyfile.dat │ │ ├── TiGa-vid1_reverseMe.exe │ │ └── TiGa-vid1_reverseMe.idb ├── Reverse_Engineering_for_Beginners-en.pdf └── The.IDA.Pro.Book.2nd.Edition.Jun.2011.pdf └── System-Services ├── README.md └── services ├── service-ftp.md └── twisted-ftp.md /1.Information-Gathering/How-to-gather-Whois-Information-Gathering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/1.Information-Gathering/How-to-gather-Whois-Information-Gathering.md -------------------------------------------------------------------------------- /1.Information-Gathering/How-to-gather-dns-information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/1.Information-Gathering/How-to-gather-dns-information.md -------------------------------------------------------------------------------- /1.Information-Gathering/Linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/1.Information-Gathering/Linux/README.md -------------------------------------------------------------------------------- /1.Information-Gathering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/1.Information-Gathering/README.md -------------------------------------------------------------------------------- /1.Information-Gathering/Windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/1.Information-Gathering/Windows/README.md -------------------------------------------------------------------------------- /2.Vulnerability-Assessment/Android-Assessment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/2.Vulnerability-Assessment/Android-Assessment/README.md -------------------------------------------------------------------------------- /2.Vulnerability-Assessment/Database-Assessment/mongodb/MongoDB Pentesting for Absolute Beginners.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/2.Vulnerability-Assessment/Database-Assessment/mongodb/MongoDB Pentesting for Absolute Beginners.pdf -------------------------------------------------------------------------------- /2.Vulnerability-Assessment/Database-Assessment/mongodb/MongoDB_Lab.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/2.Vulnerability-Assessment/Database-Assessment/mongodb/MongoDB_Lab.zip -------------------------------------------------------------------------------- /2.Vulnerability-Assessment/Database-Assessment/mongodb/mongodb_hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/2.Vulnerability-Assessment/Database-Assessment/mongodb/mongodb_hacking.md -------------------------------------------------------------------------------- /2.Vulnerability-Assessment/Database-Assessment/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/2.Vulnerability-Assessment/Database-Assessment/mysql/README.md -------------------------------------------------------------------------------- /2.Vulnerability-Assessment/Database-Assessment/postgresql/postgresql_hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/2.Vulnerability-Assessment/Database-Assessment/postgresql/postgresql_hacking.md -------------------------------------------------------------------------------- /2.Vulnerability-Assessment/Database-Assessment/sqlite/curl_hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/2.Vulnerability-Assessment/Database-Assessment/sqlite/curl_hacking.md -------------------------------------------------------------------------------- /2.Vulnerability-Assessment/Database-Assessment/sqlite/sqlite_hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/2.Vulnerability-Assessment/Database-Assessment/sqlite/sqlite_hacking.md -------------------------------------------------------------------------------- /2.Vulnerability-Assessment/Network-Assessment/Fuzzers/sulley/fuzz_PCManftpd32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/2.Vulnerability-Assessment/Network-Assessment/Fuzzers/sulley/fuzz_PCManftpd32.py -------------------------------------------------------------------------------- /2.Vulnerability-Assessment/Network-Assessment/Jenkins/Jenkins_hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/2.Vulnerability-Assessment/Network-Assessment/Jenkins/Jenkins_hacking.md -------------------------------------------------------------------------------- /2.Vulnerability-Assessment/Network-Assessment/Jenkins/execmd.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/2.Vulnerability-Assessment/Network-Assessment/Jenkins/execmd.groovy -------------------------------------------------------------------------------- /2.Vulnerability-Assessment/Network-Assessment/Jenkins/writefile.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/2.Vulnerability-Assessment/Network-Assessment/Jenkins/writefile.groovy -------------------------------------------------------------------------------- /2.Vulnerability-Assessment/OS-Assessment/OSX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/2.Vulnerability-Assessment/OS-Assessment/OSX/README.md -------------------------------------------------------------------------------- /2.Vulnerability-Assessment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/2.Vulnerability-Assessment/README.md -------------------------------------------------------------------------------- /3.Exploitation-Tools/Network-Exploitation/ports_number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/3.Exploitation-Tools/Network-Exploitation/ports_number.md -------------------------------------------------------------------------------- /3.Exploitation-Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/3.Exploitation-Tools/README.md -------------------------------------------------------------------------------- /4.Post-Exploitation/How-to-hack-Cisco-ASA-with-CVE-2016-6366.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/4.Post-Exploitation/How-to-hack-Cisco-ASA-with-CVE-2016-6366.md -------------------------------------------------------------------------------- /4.Post-Exploitation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/4.Post-Exploitation/README.md -------------------------------------------------------------------------------- /4.Post-Exploitation/Windows_ActiveDirectory/Execute_metasploit_vbs_payload_in_cmd_shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/4.Post-Exploitation/Windows_ActiveDirectory/Execute_metasploit_vbs_payload_in_cmd_shell.md -------------------------------------------------------------------------------- /4.Post-Exploitation/Windows_ActiveDirectory/Hacking_Windows_Active_Directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/4.Post-Exploitation/Windows_ActiveDirectory/Hacking_Windows_Active_Directory.md -------------------------------------------------------------------------------- /4.Post-Exploitation/Windows_ActiveDirectory/How-to-dump-windows2012-credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/4.Post-Exploitation/Windows_ActiveDirectory/How-to-dump-windows2012-credentials.md -------------------------------------------------------------------------------- /4.Post-Exploitation/Windows_ActiveDirectory/How-to-use-vssadmin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/4.Post-Exploitation/Windows_ActiveDirectory/How-to-use-vssadmin.md -------------------------------------------------------------------------------- /4.Post-Exploitation/Windows_ActiveDirectory/PowerSploit_Invoke-Mimikatz_in_cmd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/4.Post-Exploitation/Windows_ActiveDirectory/PowerSploit_Invoke-Mimikatz_in_cmd.md -------------------------------------------------------------------------------- /4.Post-Exploitation/Windows_ActiveDirectory/Windows_AD_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/4.Post-Exploitation/Windows_ActiveDirectory/Windows_AD_commands.md -------------------------------------------------------------------------------- /4.Post-Exploitation/Windows_ActiveDirectory/msf-download-execute-vbs-payload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/4.Post-Exploitation/Windows_ActiveDirectory/msf-download-execute-vbs-payload.png -------------------------------------------------------------------------------- /4.Post-Exploitation/Windows_ActiveDirectory/msf-execute-vbs-payload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/4.Post-Exploitation/Windows_ActiveDirectory/msf-execute-vbs-payload.png -------------------------------------------------------------------------------- /4.Post-Exploitation/Windows_ActiveDirectory/us-15-Metcalf-Red-Vs-Blue-Modern-Active-Directory-Attacks-Detection-And-Protection-wp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/4.Post-Exploitation/Windows_ActiveDirectory/us-15-Metcalf-Red-Vs-Blue-Modern-Active-Directory-Attacks-Detection-And-Protection-wp.pdf -------------------------------------------------------------------------------- /4.Post-Exploitation/Windows_ActiveDirectory/us-15-Metcalf-Red-Vs-Blue-Modern-Active-Directory-Attacks-Detection-And-Protection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/4.Post-Exploitation/Windows_ActiveDirectory/us-15-Metcalf-Red-Vs-Blue-Modern-Active-Directory-Attacks-Detection-And-Protection.pdf -------------------------------------------------------------------------------- /4.Post-Exploitation/Windows_ActiveDirectory/windows-2012-lsass-dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/4.Post-Exploitation/Windows_ActiveDirectory/windows-2012-lsass-dump.png -------------------------------------------------------------------------------- /5.Privilege-Escalation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/5.Privilege-Escalation/README.md -------------------------------------------------------------------------------- /6.Maintaining-Access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/6.Maintaining-Access/README.md -------------------------------------------------------------------------------- /7.Reporting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/7.Reporting/README.md -------------------------------------------------------------------------------- /7.Reporting/amanhardikar-keepnote/knextinfra.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/7.Reporting/amanhardikar-keepnote/knextinfra.zip -------------------------------------------------------------------------------- /7.Reporting/amanhardikar-keepnote/knwebapps.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/7.Reporting/amanhardikar-keepnote/knwebapps.zip -------------------------------------------------------------------------------- /7.Reporting/amanhardikar-keepnote/knwireless.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/7.Reporting/amanhardikar-keepnote/knwireless.zip -------------------------------------------------------------------------------- /Books/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/Books/README.md -------------------------------------------------------------------------------- /CTFS/Flick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Flick/README.md -------------------------------------------------------------------------------- /CTFS/Nebula/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/README.md -------------------------------------------------------------------------------- /CTFS/Nebula/level00.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level00.md -------------------------------------------------------------------------------- /CTFS/Nebula/level01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level01.md -------------------------------------------------------------------------------- /CTFS/Nebula/level02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level02.md -------------------------------------------------------------------------------- /CTFS/Nebula/level03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level03.md -------------------------------------------------------------------------------- /CTFS/Nebula/level04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level04.md -------------------------------------------------------------------------------- /CTFS/Nebula/level05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level05.md -------------------------------------------------------------------------------- /CTFS/Nebula/level06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level06.md -------------------------------------------------------------------------------- /CTFS/Nebula/level07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level07.md -------------------------------------------------------------------------------- /CTFS/Nebula/level08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level08.md -------------------------------------------------------------------------------- /CTFS/Nebula/level09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level09.md -------------------------------------------------------------------------------- /CTFS/Nebula/level10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level10.md -------------------------------------------------------------------------------- /CTFS/Nebula/level11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level11.md -------------------------------------------------------------------------------- /CTFS/Nebula/level12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level12.md -------------------------------------------------------------------------------- /CTFS/Nebula/level13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level13.md -------------------------------------------------------------------------------- /CTFS/Nebula/level14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level14.md -------------------------------------------------------------------------------- /CTFS/Nebula/level15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level15.md -------------------------------------------------------------------------------- /CTFS/Nebula/level16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level16.md -------------------------------------------------------------------------------- /CTFS/Nebula/level17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level17.md -------------------------------------------------------------------------------- /CTFS/Nebula/level17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level17.py -------------------------------------------------------------------------------- /CTFS/Nebula/level18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level18.md -------------------------------------------------------------------------------- /CTFS/Nebula/level19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/Nebula/level19.md -------------------------------------------------------------------------------- /CTFS/NullByte/NullByte-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/NullByte/NullByte-1.md -------------------------------------------------------------------------------- /CTFS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/CTFS/README.md -------------------------------------------------------------------------------- /Information-Security-Conferences/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/Information-Security-Conferences/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/README.md -------------------------------------------------------------------------------- /Reverse-Engineering/IDA/Background_Analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/Reverse-Engineering/IDA/Background_Analysis.md -------------------------------------------------------------------------------- /Reverse-Engineering/IDA/Command_line_swithes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/Reverse-Engineering/IDA/Command_line_swithes.md -------------------------------------------------------------------------------- /Reverse-Engineering/IDA/IDA-command-line-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/Reverse-Engineering/IDA/IDA-command-line-options.png -------------------------------------------------------------------------------- /Reverse-Engineering/IDA/Instant_debugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/Reverse-Engineering/IDA/Instant_debugger.md -------------------------------------------------------------------------------- /Reverse-Engineering/IDA/Main_Idea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/Reverse-Engineering/IDA/Main_Idea.md -------------------------------------------------------------------------------- /Reverse-Engineering/IDA/Plugin_Options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/Reverse-Engineering/IDA/Plugin_Options.md -------------------------------------------------------------------------------- /Reverse-Engineering/IDA/The_Names_Windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/Reverse-Engineering/IDA/The_Names_Windows.md -------------------------------------------------------------------------------- /Reverse-Engineering/IDA/TiGa-vid1_reverseMe/Keyfile.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/Reverse-Engineering/IDA/TiGa-vid1_reverseMe/Keyfile.dat -------------------------------------------------------------------------------- /Reverse-Engineering/IDA/TiGa-vid1_reverseMe/TiGa-vid1_reverseMe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/Reverse-Engineering/IDA/TiGa-vid1_reverseMe/TiGa-vid1_reverseMe.exe -------------------------------------------------------------------------------- /Reverse-Engineering/IDA/TiGa-vid1_reverseMe/TiGa-vid1_reverseMe.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/Reverse-Engineering/IDA/TiGa-vid1_reverseMe/TiGa-vid1_reverseMe.idb -------------------------------------------------------------------------------- /Reverse-Engineering/Reverse_Engineering_for_Beginners-en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/Reverse-Engineering/Reverse_Engineering_for_Beginners-en.pdf -------------------------------------------------------------------------------- /Reverse-Engineering/The.IDA.Pro.Book.2nd.Edition.Jun.2011.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/Reverse-Engineering/The.IDA.Pro.Book.2nd.Edition.Jun.2011.pdf -------------------------------------------------------------------------------- /System-Services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/System-Services/README.md -------------------------------------------------------------------------------- /System-Services/services/service-ftp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/System-Services/services/service-ftp.md -------------------------------------------------------------------------------- /System-Services/services/twisted-ftp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixawk/pentest-wiki/HEAD/System-Services/services/twisted-ftp.md --------------------------------------------------------------------------------