├── .gitignore ├── LICENSE ├── README.md ├── documents ├── Troopers 2015 - The old is new, again. CVE-2011-2461 is back!.pdf ├── gpl.txt └── readme.txt └── src ├── burp └── BurpExtender.java └── org └── nibblesec └── tools └── ParrotNG.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkisoft/ParrotNG/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkisoft/ParrotNG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkisoft/ParrotNG/HEAD/README.md -------------------------------------------------------------------------------- /documents/Troopers 2015 - The old is new, again. CVE-2011-2461 is back!.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkisoft/ParrotNG/HEAD/documents/Troopers 2015 - The old is new, again. CVE-2011-2461 is back!.pdf -------------------------------------------------------------------------------- /documents/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkisoft/ParrotNG/HEAD/documents/gpl.txt -------------------------------------------------------------------------------- /documents/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkisoft/ParrotNG/HEAD/documents/readme.txt -------------------------------------------------------------------------------- /src/burp/BurpExtender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkisoft/ParrotNG/HEAD/src/burp/BurpExtender.java -------------------------------------------------------------------------------- /src/org/nibblesec/tools/ParrotNG.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkisoft/ParrotNG/HEAD/src/org/nibblesec/tools/ParrotNG.java --------------------------------------------------------------------------------