├── .gitignore ├── README.md ├── Vagrantfile ├── ctfpwn.sh ├── exploits ├── _piratebay_ructfe2017 │ ├── exploit.py │ ├── exploit.torrent │ ├── run.sh │ └── service ├── _powder_ructfe2017 │ ├── exploit.py │ ├── run.sh │ └── service └── _template │ ├── exploit.py │ ├── run.sh │ └── service ├── lib.sh ├── targets └── run-targets.sh └── tests ├── example_exploit ├── run.sh └── service ├── http_flag_submission_ructfe2017.py ├── run-tests.sh └── tcp_flag_submission.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/Vagrantfile -------------------------------------------------------------------------------- /ctfpwn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/ctfpwn.sh -------------------------------------------------------------------------------- /exploits/_piratebay_ructfe2017/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/exploits/_piratebay_ructfe2017/exploit.py -------------------------------------------------------------------------------- /exploits/_piratebay_ructfe2017/exploit.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/exploits/_piratebay_ructfe2017/exploit.torrent -------------------------------------------------------------------------------- /exploits/_piratebay_ructfe2017/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/exploits/_piratebay_ructfe2017/run.sh -------------------------------------------------------------------------------- /exploits/_piratebay_ructfe2017/service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/exploits/_piratebay_ructfe2017/service -------------------------------------------------------------------------------- /exploits/_powder_ructfe2017/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/exploits/_powder_ructfe2017/exploit.py -------------------------------------------------------------------------------- /exploits/_powder_ructfe2017/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/exploits/_powder_ructfe2017/run.sh -------------------------------------------------------------------------------- /exploits/_powder_ructfe2017/service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/exploits/_powder_ructfe2017/service -------------------------------------------------------------------------------- /exploits/_template/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/exploits/_template/exploit.py -------------------------------------------------------------------------------- /exploits/_template/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/exploits/_template/run.sh -------------------------------------------------------------------------------- /exploits/_template/service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/exploits/_template/service -------------------------------------------------------------------------------- /lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/lib.sh -------------------------------------------------------------------------------- /targets/run-targets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/targets/run-targets.sh -------------------------------------------------------------------------------- /tests/example_exploit/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/tests/example_exploit/run.sh -------------------------------------------------------------------------------- /tests/example_exploit/service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/tests/example_exploit/service -------------------------------------------------------------------------------- /tests/http_flag_submission_ructfe2017.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/tests/http_flag_submission_ructfe2017.py -------------------------------------------------------------------------------- /tests/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/tests/run-tests.sh -------------------------------------------------------------------------------- /tests/tcp_flag_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshixx/ctfpwnng/HEAD/tests/tcp_flag_submission.py --------------------------------------------------------------------------------