awesome-ctf/README.md

176 lines
5.5 KiB
Markdown
Raw Normal View History

2015-04-26 05:50:19 +00:00
# CTF Tools
2015-02-28 05:48:21 +00:00
2015-04-26 05:57:15 +00:00
A curated list of awesome CTF frameworks, libraries, resources and softwares.
2015-02-28 05:48:21 +00:00
2015-04-26 05:50:19 +00:00
### Contributing
2015-02-28 05:51:44 +00:00
2015-04-26 05:50:19 +00:00
Please take a quick gander at the [contribution guidelines](https://github.com/apsdehal/ctf-tools/CONTRIBUTING.md) first.
#### _If you know a tool that isn't present here, feel free to open a pull request._
2015-04-26 05:50:45 +00:00
### Contents
- [CTF Tools](#ctf-tools)
- [Create](#create)
- [Web](#create-web)
- [Forensics](#create-forensics)
- [Solve](#solve)
- [Attacks](#solve-attacks)
- [Bruteforcers](#solve-bruteforcers)
- [Creation Tools](#solve-create)
- [Cryptography](#solve-crypto)
- [Exploits](#solve-exploits)
- [Forensics](#solve-forensics)
- [Miscellaneous](#solve-misc)
- [Reversing](#solve-reversing)
- [Services](#solve-services)
- [Steganography](#solve-stegano)
- [Web](#solve-web)
2015-04-26 05:51:01 +00:00
2015-04-26 05:57:15 +00:00
- [Resources](#resources)
- [Websites](#resources-websites)
- [Tutorials](#resources-tutorials)
2015-04-26 05:52:43 +00:00
# Create
2015-04-26 05:51:01 +00:00
*Tools used for creating CTF challenges*
## Forensics
*Tools used for creating Forensics challenges*
2015-03-19 09:32:49 +00:00
- [Registry Dumper](http://www.kahusecurity.com/tools/RegistryDumper_v0.1.zip) - Dump your registry
2015-04-26 05:51:01 +00:00
## Web
*Tools used for creating Web challenges*
*JavaScript Obfustcators*
- Metasploit JavaScript Obfustcator
- Uglify
2015-04-26 05:52:43 +00:00
# Solve
2015-04-26 05:51:19 +00:00
*Tools used for solving CTF challenges*
2015-04-26 06:11:06 +00:00
## Attacks
2015-04-26 05:51:19 +00:00
2015-04-26 06:11:06 +00:00
*Tools used for performing various kinds of attacks*
2015-04-26 05:51:19 +00:00
2015-04-26 06:11:06 +00:00
- [Layer 2 attacks](https://github.com/tomac/yersinia) - Attack various protocols on layer 2
2015-04-26 05:51:19 +00:00
## Crypto
*Tools used for solving Crypto challenges*
- XORTool
- [RSATool](https://github.com/ius/rsatool) - Generate private key with knowledge of p and q
2015-04-26 06:11:06 +00:00
## Bruteforcers
*Tools used for various kind of bruteforcing (passwords etc.)*
- John The Ripper
- John The Jumbo
- Ophcrack
## Exploits
*Tools used for solving Exploits challenges*
- [Metasploit](http://www.metasploit.com/) - Most used penetration testing software
- [pwntools](https://github.com/Gallopsled/pwntools) - CTF Framework for writing exploits
2015-04-26 05:51:19 +00:00
## Forensics
*Tools used for solving Forensics challenges*
- [Volatility](https://github.com/volatilityfoundation/volatility) - To investigate memory dumps
- [Shellbags](https://github.com/williballenthin/shellbags) - Investigate NT\_USER.dat files
- Foremost - Extract particular kind of files using headers
- `apt-get install foremost`
- Wireshark - Analyze the network dumps
- `apt-get install wireshark`
- Audacity - Analyze sound files (mp3, m4a, whatever)
- `apt-get install audacity`
- extundelete - Used for recovering lost data from mountable images
- fsck.ext4 - Used to fix corrupt filesystems
- [RegistryViewer](http://www.gaijin.at/en/getitpage.php?id=regview) - Used to view windows registries
- [More registry viewers](http://www.forensicswiki.org/wiki/Windows_Registry)
- bkhive and samdump2 - Dump SYSTEM and SAM files
- [creddump](https://code.google.com/p/creddump/) - Dump windows credentials
- [UsbForensics](http://www.forensicswiki.org/wiki/USB_History_Viewing) - Contains many tools for usb forensics
- [ResourcesExtract] - Extract various filetypes from exes
- [CFF Explorer](http://www.ntcore.com/exsuite.php) - PE Editor
2015-04-26 06:15:02 +00:00
- [Malzilla](http://malzilla.sourceforge.net/) - Malware hunting tool
- [PDF Streams Inflater](http://malzilla.sourceforge.net/downloads.html) - Find and extract zlib files compressed in PDF files
2015-04-26 05:51:19 +00:00
## Reversing
*Tools used for solving Reversing challenges*
2015-04-26 06:11:06 +00:00
- [Androguard](https://github.com/androguard/androguard) - Reverse engineer Android applications
- [Apk2Gold](https://github.com/lxdvs/apk2gold) - Yet another Android decompiler
- [ApkTool](http://ibotpeaches.github.io/Apktool/) - Android Decompiler
2015-04-26 05:51:19 +00:00
- IDA Pro - Ultimate solution to reversing needs
2015-04-26 06:11:06 +00:00
- [Krakatau](https://github.com/Storyyeller/Krakatau) - Java decompiler and disassembler
- [Revelo](http://www.kahusecurity.com/tools/Revelo_v0.6.zip)
2015-04-26 05:51:19 +00:00
- [Uncompyle](https://github.com/williballenthin/shellbags) - Decompile Python 2.7 binaries (.pyc)
2015-04-26 06:11:06 +00:00
*JavaScript Deobfustcators*
2015-04-26 05:51:19 +00:00
- [Detox](http://relentless-coding.org/projects/jsdetox/install)
- [BinWalk](https://github.com/devttys0/binwalk) - Analyze, reverse engineer, and extract firmware images.
- [Jadx](https://github.com/skylot/jadx) - Decompile Android files
- [Boomerang](https://github.com/nemerle/boomerang) - Decompile x86 binaries to C
2015-04-26 06:11:06 +00:00
## Services
2015-04-26 05:51:19 +00:00
2015-04-26 06:11:06 +00:00
*Various kind of useful services available around the internet*
2015-04-26 05:51:19 +00:00
2015-04-26 06:11:06 +00:00
- [Request Bin](http://requestb.in/) - Lets you inspect http requests to a particular url
- [CSWSH](http://ironwasp.org/cswsh.html) - Cross-Site WebSocket Hijacking Tester
2015-04-26 05:51:19 +00:00
2015-04-26 06:11:06 +00:00
## Stegano
2015-04-26 05:51:19 +00:00
2015-04-26 06:11:06 +00:00
*Tools used for solving Steganography challenges*
2015-04-26 05:51:19 +00:00
2015-04-26 06:11:06 +00:00
- Stegsolve
- Steganabara
- [Steghide](http://steghide.sourceforge.net/)
- pngtools - For various analysis related to PNGs
- `apt-get install pngtools`
- [SmartDeblur](https://github.com/Y-Vladimir/SmartDeblur) Used to deblur and fix defocused images
2015-04-26 05:51:19 +00:00
2015-04-26 06:11:06 +00:00
## Web
2015-04-26 05:51:19 +00:00
2015-04-26 06:11:06 +00:00
*Tools used for solving Web challenges*
2015-04-26 05:51:19 +00:00
2015-04-26 06:11:06 +00:00
- [XSSer](http://xsser.sourceforge.net/) - Automated XSS testor
- [SQLMap](https://github.com/sqlmapproject/sqlmap) - Automatic SQL injection and database takeover tooli
2015-04-26 05:57:15 +00:00
# Resources
2015-04-26 06:05:05 +00:00
*Where to discover about CTF*
2015-04-26 05:57:15 +00:00
## Websites
2015-04-26 06:05:05 +00:00
*Various general websites about and on ctf*
- [CTF Time](https://ctftime.org/) - General information on CTF occuring around the worlds
## Writeups Collections
*Collections of CTF writeups*
- [CTF Writeups (Community)](https://github.com/ctfs/) - CTF Writeups Repos maintained by community
- [Shell Storm](shell-storm.org/repo/CTF/) - CTF Writeups Repo maintained by Jonathan Salwan
2015-04-26 05:57:15 +00:00
## Tutorials
2015-04-26 06:05:05 +00:00
*Tutorials to learn how to play CTFs*