├── .gitignore ├── LICENSE ├── README.md ├── bankrobber ├── README.md └── bankrobber.py ├── falafel ├── README.md └── falafel.py ├── fighter ├── README.md ├── fighter.py └── mandros3.py ├── help ├── README.md └── help.py ├── json ├── README.md ├── exploit.ps └── htb_json.py ├── popcorn ├── README.md └── popcorn.py └── zipper ├── README.md └── zipper.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | venv/ 3 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0j0hn/AWAE-OSWE-Prep/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0j0hn/AWAE-OSWE-Prep/HEAD/README.md -------------------------------------------------------------------------------- /bankrobber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0j0hn/AWAE-OSWE-Prep/HEAD/bankrobber/README.md -------------------------------------------------------------------------------- /bankrobber/bankrobber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0j0hn/AWAE-OSWE-Prep/HEAD/bankrobber/bankrobber.py -------------------------------------------------------------------------------- /falafel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0j0hn/AWAE-OSWE-Prep/HEAD/falafel/README.md -------------------------------------------------------------------------------- /falafel/falafel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0j0hn/AWAE-OSWE-Prep/HEAD/falafel/falafel.py -------------------------------------------------------------------------------- /fighter/README.md: -------------------------------------------------------------------------------- 1 | ```sudo python3 mandros3.py``` 2 | -------------------------------------------------------------------------------- /fighter/fighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0j0hn/AWAE-OSWE-Prep/HEAD/fighter/fighter.py -------------------------------------------------------------------------------- /fighter/mandros3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0j0hn/AWAE-OSWE-Prep/HEAD/fighter/mandros3.py -------------------------------------------------------------------------------- /help/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0j0hn/AWAE-OSWE-Prep/HEAD/help/README.md -------------------------------------------------------------------------------- /help/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0j0hn/AWAE-OSWE-Prep/HEAD/help/help.py -------------------------------------------------------------------------------- /json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0j0hn/AWAE-OSWE-Prep/HEAD/json/README.md -------------------------------------------------------------------------------- /json/exploit.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0j0hn/AWAE-OSWE-Prep/HEAD/json/exploit.ps -------------------------------------------------------------------------------- /json/htb_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0j0hn/AWAE-OSWE-Prep/HEAD/json/htb_json.py -------------------------------------------------------------------------------- /popcorn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0j0hn/AWAE-OSWE-Prep/HEAD/popcorn/README.md -------------------------------------------------------------------------------- /popcorn/popcorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0j0hn/AWAE-OSWE-Prep/HEAD/popcorn/popcorn.py -------------------------------------------------------------------------------- /zipper/README.md: -------------------------------------------------------------------------------- 1 | ``` 2 | python3 zipper.py 3 | ``` -------------------------------------------------------------------------------- /zipper/zipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0j0hn/AWAE-OSWE-Prep/HEAD/zipper/zipper.py --------------------------------------------------------------------------------