├── .gitmodules ├── LICENSE ├── README.md ├── chall ├── .gitignore ├── Dockerfile ├── build.sh ├── deploy │ ├── banner │ └── challenge ├── description.md └── weakdoge.jpg └── exploit ├── .clang-format ├── .gitignore ├── Makefile ├── compile_flags.txt ├── jbig2.py ├── jbig2arith.cc ├── jbig2arith.h ├── jbjbarith.cc ├── jbjbarith.h ├── pdf.py └── sploit.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/README.md -------------------------------------------------------------------------------- /chall/.gitignore: -------------------------------------------------------------------------------- 1 | files/ 2 | -------------------------------------------------------------------------------- /chall/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/chall/Dockerfile -------------------------------------------------------------------------------- /chall/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/chall/build.sh -------------------------------------------------------------------------------- /chall/deploy/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/chall/deploy/banner -------------------------------------------------------------------------------- /chall/deploy/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/chall/deploy/challenge -------------------------------------------------------------------------------- /chall/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/chall/description.md -------------------------------------------------------------------------------- /chall/weakdoge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/chall/weakdoge.jpg -------------------------------------------------------------------------------- /exploit/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | -------------------------------------------------------------------------------- /exploit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/exploit/.gitignore -------------------------------------------------------------------------------- /exploit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/exploit/Makefile -------------------------------------------------------------------------------- /exploit/compile_flags.txt: -------------------------------------------------------------------------------- 1 | -xc++ 2 | -std=c++20 3 | -I/usr/include/python3.9 4 | -------------------------------------------------------------------------------- /exploit/jbig2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/exploit/jbig2.py -------------------------------------------------------------------------------- /exploit/jbig2arith.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/exploit/jbig2arith.cc -------------------------------------------------------------------------------- /exploit/jbig2arith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/exploit/jbig2arith.h -------------------------------------------------------------------------------- /exploit/jbjbarith.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/exploit/jbjbarith.cc -------------------------------------------------------------------------------- /exploit/jbjbarith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/exploit/jbjbarith.h -------------------------------------------------------------------------------- /exploit/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/exploit/pdf.py -------------------------------------------------------------------------------- /exploit/sploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riatre/hso-groupie/HEAD/exploit/sploit.py --------------------------------------------------------------------------------