├── .gitignore ├── asm.py ├── crypto ├── aes │ ├── aes_py.py │ └── aes_sage.py ├── gcm_ferguson.sage ├── lll.py ├── md5.py ├── mt.py ├── openssl.py ├── rsa.sage └── xtea.py ├── disasm.py ├── examples └── win64_reverse_shell.py ├── partition.py ├── patch.py ├── pattern.py ├── pwnlib ├── __init__.py ├── par.py ├── sqli.py ├── tools.py └── wintools.py └── tools.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .gdb* 3 | *.sage.py 4 | -------------------------------------------------------------------------------- /asm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/asm.py -------------------------------------------------------------------------------- /crypto/aes/aes_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/crypto/aes/aes_py.py -------------------------------------------------------------------------------- /crypto/aes/aes_sage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/crypto/aes/aes_sage.py -------------------------------------------------------------------------------- /crypto/gcm_ferguson.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/crypto/gcm_ferguson.sage -------------------------------------------------------------------------------- /crypto/lll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/crypto/lll.py -------------------------------------------------------------------------------- /crypto/md5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/crypto/md5.py -------------------------------------------------------------------------------- /crypto/mt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/crypto/mt.py -------------------------------------------------------------------------------- /crypto/openssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/crypto/openssl.py -------------------------------------------------------------------------------- /crypto/rsa.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/crypto/rsa.sage -------------------------------------------------------------------------------- /crypto/xtea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/crypto/xtea.py -------------------------------------------------------------------------------- /disasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/disasm.py -------------------------------------------------------------------------------- /examples/win64_reverse_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/examples/win64_reverse_shell.py -------------------------------------------------------------------------------- /partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/partition.py -------------------------------------------------------------------------------- /patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/patch.py -------------------------------------------------------------------------------- /pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/pattern.py -------------------------------------------------------------------------------- /pwnlib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnlib/par.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/pwnlib/par.py -------------------------------------------------------------------------------- /pwnlib/sqli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/pwnlib/sqli.py -------------------------------------------------------------------------------- /pwnlib/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/pwnlib/tools.py -------------------------------------------------------------------------------- /pwnlib/wintools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/pwnlib/wintools.py -------------------------------------------------------------------------------- /tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklasb/ctf-tools/HEAD/tools.md --------------------------------------------------------------------------------