├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── get-composer.sh ├── html ├── audio │ ├── bigPayload.txt │ ├── metattacker.js │ └── noot_no_ID3.mp3 ├── favicon.png ├── images │ ├── html5sec.txt │ ├── image.php │ ├── test.jpg │ └── xsscheatsheet.txt ├── index.php ├── style.css └── video │ ├── 10min.mp4 │ ├── 30sec.mp4 │ ├── AtomicParsleyFile.php │ ├── artwork.jpg │ ├── generate.php │ ├── style.js │ ├── values.html │ └── xss.txt ├── phpunit.xml ├── screenshot-tool.png └── tests └── AtomicParsleyFileTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | logs/ 2 | vendor/ 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/composer.lock -------------------------------------------------------------------------------- /get-composer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/get-composer.sh -------------------------------------------------------------------------------- /html/audio/bigPayload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/audio/bigPayload.txt -------------------------------------------------------------------------------- /html/audio/metattacker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/audio/metattacker.js -------------------------------------------------------------------------------- /html/audio/noot_no_ID3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/audio/noot_no_ID3.mp3 -------------------------------------------------------------------------------- /html/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/favicon.png -------------------------------------------------------------------------------- /html/images/html5sec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/images/html5sec.txt -------------------------------------------------------------------------------- /html/images/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/images/image.php -------------------------------------------------------------------------------- /html/images/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/images/test.jpg -------------------------------------------------------------------------------- /html/images/xsscheatsheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/images/xsscheatsheet.txt -------------------------------------------------------------------------------- /html/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/index.php -------------------------------------------------------------------------------- /html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/style.css -------------------------------------------------------------------------------- /html/video/10min.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/video/10min.mp4 -------------------------------------------------------------------------------- /html/video/30sec.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/video/30sec.mp4 -------------------------------------------------------------------------------- /html/video/AtomicParsleyFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/video/AtomicParsleyFile.php -------------------------------------------------------------------------------- /html/video/artwork.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/video/artwork.jpg -------------------------------------------------------------------------------- /html/video/generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/video/generate.php -------------------------------------------------------------------------------- /html/video/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/video/style.js -------------------------------------------------------------------------------- /html/video/values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/video/values.html -------------------------------------------------------------------------------- /html/video/xss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/html/video/xss.txt -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/phpunit.xml -------------------------------------------------------------------------------- /screenshot-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/screenshot-tool.png -------------------------------------------------------------------------------- /tests/AtomicParsleyFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-NDS/Metadata-Attacker/HEAD/tests/AtomicParsleyFileTest.php --------------------------------------------------------------------------------