├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── nginx-config ├── parallelization-poodle.py ├── poodle-exploit.py ├── poodle-poc.py ├── poodle.js ├── readme.md └── request-splitter.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [mpgn] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpgn/poodle-PoC/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpgn/poodle-PoC/HEAD/LICENSE -------------------------------------------------------------------------------- /nginx-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpgn/poodle-PoC/HEAD/nginx-config -------------------------------------------------------------------------------- /parallelization-poodle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpgn/poodle-PoC/HEAD/parallelization-poodle.py -------------------------------------------------------------------------------- /poodle-exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpgn/poodle-PoC/HEAD/poodle-exploit.py -------------------------------------------------------------------------------- /poodle-poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpgn/poodle-PoC/HEAD/poodle-poc.py -------------------------------------------------------------------------------- /poodle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpgn/poodle-PoC/HEAD/poodle.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpgn/poodle-PoC/HEAD/readme.md -------------------------------------------------------------------------------- /request-splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpgn/poodle-PoC/HEAD/request-splitter.py --------------------------------------------------------------------------------