├── .DS_Store ├── FuzzFilter └── filter.py ├── FuzzingTester ├── .DS_Store ├── README.md ├── __init__.py ├── asanTester.py ├── filter.py ├── fuzzTester.py ├── gdbTestRunner.py ├── gdbtester.py ├── helper.py ├── helper.pyc ├── init.sh ├── minidumpCollector.py ├── minidumpParser.py ├── resources │ ├── README.md │ └── mozconfig_dbg ├── run.sh ├── setup.sh ├── tests │ ├── .DS_Store │ └── CVE-2018-18492 │ │ ├── .DS_Store │ │ └── crash.html ├── traceComparator.py └── util.py ├── Manual Exploitation ├── .DS_Store ├── CVE-2017-7818 │ └── crash.html ├── CVE-2017-7819 │ ├── .DS_Store │ ├── crash.html │ ├── crash.xml │ ├── crash.xsl │ └── text.html ├── CVE-2017-7828 │ ├── .DS_Store │ ├── README.md │ ├── crash.html │ ├── images │ │ ├── .DS_Store │ │ ├── crash.png │ │ ├── image1.png │ │ ├── image2.png │ │ ├── image3.png │ │ ├── image4.png │ │ └── image5.png │ ├── mozconfig │ ├── scripts.html │ └── user.js ├── CVE-2018-12386 │ ├── .DS_Store │ ├── README.md │ ├── crash.js │ └── pwn.js ├── CVE-2018-12387 │ ├── .DS_Store │ ├── README.md │ ├── crash.html │ └── crash.js ├── CVE-2018-18492 │ ├── .DS_Store │ ├── README.md │ ├── crash.html │ ├── images │ │ ├── .DS_Store │ │ ├── crash.png │ │ ├── image1.png │ │ ├── image2.png │ │ ├── image3.png │ │ ├── image4.png │ │ └── image5.png │ ├── mozconfig │ └── user.js ├── CVE-2018-5093 │ ├── .DS_Store │ ├── README.md │ └── crash.html ├── CVE-2018-5094 │ ├── .DS_Store │ ├── README.md │ ├── crash.html │ └── crash.js ├── CVE-2018-5097 │ ├── .DS_Store │ ├── README.md │ ├── crash.html │ ├── ctop.xsl │ ├── math.xml │ ├── mathml.xsl │ └── pmathml.xsl ├── CVE-2018-5100 │ ├── .DS_Store │ ├── README.md │ ├── crash.html │ ├── images │ │ ├── .DS_Store │ │ ├── crash.png │ │ ├── image1.png │ │ └── image2.png │ └── user.js ├── CVE-2018-5102 │ ├── .DS_Store │ ├── README.md │ ├── crash.html │ └── image1.png ├── CVE-2018-5104 │ ├── .DS_Store │ ├── README.md │ ├── crash.html │ └── images │ │ ├── .DS_Store │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── code.png ├── CVE-2018-5127 │ ├── .DS_Store │ ├── README.md │ └── crash.html ├── CVE-2018-5129 │ ├── README.md │ └── oob.html ├── CVE-2019-11707 │ ├── .DS_Store │ ├── README.md │ ├── crash.js │ ├── exploit.js │ └── index.html ├── CVE-2019-9791 │ ├── .DS_Store │ ├── README.md │ ├── crash.js │ └── exploit.js ├── CVE-2019-9810 │ ├── .DS_Store │ ├── README.md │ └── overflow.js ├── CVE-2019-9813 │ ├── .DS_Store │ ├── README.md │ └── crash.js └── README.md ├── README.md ├── domato ├── .DS_Store ├── CONTRIBUTING.md ├── CVE201818492_template.html ├── CVE201818492_template2.html ├── CVE20185104_template.html ├── LICENSE ├── README.md ├── attributevalues.txt ├── canvas │ ├── README.md │ ├── canvas.txt │ ├── generator.py │ └── template.html ├── common.txt ├── css.txt ├── cssproperties.txt ├── generator.py ├── grammar.py ├── grammar.pyc ├── html.txt ├── js.txt ├── jscript │ ├── README.md │ ├── generator.py │ ├── jscript.txt │ └── template.html ├── jshelpers.txt ├── mathml │ ├── mathattrvalues.txt │ ├── mathml.txt │ └── test.py ├── out.html ├── svg.txt ├── svgattrvalues.txt ├── tagattributes.txt ├── template.html ├── test_template.html ├── ug16zy2 ├── vbscript │ ├── README.md │ ├── generator.py │ ├── template.html │ └── vbscript.txt └── webgl │ ├── generator.py │ ├── template.html │ └── webgl.txt ├── project note 2.pdf ├── project note.pdf └── symbolic ├── CVE-2018-18492.py ├── README.md ├── __init__.py ├── analyse ├── __init__.py ├── primitiveExplore.py └── stateAnalyse.py ├── angr-modified ├── angr │ ├── concretization_strategies │ │ ├── __init__.py │ │ ├── list.py │ │ ├── object.py │ │ ├── object_heap.py │ │ ├── object_max.py │ │ ├── object_single.py │ │ └── taint.py │ ├── exploration_techniques │ │ ├── __init__.py │ │ ├── memory_watcher.py │ │ ├── simpleSpiller.py │ │ └── veritesting.py │ ├── procedures │ │ └── stubs │ │ │ └── placementNew.py │ ├── sim_procedure.py │ └── state_plugins │ │ └── heap │ │ └── heap_base.py ├── cle │ └── backends │ │ └── elf │ │ └── elfcore.py └── install.sh ├── bpHandlers.py ├── example1.md ├── executor.py ├── explore.py ├── stateContraints.py ├── symCallProc.py ├── traceHelper.py ├── util.py └── visualization ├── __init__.py └── dumpInfo.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/.DS_Store -------------------------------------------------------------------------------- /FuzzFilter/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzFilter/filter.py -------------------------------------------------------------------------------- /FuzzingTester/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/.DS_Store -------------------------------------------------------------------------------- /FuzzingTester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/README.md -------------------------------------------------------------------------------- /FuzzingTester/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/__init__.py -------------------------------------------------------------------------------- /FuzzingTester/asanTester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/asanTester.py -------------------------------------------------------------------------------- /FuzzingTester/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/filter.py -------------------------------------------------------------------------------- /FuzzingTester/fuzzTester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/fuzzTester.py -------------------------------------------------------------------------------- /FuzzingTester/gdbTestRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/gdbTestRunner.py -------------------------------------------------------------------------------- /FuzzingTester/gdbtester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/gdbtester.py -------------------------------------------------------------------------------- /FuzzingTester/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/helper.py -------------------------------------------------------------------------------- /FuzzingTester/helper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/helper.pyc -------------------------------------------------------------------------------- /FuzzingTester/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/init.sh -------------------------------------------------------------------------------- /FuzzingTester/minidumpCollector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/minidumpCollector.py -------------------------------------------------------------------------------- /FuzzingTester/minidumpParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/minidumpParser.py -------------------------------------------------------------------------------- /FuzzingTester/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/resources/README.md -------------------------------------------------------------------------------- /FuzzingTester/resources/mozconfig_dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/resources/mozconfig_dbg -------------------------------------------------------------------------------- /FuzzingTester/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/run.sh -------------------------------------------------------------------------------- /FuzzingTester/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/setup.sh -------------------------------------------------------------------------------- /FuzzingTester/tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/tests/.DS_Store -------------------------------------------------------------------------------- /FuzzingTester/tests/CVE-2018-18492/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/tests/CVE-2018-18492/.DS_Store -------------------------------------------------------------------------------- /FuzzingTester/tests/CVE-2018-18492/crash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/tests/CVE-2018-18492/crash.html -------------------------------------------------------------------------------- /FuzzingTester/traceComparator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/traceComparator.py -------------------------------------------------------------------------------- /FuzzingTester/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/FuzzingTester/util.py -------------------------------------------------------------------------------- /Manual Exploitation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7818/crash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7818/crash.html -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7819/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7819/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7819/crash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7819/crash.html -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7819/crash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7819/crash.xml -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7819/crash.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7819/crash.xsl -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7819/text.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7828/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7828/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7828/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7828/README.md -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7828/crash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7828/crash.html -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7828/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7828/images/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7828/images/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7828/images/crash.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7828/images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7828/images/image1.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7828/images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7828/images/image2.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7828/images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7828/images/image3.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7828/images/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7828/images/image4.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7828/images/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7828/images/image5.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7828/mozconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7828/mozconfig -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7828/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7828/scripts.html -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2017-7828/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2017-7828/user.js -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-12386/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-12386/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-12386/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-12386/README.md -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-12386/crash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-12386/crash.js -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-12386/pwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-12386/pwn.js -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-12387/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-12387/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-12387/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-12387/README.md -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-12387/crash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-12387/crash.html -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-12387/crash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-12387/crash.js -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-18492/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-18492/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-18492/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-18492/README.md -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-18492/crash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-18492/crash.html -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-18492/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-18492/images/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-18492/images/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-18492/images/crash.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-18492/images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-18492/images/image1.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-18492/images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-18492/images/image2.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-18492/images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-18492/images/image3.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-18492/images/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-18492/images/image4.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-18492/images/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-18492/images/image5.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-18492/mozconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-18492/mozconfig -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-18492/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-18492/user.js -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5093/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5093/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5093/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5093/README.md -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5093/crash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5093/crash.html -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5094/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5094/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5094/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5094/README.md -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5094/crash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5094/crash.html -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5094/crash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5094/crash.js -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5097/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5097/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5097/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5097/README.md -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5097/crash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5097/crash.html -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5097/ctop.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5097/ctop.xsl -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5097/math.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5097/math.xml -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5097/mathml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5097/mathml.xsl -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5097/pmathml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5097/pmathml.xsl -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5100/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5100/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5100/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5100/README.md -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5100/crash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5100/crash.html -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5100/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5100/images/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5100/images/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5100/images/crash.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5100/images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5100/images/image1.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5100/images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5100/images/image2.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5100/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5100/user.js -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5102/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5102/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5102/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5102/README.md -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5102/crash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5102/crash.html -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5102/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5102/image1.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5104/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5104/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5104/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5104/README.md -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5104/crash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5104/crash.html -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5104/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5104/images/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5104/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5104/images/1.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5104/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5104/images/2.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5104/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5104/images/3.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5104/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5104/images/code.png -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5127/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5127/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5127/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5127/README.md -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5127/crash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5127/crash.html -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5129/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5129/README.md -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2018-5129/oob.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2018-5129/oob.html -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2019-11707/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2019-11707/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2019-11707/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2019-11707/README.md -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2019-11707/crash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2019-11707/crash.js -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2019-11707/exploit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2019-11707/exploit.js -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2019-11707/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2019-11707/index.html -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2019-9791/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2019-9791/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2019-9791/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2019-9791/README.md -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2019-9791/crash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2019-9791/crash.js -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2019-9791/exploit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2019-9791/exploit.js -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2019-9810/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2019-9810/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2019-9810/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2019-9810/README.md -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2019-9810/overflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2019-9810/overflow.js -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2019-9813/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2019-9813/.DS_Store -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2019-9813/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2019-9813/README.md -------------------------------------------------------------------------------- /Manual Exploitation/CVE-2019-9813/crash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/CVE-2019-9813/crash.js -------------------------------------------------------------------------------- /Manual Exploitation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/Manual Exploitation/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/README.md -------------------------------------------------------------------------------- /domato/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/.DS_Store -------------------------------------------------------------------------------- /domato/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/CONTRIBUTING.md -------------------------------------------------------------------------------- /domato/CVE201818492_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/CVE201818492_template.html -------------------------------------------------------------------------------- /domato/CVE201818492_template2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/CVE201818492_template2.html -------------------------------------------------------------------------------- /domato/CVE20185104_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/CVE20185104_template.html -------------------------------------------------------------------------------- /domato/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/LICENSE -------------------------------------------------------------------------------- /domato/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/README.md -------------------------------------------------------------------------------- /domato/attributevalues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/attributevalues.txt -------------------------------------------------------------------------------- /domato/canvas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/canvas/README.md -------------------------------------------------------------------------------- /domato/canvas/canvas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/canvas/canvas.txt -------------------------------------------------------------------------------- /domato/canvas/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/canvas/generator.py -------------------------------------------------------------------------------- /domato/canvas/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/canvas/template.html -------------------------------------------------------------------------------- /domato/common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/common.txt -------------------------------------------------------------------------------- /domato/css.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/css.txt -------------------------------------------------------------------------------- /domato/cssproperties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/cssproperties.txt -------------------------------------------------------------------------------- /domato/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/generator.py -------------------------------------------------------------------------------- /domato/grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/grammar.py -------------------------------------------------------------------------------- /domato/grammar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/grammar.pyc -------------------------------------------------------------------------------- /domato/html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/html.txt -------------------------------------------------------------------------------- /domato/js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/js.txt -------------------------------------------------------------------------------- /domato/jscript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/jscript/README.md -------------------------------------------------------------------------------- /domato/jscript/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/jscript/generator.py -------------------------------------------------------------------------------- /domato/jscript/jscript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/jscript/jscript.txt -------------------------------------------------------------------------------- /domato/jscript/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/jscript/template.html -------------------------------------------------------------------------------- /domato/jshelpers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/jshelpers.txt -------------------------------------------------------------------------------- /domato/mathml/mathattrvalues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/mathml/mathattrvalues.txt -------------------------------------------------------------------------------- /domato/mathml/mathml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/mathml/mathml.txt -------------------------------------------------------------------------------- /domato/mathml/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/mathml/test.py -------------------------------------------------------------------------------- /domato/out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/out.html -------------------------------------------------------------------------------- /domato/svg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/svg.txt -------------------------------------------------------------------------------- /domato/svgattrvalues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/svgattrvalues.txt -------------------------------------------------------------------------------- /domato/tagattributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/tagattributes.txt -------------------------------------------------------------------------------- /domato/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/template.html -------------------------------------------------------------------------------- /domato/test_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/test_template.html -------------------------------------------------------------------------------- /domato/ug16zy2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/ug16zy2 -------------------------------------------------------------------------------- /domato/vbscript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/vbscript/README.md -------------------------------------------------------------------------------- /domato/vbscript/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/vbscript/generator.py -------------------------------------------------------------------------------- /domato/vbscript/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/vbscript/template.html -------------------------------------------------------------------------------- /domato/vbscript/vbscript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/vbscript/vbscript.txt -------------------------------------------------------------------------------- /domato/webgl/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/webgl/generator.py -------------------------------------------------------------------------------- /domato/webgl/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/webgl/template.html -------------------------------------------------------------------------------- /domato/webgl/webgl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/domato/webgl/webgl.txt -------------------------------------------------------------------------------- /project note 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/project note 2.pdf -------------------------------------------------------------------------------- /project note.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/project note.pdf -------------------------------------------------------------------------------- /symbolic/CVE-2018-18492.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/CVE-2018-18492.py -------------------------------------------------------------------------------- /symbolic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/README.md -------------------------------------------------------------------------------- /symbolic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/__init__.py -------------------------------------------------------------------------------- /symbolic/analyse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/analyse/__init__.py -------------------------------------------------------------------------------- /symbolic/analyse/primitiveExplore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/analyse/primitiveExplore.py -------------------------------------------------------------------------------- /symbolic/analyse/stateAnalyse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/analyse/stateAnalyse.py -------------------------------------------------------------------------------- /symbolic/angr-modified/angr/concretization_strategies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/angr-modified/angr/concretization_strategies/__init__.py -------------------------------------------------------------------------------- /symbolic/angr-modified/angr/concretization_strategies/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/angr-modified/angr/concretization_strategies/list.py -------------------------------------------------------------------------------- /symbolic/angr-modified/angr/concretization_strategies/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/angr-modified/angr/concretization_strategies/object.py -------------------------------------------------------------------------------- /symbolic/angr-modified/angr/concretization_strategies/object_heap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/angr-modified/angr/concretization_strategies/object_heap.py -------------------------------------------------------------------------------- /symbolic/angr-modified/angr/concretization_strategies/object_max.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/angr-modified/angr/concretization_strategies/object_max.py -------------------------------------------------------------------------------- /symbolic/angr-modified/angr/concretization_strategies/object_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/angr-modified/angr/concretization_strategies/object_single.py -------------------------------------------------------------------------------- /symbolic/angr-modified/angr/concretization_strategies/taint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/angr-modified/angr/concretization_strategies/taint.py -------------------------------------------------------------------------------- /symbolic/angr-modified/angr/exploration_techniques/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/angr-modified/angr/exploration_techniques/__init__.py -------------------------------------------------------------------------------- /symbolic/angr-modified/angr/exploration_techniques/memory_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/angr-modified/angr/exploration_techniques/memory_watcher.py -------------------------------------------------------------------------------- /symbolic/angr-modified/angr/exploration_techniques/simpleSpiller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/angr-modified/angr/exploration_techniques/simpleSpiller.py -------------------------------------------------------------------------------- /symbolic/angr-modified/angr/exploration_techniques/veritesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/angr-modified/angr/exploration_techniques/veritesting.py -------------------------------------------------------------------------------- /symbolic/angr-modified/angr/procedures/stubs/placementNew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/angr-modified/angr/procedures/stubs/placementNew.py -------------------------------------------------------------------------------- /symbolic/angr-modified/angr/sim_procedure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/angr-modified/angr/sim_procedure.py -------------------------------------------------------------------------------- /symbolic/angr-modified/angr/state_plugins/heap/heap_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/angr-modified/angr/state_plugins/heap/heap_base.py -------------------------------------------------------------------------------- /symbolic/angr-modified/cle/backends/elf/elfcore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/angr-modified/cle/backends/elf/elfcore.py -------------------------------------------------------------------------------- /symbolic/angr-modified/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/angr-modified/install.sh -------------------------------------------------------------------------------- /symbolic/bpHandlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/bpHandlers.py -------------------------------------------------------------------------------- /symbolic/example1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/example1.md -------------------------------------------------------------------------------- /symbolic/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/executor.py -------------------------------------------------------------------------------- /symbolic/explore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/explore.py -------------------------------------------------------------------------------- /symbolic/stateContraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/stateContraints.py -------------------------------------------------------------------------------- /symbolic/symCallProc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/symCallProc.py -------------------------------------------------------------------------------- /symbolic/traceHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/traceHelper.py -------------------------------------------------------------------------------- /symbolic/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/util.py -------------------------------------------------------------------------------- /symbolic/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/visualization/__init__.py -------------------------------------------------------------------------------- /symbolic/visualization/dumpInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihanYe/Firefox-Exploitation/HEAD/symbolic/visualization/dumpInfo.py --------------------------------------------------------------------------------