├── .gitmodules ├── LICENSE ├── README.md ├── flask_app ├── app.py ├── resources │ └── secret.txt ├── swagger.json └── templates │ └── index.html ├── requirements.txt └── tests ├── fuzzing.robot └── resource.robot /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3rda/robocon2024-fuzzing/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3rda/robocon2024-fuzzing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3rda/robocon2024-fuzzing/HEAD/README.md -------------------------------------------------------------------------------- /flask_app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3rda/robocon2024-fuzzing/HEAD/flask_app/app.py -------------------------------------------------------------------------------- /flask_app/resources/secret.txt: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /flask_app/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3rda/robocon2024-fuzzing/HEAD/flask_app/swagger.json -------------------------------------------------------------------------------- /flask_app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3rda/robocon2024-fuzzing/HEAD/flask_app/templates/index.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3rda/robocon2024-fuzzing/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/fuzzing.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3rda/robocon2024-fuzzing/HEAD/tests/fuzzing.robot -------------------------------------------------------------------------------- /tests/resource.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3rda/robocon2024-fuzzing/HEAD/tests/resource.robot --------------------------------------------------------------------------------