├── .github ├── example.png └── example_dump.png ├── README.md ├── bropper.py ├── examples ├── 1 │ ├── Dockerfile │ ├── chall.c │ └── server.sh ├── 2 │ ├── Dockerfile │ ├── chall_fork.c │ ├── serve.c │ └── serve.h └── 3 │ ├── Dockerfile │ ├── chall_fork.c │ ├── serve.c │ └── serve.h └── requirements.txt /.github/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hakumarachi/Bropper/HEAD/.github/example.png -------------------------------------------------------------------------------- /.github/example_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hakumarachi/Bropper/HEAD/.github/example_dump.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hakumarachi/Bropper/HEAD/README.md -------------------------------------------------------------------------------- /bropper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hakumarachi/Bropper/HEAD/bropper.py -------------------------------------------------------------------------------- /examples/1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hakumarachi/Bropper/HEAD/examples/1/Dockerfile -------------------------------------------------------------------------------- /examples/1/chall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hakumarachi/Bropper/HEAD/examples/1/chall.c -------------------------------------------------------------------------------- /examples/1/server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hakumarachi/Bropper/HEAD/examples/1/server.sh -------------------------------------------------------------------------------- /examples/2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hakumarachi/Bropper/HEAD/examples/2/Dockerfile -------------------------------------------------------------------------------- /examples/2/chall_fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hakumarachi/Bropper/HEAD/examples/2/chall_fork.c -------------------------------------------------------------------------------- /examples/2/serve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hakumarachi/Bropper/HEAD/examples/2/serve.c -------------------------------------------------------------------------------- /examples/2/serve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hakumarachi/Bropper/HEAD/examples/2/serve.h -------------------------------------------------------------------------------- /examples/3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hakumarachi/Bropper/HEAD/examples/3/Dockerfile -------------------------------------------------------------------------------- /examples/3/chall_fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hakumarachi/Bropper/HEAD/examples/3/chall_fork.c -------------------------------------------------------------------------------- /examples/3/serve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hakumarachi/Bropper/HEAD/examples/3/serve.c -------------------------------------------------------------------------------- /examples/3/serve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hakumarachi/Bropper/HEAD/examples/3/serve.h -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | rich~=13.2.0 2 | pwntools 3 | argparse 4 | datetime 5 | --------------------------------------------------------------------------------