├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | ab-results* 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | dist: trusty 3 | rvm: 4 | - 2.2 5 | before_script: 6 | - gem install awesome_bot 7 | - wget 'https://mkcert.org/generate/' -O bundle.pem 8 | - wget 'http://cdp.pca.dfn.de/global-root-ca/pub/cacert/cacert.pem' -O dfn.pem 9 | - wget 'http://cdp.pca.dfn.de/uni-potsdam-ca/pub/cacert/cacert.pem' -O potsdam.pem 10 | - cat bundle.pem dfn.pem potsdam.pem > /tmp/bundle.pem 11 | script: 12 | - SSL_CERT_FILE="/tmp/bundle.pem" awesome_bot README.md --allow-redirect --white-list "www.0day.today,mvfjfugdwgc5uwho.onion,creativecommons.org,zoomeye.org,netsparker.com" 13 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | **Your pull request should have a useful title. Please carefully read everything in [Adding to this list](#adding-to-this-list).** 4 | 5 | ## Table of Contents 6 | 7 | * [Adding to this list](#adding-to-this-list) 8 | * [Creating your own awesome list](#creating-your-own-awesome-list) 9 | * [Adding something to an awesome list](#adding-something-to-an-awesome-list) 10 | * [Updating your Pull Request](#updating-your-pull-request) 11 | 12 | ## Adding to this list 13 | 14 | Please ensure your pull request adheres to the following guidelines: 15 | 16 | * Search previous suggestions before making a new one, as yours may be a duplicate. 17 | * Make sure the item you are adding is useful (and, you know, awesome) before submitting. 18 | * Make an individual pull request for each suggestion. 19 | * Use [title-casing](http://titlecapitalization.com) (AP style). 20 | * Use the following format: `[Item Name](link)` 21 | * Link additions should be added to the bottom of the relevant category. 22 | * New categories or improvements to the existing categorization are welcome. 23 | * Check your spelling and grammar. 24 | * Make sure your text editor is set to remove trailing whitespace. 25 | * The pull request and commit should have a useful title. 26 | * The body of your commit message should contain a link to the repository. 27 | 28 | Thank you for your suggestions! 29 | 30 | ## Adding something to an awesome list 31 | 32 | If you have something awesome to contribute to an awesome list, this is how you do it. 33 | 34 | You'll need a [GitHub account](https://github.com/join)! 35 | 36 | 1. Access the awesome list's GitHub page. For example: https://github.com/sindresorhus/awesome 37 | 2. Click on the `readme.md` file: ![Step 2 Click on Readme.md](https://cloud.githubusercontent.com/assets/170270/9402920/53a7e3ea-480c-11e5-9d81-aecf64be55eb.png) 38 | 3. Now click on the edit icon. ![Step 3 - Click on Edit](https://cloud.githubusercontent.com/assets/170270/9402927/6506af22-480c-11e5-8c18-7ea823530099.png) 39 | 4. You can start editing the text of the file in the in-browser editor. Make sure you follow guidelines above. You can use [GitHub Flavored Markdown](https://help.github.com/articles/github-flavored-markdown/). ![Step 4 - Edit the file](https://cloud.githubusercontent.com/assets/170270/9402932/7301c3a0-480c-11e5-81f5-7e343b71674f.png) 40 | 5. Say why you're proposing the changes, and then click on "Propose file change". ![Step 5 - Propose Changes](https://cloud.githubusercontent.com/assets/170270/9402937/7dd0652a-480c-11e5-9138-bd14244593d5.png) 41 | 6. Submit the [pull request](https://help.github.com/articles/using-pull-requests/)! 42 | 43 | ## Updating your Pull Request 44 | 45 | Sometimes, a maintainer of this list will ask you to edit your Pull Request before it is included. This is normally due to spelling errors or because your PR didn't match the awesome-\* list guidelines. 46 | 47 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome Penetration Testing [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) 2 | 3 | > A collection of awesome penetration testing resources. 4 | 5 | **[This project is supported by Netsparker Web Application Security Scanner](https://www.netsparker.com/?utm_source=github.com&utm_content=awesome+penetration+testing&utm_medium=referral&utm_campaign=generic+advert)** 6 | 7 | [Penetration testing](https://en.wikipedia.org/wiki/Penetration_test) is the practice of launching authorized, simulated attacks against computer systems and their physical infrastructure to expose potential security weaknesses and vulnerabilities. 8 | 9 | Your contributions and suggestions are heartily♥ welcome. (✿◕‿◕). Please check the [Contributing Guidelines](CONTRIBUTING.md) for more details. This work is licensed under a [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0/). 10 | 11 | ## Contents 12 | 13 | * [Online Resources](#online-resources) 14 | * [Penetration Testing Resources](#penetration-testing-resources) 15 | * [Exploit Development](#exploit-development) 16 | * [Open Source Intelligence (OSINT) Resources](#osint-resources) 17 | * [Social Engineering Resources](#social-engineering-resources) 18 | * [Lock Picking Resources](#lock-picking-resources) 19 | * [Operating Systems](#operating-systems) 20 | * [Tools](#tools) 21 | * [Penetration Testing Distributions](#penetration-testing-distributions) 22 | * [Docker for Penetration Testing](#docker-for-penetration-testing) 23 | * [Multi-paradigm Frameworks](#multi-paradigm-frameworks) 24 | * [Network Vulnerability scanners](#network-vulnerability-scanners) 25 | * [Static Analyzers](#static-analyzers) 26 | * [Web Vulnerability Scanners](#web-vulnerability-scanners) 27 | * [Network Tools](#network-tools) 28 | * [Exfiltration Tools](#exfiltration-tools) 29 | * [Network Reconnaissance Tools](#network-reconnaissance-tools) 30 | * [Protocol Analyzers and Sniffers](#protocol-analyzers-and-sniffers) 31 | * [Proxies and MITM Tools](#proxies-and-mitm-tools) 32 | * [Wireless Network Tools](#wireless-network-tools) 33 | * [Transport Layer Security Tools](#transport-layer-security-tools) 34 | * [Web Exploitation](#web-exploitation) 35 | * [Hex Editors](#hex-editors) 36 | * [File Format Analysis Tools](#file-format-analysis-tools) 37 | * [Anti-virus Evasion Tools](#anti-virus-evasion-tools) 38 | * [Hash Cracking Tools](#hash-cracking-tools) 39 | * [Windows Utilities](#windows-utilities) 40 | * [GNU/Linux Utilities](#gnulinux-utilities) 41 | * [macOS Utilities](#macos-utilities) 42 | * [DDoS Tools](#ddos-tools) 43 | * [Social Engineering Tools](#social-engineering-tools) 44 | * [OSINT Tools](#osint-tools) 45 | * [Anonymity Tools](#anonymity-tools) 46 | * [Reverse Engineering Tools](#reverse-engineering-tools) 47 | * [Physical Access Tools](#physical-access-tools) 48 | * [Side-channel Tools](#side-channel-tools) 49 | * [CTF Tools](#ctf-tools) 50 | * [Penetration Testing Report Templates](#penetration-testing-report-templates) 51 | * [Books](#books) 52 | * [Penetration Testing Books](#penetration-testing-books) 53 | * [Hackers Handbook Series](#hackers-handbook-series) 54 | * [Defensive Development](#defensive-development) 55 | * [Network Analysis Books](#network-analysis-books) 56 | * [Reverse Engineering Books](#reverse-engineering-books) 57 | * [Malware Analysis Books](#malware-analysis-books) 58 | * [Windows Books](#windows-books) 59 | * [Social Engineering Books](#social-engineering-books) 60 | * [Lock Picking Books](#lock-picking-books) 61 | * [Defcon Suggested Reading](#defcon-suggested-reading) 62 | * [Vulnerability Databases](#vulnerability-databases) 63 | * [Security Courses](#security-courses) 64 | * [Information Security Conferences](#information-security-conferences) 65 | * [Information Security Magazines](#information-security-magazines) 66 | * [Awesome Lists](#awesome-lists) 67 | 68 | ## Online Resources 69 | 70 | ### Penetration Testing Resources 71 | 72 | * [Metasploit Unleashed](https://www.offensive-security.com/metasploit-unleashed/) - Free Offensive Security Metasploit course. 73 | * [Penetration Testing Execution Standard (PTES)](http://www.pentest-standard.org/) - Documentation designed to provide a common language and scope for performing and reporting the results of a penetration test. 74 | * [Open Web Application Security Project (OWASP)](https://www.owasp.org/index.php/Main_Page) - Worldwide not-for-profit charitable organization focused on improving the security of especially Web-based and Application-layer software. 75 | * [PENTEST-WIKI](https://github.com/nixawk/pentest-wiki) - Free online security knowledge library for pentesters and researchers. 76 | * [Penetration Testing Framework (PTF)](http://www.vulnerabilityassessment.co.uk/Penetration%20Test.html) - Outline for performing penetration tests compiled as a general framework usable by vulnerability analysts and penetration testers alike. 77 | * [XSS-Payloads](http://www.xss-payloads.com) - Ultimate resource for all things cross-site including payloads, tools, games and documentation. 78 | * [MITRE's Adversarial Tactics, Techniques & Common Knowledge (ATT&CK)](https://attack.mitre.org/) - Curated knowledge base and model for cyber adversary behavior. 79 | 80 | ### Exploit Development 81 | 82 | * [Shellcode Tutorial](http://www.vividmachines.com/shellcode/shellcode.html) - Tutorial on how to write shellcode. 83 | * [Shellcode Examples](http://shell-storm.org/shellcode/) - Shellcodes database. 84 | * [Exploit Writing Tutorials](https://www.corelan.be/index.php/2009/07/19/exploit-writing-tutorial-part-1-stack-based-overflows/) - Tutorials on how to develop exploits. 85 | 86 | ### OSINT Resources 87 | 88 | * [OSINT Framework](http://osintframework.com/) - Collection of various OSINT tools broken out by category. 89 | * [Intel Techniques](https://inteltechniques.com/menu.html) - Collection of OSINT tools. Menu on the left can be used to navigate through the categories. 90 | * [NetBootcamp OSINT Tools](http://netbootcamp.org/osinttools/) - Collection of OSINT links and custom Web interfaces to other services such as [Facebook Graph Search](http://netbootcamp.org/facebook.html) and [various paste sites](http://netbootcamp.org/pastesearch.html). 91 | * [WiGLE.net](https://wigle.net/) - Information about wireless networks world-wide, with user-friendly desktop and web applications. 92 | 93 | ### Social Engineering Resources 94 | 95 | * [Social Engineering Framework](http://www.social-engineer.org/framework/general-discussion/) - Information resource for social engineers. 96 | 97 | ### Lock Picking Resources 98 | 99 | * [Schuyler Towne channel](https://www.youtube.com/user/SchuylerTowne/) - Lockpicking videos and security talks. 100 | * [bosnianbill](https://www.youtube.com/user/bosnianbill) - More lockpicking videos. 101 | * [/r/lockpicking](https://www.reddit.com/r/lockpicking) - Resources for learning lockpicking, equipment recommendations. 102 | 103 | ### Operating Systems 104 | 105 | * [Security related Operating Systems @ Rawsec](http://list.rawsec.ml/operating_systems.html) - Complete list of security related operating systems. 106 | * [Security @ Distrowatch](http://distrowatch.com/search.php?category=Security) - Website dedicated to talking about, reviewing, and keeping up to date with open source operating systems. 107 | * [cuckoo](https://github.com/cuckoosandbox/cuckoo) - Open source automated malware analysis system. 108 | * [Digital Evidence & Forensics Toolkit (DEFT)](http://www.deftlinux.net/) - Live CD for forensic analysis runnable without tampering or corrupting connected devices where the boot process takes place. 109 | * [Tails](https://tails.boum.org/) - Live OS aimed at preserving privacy and anonymity. 110 | 111 | ## Tools 112 | 113 | ### Penetration Testing Distributions 114 | 115 | * [Kali](https://www.kali.org/) - GNU/Linux distribution designed for digital forensics and penetration testing. 116 | * [ArchStrike](https://archstrike.org/) - Arch GNU/Linux repository for security professionals and enthusiasts. 117 | * [BlackArch](https://www.blackarch.org/) - Arch GNU/Linux-based distribution for penetration testers and security researchers. 118 | * [Network Security Toolkit (NST)](http://networksecuritytoolkit.org/) - Fedora-based bootable live operating system designed to provide easy access to best-of-breed open source network security applications. 119 | * [BackBox](https://backbox.org/) - Ubuntu-based distribution for penetration tests and security assessments. 120 | * [Parrot](https://www.parrotsec.org/) - Distribution similar to Kali, with multiple architecture. 121 | * [Buscador](https://inteltechniques.com/buscador/) - GNU/Linux virtual machine that is pre-configured for online investigators. 122 | * [Fedora Security Lab](https://labs.fedoraproject.org/en/security/) - Provides a safe test environment to work on security auditing, forensics, system rescue and teaching security testing methodologies. 123 | * [The Pentesters Framework](https://github.com/trustedsec/ptf) - Distro organized around the Penetration Testing Execution Standard (PTES), providing a curated collection of utilities that eliminates often unused toolchains. 124 | * [AttifyOS](https://github.com/adi0x90/attifyos) - GNU/Linux distribution focused on tools useful during Internet of Things (IoT) security assessments. 125 | * [PentestBox](https://pentestbox.org/) - Opensource pre-configured portable penetration testing environment for Windows OS. 126 | 127 | ### Docker for Penetration Testing 128 | 129 | * `docker pull kalilinux/kali-linux-docker` - [Official Kali Linux](https://hub.docker.com/r/kalilinux/kali-linux-docker/). 130 | * `docker pull owasp/zap2docker-stable` - [Official OWASP ZAP](https://github.com/zaproxy/zaproxy). 131 | * `docker pull wpscanteam/wpscan` - [Official WPScan](https://hub.docker.com/r/wpscanteam/wpscan/). 132 | * `docker pull citizenstig/dvwa` - [Damn Vulnerable Web Application (DVWA)](https://hub.docker.com/r/citizenstig/dvwa/). 133 | * `docker pull wpscanteam/vulnerablewordpress` - [Vulnerable WordPress Installation](https://hub.docker.com/r/wpscanteam/vulnerablewordpress/). 134 | * `docker pull hmlio/vaas-cve-2014-6271` - [Vulnerability as a service: Shellshock](https://hub.docker.com/r/hmlio/vaas-cve-2014-6271/). 135 | * `docker pull hmlio/vaas-cve-2014-0160` - [Vulnerability as a service: Heartbleed](https://hub.docker.com/r/hmlio/vaas-cve-2014-0160/). 136 | * `docker pull vulnerables/cve-2017-7494` - [Vulnerability as a service: SambaCry](https://hub.docker.com/r/vulnerables/cve-2017-7494/). 137 | * `docker pull opendns/security-ninjas` - [Security Ninjas](https://hub.docker.com/r/opendns/security-ninjas/). 138 | * `docker pull diogomonica/docker-bench-security` - [Docker Bench for Security](https://hub.docker.com/r/diogomonica/docker-bench-security/). 139 | * `docker pull ismisepaul/securityshepherd` - [OWASP Security Shepherd](https://hub.docker.com/r/ismisepaul/securityshepherd/). 140 | * `docker pull webgoat/webgoat-7.1` - [OWASP WebGoat Project 7.1 docker image](https://hub.docker.com/r/webgoat/webgoat-7.1/). 141 | * `docker pull webgoat/webgoat-8.0` - [OWASP WebGoat Project 8.0 docker image](https://hub.docker.com/r/webgoat/webgoat-8.0/). 142 | * `docker-compose build && docker-compose up` - [OWASP NodeGoat](https://github.com/owasp/nodegoat#option-3---run-nodegoat-on-docker). 143 | * `docker pull citizenstig/nowasp` - [OWASP Mutillidae II Web Pen-Test Practice Application](https://hub.docker.com/r/citizenstig/nowasp/). 144 | * `docker pull bkimminich/juice-shop` - [OWASP Juice Shop](https://github.com/bkimminich/juice-shop#docker-container--). 145 | * `docker pull phocean/msf` - [docker-metasploit](https://hub.docker.com/r/phocean/msf/). 146 | 147 | ### Multi-paradigm Frameworks 148 | 149 | * [Metasploit](https://www.metasploit.com/) - Software for offensive security teams to help verify vulnerabilities and manage security assessments. 150 | * [Armitage](http://fastandeasyhacking.com/) - Java-based GUI front-end for the Metasploit Framework. 151 | * [Faraday](https://github.com/infobyte/faraday) - Multiuser integrated pentesting environment for red teams performing cooperative penetration tests, security audits, and risk assessments. 152 | * [ExploitPack](https://github.com/juansacco/exploitpack) - Graphical tool for automating penetration tests that ships with many pre-packaged exploits. 153 | * [Pupy](https://github.com/n1nj4sec/pupy) - Cross-platform (Windows, Linux, macOS, Android) remote administration and post-exploitation tool. 154 | * [AutoSploit](https://github.com/NullArray/AutoSploit) - Automated mass exploiter, which collects target by employing the Shodan.io API and programmatically chooses Metasploit exploit modules based on the Shodan query. 155 | 156 | ### Network Vulnerability Scanners 157 | 158 | * [Netsparker Application Security Scanner](https://www.netsparker.com/) - Application security scanner to automatically find security flaws. 159 | * [Nexpose](https://www.rapid7.com/products/nexpose/) - Commercial vulnerability and risk management assessment engine that integrates with Metasploit, sold by Rapid7. 160 | * [Nessus](https://www.tenable.com/products/nessus-vulnerability-scanner) - Commercial vulnerability management, configuration, and compliance assessment platform, sold by Tenable. 161 | * [OpenVAS](http://www.openvas.org/) - Free software implementation of the popular Nessus vulnerability assessment system. 162 | * [Vuls](https://github.com/future-architect/vuls) - Agentless vulnerability scanner for GNU/Linux and FreeBSD, written in Go. 163 | 164 | #### Static Analyzers 165 | 166 | * [Brakeman](https://github.com/presidentbeef/brakeman) - Static analysis security vulnerability scanner for Ruby on Rails applications. 167 | * [cppcheck](http://cppcheck.sourceforge.net/) - Extensible C/C++ static analyzer focused on finding bugs. 168 | * [FindBugs](http://findbugs.sourceforge.net/) - Free software static analyzer to look for bugs in Java code. 169 | * [sobelow](https://github.com/nccgroup/sobelow) - Security-focused static analysis for the Phoenix Framework. 170 | * [bandit](https://pypi.python.org/pypi/bandit/) - Security oriented static analyser for python code. 171 | * [Progpilot](https://github.com/designsecurity/progpilot) - Static security analysis tool for PHP code. 172 | 173 | #### Web Vulnerability Scanners 174 | 175 | * [Netsparker Application Security Scanner](https://www.netsparker.com/) - Application security scanner to automatically find security flaws. 176 | * [Nikto](https://cirt.net/nikto2) - Noisy but fast black box web server and web application vulnerability scanner. 177 | * [Arachni](http://www.arachni-scanner.com/) - Scriptable framework for evaluating the security of web applications. 178 | * [w3af](https://github.com/andresriancho/w3af) - Web application attack and audit framework. 179 | * [Wapiti](http://wapiti.sourceforge.net/) - Black box web application vulnerability scanner with built-in fuzzer. 180 | * [SecApps](https://secapps.com/) - In-browser web application security testing suite. 181 | * [WebReaver](https://www.webreaver.com/) - Commercial, graphical web application vulnerability scanner designed for macOS. 182 | * [WPScan](https://wpscan.org/) - Black box WordPress vulnerability scanner. 183 | * [Zoom](https://github.com/UltimateHackers/Zoom) - Powerful wordpress username enumerator with infinite scanning. 184 | * [cms-explorer](https://code.google.com/archive/p/cms-explorer/) - Reveal the specific modules, plugins, components and themes that various websites powered by content management systems are running. 185 | * [joomscan](https://www.owasp.org/index.php/Category:OWASP_Joomla_Vulnerability_Scanner_Project) - Joomla vulnerability scanner. 186 | * [ACSTIS](https://github.com/tijme/angularjs-csti-scanner) - Automated client-side template injection (sandbox escape/bypass) detection for AngularJS. 187 | * [SQLmate](https://github.com/UltimateHackers/sqlmate) - A friend of sqlmap that identifies sqli vulnerabilities based on a given dork and website (optional). 188 | * [JCS](https://github.com/TheM4hd1/JCS) - Joomla Vulnerability Component Scanner with automatic database updater from exploitdb and packetstorm. 189 | 190 | 191 | ### Network Tools 192 | 193 | * [pig](https://github.com/rafael-santiago/pig) - GNU/Linux packet crafting tool. 194 | * [Network-Tools.com](http://network-tools.com/) - Website offering an interface to numerous basic network utilities like `ping`, `traceroute`, `whois`, and more. 195 | * [Intercepter-NG](http://sniff.su/) - Multifunctional network toolkit. 196 | * [SPARTA](https://sparta.secforce.com/) - Graphical interface offering scriptable, configurable access to existing network infrastructure scanning and enumeration tools. 197 | * [Zarp](https://github.com/hatRiot/zarp) - Network attack tool centered around the exploitation of local networks. 198 | * [dsniff](https://www.monkey.org/~dugsong/dsniff/) - Collection of tools for network auditing and pentesting. 199 | * [scapy](https://github.com/secdev/scapy) - Python-based interactive packet manipulation program & library. 200 | * [Printer Exploitation Toolkit (PRET)](https://github.com/RUB-NDS/PRET) - Tool for printer security testing capable of IP and USB connectivity, fuzzing, and exploitation of PostScript, PJL, and PCL printer language features. 201 | * [Praeda](http://h.foofus.net/?page_id=218) - Automated multi-function printer data harvester for gathering usable data during security assessments. 202 | * [routersploit](https://github.com/reverse-shell/routersploit) - Open source exploitation framework similar to Metasploit but dedicated to embedded devices. 203 | * [CrackMapExec](https://github.com/byt3bl33d3r/CrackMapExec) - Swiss army knife for pentesting networks. 204 | * [impacket](https://github.com/CoreSecurity/impacket) - Collection of Python classes for working with network protocols. 205 | * [dnstwist](https://github.com/elceef/dnstwist) - Domain name permutation engine for detecting typo squatting, phishing and corporate espionage. 206 | * [THC Hydra](https://github.com/vanhauser-thc/thc-hydra) - Online password cracking tool with built-in support for many network protocols, including HTTP, SMB, FTP, telnet, ICQ, MySQL, LDAP, IMAP, VNC, and more. 207 | * [IKEForce](https://github.com/SpiderLabs/ikeforce) - Command line IPSEC VPN brute forcing tool for Linux that allows group name/ID enumeration and XAUTH brute forcing capabilities. 208 | 209 | #### Exfiltration Tools 210 | 211 | * [DET](https://github.com/sensepost/DET) - Proof of concept to perform data exfiltration using either single or multiple channel(s) at the same time. 212 | * [pwnat](https://github.com/samyk/pwnat) - Punches holes in firewalls and NATs. 213 | * [tgcd](http://tgcd.sourceforge.net/) - Simple Unix network utility to extend the accessibility of TCP/IP based network services beyond firewalls. 214 | * [Iodine](https://code.kryo.se/iodine/) - Tunnel IPv4 data through a DNS server; useful for exfiltration from networks where Internet access is firewalled, but DNS queries are allowed. 215 | 216 | #### Network Reconnaissance Tools 217 | 218 | * [zmap](https://zmap.io/) - Open source network scanner that enables researchers to easily perform Internet-wide network studies. 219 | * [nmap](https://nmap.org/) - Free security scanner for network exploration & security audits. 220 | * [scanless](https://github.com/vesche/scanless) - Utility for using websites to perform port scans on your behalf so as not to reveal your own IP. 221 | * [DNSDumpster](https://dnsdumpster.com/) - Online DNS recon and search service. 222 | * [CloudFail](https://github.com/m0rtem/CloudFail) - Unmask server IP addresses hidden behind Cloudflare by searching old database records and detecting misconfigured DNS. 223 | * [dnsenum](https://github.com/fwaeytens/dnsenum/) - Perl script that enumerates DNS information from a domain, attempts zone transfers, performs a brute force dictionary style attack, and then performs reverse look-ups on the results. 224 | * [dnsmap](https://github.com/makefu/dnsmap/) - Passive DNS network mapper. 225 | * [dnsrecon](https://github.com/darkoperator/dnsrecon/) - DNS enumeration script. 226 | * [dnstracer](http://www.mavetju.org/unix/dnstracer.php) - Determines where a given DNS server gets its information from, and follows the chain of DNS servers. 227 | * [passivedns-client](https://github.com/chrislee35/passivedns-client) - Library and query tool for querying several passive DNS providers. 228 | * [passivedns](https://github.com/gamelinux/passivedns) - Network sniffer that logs all DNS server replies for use in a passive DNS setup. 229 | * [Mass Scan](https://github.com/robertdavidgraham/masscan) - TCP port scanner, spews SYN packets asynchronously, scanning entire Internet in under 5 minutes. 230 | * [smbmap](https://github.com/ShawnDEvans/smbmap) - Handy SMB enumeration tool. 231 | * [XRay](https://github.com/evilsocket/xray) - Network (sub)domain discovery and reconnaissance automation tool. 232 | * [ACLight](https://github.com/cyberark/ACLight) - Script for advanced discovery of sensitive Privileged Accounts - includes Shadow Admins. 233 | * [ScanCannon](https://github.com/johnnyxmas/ScanCannon) - Python script to quickly enumerate large networks by calling `masscan` to quickly identify open ports and then `nmap` to gain details on the systems/services on those ports. 234 | * [fierce](https://github.com/mschwager/fierce) - Python3 port of the original `fierce.pl` DNS reconnaissance tool for locating non-contiguous IP space. 235 | 236 | #### Protocol Analyzers and Sniffers 237 | 238 | * [tcpdump/libpcap](http://www.tcpdump.org/) - Common packet analyzer that runs under the command line. 239 | * [Wireshark](https://www.wireshark.org/) - Widely-used graphical, cross-platform network protocol analyzer. 240 | * [netsniff-ng](https://github.com/netsniff-ng/netsniff-ng) - Swiss army knife for for network sniffing. 241 | * [Dshell](https://github.com/USArmyResearchLab/Dshell) - Network forensic analysis framework. 242 | * [Debookee](http://www.iwaxx.com/debookee/) - Simple and powerful network traffic analyzer for macOS. 243 | * [Dripcap](https://github.com/dripcap/dripcap) - Caffeinated packet analyzer. 244 | * [Netzob](https://github.com/netzob/netzob) - Reverse engineering, traffic generation and fuzzing of communication protocols. 245 | 246 | #### Proxies and MITM Tools 247 | 248 | * [dnschef](https://github.com/iphelix/dnschef) - Highly configurable DNS proxy for pentesters. 249 | * [mitmproxy](https://github.com/mitmproxy/mitmproxy) - Interactive TLS-capable intercepting HTTP proxy for penetration testers and software developers. 250 | * [Morpheus](https://github.com/r00t-3xp10it/morpheus) - Automated ettercap TCP/IP Hijacking tool. 251 | * [mallory](https://github.com/justmao945/mallory) - HTTP/HTTPS proxy over SSH. 252 | * [SSH MITM](https://github.com/jtesta/ssh-mitm) - Intercept SSH connections with a proxy; all plaintext passwords and sessions are logged to disk. 253 | * [evilgrade](https://github.com/infobyte/evilgrade) - Modular framework to take advantage of poor upgrade implementations by injecting fake updates. 254 | * [Ettercap](http://www.ettercap-project.org) - Comprehensive, mature suite for machine-in-the-middle attacks. 255 | * [BetterCAP](https://www.bettercap.org/) - Modular, portable and easily extensible MITM framework. 256 | * [MITMf](https://github.com/byt3bl33d3r/MITMf) - Framework for Man-In-The-Middle attacks 257 | 258 | ### Wireless Network Tools 259 | 260 | * [Aircrack-ng](http://www.aircrack-ng.org/) - Set of tools for auditing wireless networks. 261 | * [Kismet](https://kismetwireless.net/) - Wireless network detector, sniffer, and IDS. 262 | * [Reaver](https://code.google.com/archive/p/reaver-wps) - Brute force attack against WiFi Protected Setup. 263 | * [Wifite](https://github.com/derv82/wifite) - Automated wireless attack tool. 264 | * [Fluxion](https://github.com/FluxionNetwork/fluxion) - Suite of automated social engineering based WPA attacks. 265 | * [Airgeddon](https://github.com/v1s1t0r1sh3r3/airgeddon) - Multi-use bash script for Linux systems to audit wireless networks. 266 | * [Cowpatty](https://github.com/joswr1ght/cowpatty) - Brute-force dictionary attack against WPA-PSK. 267 | 268 | 269 | ### Transport Layer Security Tools 270 | 271 | * [SSLyze](https://github.com/nabla-c0d3/sslyze) - Fast and comprehensive TLS/SSL configuration analyzer to help identify security mis-configurations. 272 | * [tls_prober](https://github.com/WestpointLtd/tls_prober) - Fingerprint a server's SSL/TLS implementation. 273 | * [testssl.sh](https://github.com/drwetter/testssl.sh) - Command line tool which checks a server's service on any port for the support of TLS/SSL ciphers, protocols as well as some cryptographic flaws. 274 | * [crackpkcs12](https://github.com/crackpkcs12/crackpkcs12) - Multithreaded program to crack PKCS#12 files (`.p12` and `.pfx` extensions), such as TLS/SSL certificates. 275 | 276 | ### Web Exploitation 277 | 278 | * [OWASP Zed Attack Proxy (ZAP)](https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project) - Feature-rich, scriptable HTTP intercepting proxy and fuzzer for penetration testing web applications. 279 | * [Fiddler](https://www.telerik.com/fiddler) - Free cross-platform web debugging proxy with user-friendly companion tools. 280 | * [Burp Suite](https://portswigger.net/burp/) - Integrated platform for performing security testing of web applications. 281 | * [autochrome](https://www.nccgroup.trust/us/about-us/newsroom-and-events/blog/2017/march/autochrome/) - Easy to install a test browser with all the appropriate setting needed for web application testing with native Burp support, from NCCGroup. 282 | * [Browser Exploitation Framework (BeEF)](https://github.com/beefproject/beef) - Command and control server for delivering exploits to commandeered Web browsers. 283 | * [Offensive Web Testing Framework (OWTF)](https://www.owasp.org/index.php/OWASP_OWTF) - Python-based framework for pentesting Web applications based on the OWASP Testing Guide. 284 | * [Wordpress Exploit Framework](https://github.com/rastating/wordpress-exploit-framework) - Ruby framework for developing and using modules which aid in the penetration testing of WordPress powered websites and systems. 285 | * [WPSploit](https://github.com/espreto/wpsploit) - Exploit WordPress-powered websites with Metasploit. 286 | * [SQLmap](http://sqlmap.org/) - Automatic SQL injection and database takeover tool. 287 | * [tplmap](https://github.com/epinna/tplmap) - Automatic server-side template injection and Web server takeover tool. 288 | * [weevely3](https://github.com/epinna/weevely3) - Weaponized web shell. 289 | * [Wappalyzer](https://www.wappalyzer.com/) - Wappalyzer uncovers the technologies used on websites. 290 | * [WhatWeb](https://github.com/urbanadventurer/WhatWeb) - Website fingerprinter. 291 | * [BlindElephant](http://blindelephant.sourceforge.net/) - Web application fingerprinter. 292 | * [wafw00f](https://github.com/EnableSecurity/wafw00f) - Identifies and fingerprints Web Application Firewall (WAF) products. 293 | * [fimap](https://github.com/kurobeats/fimap) - Find, prepare, audit, exploit and even Google automatically for LFI/RFI bugs. 294 | * [Kadabra](https://github.com/D35m0nd142/Kadabra) - Automatic LFI exploiter and scanner. 295 | * [Kadimus](https://github.com/P0cL4bs/Kadimus) - LFI scan and exploit tool. 296 | * [liffy](https://github.com/hvqzao/liffy) - LFI exploitation tool. 297 | * [Commix](https://github.com/commixproject/commix) - Automated all-in-one operating system command injection and exploitation tool. 298 | * [DVCS Ripper](https://github.com/kost/dvcs-ripper) - Rip web accessible (distributed) version control systems: SVN/GIT/HG/BZR. 299 | * [GitTools](https://github.com/internetwache/GitTools) - Automatically find and download Web-accessible `.git` repositories. 300 | * [sslstrip](https://www.thoughtcrime.org/software/sslstrip/) - Demonstration of the HTTPS stripping attacks. 301 | * [sslstrip2](https://github.com/LeonardoNve/sslstrip2) - SSLStrip version to defeat HSTS. 302 | * [NoSQLmap](http://nosqlmap.net/) - Automatic NoSQL injection and database takeover tool. 303 | * [VHostScan](https://github.com/codingo/VHostScan) - A virtual host scanner that performs reverse lookups, can be used with pivot tools, detect catch-all scenarios, aliases and dynamic default pages. 304 | * [FuzzDB](https://github.com/fuzzdb-project/fuzzdb) - Dictionary of attack patterns and primitives for black-box application fault injection and resource discovery. 305 | * [EyeWitness](https://github.com/ChrisTruncer/EyeWitness) - Tool to take screenshots of websites, provide some server header info, and identify default credentials if possible. 306 | * [webscreenshot](https://github.com/maaaaz/webscreenshot) - A simple script to take screenshots of list of websites. 307 | * [recursebuster](https://github.com/c-sto/recursebuster) - Content discovery tool to perform directory and file bruteforcing. 308 | * [Raccoon](https://github.com/evyatarmeged/Raccoon) - A high performance offensive security tool for reconnaissance and vulnerability scanning 309 | 310 | ### Hex Editors 311 | 312 | * [HexEdit.js](https://hexed.it) - Browser-based hex editing. 313 | * [Hexinator](https://hexinator.com/) - World's finest (proprietary, commercial) Hex Editor. 314 | * [Frhed](http://frhed.sourceforge.net/) - Binary file editor for Windows. 315 | * [0xED](http://www.suavetech.com/0xed/0xed.html) - Native macOS hex editor that supports plug-ins to display custom data types. 316 | * [Hex Fiend](http://ridiculousfish.com/hexfiend/) - Fast, open source, hex editor for macOS with support for viewing binary diffs. 317 | * [Bless](https://github.com/bwrsandman/Bless) - High quality, full featured, cross-platform graphical hex editor written in Gtk#. 318 | * [wxHexEditor](http://www.wxhexeditor.org/) - Free GUI hex editor for GNU/Linux, macOS, and Windows. 319 | * [`hexedit`](https://github.com/pixel/hexedit) - Simple, fast, console-based hex editor. 320 | 321 | ### File Format Analysis Tools 322 | 323 | * [Kaitai Struct](http://kaitai.io/) - File formats and network protocols dissection language and web IDE, generating parsers in C++, C#, Java, JavaScript, Perl, PHP, Python, Ruby. 324 | * [Veles](https://codisec.com/veles/) - Binary data visualization and analysis tool. 325 | * [Hachoir](http://hachoir3.readthedocs.io/) - Python library to view and edit a binary stream as tree of fields and tools for metadata extraction. 326 | 327 | ### Anti-virus Evasion Tools 328 | 329 | * [Veil](https://www.veil-framework.com/) - Generate metasploit payloads that bypass common anti-virus solutions. 330 | * [shellsploit](https://github.com/Exploit-install/shellsploit-framework) - Generates custom shellcode, backdoors, injectors, optionally obfuscates every byte via encoders. 331 | * [Hyperion](http://nullsecurity.net/tools/binary.html) - Runtime encryptor for 32-bit portable executables ("PE `.exe`s"). 332 | * [AntiVirus Evasion Tool (AVET)](https://github.com/govolution/avet) - Post-process exploits containing executable files targeted for Windows machines to avoid being recognized by antivirus software. 333 | * [peCloak.py](https://www.securitysift.com/pecloak-py-an-experiment-in-av-evasion/) - Automates the process of hiding a malicious Windows executable from antivirus (AV) detection. 334 | * [peCloakCapstone](https://github.com/v-p-b/peCloakCapstone) - Multi-platform fork of the peCloak.py automated malware antivirus evasion tool. 335 | * [UniByAv](https://github.com/Mr-Un1k0d3r/UniByAv) - Simple obfuscator that takes raw shellcode and generates Anti-Virus friendly executables by using a brute-forcable, 32-bit XOR key. 336 | * [Shellter](https://www.shellterproject.com/) - Dynamic shellcode injection tool, and the first truly dynamic PE infector ever created. 337 | 338 | ### Hash Cracking Tools 339 | 340 | * [John the Ripper](http://www.openwall.com/john/) - Fast password cracker. 341 | * [Hashcat](http://hashcat.net/hashcat/) - The more fast hash cracker. 342 | * [CeWL](https://digi.ninja/projects/cewl.php) - Generates custom wordlists by spidering a target's website and collecting unique words. 343 | * [JWT Cracker](https://github.com/lmammino/jwt-cracker) - Simple HS256 JWT token brute force cracker. 344 | * [Rar Crack](http://rarcrack.sourceforge.net) - RAR bruteforce cracker. 345 | * [BruteForce Wallet](https://github.com/glv2/bruteforce-wallet) - Find the password of an encrypted wallet file (i.e. `wallet.dat`). 346 | * [StegCracker](https://github.com/Paradoxis/StegCracker) - Steganography brute-force utility to uncover hidden data inside files. 347 | 348 | ### Windows Utilities 349 | 350 | * [Sysinternals Suite](https://technet.microsoft.com/en-us/sysinternals/bb842062) - The Sysinternals Troubleshooting Utilities. 351 | * [Windows Credentials Editor](http://www.ampliasecurity.com/research/windows-credentials-editor/) - Inspect logon sessions and add, change, list, and delete associated credentials, including Kerberos tickets. 352 | * [mimikatz](http://blog.gentilkiwi.com/mimikatz) - Credentials extraction tool for Windows operating system. 353 | * [PowerSploit](https://github.com/PowerShellMafia/PowerSploit) - PowerShell Post-Exploitation Framework. 354 | * [Windows Exploit Suggester](https://github.com/GDSSecurity/Windows-Exploit-Suggester) - Detects potential missing patches on the target. 355 | * [Responder](https://github.com/SpiderLabs/Responder) - LLMNR, NBT-NS and MDNS poisoner. 356 | * [Bloodhound](https://github.com/adaptivethreat/Bloodhound/wiki) - Graphical Active Directory trust relationship explorer. 357 | * [Empire](https://www.powershellempire.com/) - Pure PowerShell post-exploitation agent. 358 | * [Fibratus](https://github.com/rabbitstack/fibratus) - Tool for exploration and tracing of the Windows kernel. 359 | * [wePWNise](https://labs.mwrinfosecurity.com/tools/wepwnise/) - Generates architecture independent VBA code to be used in Office documents or templates and automates bypassing application control and exploit mitigation software. 360 | * [redsnarf](https://github.com/nccgroup/redsnarf) - Post-exploitation tool for retrieving password hashes and credentials from Windows workstations, servers, and domain controllers. 361 | * [Magic Unicorn](https://github.com/trustedsec/unicorn) - Shellcode generator for numerous attack vectors, including Microsoft Office macros, PowerShell, HTML applications (HTA), or `certutil` (using fake certificates). 362 | * [DeathStar](https://github.com/byt3bl33d3r/DeathStar) - Python script that uses Empire's RESTful API to automate gaining Domain Admin rights in Active Directory environments. 363 | * [RID_ENUM](https://github.com/trustedsec/ridenum) - Python script that can enumerate all users from a Windows Domain Controller and crack those user's passwords using brute-force. 364 | * [MailSniper](https://github.com/dafthack/MailSniper) - Modular tool for searching through email in a Microsoft Exchange environment, gathering the Global Address List from Outlook Web Access (OWA) and Exchange Web Services (EWS), and more. 365 | * [Ruler](https://github.com/sensepost/ruler) - Abuses client-side Outlook features to gain a remote shell on a Microsoft Exchange server. 366 | * [SCOMDecrypt](https://github.com/nccgroup/SCOMDecrypt) - Retrieve and decrypt RunAs credentials stored within Microsoft System Center Operations Manager (SCOM) databases. 367 | 368 | ### GNU/Linux Utilities 369 | 370 | * [Linux Exploit Suggester](https://github.com/PenturaLabs/Linux_Exploit_Suggester) - Heuristic reporting on potentially viable exploits for a given GNU/Linux system. 371 | 372 | ### macOS Utilities 373 | 374 | * [Bella](https://github.com/kdaoudieh/Bella) - Pure Python post-exploitation data mining and remote administration tool for macOS. 375 | * [EvilOSX](https://github.com/Marten4n6/EvilOSX) - Modular RAT that uses numerous evasion and exfiltration techniques out-of-the-box. 376 | 377 | ### DDoS Tools 378 | 379 | * [LOIC](https://github.com/NewEraCracker/LOIC/) - Open source network stress tool for Windows. 380 | * [JS LOIC](http://metacortexsecurity.com/tools/anon/LOIC/LOICv1.html) - JavaScript in-browser version of LOIC. 381 | * [SlowLoris](https://github.com/gkbrk/slowloris) - DoS tool that uses low bandwidth on the attacking side. 382 | * [HOIC](https://sourceforge.net/projects/high-orbit-ion-cannon/) - Updated version of Low Orbit Ion Cannon, has 'boosters' to get around common counter measures. 383 | * [T50](https://sourceforge.net/projects/t50/) - Faster network stress tool. 384 | * [UFONet](https://github.com/epsylon/ufonet) - Abuses OSI layer 7 HTTP to create/manage 'zombies' and to conduct different attacks using; `GET`/`POST`, multithreading, proxies, origin spoofing methods, cache evasion techniques, etc. 385 | * [Memcrashed](https://github.com/649/Memcrashed-DDoS-Exploit) - DDoS attack tool for sending forged UDP packets to vulnerable Memcached servers obtained using Shodan API. 386 | 387 | ### Social Engineering Tools 388 | 389 | * [Social Engineer Toolkit (SET)](https://github.com/trustedsec/social-engineer-toolkit) - Open source pentesting framework designed for social engineering featuring a number of custom attack vectors to make believable attacks quickly. 390 | * [King Phisher](https://github.com/securestate/king-phisher) - Phishing campaign toolkit used for creating and managing multiple simultaneous phishing attacks with custom email and server content. 391 | * [Evilginx](https://github.com/kgretzky/evilginx) - MITM attack framework used for phishing credentials and session cookies from any Web service. 392 | * [wifiphisher](https://github.com/sophron/wifiphisher) - Automated phishing attacks against WiFi networks. 393 | * [Catphish](https://github.com/ring0lab/catphish) - Tool for phishing and corporate espionage written in Ruby. 394 | * [Beelogger](https://github.com/4w4k3/BeeLogger) - Tool for generating keylooger. 395 | * [FiercePhish](https://github.com/Raikia/FiercePhish) - Full-fledged phishing framework to manage all phishing engagements. 396 | * [SocialFish](https://github.com/UndeadSec/SocialFish) - Social media phishing framework that can run on an Android phone or in a Docker container. 397 | * [ShellPhish](https://github.com/thelinuxchoice/shellphish) - Social media site cloner and phishing tool built atop SocialFish. 398 | 399 | ### OSINT Tools 400 | 401 | * [Maltego](http://www.paterva.com/web7/) - Proprietary software for open source intelligence and forensics, from Paterva. 402 | * [theHarvester](https://github.com/laramies/theHarvester) - E-mail, subdomain and people names harvester. 403 | * [creepy](https://github.com/ilektrojohn/creepy) - Geolocation OSINT tool. 404 | * [metagoofil](https://github.com/laramies/metagoofil) - Metadata harvester. 405 | * [Google Hacking Database](https://www.exploit-db.com/google-hacking-database/) - Database of Google dorks; can be used for recon. 406 | * [Google-dorks](https://github.com/JohnTroony/Google-dorks) - Common Google dorks and others you probably don't know. 407 | * [GooDork](https://github.com/k3170makan/GooDork) - Command line Google dorking tool. 408 | * [dork-cli](https://github.com/jgor/dork-cli) - Command line Google dork tool. 409 | * [Censys](https://www.censys.io/) - Collects data on hosts and websites through daily ZMap and ZGrab scans. 410 | * [Shodan](https://www.shodan.io/) - World's first search engine for Internet-connected devices. 411 | * [recon-ng](https://bitbucket.org/LaNMaSteR53/recon-ng) - Full-featured Web Reconnaissance framework written in Python. 412 | * [github-dorks](https://github.com/techgaun/github-dorks) - CLI tool to scan github repos/organizations for potential sensitive information leak. 413 | * [vcsmap](https://github.com/melvinsh/vcsmap) - Plugin-based tool to scan public version control systems for sensitive information. 414 | * [Spiderfoot](http://www.spiderfoot.net/) - Multi-source OSINT automation tool with a Web UI and report visualizations 415 | * [BinGoo](https://github.com/Hood3dRob1n/BinGoo) - GNU/Linux bash based Bing and Google Dorking Tool. 416 | * [fast-recon](https://github.com/DanMcInerney/fast-recon) - Perform Google dorks against a domain. 417 | * [snitch](https://github.com/Smaash/snitch) - Information gathering via dorks. 418 | * [Sn1per](https://github.com/1N3/Sn1per) - Automated Pentest Recon Scanner. 419 | * [Threat Crowd](https://www.threatcrowd.org/) - Search engine for threats. 420 | * [Virus Total](https://www.virustotal.com/) - Free service that analyzes suspicious files and URLs and facilitates the quick detection of viruses, worms, trojans, and all kinds of malware. 421 | * [PacketTotal](https://packettotal.com/) - Simple, free, high-quality packet capture file analysis facilitating the quick detection of network-borne malware (using Bro and Suricata IDS signatures under the hood). 422 | * [DataSploit](https://github.com/upgoingstar/datasploit) - OSINT visualizer utilizing Shodan, Censys, Clearbit, EmailHunter, FullContact, and Zoomeye behind the scenes. 423 | * [AQUATONE](https://github.com/michenriksen/aquatone) - Subdomain discovery tool utilizing various open sources producing a report that can be used as input to other tools. 424 | * [Intrigue](http://intrigue.io) - Automated OSINT & Attack Surface discovery framework with powerful API, UI and CLI. 425 | * [ZoomEye](https://www.zoomeye.org/) - Search engine for cyberspace that lets the user find specific network components. 426 | * [gOSINT](https://github.com/Nhoya/gOSINT) - OSINT tool with multiple modules and a telegram scraper. 427 | * [OWASP Amass](https://github.com/OWASP/Amass) - Subdomain enumeration via scraping, web archives, brute forcing, permutations, reverse DNS sweeping, TLS certificates, passive DNS data sources, etc. 428 | * [Hunter.io](https://hunter.io/) - Data broker providing a Web search interface for discovering the email addresses and other organizational details of a company. 429 | * [FOCA (Fingerprinting Organizations with Collected Archives)](https://www.elevenpaths.com/labstools/foca/) - Automated document harvester that searches Google, Bing, and DuckDuckGo to find and extrapolate internal company organizational structures. 430 | 431 | ### Anonymity Tools 432 | 433 | * [Tor](https://www.torproject.org/) - Free software and onion routed overlay network that helps you defend against traffic analysis. 434 | * [OnionScan](https://onionscan.org/) - Tool for investigating the Dark Web by finding operational security issues introduced by Tor hidden service operators. 435 | * [I2P](https://geti2p.net/) - The Invisible Internet Project. 436 | * [Nipe](https://github.com/GouveaHeitor/nipe) - Script to redirect all traffic from the machine to the Tor network. 437 | * [What Every Browser Knows About You](http://webkay.robinlinus.com/) - Comprehensive detection page to test your own Web browser's configuration for privacy and identity leaks. 438 | * [dos-over-tor](https://github.com/zacscott/dos-over-tor) - Proof of concept denial of service over Tor stress test tool. 439 | * [oregano](https://github.com/nametoolong/oregano) - Python module that runs as a machine-in-the-middle (MITM) accepting Tor client requests. 440 | 441 | ### Reverse Engineering Tools 442 | 443 | * [Interactive Disassembler (IDA Pro)](https://www.hex-rays.com/products/ida/) - Proprietary multi-processor disassembler and debugger for Windows, GNU/Linux, or macOS; also has a free version, [IDA Free](https://www.hex-rays.com/products/ida/support/download_freeware.shtml). 444 | * [WDK/WinDbg](https://msdn.microsoft.com/en-us/windows/hardware/hh852365.aspx) - Windows Driver Kit and WinDbg. 445 | * [OllyDbg](http://www.ollydbg.de/) - x86 debugger for Windows binaries that emphasizes binary code analysis. 446 | * [Radare2](http://rada.re/r/index.html) - Open source, crossplatform reverse engineering framework. 447 | * [x64dbg](http://x64dbg.com/) - Open source x64/x32 debugger for windows. 448 | * [Immunity Debugger](http://debugger.immunityinc.com/) - Powerful way to write exploits and analyze malware. 449 | * [Evan's Debugger](http://www.codef00.com/projects#debugger) - OllyDbg-like debugger for GNU/Linux. 450 | * [Medusa](https://github.com/wisk/medusa) - Open source, cross-platform interactive disassembler. 451 | * [plasma](https://github.com/joelpx/plasma) - Interactive disassembler for x86/ARM/MIPS. Generates indented pseudo-code with colored syntax code. 452 | * [peda](https://github.com/longld/peda) - Python Exploit Development Assistance for GDB. 453 | * [dnSpy](https://github.com/0xd4d/dnSpy) - Tool to reverse engineer .NET assemblies. 454 | * [binwalk](https://github.com/devttys0/binwalk) - Fast, easy to use tool for analyzing, reverse engineering, and extracting firmware images. 455 | * [PyREBox](https://github.com/Cisco-Talos/pyrebox) - Python scriptable Reverse Engineering sandbox by Cisco-Talos. 456 | * [Voltron](https://github.com/snare/voltron) - Extensible debugger UI toolkit written in Python. 457 | * [Capstone](http://www.capstone-engine.org/) - Lightweight multi-platform, multi-architecture disassembly framework. 458 | * [rVMI](https://github.com/fireeye/rVMI) - Debugger on steroids; inspect userspace processes, kernel drivers, and preboot environments in a single tool. 459 | * [Frida](https://www.frida.re/) - Dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers. 460 | 461 | ### Physical Access Tools 462 | 463 | * [LAN Turtle](https://lanturtle.com/) - Covert "USB Ethernet Adapter" that provides remote access, network intelligence gathering, and MITM capabilities when installed in a local network. 464 | * [USB Rubber Ducky](http://usbrubberducky.com/) - Customizable keystroke injection attack platform masquerading as a USB thumbdrive. 465 | * [Poisontap](https://samy.pl/poisontap/) - Siphons cookies, exposes internal (LAN-side) router and installs web backdoor on locked computers. 466 | * [WiFi Pineapple](https://www.wifipineapple.com/) - Wireless auditing and penetration testing platform. 467 | * [Proxmark3](https://proxmark3.com/) - RFID/NFC cloning, replay, and spoofing toolkit often used for analyzing and attacking proximity cards/readers, wireless keys/keyfobs, and more. 468 | * [PCILeech](https://github.com/ufrisk/pcileech) - Uses PCIe hardware devices to read and write from the target system memory via Direct Memory Access (DMA) over PCIe. 469 | 470 | ### Side-channel Tools 471 | 472 | * [ChipWhisperer](http://chipwhisperer.com) - Complete open-source toolchain for side-channel power analysis and glitching attacks. 473 | 474 | ### CTF Tools 475 | 476 | * [ctf-tools](https://github.com/zardus/ctf-tools) - Collection of setup scripts to install various security research tools easily and quickly deployable to new machines. 477 | * [Pwntools](https://github.com/Gallopsled/pwntools) - Rapid exploit development framework built for use in CTFs. 478 | * [RsaCtfTool](https://github.com/sourcekris/RsaCtfTool) - Decrypt data enciphered using weak RSA keys, and recover private keys from public keys using a variety of automated attacks. 479 | 480 | ### Penetration Testing Report Templates 481 | 482 | * [Public Pentesting Reports](https://github.com/juliocesarfort/public-pentesting-reports) - Curated list of public penetration test reports released by several consulting firms and academic security groups. 483 | * [T&VS Pentesting Report Template](https://www.testandverification.com/wp-content/uploads/template-penetration-testing-report-v03.pdf) - Pentest report template provided by Test and Verification Services, Ltd. 484 | * [Web Application Security Assessment Report Template](http://lucideus.com/pdf/stw.pdf) - Sample Web application security assessment reporting template provided by Lucideus. 485 | 486 | ## Books 487 | 488 | ### Penetration Testing Books 489 | 490 | * [The Art of Exploitation by Jon Erickson, 2008](https://www.nostarch.com/hacking2.htm) 491 | * [Metasploit: The Penetration Tester's Guide by David Kennedy et al., 2011](https://www.nostarch.com/metasploit) 492 | * [Penetration Testing: A Hands-On Introduction to Hacking by Georgia Weidman, 2014](https://www.nostarch.com/pentesting) 493 | * [Rtfm: Red Team Field Manual by Ben Clark, 2014](http://www.amazon.com/Rtfm-Red-Team-Field-Manual/dp/1494295504/) 494 | * [Btfm: Blue Team Field Manual by Alan J White & Ben Clark, 2017](https://www.amazon.de/Blue-Team-Field-Manual-BTFM/dp/154101636X) 495 | * [The Hacker Playbook by Peter Kim, 2014](http://www.amazon.com/The-Hacker-Playbook-Practical-Penetration/dp/1494932636/) 496 | * [The Basics of Hacking and Penetration Testing by Patrick Engebretson, 2013](https://www.elsevier.com/books/the-basics-of-hacking-and-penetration-testing/engebretson/978-1-59749-655-1) 497 | * [Professional Penetration Testing by Thomas Wilhelm, 2013](https://www.elsevier.com/books/professional-penetration-testing/wilhelm/978-1-59749-993-4) 498 | * [Advanced Penetration Testing for Highly-Secured Environments by Lee Allen, 2012](http://www.packtpub.com/networking-and-servers/advanced-penetration-testing-highly-secured-environments-ultimate-security-gu) 499 | * [Violent Python by TJ O'Connor, 2012](https://www.elsevier.com/books/violent-python/unknown/978-1-59749-957-6) 500 | * [Fuzzing: Brute Force Vulnerability Discovery by Michael Sutton et al., 2007](http://www.fuzzing.org/) 501 | * [Black Hat Python: Python Programming for Hackers and Pentesters by Justin Seitz, 2014](http://www.amazon.com/Black-Hat-Python-Programming-Pentesters/dp/1593275900) 502 | * [Penetration Testing: Procedures & Methodologies by EC-Council, 2010](http://www.amazon.com/Penetration-Testing-Procedures-Methodologies-EC-Council/dp/1435483677) 503 | * [Unauthorised Access: Physical Penetration Testing For IT Security Teams by Wil Allsopp, 2010](http://www.amazon.com/Unauthorised-Access-Physical-Penetration-Security-ebook/dp/B005DIAPKE) 504 | * [Advanced Persistent Threat Hacking: The Art and Science of Hacking Any Organization by Tyler Wrightson, 2014](http://www.amazon.com/Advanced-Persistent-Threat-Hacking-Organization/dp/0071828362) 505 | * [Bug Hunter's Diary by Tobias Klein, 2011](https://www.nostarch.com/bughunter) 506 | * [Advanced Penetration Testing by Wil Allsopp, 2017](https://www.amazon.com/Advanced-Penetration-Testing-Hacking-Networks/dp/1119367689/) 507 | 508 | ### Hackers Handbook Series 509 | 510 | * [The Database Hacker's Handbook, David Litchfield et al., 2005](http://www.wiley.com/WileyCDA/WileyTitle/productCd-0764578014.html) 511 | * [The Shellcoders Handbook by Chris Anley et al., 2007](http://www.wiley.com/WileyCDA/WileyTitle/productCd-047008023X.html) 512 | * [The Mac Hacker's Handbook by Charlie Miller & Dino Dai Zovi, 2009](http://www.wiley.com/WileyCDA/WileyTitle/productCd-0470395362.html) 513 | * [The Web Application Hackers Handbook by D. Stuttard, M. Pinto, 2011](http://www.wiley.com/WileyCDA/WileyTitle/productCd-1118026470.html) 514 | * [iOS Hackers Handbook by Charlie Miller et al., 2012](http://www.wiley.com/WileyCDA/WileyTitle/productCd-1118204123.html) 515 | * [Android Hackers Handbook by Joshua J. Drake et al., 2014](http://www.wiley.com/WileyCDA/WileyTitle/productCd-111860864X.html) 516 | * [The Browser Hackers Handbook by Wade Alcorn et al., 2014](http://www.wiley.com/WileyCDA/WileyTitle/productCd-1118662091.html) 517 | * [The Mobile Application Hackers Handbook by Dominic Chell et al., 2015](http://www.wiley.com/WileyCDA/WileyTitle/productCd-1118958500.html) 518 | * [Car Hacker's Handbook by Craig Smith, 2016](https://www.nostarch.com/carhacking) 519 | 520 | ### Defensive Development 521 | 522 | * [Holistic Info-Sec for Web Developers (Fascicle 0)](https://leanpub.com/holistic-infosec-for-web-developers) 523 | * [Holistic Info-Sec for Web Developers (Fascicle 1)](https://leanpub.com/holistic-infosec-for-web-developers-fascicle1-vps-network-cloud-webapplications) 524 | 525 | ### Network Analysis Books 526 | 527 | * [Nmap Network Scanning by Gordon Fyodor Lyon, 2009](https://nmap.org/book/) 528 | * [Practical Packet Analysis by Chris Sanders, 2011](https://www.nostarch.com/packet2.htm) 529 | * [Wireshark Network Analysis by by Laura Chappell & Gerald Combs, 2012](https://www.amazon.com/Wireshark-Network-Analysis-Second-Certified/dp/1893939944) 530 | * [Network Forensics: Tracking Hackers through Cyberspace by Sherri Davidoff & Jonathan Ham, 2012](http://www.amazon.com/Network-Forensics-Tracking-Hackers-Cyberspace-ebook/dp/B008CG8CYU/) 531 | 532 | ### Reverse Engineering Books 533 | 534 | * [Reverse Engineering for Beginners by Dennis Yurichev](http://beginners.re/) 535 | * [Hacking the Xbox by Andrew Huang, 2003](https://www.nostarch.com/xbox.htm) 536 | * [The IDA Pro Book by Chris Eagle, 2011](https://www.nostarch.com/idapro2.htm) 537 | * [Practical Reverse Engineering by Bruce Dang et al., 2014](http://www.wiley.com/WileyCDA/WileyTitle/productCd-1118787315.html) 538 | * [Gray Hat Hacking The Ethical Hacker's Handbook by Daniel Regalado et al., 2015](http://www.amazon.com/Hacking-Ethical-Hackers-Handbook-Edition/dp/0071832386) 539 | 540 | ### Malware Analysis Books 541 | 542 | * [Practical Malware Analysis by Michael Sikorski & Andrew Honig, 2012](https://www.nostarch.com/malware) 543 | * [The Art of Memory Forensics by Michael Hale Ligh et al., 2014](http://www.wiley.com/WileyCDA/WileyTitle/productCd-1118825098.html) 544 | * [Malware Analyst's Cookbook and DVD by Michael Hale Ligh et al., 2010](http://www.wiley.com/WileyCDA/WileyTitle/productCd-0470613033.html) 545 | 546 | ### Windows Books 547 | 548 | * [Windows Internals by Mark Russinovich et al., 2012](http://www.amazon.com/Windows-Internals-Part-Developer-Reference/dp/0735648735/) 549 | * [Troubleshooting with the Windows Sysinternals Tools by Mark Russinovich & Aaron Margosis, 2016](https://www.amazon.com/Troubleshooting-Windows-Sysinternals-Tools-2nd/dp/0735684448/) 550 | 551 | ### Social Engineering Books 552 | 553 | * [The Art of Deception by Kevin D. Mitnick & William L. Simon, 2002](http://www.wiley.com/WileyCDA/WileyTitle/productCd-0471237124.html) 554 | * [The Art of Intrusion by Kevin D. Mitnick & William L. Simon, 2005](http://www.wiley.com/WileyCDA/WileyTitle/productCd-0764569597.html) 555 | * [Ghost in the Wires by Kevin D. Mitnick & William L. Simon, 2011](http://www.hachettebookgroup.com/titles/kevin-mitnick/ghost-in-the-wires/9780316134477/) 556 | * [No Tech Hacking by Johnny Long & Jack Wiles, 2008](https://www.elsevier.com/books/no-tech-hacking/mitnick/978-1-59749-215-7) 557 | * [Social Engineering: The Art of Human Hacking by Christopher Hadnagy, 2010](http://www.wiley.com/WileyCDA/WileyTitle/productCd-0470639539.html) 558 | * [Unmasking the Social Engineer: The Human Element of Security by Christopher Hadnagy, 2014](http://www.wiley.com/WileyCDA/WileyTitle/productCd-1118608577.html) 559 | * [Social Engineering in IT Security: Tools, Tactics, and Techniques by Sharon Conheady, 2014](https://www.mhprofessional.com/product.php?isbn=0071818464) 560 | 561 | ### Lock Picking Books 562 | 563 | * [Practical Lock Picking by Deviant Ollam, 2012](https://www.elsevier.com/books/practical-lock-picking/ollam/978-1-59749-989-7) 564 | * [Keys to the Kingdom by Deviant Ollam, 2012](https://www.elsevier.com/books/keys-to-the-kingdom/ollam/978-1-59749-983-5) 565 | * [Lock Picking: Detail Overkill by Solomon](https://www.dropbox.com/s/y39ix9u9qpqffct/Lockpicking%20Detail%20Overkill.pdf?dl=0) 566 | * [Eddie the Wire books](https://www.dropbox.com/sh/k3z4dm4vyyojp3o/AAAIXQuwMmNuCch_StLPUYm-a?dl=0) 567 | 568 | ### Defcon Suggested Reading 569 | 570 | * [Defcon Suggested Reading](https://www.defcon.org/html/links/book-list.html) 571 | 572 | ## Vulnerability Databases 573 | 574 | * [Common Vulnerabilities and Exposures (CVE)](https://cve.mitre.org/) - Dictionary of common names (i.e., CVE Identifiers) for publicly known security vulnerabilities. 575 | * [National Vulnerability Database (NVD)](https://nvd.nist.gov/) - United States government's National Vulnerability Database provides additional meta-data (CPE, CVSS scoring) of the standard CVE List along with a fine-grained search engine. 576 | * [US-CERT Vulnerability Notes Database](https://www.kb.cert.org/vuls/) - Summaries, technical details, remediation information, and lists of vendors affected by software vulnerabilities, aggregated by the United States Computer Emergency Response Team (US-CERT). 577 | * [Full-Disclosure](http://seclists.org/fulldisclosure/) - Public, vendor-neutral forum for detailed discussion of vulnerabilities, often publishes details before many other sources. 578 | * [Bugtraq (BID)](http://www.securityfocus.com/bid/) - Software security bug identification database compiled from submissions to the SecurityFocus mailing list and other sources, operated by Symantec, Inc. 579 | * [Exploit-DB](https://www.exploit-db.com/) - Non-profit project hosting exploits for software vulnerabilities, provided as a public service by Offensive Security. 580 | * [Microsoft Security Bulletins](https://technet.microsoft.com/en-us/security/bulletins#sec_search) - Announcements of security issues discovered in Microsoft software, published by the Microsoft Security Response Center (MSRC). 581 | * [Microsoft Security Advisories](https://technet.microsoft.com/en-us/security/advisories#APUMA) - Archive of security advisories impacting Microsoft software. 582 | * [Mozilla Foundation Security Advisories](https://www.mozilla.org/security/advisories/) - Archive of security advisories impacting Mozilla software, including the Firefox Web Browser. 583 | * [Packet Storm](https://packetstormsecurity.com/files/) - Compendium of exploits, advisories, tools, and other security-related resources aggregated from across the industry. 584 | * [CXSecurity](https://cxsecurity.com/) - Archive of published CVE and Bugtraq software vulnerabilities cross-referenced with a Google dork database for discovering the listed vulnerability. 585 | * [SecuriTeam](http://www.securiteam.com/) - Independent source of software vulnerability information. 586 | * [Vulnerability Lab](https://www.vulnerability-lab.com/) - Open forum for security advisories organized by category of exploit target. 587 | * [Zero Day Initiative](http://zerodayinitiative.com/advisories/published/) - Bug bounty program with publicly accessible archive of published security advisories, operated by TippingPoint. 588 | * [Vulners](https://vulners.com/) - Security database of software vulnerabilities. 589 | * [Inj3ct0r](https://www.0day.today/) ([Onion service](http://mvfjfugdwgc5uwho.onion/)) - Exploit marketplace and vulnerability information aggregator. 590 | * [Open Source Vulnerability Database (OSVDB)](https://osvdb.org/) - Historical archive of security vulnerabilities in computerized equipment, no longer adding to its vulnerability database as of April, 2016. 591 | * [HPI-VDB](https://hpi-vdb.de/) - Aggregator of cross-referenced software vulnerabilities offering free-of-charge API access, provided by the Hasso-Plattner Institute, Potsdam. 592 | * [China National Vulnerability Database (CNNVD)](http://www.cnnvd.org.cn/) - Chinese government-run vulnerability database analoguous to the United States's CVE database hosted by Mitre Corporation. 593 | 594 | ## Security Courses 595 | 596 | * [Offensive Security Training](https://www.offensive-security.com/information-security-training/) - Training from BackTrack/Kali developers. 597 | * [SANS Security Training](http://www.sans.org/) - Computer Security Training & Certification. 598 | * [Open Security Training](http://opensecuritytraining.info/) - Training material for computer security classes. 599 | * [CTF Field Guide](https://trailofbits.github.io/ctf/) - Everything you need to win your next CTF competition. 600 | * [ARIZONA CYBER WARFARE RANGE](http://azcwr.org/) - 24x7 live fire exercises for beginners through real world operations; capability for upward progression into the real world of cyber warfare. 601 | * [Cybrary](http://cybrary.it) - Free courses in ethical hacking and advanced penetration testing. Advanced penetration testing courses are based on the book 'Penetration Testing for Highly Secured Environments'. 602 | * [Computer Security Student](http://computersecuritystudent.com) - Many free tutorials, great for beginners, $10/mo membership unlocks all content. 603 | * [European Union Agency for Network and Information Security](https://www.enisa.europa.eu/topics/trainings-for-cybersecurity-specialists/online-training-material) - ENISA Cyber Security Training material. 604 | 605 | ## Information Security Conferences 606 | 607 | * [DEF CON](https://www.defcon.org/) - Annual hacker convention in Las Vegas. 608 | * [Black Hat](http://www.blackhat.com/) - Annual security conference in Las Vegas. 609 | * [BSides](http://www.securitybsides.com/) - Framework for organising and holding security conferences. 610 | * [CCC](https://events.ccc.de/congress/) - Annual meeting of the international hacker scene in Germany. 611 | * [DerbyCon](https://www.derbycon.com/) - Annual hacker conference based in Louisville. 612 | * [PhreakNIC](http://phreaknic.info/) - Technology conference held annually in middle Tennessee. 613 | * [ShmooCon](http://shmoocon.org/) - Annual US East coast hacker convention. 614 | * [CarolinaCon](http://www.carolinacon.org/) - Infosec conference, held annually in North Carolina. 615 | * [CHCon](https://2016.chcon.nz/) - Christchurch Hacker Con, Only South Island of New Zealand hacker con. 616 | * [SummerCon](http://www.summercon.org/) - One of the oldest hacker conventions, held during Summer. 617 | * [Hack.lu](https://2016.hack.lu/) - Annual conference held in Luxembourg. 618 | * [Hackfest](https://hackfest.ca) - Largest hacking conference in Canada. 619 | * [HITB](https://conference.hitb.org/) - Deep-knowledge security conference held in Malaysia and The Netherlands. 620 | * [Troopers](https://www.troopers.de) - Annual international IT Security event with workshops held in Heidelberg, Germany. 621 | * [ThotCon](http://thotcon.org/) - Annual US hacker conference held in Chicago. 622 | * [LayerOne](http://www.layerone.org/) - Annual US security conference held every spring in Los Angeles. 623 | * [DeepSec](https://deepsec.net/) - Security Conference in Vienna, Austria. 624 | * [SkyDogCon](http://www.skydogcon.com/) - Technology conference in Nashville. 625 | * [SECUINSIDE](http://secuinside.com) - Security Conference in [Seoul](https://en.wikipedia.org/wiki/Seoul). 626 | * [DefCamp](http://def.camp/) - Largest Security Conference in Eastern Europe, held annually in Bucharest, Romania. 627 | * [AppSecUSA](https://2016.appsecusa.org/) - Annual conference organized by OWASP. 628 | * [BruCON](http://brucon.org) - Annual security conference in Belgium. 629 | * [Infosecurity Europe](http://www.infosecurityeurope.com/) - Europe's number one information security event, held in London, UK. 630 | * [Nullcon](http://nullcon.net/website/) - Annual conference in Delhi and Goa, India. 631 | * [RSA Conference USA](https://www.rsaconference.com/) - Annual security conference in San Francisco, California, USA. 632 | * [Swiss Cyber Storm](https://www.swisscyberstorm.com/) - Annual security conference in Lucerne, Switzerland. 633 | * [Virus Bulletin Conference](https://www.virusbulletin.com/conference/index) - Annual conference going to be held in Denver, USA for 2016. 634 | * [Ekoparty](http://www.ekoparty.org) - Largest Security Conference in Latin America, held annually in Buenos Aires, Argentina. 635 | * [44Con](https://44con.com/) - Annual Security Conference held in London. 636 | * [BalCCon](https://www.balccon.org) - Balkan Computer Congress, annually held in Novi Sad, Serbia. 637 | * [FSec](http://fsec.foi.hr) - FSec - Croatian Information Security Gathering in Varaždin, Croatia. 638 | 639 | ## Information Security Magazines 640 | 641 | * [2600: The Hacker Quarterly](https://www.2600.com/Magazine/DigitalEditions) - American publication about technology and computer "underground." 642 | * [Phrack Magazine](http://www.phrack.org/) - By far the longest running hacker zine. 643 | 644 | ## Awesome Lists 645 | 646 | * [Kali Linux Tools](http://tools.kali.org/tools-listing) - List of tools present in Kali Linux. 647 | * [SecTools](http://sectools.org/) - Top 125 Network Security Tools. 648 | * [Pentest Cheat Sheets](https://github.com/coreb1t/awesome-pentest-cheat-sheets) - Awesome Pentest Cheat Sheets. 649 | * [C/C++ Programming](https://github.com/fffaraz/awesome-cpp) - One of the main language for open source security tools. 650 | * [.NET Programming](https://github.com/quozd/awesome-dotnet) - Software framework for Microsoft Windows platform development. 651 | * [Shell Scripting](https://github.com/alebcay/awesome-shell) - Command line frameworks, toolkits, guides and gizmos. 652 | * [Ruby Programming by @dreikanter](https://github.com/dreikanter/ruby-bookmarks) - The de-facto language for writing exploits. 653 | * [Ruby Programming by @markets](https://github.com/markets/awesome-ruby) - The de-facto language for writing exploits. 654 | * [Ruby Programming by @Sdogruyol](https://github.com/Sdogruyol/awesome-ruby) - The de-facto language for writing exploits. 655 | * [JavaScript Programming](https://github.com/sorrycc/awesome-javascript) - In-browser development and scripting. 656 | * [Node.js Programming by @sindresorhus](https://github.com/sindresorhus/awesome-nodejs) - Curated list of delightful Node.js packages and resources. 657 | * [Python tools for penetration testers](https://github.com/dloss/python-pentest-tools) - Lots of pentesting tools are written in Python. 658 | * [Python Programming by @svaksha](https://github.com/svaksha/pythonidae) - General Python programming. 659 | * [Python Programming by @vinta](https://github.com/vinta/awesome-python) - General Python programming. 660 | * [Android Security](https://github.com/ashishb/android-security-awesome) - Collection of Android security related resources. 661 | * [Awesome Awesomness](https://github.com/bayandin/awesome-awesomeness) - The List of the Lists. 662 | * [AppSec](https://github.com/paragonie/awesome-appsec) - Resources for learning about application security. 663 | * [CTFs](https://github.com/apsdehal/awesome-ctf) - Capture The Flag frameworks, libraries, etc. 664 | * [InfoSec § Hacking challenges](https://github.com/AnarchoTechNYC/meta/wiki/InfoSec#hacking-challenges) - Comprehensive directory of CTFs, wargames, hacking challenge websites, pentest practice lab exercises, and more. 665 | * [Hacking](https://github.com/carpedm20/awesome-hacking) - Tutorials, tools, and resources. 666 | * [Honeypots](https://github.com/paralax/awesome-honeypots) - Honeypots, tools, components, and more. 667 | * [Infosec](https://github.com/onlurking/awesome-infosec) - Information security resources for pentesting, forensics, and more. 668 | * [Forensics](https://github.com/Cugu/awesome-forensics) - Free (mostly open source) forensic analysis tools and resources. 669 | * [Malware Analysis](https://github.com/rshipp/awesome-malware-analysis) - Tools and resources for analysts. 670 | * [PCAP Tools](https://github.com/caesar0301/awesome-pcaptools) - Tools for processing network traffic. 671 | * [Security](https://github.com/sbilly/awesome-security) - Software, libraries, documents, and other resources. 672 | * [Awesome Lockpicking](https://github.com/meitar/awesome-lockpicking) - Awesome guides, tools, and other resources about the security and compromise of locks, safes, and keys. 673 | * [SecLists](https://github.com/danielmiessler/SecLists) - Collection of multiple types of lists used during security assessments. 674 | * [Security Talks](https://github.com/PaulSec/awesome-sec-talks) - Curated list of security conferences. 675 | * [OSINT](https://github.com/jivoi/awesome-osint) - Awesome OSINT list containing great resources. 676 | * [YARA](https://github.com/InQuest/awesome-yara) - YARA rules, tools, and people. 677 | * [Blue Team](https://github.com/meitar/awesome-cybersecurity-blueteam) - Awesome resources, tools, and other shiny things for cybersecurity blue teams. 678 | * [Android Exploits](https://github.com/sundaysec/Android-Exploits) - Guide on Android Exploitation and Hacks 679 | 680 | # License 681 | 682 | [![CC-BY](https://mirrors.creativecommons.org/presskit/buttons/88x31/svg/by.svg)](https://creativecommons.org/licenses/by/4.0/) 683 | 684 | This work is licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/). 685 | --------------------------------------------------------------------------------