├── .dockerignore ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .mailmap ├── .rspec ├── .rubocop.yml ├── .ruby-gemset ├── .ruby-version ├── .simplecov ├── .travis.yml ├── .yardopts ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYING ├── CURRENT.md ├── Dockerfile ├── Gemfile ├── Gemfile.local.example ├── Gemfile.lock ├── LICENSE ├── LICENSE_GEMS ├── README.md ├── Rakefile ├── Vagrantfile ├── app ├── concerns │ ├── mdm │ │ └── workspace │ │ │ └── boundary_range.rb │ └── metasploit │ │ └── credential │ │ └── core │ │ └── to_credential.rb └── validators │ ├── metasploit.rb │ └── metasploit │ └── framework │ ├── executable_path_validator.rb │ └── file_path_validator.rb ├── config ├── application.rb ├── boot.rb ├── cucumber.yml ├── database.yml.example ├── database.yml.travis ├── database.yml.vagrant ├── environment.rb └── environments │ └── production.rb ├── data ├── SqlClrPayload │ ├── v2.0 │ │ └── SqlClrPayload.dll │ ├── v3.5 │ │ └── SqlClrPayload.dll │ ├── v4.0 │ │ └── SqlClrPayload.dll │ ├── v4.5.1 │ │ └── SqlClrPayload.dll │ ├── v4.5.2 │ │ └── SqlClrPayload.dll │ ├── v4.5 │ │ └── SqlClrPayload.dll │ ├── v4.6.1 │ │ └── SqlClrPayload.dll │ └── v4.6 │ │ └── SqlClrPayload.dll ├── eicar.com ├── eicar.txt ├── emailer_config.yaml ├── exploits │ ├── CVE-2007-3314.dat │ ├── CVE-2008-0320.doc │ ├── CVE-2008-5353.jar │ ├── CVE-2008-5499.swf │ ├── CVE-2008-6508 │ │ ├── changelog.html │ │ ├── lib │ │ │ └── plugin-metasploit.jar │ │ ├── logo_large.gif │ │ ├── logo_small.gif │ │ ├── plugin.xml │ │ └── readme.html │ ├── CVE-2009-3867.jar │ ├── CVE-2009-3869.jar │ ├── CVE-2010-0232 │ │ └── kitrap0d.x86.dll │ ├── CVE-2010-0480.avi │ ├── CVE-2010-0822.xls │ ├── CVE-2010-0842 │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── services │ │ │ │ └── javax.sound.midi.spi.MidiDeviceProvider │ │ ├── MixerMidiApplet.class │ │ └── MyController.class │ ├── CVE-2010-1240 │ │ └── template.pdf │ ├── CVE-2010-1297.swf │ ├── CVE-2010-3275.amv │ ├── CVE-2010-3654.swf │ ├── CVE-2011-0105.xlb │ ├── CVE-2011-0257.mov │ ├── CVE-2011-0609.swf │ ├── CVE-2011-0611.swf │ ├── CVE-2011-2110.swf │ ├── CVE-2011-2882 │ │ └── nsepa.ocx │ ├── CVE-2011-3400 │ │ └── CVE-2011-3400.vsd │ ├── CVE-2012-0013 │ │ ├── [Content_Types].xml │ │ ├── _rels │ │ │ └── __rels │ │ ├── docProps │ │ │ ├── app.xml │ │ │ └── core.xml │ │ └── word │ │ │ ├── _rels │ │ │ ├── document.xml.rels │ │ │ └── vbaProject.bin.rels │ │ │ ├── document.xml │ │ │ ├── embeddings │ │ │ └── oleObject1.bin │ │ │ ├── fontTable.xml │ │ │ ├── media │ │ │ └── image1.emf │ │ │ ├── settings.xml │ │ │ ├── styles.xml │ │ │ ├── stylesWithEffects.xml │ │ │ ├── theme │ │ │ └── theme1.xml │ │ │ ├── vbaData.xml │ │ │ ├── vbaProject.bin │ │ │ └── webSettings.xml │ ├── CVE-2012-0507.jar │ ├── CVE-2012-0754.swf │ ├── CVE-2012-0779.swf │ ├── CVE-2012-1535 │ │ └── Main.swf │ ├── CVE-2012-1723.jar │ ├── CVE-2012-2516 │ │ ├── template_mof.chm │ │ └── template_payload.chm │ ├── CVE-2012-4681 │ │ └── Exploit.class │ ├── CVE-2012-6636 │ │ ├── armeabi │ │ │ └── libndkstager.so │ │ ├── mips │ │ │ └── libndkstager.so │ │ └── x86 │ │ │ └── libndkstager.so │ ├── CVE-2013-0109 │ │ └── nvidia_nvsvc.x86.dll │ ├── CVE-2013-0634 │ │ └── exploit.swf │ ├── CVE-2013-2171.bin │ ├── CVE-2013-2465 │ │ ├── Exploit$MyColorModel.class │ │ ├── Exploit$MyColorSpace.class │ │ └── Exploit.class │ ├── CVE-2013-3906 │ │ ├── _rels │ │ │ └── .rels │ │ ├── docProps │ │ │ ├── app.xml │ │ │ └── core.xml │ │ └── word │ │ │ ├── charts │ │ │ ├── _rels │ │ │ │ ├── chart1.xml.rels │ │ │ │ ├── chart2.xml.rels │ │ │ │ ├── chart3.xml.rels │ │ │ │ ├── chart4.xml.rels │ │ │ │ ├── chart5.xml.rels │ │ │ │ └── chart6.xml.rels │ │ │ ├── chart1.xml │ │ │ ├── chart2.xml │ │ │ ├── chart3.xml │ │ │ ├── chart4.xml │ │ │ ├── chart5.xml │ │ │ └── chart6.xml │ │ │ ├── embeddings │ │ │ ├── Microsoft_Office_Excel_Worksheet1.xlsx │ │ │ ├── Microsoft_Office_Excel_Worksheet2.xlsx │ │ │ ├── Microsoft_Office_Excel_Worksheet3.xlsx │ │ │ ├── Microsoft_Office_Excel_Worksheet4.xlsx │ │ │ ├── Microsoft_Office_Excel_Worksheet5.xlsx │ │ │ └── Microsoft_Office_Excel_Worksheet6.xlsx │ │ │ ├── fontTable.xml │ │ │ ├── media │ │ │ └── image1.jpeg │ │ │ ├── settings.xml │ │ │ ├── styles.xml │ │ │ ├── theme │ │ │ └── theme1.xml │ │ │ └── webSettings.xml │ ├── CVE-2013-5045 │ │ └── CVE-2013-5045.dll │ ├── CVE-2013-5331 │ │ └── Exploit.swf │ ├── CVE-2013-6282.so │ ├── CVE-2014-0038 │ │ ├── recvmmsg │ │ └── recvmmsg.c │ ├── CVE-2014-0257 │ │ └── CVE-2014-0257.dll │ ├── CVE-2014-0322 │ │ └── AsXploit.swf │ ├── CVE-2014-0497 │ │ └── Vickers.swf │ ├── CVE-2014-0515 │ │ └── msf.swf │ ├── CVE-2014-0556 │ │ └── msf.swf │ ├── CVE-2014-0569 │ │ └── msf.swf │ ├── CVE-2014-0980.pui │ ├── CVE-2014-3153.so │ ├── CVE-2014-4113 │ │ ├── cve-2014-4113.x64.dll │ │ └── cve-2014-4113.x86.dll │ ├── CVE-2014-4114 │ │ └── template │ │ │ ├── [Content_Types].xml │ │ │ ├── _rels │ │ │ └── .rels │ │ │ ├── docProps │ │ │ ├── app.xml │ │ │ ├── core.xml │ │ │ └── thumbnail.jpeg │ │ │ └── ppt │ │ │ ├── _rels │ │ │ └── presentation.xml.rels │ │ │ ├── drawings │ │ │ ├── _rels │ │ │ │ └── vmlDrawing1.vml.rels │ │ │ └── vmlDrawing1.vml │ │ │ ├── media │ │ │ ├── image1.wmf │ │ │ └── image2.wmf │ │ │ ├── presProps.xml │ │ │ ├── presentation.xml │ │ │ ├── slideLayouts │ │ │ ├── _rels │ │ │ │ ├── slideLayout1.xml.rels │ │ │ │ ├── slideLayout10.xml.rels │ │ │ │ ├── slideLayout11.xml.rels │ │ │ │ ├── slideLayout2.xml.rels │ │ │ │ ├── slideLayout3.xml.rels │ │ │ │ ├── slideLayout4.xml.rels │ │ │ │ ├── slideLayout5.xml.rels │ │ │ │ ├── slideLayout6.xml.rels │ │ │ │ ├── slideLayout7.xml.rels │ │ │ │ ├── slideLayout8.xml.rels │ │ │ │ └── slideLayout9.xml.rels │ │ │ ├── slideLayout1.xml │ │ │ ├── slideLayout10.xml │ │ │ ├── slideLayout11.xml │ │ │ ├── slideLayout2.xml │ │ │ ├── slideLayout3.xml │ │ │ ├── slideLayout4.xml │ │ │ ├── slideLayout5.xml │ │ │ ├── slideLayout6.xml │ │ │ ├── slideLayout7.xml │ │ │ ├── slideLayout8.xml │ │ │ └── slideLayout9.xml │ │ │ ├── slideMasters │ │ │ ├── _rels │ │ │ │ └── slideMaster1.xml.rels │ │ │ └── slideMaster1.xml │ │ │ ├── slides │ │ │ ├── _rels │ │ │ │ └── slide1.xml.rels │ │ │ └── slide1.xml │ │ │ ├── tableStyles.xml │ │ │ ├── theme │ │ │ └── theme1.xml │ │ │ └── viewProps.xml │ ├── CVE-2014-4404 │ │ └── key_exploit │ ├── CVE-2014-6352 │ │ └── template_run_as_admin │ │ │ ├── [Content_Types].xml │ │ │ ├── _rels │ │ │ └── .rels │ │ │ ├── docProps │ │ │ ├── app.xml │ │ │ ├── core.xml │ │ │ └── thumbnail.jpeg │ │ │ └── ppt │ │ │ ├── _rels │ │ │ └── presentation.xml.rels │ │ │ ├── drawings │ │ │ ├── _rels │ │ │ │ └── vmlDrawing1.vml.rels │ │ │ └── vmlDrawing1.vml │ │ │ ├── media │ │ │ └── image1.wmf │ │ │ ├── presProps.xml │ │ │ ├── presentation.xml │ │ │ ├── slideLayouts │ │ │ ├── _rels │ │ │ │ ├── slideLayout1.xml.rels │ │ │ │ ├── slideLayout10.xml.rels │ │ │ │ ├── slideLayout11.xml.rels │ │ │ │ ├── slideLayout2.xml.rels │ │ │ │ ├── slideLayout3.xml.rels │ │ │ │ ├── slideLayout4.xml.rels │ │ │ │ ├── slideLayout5.xml.rels │ │ │ │ ├── slideLayout6.xml.rels │ │ │ │ ├── slideLayout7.xml.rels │ │ │ │ ├── slideLayout8.xml.rels │ │ │ │ └── slideLayout9.xml.rels │ │ │ ├── slideLayout1.xml │ │ │ ├── slideLayout10.xml │ │ │ ├── slideLayout11.xml │ │ │ ├── slideLayout2.xml │ │ │ ├── slideLayout3.xml │ │ │ ├── slideLayout4.xml │ │ │ ├── slideLayout5.xml │ │ │ ├── slideLayout6.xml │ │ │ ├── slideLayout7.xml │ │ │ ├── slideLayout8.xml │ │ │ └── slideLayout9.xml │ │ │ ├── slideMasters │ │ │ ├── _rels │ │ │ │ └── slideMaster1.xml.rels │ │ │ └── slideMaster1.xml │ │ │ ├── slides │ │ │ ├── _rels │ │ │ │ └── slide1.xml.rels │ │ │ └── slide1.xml │ │ │ ├── tableStyles.xml │ │ │ ├── theme │ │ │ └── theme1.xml │ │ │ └── viewProps.xml │ ├── CVE-2014-8440 │ │ └── msf.swf │ ├── CVE-2015-0016 │ │ └── cve-2015-0016.dll │ ├── CVE-2015-0311 │ │ └── msf.swf │ ├── CVE-2015-0313 │ │ └── msf.swf │ ├── CVE-2015-0318 │ │ └── Main.swf │ ├── CVE-2015-0336 │ │ ├── msf.swf │ │ ├── trigger.swf │ │ └── trigger_linux.swf │ ├── CVE-2015-0359 │ │ └── msf.swf │ ├── CVE-2015-1130 │ │ └── exploit.py │ ├── CVE-2015-1328 │ │ ├── 1328 │ │ └── ofs-lib.so │ ├── CVE-2015-1701 │ │ ├── cve-2015-1701.x64.dll │ │ └── cve-2015-1701.x86.dll │ ├── CVE-2015-2426 │ │ └── reflective_dll.x64.dll │ ├── CVE-2015-3090 │ │ └── msf.swf │ ├── CVE-2015-3105 │ │ └── msf.swf │ ├── CVE-2015-3113 │ │ └── msf.swf │ ├── CVE-2015-3673 │ │ ├── exploit.daplug │ │ └── exploit.m │ ├── CVE-2015-5119 │ │ └── msf.swf │ ├── CVE-2015-5122 │ │ └── msf.swf │ ├── CVE-2015-8103 │ │ ├── serialized_class_loader │ │ ├── serialized_file_writer │ │ ├── serialized_jenkins_header │ │ ├── serialized_payload_footer │ │ └── serialized_payload_header │ ├── CVE-2015-8660 │ │ └── 8660 │ ├── CVE-2016-0040 │ │ └── CVE-2016-0040.x64.dll │ ├── CVE-2016-0099 │ │ └── cve_2016_0099.ps1 │ ├── CVE-2016-4117 │ │ └── msf.swf │ ├── CVE-2016-4557 │ │ ├── doubleput │ │ ├── hello │ │ └── suidhelper │ ├── CVE-2016-4655 │ │ ├── exploit │ │ ├── exploit32 │ │ └── loader │ ├── CVE-2016-4997 │ │ ├── 2016-4997-decr.out │ │ └── 2016-4997-pwn.out │ ├── CVE-2016-8655 │ │ ├── chocobo_root │ │ └── chocobo_root.c │ ├── CVE-2017-0358 │ │ └── sploit.c │ ├── CVE-2017-16666 │ │ └── dump.pcap │ ├── CVE-2017-17562 │ │ ├── build.sh │ │ ├── goahead-cgi-bind-linux-glibc-aarch64.so.gz │ │ ├── goahead-cgi-bind-linux-glibc-armel.so.gz │ │ ├── goahead-cgi-bind-linux-glibc-armhf.so.gz │ │ ├── goahead-cgi-bind-linux-glibc-mips.so.gz │ │ ├── goahead-cgi-bind-linux-glibc-mips64.so.gz │ │ ├── goahead-cgi-bind-linux-glibc-mips64el.so.gz │ │ ├── goahead-cgi-bind-linux-glibc-mipsel.so.gz │ │ ├── goahead-cgi-bind-linux-glibc-powerpc.so.gz │ │ ├── goahead-cgi-bind-linux-glibc-powerpc64.so.gz │ │ ├── goahead-cgi-bind-linux-glibc-powerpc64le.so.gz │ │ ├── goahead-cgi-bind-linux-glibc-s390x.so.gz │ │ ├── goahead-cgi-bind-linux-glibc-sparc.so.gz │ │ ├── goahead-cgi-bind-linux-glibc-sparc64.so.gz │ │ ├── goahead-cgi-bind-linux-glibc-x86.so.gz │ │ ├── goahead-cgi-bind-linux-glibc-x86_64.so.gz │ │ ├── goahead-cgi-bind.c │ │ ├── goahead-cgi-reverse-linux-glibc-aarch64.so.gz │ │ ├── goahead-cgi-reverse-linux-glibc-armel.so.gz │ │ ├── goahead-cgi-reverse-linux-glibc-armhf.so.gz │ │ ├── goahead-cgi-reverse-linux-glibc-mips.so.gz │ │ ├── goahead-cgi-reverse-linux-glibc-mips64.so.gz │ │ ├── goahead-cgi-reverse-linux-glibc-mips64el.so.gz │ │ ├── goahead-cgi-reverse-linux-glibc-mipsel.so.gz │ │ ├── goahead-cgi-reverse-linux-glibc-powerpc.so.gz │ │ ├── goahead-cgi-reverse-linux-glibc-powerpc64.so.gz │ │ ├── goahead-cgi-reverse-linux-glibc-powerpc64le.so.gz │ │ ├── goahead-cgi-reverse-linux-glibc-s390x.so.gz │ │ ├── goahead-cgi-reverse-linux-glibc-sparc.so.gz │ │ ├── goahead-cgi-reverse-linux-glibc-sparc64.so.gz │ │ ├── goahead-cgi-reverse-linux-glibc-x86.so.gz │ │ ├── goahead-cgi-reverse-linux-glibc-x86_64.so.gz │ │ ├── goahead-cgi-reverse.c │ │ ├── goahead-cgi-shellcode-linux-glibc-aarch64.so.gz │ │ ├── goahead-cgi-shellcode-linux-glibc-armel.so.gz │ │ ├── goahead-cgi-shellcode-linux-glibc-armhf.so.gz │ │ ├── goahead-cgi-shellcode-linux-glibc-mips.so.gz │ │ ├── goahead-cgi-shellcode-linux-glibc-mips64.so.gz │ │ ├── goahead-cgi-shellcode-linux-glibc-mips64el.so.gz │ │ ├── goahead-cgi-shellcode-linux-glibc-mipsel.so.gz │ │ ├── goahead-cgi-shellcode-linux-glibc-powerpc.so.gz │ │ ├── goahead-cgi-shellcode-linux-glibc-powerpc64.so.gz │ │ ├── goahead-cgi-shellcode-linux-glibc-powerpc64le.so.gz │ │ ├── goahead-cgi-shellcode-linux-glibc-s390x.so.gz │ │ ├── goahead-cgi-shellcode-linux-glibc-sparc.so.gz │ │ ├── goahead-cgi-shellcode-linux-glibc-sparc64.so.gz │ │ ├── goahead-cgi-shellcode-linux-glibc-x86.so.gz │ │ ├── goahead-cgi-shellcode-linux-glibc-x86_64.so.gz │ │ ├── goahead-cgi-shellcode.c │ │ ├── goahead-cgi-system-linux-glibc-aarch64.so.gz │ │ ├── goahead-cgi-system-linux-glibc-armel.so.gz │ │ ├── goahead-cgi-system-linux-glibc-armhf.so.gz │ │ ├── goahead-cgi-system-linux-glibc-mips.so.gz │ │ ├── goahead-cgi-system-linux-glibc-mips64.so.gz │ │ ├── goahead-cgi-system-linux-glibc-mips64el.so.gz │ │ ├── goahead-cgi-system-linux-glibc-mipsel.so.gz │ │ ├── goahead-cgi-system-linux-glibc-powerpc.so.gz │ │ ├── goahead-cgi-system-linux-glibc-powerpc64.so.gz │ │ ├── goahead-cgi-system-linux-glibc-powerpc64le.so.gz │ │ ├── goahead-cgi-system-linux-glibc-s390x.so.gz │ │ ├── goahead-cgi-system-linux-glibc-sparc.so.gz │ │ ├── goahead-cgi-system-linux-glibc-sparc64.so.gz │ │ ├── goahead-cgi-system-linux-glibc-x86.so.gz │ │ ├── goahead-cgi-system-linux-glibc-x86_64.so.gz │ │ ├── goahead-cgi-system.c │ │ └── install-deps.sh │ ├── CVE-2017-7494 │ │ ├── build.sh │ │ ├── install-deps.sh │ │ ├── samba-root-findsock-linux-glibc-aarch64.so.gz │ │ ├── samba-root-findsock-linux-glibc-armel.so.gz │ │ ├── samba-root-findsock-linux-glibc-armhf.so.gz │ │ ├── samba-root-findsock-linux-glibc-mips.so.gz │ │ ├── samba-root-findsock-linux-glibc-mips64.so.gz │ │ ├── samba-root-findsock-linux-glibc-mips64el.so.gz │ │ ├── samba-root-findsock-linux-glibc-mipsel.so.gz │ │ ├── samba-root-findsock-linux-glibc-powerpc.so.gz │ │ ├── samba-root-findsock-linux-glibc-powerpc64.so.gz │ │ ├── samba-root-findsock-linux-glibc-powerpc64le.so.gz │ │ ├── samba-root-findsock-linux-glibc-s390x.so.gz │ │ ├── samba-root-findsock-linux-glibc-sparc.so.gz │ │ ├── samba-root-findsock-linux-glibc-sparc64.so.gz │ │ ├── samba-root-findsock-linux-glibc-x86.so.gz │ │ ├── samba-root-findsock-linux-glibc-x86_64.so.gz │ │ ├── samba-root-findsock.c │ │ ├── samba-root-shellcode-linux-glibc-aarch64.so.gz │ │ ├── samba-root-shellcode-linux-glibc-armel.so.gz │ │ ├── samba-root-shellcode-linux-glibc-armhf.so.gz │ │ ├── samba-root-shellcode-linux-glibc-mips.so.gz │ │ ├── samba-root-shellcode-linux-glibc-mips64.so.gz │ │ ├── samba-root-shellcode-linux-glibc-mips64el.so.gz │ │ ├── samba-root-shellcode-linux-glibc-mipsel.so.gz │ │ ├── samba-root-shellcode-linux-glibc-powerpc.so.gz │ │ ├── samba-root-shellcode-linux-glibc-powerpc64.so.gz │ │ ├── samba-root-shellcode-linux-glibc-powerpc64le.so.gz │ │ ├── samba-root-shellcode-linux-glibc-s390x.so.gz │ │ ├── samba-root-shellcode-linux-glibc-sparc.so.gz │ │ ├── samba-root-shellcode-linux-glibc-sparc64.so.gz │ │ ├── samba-root-shellcode-linux-glibc-x86.so.gz │ │ ├── samba-root-shellcode-linux-glibc-x86_64.so.gz │ │ ├── samba-root-shellcode.c │ │ ├── samba-root-system-linux-glibc-aarch64.so.gz │ │ ├── samba-root-system-linux-glibc-armel.so.gz │ │ ├── samba-root-system-linux-glibc-armhf.so.gz │ │ ├── samba-root-system-linux-glibc-mips.so.gz │ │ ├── samba-root-system-linux-glibc-mips64.so.gz │ │ ├── samba-root-system-linux-glibc-mips64el.so.gz │ │ ├── samba-root-system-linux-glibc-mipsel.so.gz │ │ ├── samba-root-system-linux-glibc-powerpc.so.gz │ │ ├── samba-root-system-linux-glibc-powerpc64.so.gz │ │ ├── samba-root-system-linux-glibc-powerpc64le.so.gz │ │ ├── samba-root-system-linux-glibc-s390x.so.gz │ │ ├── samba-root-system-linux-glibc-sparc.so.gz │ │ ├── samba-root-system-linux-glibc-sparc64.so.gz │ │ ├── samba-root-system-linux-glibc-x86.so.gz │ │ ├── samba-root-system-linux-glibc-x86_64.so.gz │ │ └── samba-root-system.c │ ├── CVE-2017-8291 │ │ └── msf.eps │ ├── CVE-2018-0824 │ │ ├── UnmarshalPwn.exe │ │ └── script_template │ ├── CVE-2018-16858 │ │ └── librefile.erb │ ├── CVE-2018-4233 │ │ ├── int64.js │ │ ├── stage1.bin │ │ └── utils.js │ ├── CVE-2018-4237 │ │ └── ssudo │ ├── CVE-2018-4404 │ │ └── stage2.dylib │ ├── CVE-2018-8120 │ │ ├── CVE-2018-8120x64.exe │ │ └── CVE-2018-8120x86.exe │ ├── CVE-2018-8440 │ │ ├── ALPC-TaskSched-LPE.dll │ │ ├── ALPC-TaskSched-LPE.exp │ │ ├── ALPC-TaskSched-LPE.lib │ │ └── ALPC-TaskSched-LPE.pdb │ ├── CVE-2018-9948 │ │ └── template.pdf │ ├── QTJavaExploit.class │ ├── R7_2015_17 │ │ └── stream.raw │ ├── badodt │ │ ├── content.xml │ │ ├── manifest.rdf │ │ ├── manifest.xml │ │ ├── meta.xml │ │ ├── settings.xml │ │ ├── styles.xml │ │ └── thumbnail.png │ ├── batik_svg │ │ ├── Exploit$1.class │ │ ├── Exploit.class │ │ └── META-INF │ │ │ └── MANIFEST.MF │ ├── capcom_sys_exec │ │ └── capcom_sys_exec.x64.dll │ ├── capture │ │ └── http │ │ │ ├── alexa.txt │ │ │ ├── forms │ │ │ ├── 01net.com.txt │ │ │ ├── 126.com.txt │ │ │ ├── 163.com.txt │ │ │ ├── 1und1.de.txt │ │ │ ├── 2ch.net.txt │ │ │ ├── 4shared.com.txt │ │ │ ├── 56.com.txt │ │ │ ├── 6park.com.txt │ │ │ ├── 89.com.txt │ │ │ ├── abcnews.go.com.txt │ │ │ ├── about.com.txt │ │ │ ├── addictinggames.com.txt │ │ │ ├── adobe.com.txt │ │ │ ├── adult-empire.com.txt │ │ │ ├── adultadworld.com.txt │ │ │ ├── adultfriendfinder.com.txt │ │ │ ├── adwords.google.com.txt │ │ │ ├── aim.com.txt │ │ │ ├── alice.it.txt │ │ │ ├── allegro.pl.txt │ │ │ ├── allocine.fr.txt │ │ │ ├── altavista.com.txt │ │ │ ├── altervista.org.txt │ │ │ ├── amazon.co.jp.txt │ │ │ ├── amazon.co.uk.txt │ │ │ ├── amazon.com.txt │ │ │ ├── amazon.de.txt │ │ │ ├── anonym.to.txt │ │ │ ├── answers.com.txt │ │ │ ├── aol.com.txt │ │ │ ├── apple.com.txt │ │ │ ├── ask.com.txt │ │ │ ├── att.com.txt │ │ │ ├── atwiki.jp.txt │ │ │ ├── aweber.com.txt │ │ │ ├── badoo.com.txt │ │ │ ├── bbc.co.uk.txt │ │ │ ├── bebo.com.txt │ │ │ ├── bestbuy.com.txt │ │ │ ├── bharatstudent.com.txt │ │ │ ├── biglobe.ne.jp.txt │ │ │ ├── bild.de.txt │ │ │ ├── blogfa.com.txt │ │ │ ├── bramjnet.com.txt │ │ │ ├── break.com.txt │ │ │ ├── btjunkie.org.txt │ │ │ ├── buzznet.com.txt │ │ │ ├── care.com.txt │ │ │ ├── careerbuilder.com.txt │ │ │ ├── chase.com.txt │ │ │ ├── china.com.txt │ │ │ ├── chinaren.com.txt │ │ │ ├── clicksor.com.txt │ │ │ ├── cnet.com.txt │ │ │ ├── cnn.com.txt │ │ │ ├── cocolog-nifty.com.txt │ │ │ ├── commentcamarche.net.txt │ │ │ ├── conduit.com.txt │ │ │ ├── corriere.it.txt │ │ │ ├── crunchyroll.com.txt │ │ │ ├── cyworld.com.txt │ │ │ ├── dada.net.txt │ │ │ ├── dailymotion.com.txt │ │ │ ├── dantri.com.vn.txt │ │ │ ├── daum.net.txt │ │ │ ├── dealtime.com.txt │ │ │ ├── depositfiles.com.txt │ │ │ ├── deviantart.com.txt │ │ │ ├── dmm.co.jp.txt │ │ │ ├── doubleclick.com.txt │ │ │ ├── download.com.txt │ │ │ ├── dtiblog.com.txt │ │ │ ├── eastmoney.com.txt │ │ │ ├── easy-share.com.txt │ │ │ ├── ebay.co.uk.txt │ │ │ ├── ebay.com.au.txt │ │ │ ├── ebay.com.txt │ │ │ ├── ebay.de.txt │ │ │ ├── ebay.es.txt │ │ │ ├── ebay.fr.txt │ │ │ ├── ebay.it.txt │ │ │ ├── ecademy.com.txt │ │ │ ├── engadget.com.txt │ │ │ ├── esnips.com.txt │ │ │ ├── espn.go.com.txt │ │ │ ├── exblog.jp.txt │ │ │ ├── excite.co.jp.txt │ │ │ ├── expedia.com.txt │ │ │ ├── extractforms.rb │ │ │ ├── ezinearticles.com.txt │ │ │ ├── facebook.com.txt │ │ │ ├── fanfiction.net.txt │ │ │ ├── fc2.com.txt │ │ │ ├── fc2web.com.txt │ │ │ ├── filefactory.com.txt │ │ │ ├── filefront.com.txt │ │ │ ├── files.wordpress.com.txt │ │ │ ├── flickr.com.txt │ │ │ ├── fling.com.txt │ │ │ ├── flixster.com.txt │ │ │ ├── flurl.com.txt │ │ │ ├── forbes.com.txt │ │ │ ├── fotka.pl.txt │ │ │ ├── fotolog.net.txt │ │ │ ├── foxnews.com.txt │ │ │ ├── foxsports.com.txt │ │ │ ├── free.fr.txt │ │ │ ├── freeones.com.txt │ │ │ ├── freewebs.com.txt │ │ │ ├── friendster.com.txt │ │ │ ├── gaiaonline.com.txt │ │ │ ├── gamefaqs.com.txt │ │ │ ├── gamespot.com.txt │ │ │ ├── gametrailers.com.txt │ │ │ ├── gather.com.txt │ │ │ ├── geocities.com.txt │ │ │ ├── geocities.jp.txt │ │ │ ├── globo.com.txt │ │ │ ├── gmx.net.txt │ │ │ ├── go.com.txt │ │ │ ├── goo.ne.jp.txt │ │ │ ├── google.ae.txt │ │ │ ├── google.at.txt │ │ │ ├── google.be.txt │ │ │ ├── google.ca.txt │ │ │ ├── google.ch.txt │ │ │ ├── google.cl.txt │ │ │ ├── google.cn.txt │ │ │ ├── google.co.hu.txt │ │ │ ├── google.co.id.txt │ │ │ ├── google.co.in.txt │ │ │ ├── google.co.jp.txt │ │ │ ├── google.co.th.txt │ │ │ ├── google.co.uk.txt │ │ │ ├── google.co.ve.txt │ │ │ ├── google.co.za.txt │ │ │ ├── google.com.ar.txt │ │ │ ├── google.com.au.txt │ │ │ ├── google.com.br.txt │ │ │ ├── google.com.co.txt │ │ │ ├── google.com.eg.txt │ │ │ ├── google.com.mx.txt │ │ │ ├── google.com.my.txt │ │ │ ├── google.com.pe.txt │ │ │ ├── google.com.ph.txt │ │ │ ├── google.com.pk.txt │ │ │ ├── google.com.sa.txt │ │ │ ├── google.com.sg.txt │ │ │ ├── google.com.tr.txt │ │ │ ├── google.com.tw.txt │ │ │ ├── google.com.txt │ │ │ ├── google.com.ua.txt │ │ │ ├── google.com.vn.txt │ │ │ ├── google.de.txt │ │ │ ├── google.dk.txt │ │ │ ├── google.es.txt │ │ │ ├── google.fi.txt │ │ │ ├── google.fr.txt │ │ │ ├── google.gr.txt │ │ │ ├── google.ie.txt │ │ │ ├── google.it.txt │ │ │ ├── google.nl.txt │ │ │ ├── google.pl.txt │ │ │ ├── google.pt.txt │ │ │ ├── google.ro.txt │ │ │ ├── google.ru.txt │ │ │ ├── google.se.txt │ │ │ ├── googlesyndication.com.txt │ │ │ ├── grabforms.rb │ │ │ ├── guardian.co.uk.txt │ │ │ ├── gyao.jp.txt │ │ │ ├── hao123.com.txt │ │ │ ├── hatena.ne.jp.txt │ │ │ ├── hi5.com.txt │ │ │ ├── hornymatches.com.txt │ │ │ ├── hp.com.txt │ │ │ ├── hurriyet.com.tr.txt │ │ │ ├── hyves.nl.txt │ │ │ ├── ibm.com.txt │ │ │ ├── ifeng.com.txt │ │ │ ├── ifolder.ru.txt │ │ │ ├── ig.com.br.txt │ │ │ ├── ign.com.txt │ │ │ ├── imagefap.com.txt │ │ │ ├── imageshack.us.txt │ │ │ ├── imagevenue.com.txt │ │ │ ├── imdb.com.txt │ │ │ ├── imeem.com.txt │ │ │ ├── indiatimes.com.txt │ │ │ ├── information.com.txt │ │ │ ├── infoseek.co.jp.txt │ │ │ ├── interia.pl.txt │ │ │ ├── isohunt.com.txt │ │ │ ├── istockphoto.com.txt │ │ │ ├── it168.com.txt │ │ │ ├── iwiw.hu.txt │ │ │ ├── jugem.jp.txt │ │ │ ├── kakaku.com.txt │ │ │ ├── kooora.com.txt │ │ │ ├── ku6.com.txt │ │ │ ├── last.fm.txt │ │ │ ├── leonardo.it.txt │ │ │ ├── letitbit.net.txt │ │ │ ├── libero.it.txt │ │ │ ├── linkedin.com.txt │ │ │ ├── linternaute.com.txt │ │ │ ├── live.com.txt │ │ │ ├── livedoor.com.txt │ │ │ ├── liveinternet.ru.txt │ │ │ ├── livejournal.com.txt │ │ │ ├── livescore.com.txt │ │ │ ├── mail.ru.txt │ │ │ ├── maktoob.com.txt │ │ │ ├── mapquest.com.txt │ │ │ ├── marca.com.txt │ │ │ ├── marketgid.com.txt │ │ │ ├── mediafire.com.txt │ │ │ ├── meebo.com.txt │ │ │ ├── megaclick.com.txt │ │ │ ├── megaupload.com.txt │ │ │ ├── megavideo.com.txt │ │ │ ├── mercadolibre.com.ar.txt │ │ │ ├── mercadolibre.com.mx.txt │ │ │ ├── mercadolivre.com.br.txt │ │ │ ├── metacafe.com.txt │ │ │ ├── metroflog.com.txt │ │ │ ├── mforos.com.txt │ │ │ ├── microsoft.com.txt │ │ │ ├── milliyet.com.tr.txt │ │ │ ├── miniclip.com.txt │ │ │ ├── minijuegos.com.txt │ │ │ ├── mininova.org.txt │ │ │ ├── mixi.jp.txt │ │ │ ├── mlb.com.txt │ │ │ ├── mobile.de.txt │ │ │ ├── monster.com.txt │ │ │ ├── mop.com.txt │ │ │ ├── mozilla.com.txt │ │ │ ├── mozilla.org.txt │ │ │ ├── msn.ca.txt │ │ │ ├── msn.com.txt │ │ │ ├── mtv.com.txt │ │ │ ├── multiply.com.txt │ │ │ ├── musica.com.txt │ │ │ ├── myfreepaysite.com.txt │ │ │ ├── mynet.com.txt │ │ │ ├── myspace.com.txt │ │ │ ├── myvideo.de.txt │ │ │ ├── mywebsearch.com.txt │ │ │ ├── narod.ru.txt │ │ │ ├── naukri.com.txt │ │ │ ├── naver.com.txt │ │ │ ├── nba.com.txt │ │ │ ├── neopets.com.txt │ │ │ ├── netlog.com.txt │ │ │ ├── newegg.com.txt │ │ │ ├── newgrounds.com.txt │ │ │ ├── nicovideo.jp.txt │ │ │ ├── nifty.com.txt │ │ │ ├── nih.gov.txt │ │ │ ├── nnm.ru.txt │ │ │ ├── no-ip.com.txt │ │ │ ├── nytimes.com.txt │ │ │ ├── ocn.ne.jp.txt │ │ │ ├── odnoklassniki.ru.txt │ │ │ ├── onet.pl.txt │ │ │ ├── orange.fr.txt │ │ │ ├── over-blog.com.txt │ │ │ ├── partypoker.com.txt │ │ │ ├── pchome.com.tw.txt │ │ │ ├── pchome.net.txt │ │ │ ├── people.com.txt │ │ │ ├── perezhilton.com.txt │ │ │ ├── perfspot.com.txt │ │ │ ├── photobucket.com.txt │ │ │ ├── plala.or.jp.txt │ │ │ ├── plaxo.com.txt │ │ │ ├── pogo.com.txt │ │ │ ├── pornhub.com.txt │ │ │ ├── pornotube.com.txt │ │ │ ├── rakuten.co.jp.txt │ │ │ ├── rambler.ru.txt │ │ │ ├── rapidshare.com.txt │ │ │ ├── rapidshare.de.txt │ │ │ ├── rediff.com.txt │ │ │ ├── redtube.com.txt │ │ │ ├── reference.com.txt │ │ │ ├── repubblica.it.txt │ │ │ ├── reuters.com.txt │ │ │ ├── rmxads.com.txt │ │ │ ├── rude.com.txt │ │ │ ├── ryze.com.txt │ │ │ ├── sakura.ne.jp.txt │ │ │ ├── sapo.pt.txt │ │ │ ├── schuelervz.net.txt │ │ │ ├── seesaa.net.txt │ │ │ ├── sendspace.com.txt │ │ │ ├── sexyono.com.txt │ │ │ ├── seznam.cz.txt │ │ │ ├── shopping.com.txt │ │ │ ├── sify.com.txt │ │ │ ├── skype.com.txt │ │ │ ├── skyrock.com.txt │ │ │ ├── slashdot.org.txt │ │ │ ├── slickdeals.net.txt │ │ │ ├── slide.com.txt │ │ │ ├── so-net.ne.jp.txt │ │ │ ├── softonic.com.txt │ │ │ ├── softpedia.com.txt │ │ │ ├── sogou.com.txt │ │ │ ├── sohu.com.txt │ │ │ ├── sonico.com.txt │ │ │ ├── soso.com.txt │ │ │ ├── soufun.com.txt │ │ │ ├── sourceforge.net.txt │ │ │ ├── spankwire.com.txt │ │ │ ├── spiegel.de.txt │ │ │ ├── squidoo.com.txt │ │ │ ├── starware.com.txt │ │ │ ├── studiverzeichnis.com.txt │ │ │ ├── symantec.com.txt │ │ │ ├── tagged.com.txt │ │ │ ├── target.com.txt │ │ │ ├── taringa.net.txt │ │ │ ├── teacup.com.txt │ │ │ ├── technorati.com.txt │ │ │ ├── terra.com.br.txt │ │ │ ├── thefreedictionary.com.txt │ │ │ ├── thepiratebay.org.txt │ │ │ ├── thottbot.com.txt │ │ │ ├── tianya.cn.txt │ │ │ ├── tinypic.com.txt │ │ │ ├── tom.com.txt │ │ │ ├── torrentreactor.net.txt │ │ │ ├── torrentz.com.txt │ │ │ ├── torrentz.ws.txt │ │ │ ├── tripod.com.txt │ │ │ ├── truveo.com.txt │ │ │ ├── tu.tv.txt │ │ │ ├── tudou.com.txt │ │ │ ├── tv.com.txt │ │ │ ├── twitter.com.txt │ │ │ ├── ucoz.ru.txt │ │ │ ├── ultimate-guitar.com.txt │ │ │ ├── uol.com.br.txt │ │ │ ├── ups.com.txt │ │ │ ├── usercash.com.txt │ │ │ ├── usps.com.txt │ │ │ ├── vagos.es.txt │ │ │ ├── veoh.com.txt │ │ │ ├── verizon.net.txt │ │ │ ├── verycd.com.txt │ │ │ ├── videosz.com.txt │ │ │ ├── vkontakte.ru.txt │ │ │ ├── vmn.net.txt │ │ │ ├── walmart.com.txt │ │ │ ├── wamu.com.txt │ │ │ ├── warez-bb.org.txt │ │ │ ├── washingtonpost.com.txt │ │ │ ├── watch-movies.net.txt │ │ │ ├── weather.com.txt │ │ │ ├── web.de.txt │ │ │ ├── webshots.com.txt │ │ │ ├── wikia.com.txt │ │ │ ├── wikipedia.org.txt │ │ │ ├── wordpress.com.txt │ │ │ ├── wordreference.com.txt │ │ │ ├── wow-europe.com.txt │ │ │ ├── wowarmory.com.txt │ │ │ ├── wowhead.com.txt │ │ │ ├── wp.pl.txt │ │ │ ├── wretch.cc.txt │ │ │ ├── wsj.com.txt │ │ │ ├── wwe.com.txt │ │ │ ├── www.care2.com.txt │ │ │ ├── www.careerbuilder.com.txt │ │ │ ├── www.ecademy.com.txt │ │ │ ├── www.gather.com.txt │ │ │ ├── www.google.com.txt │ │ │ ├── www.linkedin.com.txt │ │ │ ├── www.livejournal.com.txt │ │ │ ├── www.monster.com.txt │ │ │ ├── www.myspace.com.txt │ │ │ ├── www.plaxo.com.txt │ │ │ ├── www.ryze.com.txt │ │ │ ├── www.slashdot.org.txt │ │ │ ├── www.twitter.com.txt │ │ │ ├── www.xing.com.txt │ │ │ ├── www.yahoo.com.txt │ │ │ ├── www.ziggs.com.txt │ │ │ ├── xanga.com.txt │ │ │ ├── xboard.us.txt │ │ │ ├── xbox.com.txt │ │ │ ├── xhamster.com.txt │ │ │ ├── xiaonei.com.txt │ │ │ ├── xing.com.txt │ │ │ ├── xunlei.com.txt │ │ │ ├── xvideos.com.txt │ │ │ ├── yahoo.co.jp.txt │ │ │ ├── yahoo.com.cn.txt │ │ │ ├── yahoo.com.txt │ │ │ ├── yandex.ru.txt │ │ │ ├── yaplog.jp.txt │ │ │ ├── yimg.com.txt │ │ │ ├── youku.com.txt │ │ │ ├── youporn.com.txt │ │ │ ├── yourfilehost.com.txt │ │ │ ├── zango.com.txt │ │ │ ├── zedge.net.txt │ │ │ ├── ziddu.com.txt │ │ │ ├── ziggs.com.txt │ │ │ ├── zol.com.cn.txt │ │ │ └── zshare.net.txt │ │ │ ├── index.html │ │ │ ├── search.txt │ │ │ ├── sites.txt │ │ │ └── social.txt │ ├── cve-2010-0094 │ │ ├── Exploit$1$1.class │ │ ├── Exploit$1.class │ │ ├── Exploit$2.class │ │ ├── Exploit.class │ │ ├── Payload.class │ │ ├── PayloadClassLoader.class │ │ ├── PayloadCreater.class │ │ ├── Payloader.class │ │ └── payload.ser │ ├── cve-2010-0840 │ │ └── vuln │ │ │ ├── Exploit$1.class │ │ │ ├── Exploit.class │ │ │ └── Link.class │ ├── cve-2010-2883.ttf │ ├── cve-2010-3563 │ │ ├── BasicServiceExploit.class │ │ └── Exploit.class │ ├── cve-2010-3904 │ │ ├── rds-fail.c │ │ ├── rds-fail.x64 │ │ └── rds-fail.x86 │ ├── cve-2010-4452 │ │ └── AppletX.class │ ├── cve-2011-3544 │ │ └── Exploit.class │ ├── cve-2012-0217 │ │ └── sysret.c │ ├── cve-2012-5076 │ │ ├── Exploit.class │ │ └── MyPayload.class │ ├── cve-2012-5076_2 │ │ ├── B.class │ │ └── Exploit.class │ ├── cve-2012-5088 │ │ ├── B.class │ │ └── Exploit.class │ ├── cve-2013-0074 │ │ ├── SilverApp1.dll │ │ └── SilverApp1.xap │ ├── cve-2013-0422 │ │ ├── B.class │ │ └── Exploit.class │ ├── cve-2013-0431 │ │ ├── B.class │ │ ├── Exploit.class │ │ └── Exploit.ser │ ├── cve-2013-0758.swf │ ├── cve-2013-1300 │ │ └── schlamperei.x86.dll │ ├── cve-2013-1488 │ │ ├── Exploit.class │ │ ├── FakeDriver.class │ │ ├── FakeDriver2.class │ │ └── META-INF │ │ │ └── services │ │ │ ├── java.lang.Object │ │ │ └── java.sql.Driver │ ├── cve-2013-1493 │ │ ├── Init.class │ │ ├── Leak.class │ │ ├── MyBufferedImage.class │ │ └── MyColorSpace.class │ ├── cve-2013-2460 │ │ ├── DisableSecurityManagerAction.class │ │ ├── ExpProvider.class │ │ └── Exploit.class │ ├── cve-2013-3660 │ │ └── ppr_flatten_rec.x86.dll │ ├── cve-2013-3881 │ │ └── cve-2013-3881.x86.dll │ ├── cve-2014-1610 │ │ ├── metasploit.djvu │ │ └── readme.md │ ├── cve-2014-1761.rtf │ ├── cve-2015-1318 │ │ ├── newpid │ │ └── newpid.c │ ├── cve-2015-3315 │ │ └── raceabrt │ ├── cve-2016-0051 │ │ └── cve-2016-0051.x86.dll │ ├── cve-2016-0189 │ │ ├── ielocalserver.dll │ │ └── ieshell32.dll │ ├── cve-2016-6415 │ │ └── sendpacket.raw │ ├── cve-2017-0199.rtf │ ├── cve-2017-1000112 │ │ ├── exploit.c │ │ └── exploit.out │ ├── cve-2017-16995 │ │ ├── exploit.c │ │ └── exploit.out │ ├── cve-2017-7308 │ │ ├── exploit │ │ └── poc.c │ ├── cve-2017-8464 │ │ ├── template_x64_windows.dll │ │ └── template_x86_windows.dll │ ├── cve-2018-1000001 │ │ ├── RationalLove │ │ └── RationalLove.c │ ├── cve-2018-18955 │ │ ├── subshell.c │ │ ├── subshell.out │ │ ├── subuid_shell.c │ │ └── subuid_shell.out │ ├── cve-2018-8897 │ │ ├── cve-2018-8897-exe.exe │ │ └── reflective_dll.x64.dll │ ├── docx │ │ ├── [Content_Types].xml │ │ ├── _rels │ │ │ └── .rels │ │ ├── docProps │ │ │ └── app.xml │ │ └── word │ │ │ ├── _rels │ │ │ └── document.xml.rels │ │ │ ├── document.xml │ │ │ ├── fontTable.xml │ │ │ ├── settings.xml │ │ │ ├── styles.xml │ │ │ ├── theme │ │ │ └── theme1.xml │ │ │ └── webSettings.xml │ ├── edb-35948 │ │ ├── js │ │ │ ├── exploit.js │ │ │ ├── informer.js │ │ │ ├── rop_builder.js │ │ │ └── sprayer.js │ │ └── main.html │ ├── evasion_shellcode.js │ ├── exec_payload.msi │ ├── firefox_smil_uaf │ │ ├── post.html │ │ └── worker.js │ ├── ghostscript │ │ ├── msf.ps │ │ └── testcase.ps │ ├── google_proxystylesheet.xml │ ├── hta_evasion.hta │ ├── iceweasel_macosx.icns │ ├── imagemagick │ │ ├── delegate │ │ │ ├── msf.mvg │ │ │ ├── msf.ps │ │ │ └── msf.svg │ │ └── popen │ │ │ ├── msf.mvg │ │ │ └── msf.svg │ ├── iphone_libtiff.bin │ ├── java_signed_applet │ │ └── SiteLoader.class │ ├── jre7u17 │ │ ├── Exploit.class │ │ ├── SystemClass.class │ │ ├── Union1.class │ │ └── Union2.class │ ├── juicypotato │ │ ├── juicypotato.x64.dll │ │ └── juicypotato.x86.dll │ ├── modicon_ladder.apx │ ├── mp4player.as │ ├── mp4player.fla │ ├── mp4player.swf │ ├── msfJavaToolkit.jar │ ├── mssql │ │ └── h2b │ ├── mysql │ │ ├── lib_mysqludf_sys_32.dll │ │ ├── lib_mysqludf_sys_32.so │ │ ├── lib_mysqludf_sys_64.dll │ │ └── lib_mysqludf_sys_64.so │ ├── ntapphelpcachecontrol │ │ └── exploit.dll │ ├── office_ole_multiple_dll_hijack.ppsx │ ├── office_word_macro │ │ ├── core.xml │ │ ├── template.docx │ │ ├── vbaData.xml │ │ ├── vbaProject.bin │ │ └── vbaProject.bin.rels │ ├── openoffice_document_macro │ │ ├── Basic │ │ │ ├── Standard │ │ │ │ ├── Module1.xml │ │ │ │ └── script-lb.xml │ │ │ └── script-lc.xml │ │ ├── Configurations2 │ │ │ └── accelerator │ │ │ │ └── current.xml │ │ ├── META-INF │ │ │ └── manifest.xml │ │ ├── Thumbnails │ │ │ └── thumbnail.png │ │ ├── content.xml │ │ ├── manifest.rdf │ │ ├── meta.xml │ │ ├── mimetype │ │ ├── settings.xml │ │ └── styles.xml │ ├── osx │ │ ├── dump_keychain │ │ │ ├── Makefile │ │ │ ├── dump │ │ │ └── dump.m │ │ └── nfs_mount_priv_escalation.bin │ ├── persistence_service │ │ └── service.erb │ ├── pfsense_clickjacking │ │ ├── background.jpg │ │ ├── cookieconsent.min.css │ │ └── cookieconsent.min.js │ ├── php │ │ ├── README │ │ └── rfi-locations.dat │ ├── poison_ivy_c2 │ │ └── chunk_214.bin │ ├── postgres │ │ ├── 8.2 │ │ │ └── lib_postgresqludf_sys.dll │ │ ├── 8.3 │ │ │ └── lib_postgresqludf_sys.dll │ │ └── 8.4 │ │ │ └── lib_postgresqludf_sys.dll │ ├── powershell │ │ ├── powerdump.ps1 │ │ └── powerfun.ps1 │ ├── pricedown.eot │ ├── psnuffle │ │ ├── ftp.rb │ │ ├── imap.rb │ │ ├── pop3.rb │ │ ├── smb.rb │ │ └── url.rb │ ├── pxexploit │ │ ├── update0 │ │ ├── update1 │ │ ├── update2 │ │ ├── update3 │ │ ├── update4 │ │ └── updatecustom │ ├── roothelper │ │ ├── roothelper │ │ └── roothelper.c │ ├── rottenpotato │ │ ├── rottenpotato.x64.dll │ │ └── rottenpotato.x86.dll │ ├── runcalc.hlp │ ├── s4u_persistence.xml │ ├── scripthost_uac_bypass │ │ └── bypass.vbs │ ├── shockwave_rcsl.dir │ ├── splunk │ │ └── upload_app_exec.tgz │ ├── tpwn │ │ └── tpwn │ ├── uxss │ │ ├── steal_form.js │ │ ├── steal_headers.js │ │ └── submit_form.js │ └── wifi │ │ ├── airpwn │ │ └── sitelist.yml │ │ └── dnspwn │ │ └── dnslist.yml ├── flash_detector │ └── flashdetector.swf ├── headers │ └── windows │ │ ├── String.h │ │ ├── Windows.h │ │ ├── Winsock2.h │ │ ├── base64.h │ │ ├── rc4.h │ │ ├── stddef.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ └── xor.h ├── ipwn │ └── ipwn ├── isight.bundle ├── jtr │ ├── alnum.chr │ ├── alnumspace.chr │ ├── alpha.chr │ ├── ascii.chr │ ├── digits.chr │ ├── dumb16.conf │ ├── dumb32.conf │ ├── dynamic.conf │ ├── dynamic_disabled.conf │ ├── dynamic_flat_sse_formats.conf │ ├── hybrid.conf │ ├── john.conf │ ├── korelogic.conf │ ├── lanman.chr │ ├── latin1.chr │ ├── lm_ascii.chr │ ├── lower.chr │ ├── lowernum.chr │ ├── lowerspace.chr │ ├── regex_alphabets.conf │ ├── repeats16.conf │ ├── repeats32.conf │ ├── upper.chr │ ├── uppernum.chr │ └── utf8.chr ├── lab │ ├── test_lab.yml │ └── test_targets.yml ├── logos │ ├── 3kom-superhack.txt │ ├── cow-branded-longhorn.txt │ ├── cow-head.txt │ ├── cowsay.txt │ ├── figlet.txt │ ├── gargoyle.hwtxt │ ├── ghost01.hwtxt │ ├── i-heart-shells.txt │ ├── json01.hwtxt │ ├── metasploit-heart-red-bold.txt │ ├── metasploit-heart-red.txt │ ├── metasploit-park.txt │ ├── metasploit-shield.txt │ ├── metasploit-trail.txt │ ├── metasploit-v5.txt │ ├── missile-command.txt │ ├── mummy.hwtxt │ ├── ninja.txt │ ├── null-pointer-deref.txt │ ├── pentagram01.hwtxt │ ├── pony-01.aftxt │ ├── pony-02.aftxt │ ├── pony-03.aftxt │ ├── pony-04.aftxt │ ├── pony-05.aftxt │ ├── pumpkin01.hwtxt │ ├── pumpkin02.hwtxt │ ├── pumpkin03.hwtxt │ ├── pumpkin04.hwtxt │ ├── r7-metasploit.txt │ ├── tricks01.hwtxt │ ├── wake-up-neo.txt │ ├── workflow.txt │ ├── zsploit-1.txt │ ├── zsploit-2.txt │ └── zsploit-3.txt ├── markdown_doc │ ├── auxiliary_scanner_template.erb │ ├── bes_demo_template.erb │ ├── default_template.erb │ ├── evasion_demo_template.erb │ ├── generic_demo_template.erb │ ├── html_template.erb │ ├── httpserver_demo_template.erb │ ├── localexploit_demo_template.erb │ ├── markdown.css │ ├── payload_demo_template.erb │ ├── post_demo_template.erb │ └── remote_exploit_demo_template.erb ├── meterpreter │ ├── metsvc-server.exe │ ├── metsvc.exe │ └── x64_osx_stage ├── mime.yml ├── msfcrawler │ ├── basic.rb │ ├── comments.rb │ ├── forms.rb │ ├── frames.rb │ ├── image.rb │ ├── link.rb │ ├── objects.rb │ └── scripts.rb ├── passivex │ └── passivex.dll ├── php │ └── hop.php ├── post │ ├── bypassuac-x64.dll │ ├── bypassuac-x64.exe │ ├── bypassuac-x86.dll │ ├── bypassuac-x86.exe │ ├── enum_artifacts_list.txt │ ├── powershell │ │ ├── Invoke-LoginPrompt.ps1 │ │ ├── NTDSgrab.ps1 │ │ └── outlook.ps1 │ └── zip │ │ └── zip.js ├── snmp │ └── mibs │ │ ├── ACCOUNTING-CONTROL-MIB.yaml │ │ ├── ADSL-LINE-EXT-MIB.yaml │ │ ├── ADSL-LINE-MIB.yaml │ │ ├── ADSL-TC-MIB.yaml │ │ ├── AGENTX-MIB.yaml │ │ ├── APM-MIB.yaml │ │ ├── APPC-MIB.yaml │ │ ├── APPLETALK-MIB.yaml │ │ ├── APPLICATION-MIB.yaml │ │ ├── APPN-DLUR-MIB.yaml │ │ ├── APPN-MIB.yaml │ │ ├── APPN-TRAP-MIB.yaml │ │ ├── APS-MIB.yaml │ │ ├── ATM-ACCOUNTING-INFORMATION-MIB.yaml │ │ ├── ATM-MIB.yaml │ │ ├── ATM-TC-MIB.yaml │ │ ├── ATM2-MIB.yaml │ │ ├── BGP4-MIB.yaml │ │ ├── BLDG-HVAC-MIB.yaml │ │ ├── BRIDGE-MIB.yaml │ │ ├── CHARACTER-MIB.yaml │ │ ├── CIRCUIT-IF-MIB.yaml │ │ ├── CLNS-MIB.yaml │ │ ├── COFFEE-POT-MIB.yaml │ │ ├── COPS-CLIENT-MIB.yaml │ │ ├── DECNET-PHIV-MIB.yaml │ │ ├── DIAL-CONTROL-MIB.yaml │ │ ├── DIFFSERV-CONFIG-MIB.yaml │ │ ├── DIFFSERV-DSCP-TC.yaml │ │ ├── DIFFSERV-MIB.yaml │ │ ├── DIRECTORY-SERVER-MIB.yaml │ │ ├── DISMAN-EVENT-MIB.yaml │ │ ├── DISMAN-EXPRESSION-MIB.yaml │ │ ├── DISMAN-NSLOOKUP-MIB.yaml │ │ ├── DISMAN-PING-MIB.yaml │ │ ├── DISMAN-SCHEDULE-MIB.yaml │ │ ├── DISMAN-SCRIPT-MIB.yaml │ │ ├── DISMAN-TRACEROUTE-MIB.yaml │ │ ├── DLSW-MIB.yaml │ │ ├── DNS-RESOLVER-MIB.yaml │ │ ├── DNS-SERVER-MIB.yaml │ │ ├── DOCS-BPI-MIB.yaml │ │ ├── DOCS-CABLE-DEVICE-MIB.yaml │ │ ├── DOCS-IF-MIB.yaml │ │ ├── DOT12-IF-MIB.yaml │ │ ├── DS0-MIB.yaml │ │ ├── DS0BUNDLE-MIB.yaml │ │ ├── DS1-MIB.yaml │ │ ├── DS3-MIB.yaml │ │ ├── DSA-MIB.yaml │ │ ├── DSMON-MIB.yaml │ │ ├── EBN-MIB.yaml │ │ ├── ENTITY-MIB.yaml │ │ ├── ENTITY-SENSOR-MIB.yaml │ │ ├── ETHER-CHIPSET-MIB.yaml │ │ ├── ETHER-WIS.yaml │ │ ├── EtherLike-MIB.yaml │ │ ├── FDDI-SMT73-MIB.yaml │ │ ├── FIBRE-CHANNEL-FE-MIB.yaml │ │ ├── FLOW-METER-MIB.yaml │ │ ├── FR-ATM-PVC-SERVICE-IWF-MIB.yaml │ │ ├── FR-MFR-MIB.yaml │ │ ├── FRAME-RELAY-DTE-MIB.yaml │ │ ├── FRNETSERV-MIB.yaml │ │ ├── FRSLD-MIB.yaml │ │ ├── Finisher-MIB.yaml │ │ ├── GSMP-MIB.yaml │ │ ├── HC-ALARM-MIB.yaml │ │ ├── HC-PerfHist-TC-MIB.yaml │ │ ├── HC-RMON-MIB.yaml │ │ ├── HCNUM-TC.yaml │ │ ├── HDSL2-SHDSL-LINE-MIB.yaml │ │ ├── HOST-RESOURCES-MIB.yaml │ │ ├── HOST-RESOURCES-TYPES.yaml │ │ ├── HPR-IP-MIB.yaml │ │ ├── HPR-MIB.yaml │ │ ├── IF-INVERTED-STACK-MIB.yaml │ │ ├── IF-MIB.yaml │ │ ├── IGMP-STD-MIB.yaml │ │ ├── INET-ADDRESS-MIB.yaml │ │ ├── INTEGRATED-SERVICES-GUARANTEED-MIB.yaml │ │ ├── INTEGRATED-SERVICES-MIB.yaml │ │ ├── INTERFACETOPN-MIB.yaml │ │ ├── IP-FORWARD-MIB.yaml │ │ ├── IP-MIB.yaml │ │ ├── IPATM-IPMC-MIB.yaml │ │ ├── IPMROUTE-STD-MIB.yaml │ │ ├── IPOA-MIB.yaml │ │ ├── IPV6-FLOW-LABEL-MIB.yaml │ │ ├── IPV6-ICMP-MIB.yaml │ │ ├── IPV6-MIB.yaml │ │ ├── IPV6-MLD-MIB.yaml │ │ ├── IPV6-TCP-MIB.yaml │ │ ├── IPV6-UDP-MIB.yaml │ │ ├── ISDN-MIB.yaml │ │ ├── Job-Monitoring-MIB.yaml │ │ ├── L2TP-MIB.yaml │ │ ├── MALLOC-MIB.yaml │ │ ├── MAU-MIB.yaml │ │ ├── MIOX25-MIB.yaml │ │ ├── MIP-MIB.yaml │ │ ├── MPLS-FTN-STD-MIB.yaml │ │ ├── MPLS-LDP-ATM-STD-MIB.yaml │ │ ├── MPLS-LDP-FRAME-RELAY-STD-MIB.yaml │ │ ├── MPLS-LDP-GENERIC-STD-MIB.yaml │ │ ├── MPLS-LDP-STD-MIB.yaml │ │ ├── MPLS-LSR-STD-MIB.yaml │ │ ├── MPLS-TC-STD-MIB.yaml │ │ ├── MPLS-TE-STD-MIB.yaml │ │ ├── MTA-MIB.yaml │ │ ├── Modem-MIB.yaml │ │ ├── NETWORK-SERVICES-MIB.yaml │ │ ├── NHRP-MIB.yaml │ │ ├── NOTIFICATION-LOG-MIB.yaml │ │ ├── OPT-IF-MIB.yaml │ │ ├── OSPF-MIB.yaml │ │ ├── OSPF-TRAP-MIB.yaml │ │ ├── P-BRIDGE-MIB.yaml │ │ ├── PARALLEL-MIB.yaml │ │ ├── PIM-MIB.yaml │ │ ├── PINT-MIB.yaml │ │ ├── POWER-ETHERNET-MIB.yaml │ │ ├── PPP-BRIDGE-NCP-MIB.yaml │ │ ├── PPP-IP-NCP-MIB.yaml │ │ ├── PPP-LCP-MIB.yaml │ │ ├── PPP-SEC-MIB.yaml │ │ ├── PTOPO-MIB.yaml │ │ ├── PerfHist-TC-MIB.yaml │ │ ├── Printer-MIB.yaml │ │ ├── Q-BRIDGE-MIB.yaml │ │ ├── RADIUS-ACC-CLIENT-MIB.yaml │ │ ├── RADIUS-ACC-SERVER-MIB.yaml │ │ ├── RADIUS-AUTH-CLIENT-MIB.yaml │ │ ├── RADIUS-AUTH-SERVER-MIB.yaml │ │ ├── RDBMS-MIB.yaml │ │ ├── RFC1065-SMI.yaml │ │ ├── RFC1155-SMI.yaml │ │ ├── RFC1158-MIB.yaml │ │ ├── RFC1213-MIB.yaml │ │ ├── RFC1269-MIB.yaml │ │ ├── RFC1271-MIB.yaml │ │ ├── RFC1285-MIB.yaml │ │ ├── RFC1316-MIB.yaml │ │ ├── RFC1381-MIB.yaml │ │ ├── RFC1382-MIB.yaml │ │ ├── RFC1414-MIB.yaml │ │ ├── RIPv2-MIB.yaml │ │ ├── RMON-MIB.yaml │ │ ├── RMON2-MIB.yaml │ │ ├── ROHC-MIB.yaml │ │ ├── ROHC-RTP-MIB.yaml │ │ ├── ROHC-UNCOMPRESSED-MIB.yaml │ │ ├── RS-232-MIB.yaml │ │ ├── RSVP-MIB.yaml │ │ ├── RTP-MIB.yaml │ │ ├── SFLOW-MIB.yaml │ │ ├── SIP-MIB.yaml │ │ ├── SLAPM-MIB.yaml │ │ ├── SMON-MIB.yaml │ │ ├── SNA-NAU-MIB.yaml │ │ ├── SNA-SDLC-MIB.yaml │ │ ├── SNMP-COMMUNITY-MIB.yaml │ │ ├── SNMP-FRAMEWORK-MIB.yaml │ │ ├── SNMP-MPD-MIB.yaml │ │ ├── SNMP-NOTIFICATION-MIB.yaml │ │ ├── SNMP-PROXY-MIB.yaml │ │ ├── SNMP-REPEATER-MIB.yaml │ │ ├── SNMP-TARGET-MIB.yaml │ │ ├── SNMP-USER-BASED-SM-MIB.yaml │ │ ├── SNMP-USM-DH-OBJECTS-MIB.yaml │ │ ├── SNMP-VIEW-BASED-ACM-MIB.yaml │ │ ├── SNMPv2-MIB.yaml │ │ ├── SNMPv2-SMI.yaml │ │ ├── SNMPv2-TM.yaml │ │ ├── SNMPv2-USEC-MIB.yaml │ │ ├── SONET-MIB.yaml │ │ ├── SOURCE-ROUTING-MIB.yaml │ │ ├── SYSAPPL-MIB.yaml │ │ ├── TCP-MIB.yaml │ │ ├── TCPIPX-MIB.yaml │ │ ├── TN3270E-MIB.yaml │ │ ├── TN3270E-RT-MIB.yaml │ │ ├── TOKEN-RING-RMON-MIB.yaml │ │ ├── TOKENRING-MIB.yaml │ │ ├── TOKENRING-STATION-SR-MIB.yaml │ │ ├── TRANSPORT-ADDRESS-MIB.yaml │ │ ├── TUNNEL-MIB.yaml │ │ ├── UDP-MIB.yaml │ │ ├── UPS-MIB.yaml │ │ ├── VDSL-LINE-MIB.yaml │ │ ├── VRRP-MIB.yaml │ │ └── WWW-MIB.yaml ├── sounds │ ├── aiff2wav.rb │ ├── default │ │ ├── excellent.wav │ │ ├── exploit_worked.wav │ │ ├── got_a_shell.wav │ │ ├── try_harder.wav │ │ └── wonderful.wav │ └── gensounds_mac.rb ├── templates │ ├── dotnetmem.dll │ ├── scripts │ │ ├── to_exe.asp.template │ │ ├── to_exe.aspx.template │ │ ├── to_exe.jsp.template │ │ ├── to_exe.vba.template │ │ ├── to_exe.vbs.template │ │ ├── to_mem.aspx.template │ │ ├── to_mem.vba.template │ │ ├── to_powershell.hta.template │ │ └── to_powershell.vba.template │ ├── src │ │ ├── elf │ │ │ ├── dll │ │ │ │ ├── elf_dll_armle_template.s │ │ │ │ ├── elf_dll_x64_template.s │ │ │ │ └── elf_dll_x86_template.s │ │ │ └── exe │ │ │ │ ├── elf_aarch64_template.s │ │ │ │ ├── elf_armle_template.s │ │ │ │ ├── elf_mipsle_template.s │ │ │ │ ├── elf_x86_bsd_template.s │ │ │ │ ├── elf_x86_solaris_template.s │ │ │ │ └── elf_x86_template.s │ │ ├── msi │ │ │ ├── .gitignore │ │ │ ├── COMPILING.txt │ │ │ ├── buffer │ │ │ ├── compile.bat │ │ │ ├── template_nouac_windows.wxs │ │ │ └── template_windows.wxs │ │ └── pe │ │ │ ├── dll │ │ │ ├── build.sh │ │ │ ├── template.c │ │ │ ├── template.def │ │ │ ├── template.h │ │ │ └── template.rc │ │ │ ├── dll_gdiplus │ │ │ ├── build.sh │ │ │ ├── template.c │ │ │ ├── template.def │ │ │ ├── template.h │ │ │ └── template.rc │ │ │ └── exe │ │ │ ├── service │ │ │ ├── Service.sln │ │ │ ├── Service.vcproj │ │ │ └── service.c │ │ │ ├── template.c │ │ │ ├── template.s │ │ │ └── template_x64_windows.asm │ ├── template_aarch64_linux.bin │ ├── template_armle_darwin.bin │ ├── template_armle_linux.bin │ ├── template_armle_linux_dll.bin │ ├── template_dotnetmem.dll │ ├── template_mipsbe_linux.bin │ ├── template_mipsle_linux.bin │ ├── template_nouac_windows.msi │ ├── template_ppc_darwin.bin │ ├── template_windows.msi │ ├── template_x64_bsd.bin │ ├── template_x64_darwin.bin │ ├── template_x64_linux.bin │ ├── template_x64_linux_dll.bin │ ├── template_x64_windows.dll │ ├── template_x64_windows.exe │ ├── template_x64_windows_dccw_gdiplus.dll │ ├── template_x64_windows_svc.exe │ ├── template_x86_bsd.bin │ ├── template_x86_darwin.bin │ ├── template_x86_linux.bin │ ├── template_x86_linux_dll.bin │ ├── template_x86_solaris.bin │ ├── template_x86_windows.dll │ ├── template_x86_windows.exe │ ├── template_x86_windows_dccw_gdiplus.dll │ ├── template_x86_windows_old.exe │ └── template_x86_windows_svc.exe ├── vncdll.x64.dll ├── vncdll.x86.dll ├── webcam │ ├── answerer.html │ ├── api.js │ └── offerer.html ├── wmap │ ├── whaler.txt │ ├── wmap_404s.txt │ ├── wmap_dirs.txt │ ├── wmap_files.txt │ └── wmap_sample_profile.txt ├── wordlists │ ├── adobe_top100_pass.txt │ ├── av-update-urls.txt │ ├── av_hips_executables.txt │ ├── burnett_top_1024.txt │ ├── burnett_top_500.txt │ ├── can_flood_frames.txt │ ├── cms400net_default_userpass.txt │ ├── common_roots.txt │ ├── dangerzone_a.txt │ ├── dangerzone_b.txt │ ├── db2_default_pass.txt │ ├── db2_default_user.txt │ ├── db2_default_userpass.txt │ ├── default_pass_for_services_unhash.txt │ ├── default_userpass_for_services_unhash.txt │ ├── default_users_for_services_unhash.txt │ ├── dlink_telnet_backdoor_userpass.txt │ ├── hci_oracle_passwords.csv │ ├── http_default_pass.txt │ ├── http_default_userpass.txt │ ├── http_default_users.txt │ ├── http_owa_common.txt │ ├── idrac_default_pass.txt │ ├── idrac_default_user.txt │ ├── ipmi_passwords.txt │ ├── ipmi_users.txt │ ├── joomla.txt │ ├── keyboard-patterns.txt │ ├── lync_subdomains.txt │ ├── malicious_urls.txt │ ├── mirai_pass.txt │ ├── mirai_user.txt │ ├── mirai_user_pass.txt │ ├── multi_vendor_cctv_dvr_pass.txt │ ├── multi_vendor_cctv_dvr_users.txt │ ├── named_pipes.txt │ ├── namelist.txt │ ├── oracle_default_hashes.txt │ ├── oracle_default_passwords.csv │ ├── oracle_default_userpass.txt │ ├── password.lst │ ├── piata_ssh_userpass.txt │ ├── postgres_default_pass.txt │ ├── postgres_default_user.txt │ ├── postgres_default_userpass.txt │ ├── root_userpass.txt │ ├── routers_userpass.txt │ ├── rpc_names.txt │ ├── rservices_from_users.txt │ ├── sap_common.txt │ ├── sap_default.txt │ ├── sap_icm_paths.txt │ ├── scada_default_userpass.txt │ ├── sensitive_files.txt │ ├── sensitive_files_win.txt │ ├── sid.txt │ ├── snmp_default_pass.txt │ ├── tftp.txt │ ├── tomcat_mgr_default_pass.txt │ ├── tomcat_mgr_default_userpass.txt │ ├── tomcat_mgr_default_users.txt │ ├── unix_passwords.txt │ ├── unix_users.txt │ ├── vnc_passwords.txt │ ├── vxworks_collide_20.txt │ └── vxworks_common_20.txt └── ysoserial_payloads.json ├── db ├── migrate │ └── .git-keep ├── modules_metadata_base.json └── schema.rb ├── docker-compose.override.yml ├── docker-compose.yml ├── docker ├── README.md ├── bin │ ├── msfconsole │ └── msfvenom ├── database.yml ├── entrypoint.sh └── msfconsole.rc ├── documentation ├── README.md ├── api │ └── v1 │ │ ├── auth_api_doc.rb │ │ ├── credential_api_doc.rb │ │ ├── db_export_api_doc.rb │ │ ├── event_api_doc.rb │ │ ├── exploit_api_doc.rb │ │ ├── host_api_doc.rb │ │ ├── login_api_doc.rb │ │ ├── loot_api_doc.rb │ │ ├── module_search_api_doc.rb │ │ ├── msf_api_doc.rb │ │ ├── nmap_api_doc.rb │ │ ├── note_api_doc.rb │ │ ├── payload_api_doc.rb │ │ ├── root_api_doc.rb │ │ ├── service_api_doc.rb │ │ ├── session_api_doc.rb │ │ ├── session_event_api_doc.rb │ │ ├── user_api_doc.rb │ │ ├── vuln_api_doc.rb │ │ ├── vuln_attempt_api_doc.rb │ │ └── workspace_api_doc.rb ├── cli │ ├── msfconsole.md │ └── msfconsole │ │ ├── jobs.md │ │ └── repeat.md ├── developers_guide.pdf └── modules │ ├── auxiliary │ ├── admin │ │ ├── aws │ │ │ └── aws_launch_instances.md │ │ ├── chromecast │ │ │ └── chromecast_youtube.md │ │ ├── cisco │ │ │ └── cisco_asa_extrabacon.md │ │ ├── dns │ │ │ └── dns_dyn_update.md │ │ ├── hp │ │ │ └── hp_ilo_create_admin_account.md │ │ ├── http │ │ │ ├── allegro_rompager_auth_bypass.md │ │ │ ├── cnpilot_r_cmd_exec.md │ │ │ ├── cnpilot_r_fpt.md │ │ │ ├── epmp1000_get_chart_cmd_exec.md │ │ │ ├── epmp1000_reset_pass.md │ │ │ ├── gitstack_rest.md │ │ │ ├── mantisbt_password_reset.md │ │ │ ├── netgear_soap_password_extractor.md │ │ │ ├── scadabr_credential_dump.md │ │ │ ├── telpho10_credential_dump.md │ │ │ ├── tomcat_administration.md │ │ │ ├── typo3_news_module_sqli.md │ │ │ ├── ulterius_file_download.md │ │ │ ├── wp_gdpr_compliance_privesc.md │ │ │ ├── wp_google_maps_sqli.md │ │ │ ├── wp_symposium_sql_injection.md │ │ │ └── zabbix_ldap_password_extractor.md │ │ ├── netbios │ │ │ └── netbios_spoof.md │ │ ├── oracle │ │ │ └── oracle_index_privesc.md │ │ ├── scada │ │ │ ├── moxa_credentials_recovery.md │ │ │ ├── pcom_command.md │ │ │ └── phoenix_command.md │ │ ├── smb │ │ │ ├── ms17_010_command.md │ │ │ └── webexec_command.md │ │ ├── teradata │ │ │ └── teradata_odbc_sql.md │ │ └── wemo │ │ │ └── crockpot.md │ ├── analyze │ │ ├── apply_pot.md │ │ ├── jtr_aix.md │ │ ├── jtr_linux.md │ │ ├── jtr_mssql_fast.md │ │ ├── jtr_mysql_fast.md │ │ ├── jtr_oracle_fast.md │ │ ├── jtr_postgres_fast.md │ │ └── jtr_windows_fast.md │ ├── client │ │ ├── hwbridge │ │ │ └── connect.md │ │ ├── iec104 │ │ │ └── iec104.md │ │ ├── mms │ │ │ └── send_mms.md │ │ └── sms │ │ │ └── send_text.md │ ├── dos │ │ ├── apple_ios │ │ │ └── webkit_backdrop_filter_blur.md │ │ ├── cisco │ │ │ └── ios_telnet_rocem.md │ │ ├── http │ │ │ ├── apache_commons_fileupload_dos.md │ │ │ ├── brother_debut_dos.md │ │ │ ├── flexense_http_server_dos.md │ │ │ ├── ibm_lotus_notes.md │ │ │ ├── ibm_lotus_notes2.md │ │ │ ├── marked_redos.md │ │ │ ├── slowloris.md │ │ │ ├── ua_parser_js_redos.md │ │ │ ├── webkitplus.md │ │ │ ├── wordpress_directory_traversal_dos.md │ │ │ └── ws_dos.md │ │ ├── rpc │ │ │ └── rpcbomb.md │ │ ├── scada │ │ │ └── allen_bradley_pccc.md │ │ ├── siemens_siprotec4.md │ │ ├── smb │ │ │ └── smb_loris.md │ │ └── tcp │ │ │ └── claymore.md │ ├── fileformat │ │ ├── badpdf.md │ │ └── odt_badodt.md │ ├── gather │ │ ├── advantech_webaccess_creds.md │ │ ├── asterisk_creds.md │ │ ├── browser_getprivateip.md │ │ ├── c2s_dvr_password_disclosure.md │ │ ├── censys_search.md │ │ ├── cerberus_helpdesk_hash_disclosure.md │ │ ├── cisco_rv320_config.md │ │ ├── dolibarr_list_creds_sqli.md │ │ ├── get_user_spns.md │ │ ├── http_pdf_authors.md │ │ ├── ibm_bigfix_sites_packages_enum.md │ │ ├── ipcamera_password_disclosure.md │ │ ├── kerberos_enumusers.md │ │ ├── nis_bootparamd_domain.md │ │ ├── nis_ypserv_map.md │ │ ├── nuuo_cms_bruteforce.md │ │ ├── nuuo_cms_file_download.md │ │ ├── office365userenum.md │ │ ├── pimcore_creds_sqli.md │ │ ├── qnap_backtrace_admin_hash.md │ │ ├── rails_doubletap_file_read.md │ │ ├── samsung_browser_sop_bypass.md │ │ ├── shodan_honeyscore.md │ │ ├── snare_registry.md │ │ └── teamtalk_creds.md │ ├── multidrop.md │ ├── scanner │ │ ├── afp │ │ │ └── afp_server_info.md │ │ ├── backdoor │ │ │ └── energizer_duo_detect.md │ │ ├── chargen │ │ │ └── chargen_probe.md │ │ ├── couchdb │ │ │ ├── couchdb_enum.md │ │ │ └── couchdb_login.md │ │ ├── db2 │ │ │ └── discovery.md │ │ ├── dcerpc │ │ │ ├── endpoint_mapper.md │ │ │ ├── hidden.md │ │ │ ├── management.md │ │ │ └── tcp_dcerpc_auditor.md │ │ ├── discovery │ │ │ ├── arp_sweep.md │ │ │ ├── ipv6_neighbor.md │ │ │ └── udp_sweep.md │ │ ├── elasticsearch │ │ │ └── indices_enum.md │ │ ├── etcd │ │ │ ├── open_key_scanner.md │ │ │ └── version.md │ │ ├── finger │ │ │ └── finger_users.md │ │ ├── ftp │ │ │ ├── anonymous.md │ │ │ ├── colorado_ftp_traversal.md │ │ │ ├── easy_file_sharing_ftp.md │ │ │ ├── ftp_login.md │ │ │ └── ftp_version.md │ │ ├── gopher │ │ │ └── gopher_gophermap.md │ │ ├── h323 │ │ │ └── h323_version.md │ │ ├── http │ │ │ ├── advantech_webaccess_login.md │ │ │ ├── apache_optionsbleed.md │ │ │ ├── backup_file.md │ │ │ ├── bavision_cam_login.md │ │ │ ├── binom3_login_config_pass_dump.md │ │ │ ├── buildmaster_login.md │ │ │ ├── cert.md │ │ │ ├── cgit_traversal.md │ │ │ ├── chromecast_webserver.md │ │ │ ├── chromecast_wifi.md │ │ │ ├── cisco_device_manager.md │ │ │ ├── cisco_directory_traversal.md │ │ │ ├── cisco_firepower_download.md │ │ │ ├── cisco_firepower_login.md │ │ │ ├── cnpilot_r_web_login_loot.md │ │ │ ├── crawler.md │ │ │ ├── dicoogle_traversal.md │ │ │ ├── dir_listing.md │ │ │ ├── dir_scanner.md │ │ │ ├── dir_webdav_unicode_bypass.md │ │ │ ├── directadmin_login.md │ │ │ ├── docker_version.md │ │ │ ├── enum_wayback.md │ │ │ ├── epmp1000_dump_config.md │ │ │ ├── epmp1000_dump_hashes.md │ │ │ ├── epmp1000_ping_cmd_exec.md │ │ │ ├── epmp1000_web_login.md │ │ │ ├── es_file_explorer_open_port.md │ │ │ ├── files_dir.md │ │ │ ├── fortinet_ssl_vpn.md │ │ │ ├── gavazzi_em_login_loot.md │ │ │ ├── glassfish_traversal.md │ │ │ ├── http_header.md │ │ │ ├── http_login.md │ │ │ ├── http_put.md │ │ │ ├── http_sickrage_password_leak.md │ │ │ ├── http_version.md │ │ │ ├── httpdasm_directory_traversal.md │ │ │ ├── iis_shortname_scanner.md │ │ │ ├── influxdb_enum.md │ │ │ ├── intel_amt_digest_bypass.md │ │ │ ├── jboss_vulnscan.md │ │ │ ├── joomla_pages.md │ │ │ ├── joomla_plugins.md │ │ │ ├── joomla_version.md │ │ │ ├── kodi_traversal.md │ │ │ ├── manageengine_deviceexpert_user_creds.md │ │ │ ├── meteocontrol_weblog_extractadmin.md │ │ │ ├── ms15_034_http_sys_memory_dump.md │ │ │ ├── open_proxy.md │ │ │ ├── options.md │ │ │ ├── owa_ews_login.md │ │ │ ├── owa_login.md │ │ │ ├── phpmyadmin_login.md │ │ │ ├── rips_traversal.md │ │ │ ├── riverbed_steelhead_vcx_file_read.md │ │ │ ├── robots_txt.md │ │ │ ├── scraper.md │ │ │ ├── ssl.md │ │ │ ├── surgenews_user_creds.md │ │ │ ├── symantec_brightmail_ldapcreds.md │ │ │ ├── tomcat_mgr_login.md │ │ │ ├── totaljs_traversal.md │ │ │ ├── verb_auth_bypass.md │ │ │ ├── webdav_scanner.md │ │ │ ├── webdav_website_content.md │ │ │ ├── wordpress_content_injection.md │ │ │ ├── wordpress_login_enum.md │ │ │ └── wp_arbitrary_file_deletion.md │ │ ├── ike │ │ │ └── cisco_ike_benigncertain.md │ │ ├── imap │ │ │ └── imap_version.md │ │ ├── ipmi │ │ │ ├── ipmi_cipher_zero.md │ │ │ ├── ipmi_dumphashes.md │ │ │ └── ipmi_version.md │ │ ├── jenkins │ │ │ └── jenkins_udp_broadcast_enum.md │ │ ├── memcached │ │ │ ├── memcached_amp.md │ │ │ └── memcached_udp_version.md │ │ ├── misc │ │ │ ├── cisco_smart_install.md │ │ │ ├── clamav_control.md │ │ │ ├── ibm_mq_channel_brute.md │ │ │ ├── ibm_mq_enum.md │ │ │ ├── ibm_mq_login.md │ │ │ ├── java_jmx_scanner.md │ │ │ └── sunrpc_portmapper.md │ │ ├── mqtt │ │ │ └── connect.md │ │ ├── msmail │ │ │ ├── exchange_enum.md │ │ │ ├── host_id.md │ │ │ └── onprem_enum.md │ │ ├── mssql │ │ │ ├── mssql_idf.md │ │ │ ├── mssql_ping.md │ │ │ └── mssql_sql.md │ │ ├── mysql │ │ │ ├── mysql_login.md │ │ │ └── mysql_version.md │ │ ├── nfs │ │ │ └── nfsmount.md │ │ ├── nntp │ │ │ └── nntp_login.md │ │ ├── oracle │ │ │ └── oracle_hashdump.md │ │ ├── pop3 │ │ │ └── pop3_version.md │ │ ├── portscan │ │ │ ├── syn.md │ │ │ ├── tcp.md │ │ │ └── xmas.md │ │ ├── postgres │ │ │ ├── postgres_hashdump.md │ │ │ └── postgres_version.md │ │ ├── rdp │ │ │ └── rdp_scanner.md │ │ ├── rservices │ │ │ ├── rexec_login.md │ │ │ ├── rlogin_login.md │ │ │ └── rsh_login.md │ │ ├── rsync │ │ │ └── modules_list.md │ │ ├── sap │ │ │ └── sap_mgmt_con_listconfigfiles.md │ │ ├── scada │ │ │ ├── moxa_discover.md │ │ │ ├── pcomclient.md │ │ │ └── profinet_siemens.md │ │ ├── sip │ │ │ └── options_tcp.md │ │ ├── smb │ │ │ ├── impacket │ │ │ │ ├── dcomexec.md │ │ │ │ ├── secretsdump.md │ │ │ │ └── wmiexec.md │ │ │ ├── pipe_auditor.md │ │ │ ├── pipe_dcerpc_auditor.md │ │ │ ├── smb1.md │ │ │ ├── smb2.md │ │ │ ├── smb_enumshares.md │ │ │ ├── smb_enumusers.md │ │ │ ├── smb_login.md │ │ │ ├── smb_lookupsid.md │ │ │ ├── smb_ms17_010.md │ │ │ └── smb_version.md │ │ ├── smtp │ │ │ └── smtp_version.md │ │ ├── snmp │ │ │ ├── cisco_config_tftp.md │ │ │ ├── cisco_upload_file.md │ │ │ ├── cnpilot_r_snmp_loot.md │ │ │ ├── epmp1000_snmp_loot.md │ │ │ ├── snmp_enum.md │ │ │ ├── snmp_enumshares.md │ │ │ ├── snmp_enumusers.md │ │ │ └── snmp_login.md │ │ ├── ssh │ │ │ ├── eaton_xpert_backdoor.md │ │ │ ├── fortinet_backdoor.md │ │ │ ├── juniper_backdoor.md │ │ │ ├── libssh_auth_bypass.md │ │ │ ├── ssh_enumusers.md │ │ │ ├── ssh_login.md │ │ │ └── ssh_login_pubkey.md │ │ ├── ssl │ │ │ └── bleichenbacher_oracle.md │ │ ├── telnet │ │ │ ├── brocade_enable_login.md │ │ │ ├── satel_cmd_exec.md │ │ │ ├── telnet_login.md │ │ │ └── telnet_version.md │ │ ├── teradata │ │ │ └── teradata_odbc_login.md │ │ ├── ubiquiti │ │ │ └── ubiquiti_discover.md │ │ ├── udp │ │ │ └── udp_amplification.md │ │ ├── varnish │ │ │ ├── varnish_cli_file_read.md │ │ │ └── varnish_cli_login.md │ │ ├── vmware │ │ │ ├── esx_fingerprint.md │ │ │ └── vmauthd_version.md │ │ ├── vnc │ │ │ └── ard_root_pw.md │ │ ├── winrm │ │ │ ├── winrm_auth_methods.md │ │ │ └── winrm_cmd.md │ │ ├── wsdd │ │ │ └── wsdd_query.md │ │ └── x11 │ │ │ └── open_x11.md │ ├── server │ │ ├── browser_autopwn2.md │ │ ├── capture │ │ │ ├── ftp.md │ │ │ ├── http_basic.md │ │ │ ├── imap.md │ │ │ ├── mysql.md │ │ │ ├── postgresql.md │ │ │ ├── printjob_capture.md │ │ │ ├── telnet.md │ │ │ └── vnc.md │ │ ├── local_hwbridge.md │ │ └── socks4a.md │ └── spoof │ │ └── mdns │ │ └── mdns_response.md │ ├── evasion │ └── windows │ │ └── windows_defender_exe.md │ ├── exploit │ ├── android │ │ └── local │ │ │ ├── put_user_vroot.md │ │ │ └── su_exec.md │ ├── apple_ios │ │ └── browser │ │ │ └── webkit_trident.md │ ├── bsd │ │ └── finger │ │ │ └── morris_fingerd_bof.md │ ├── freebsd │ │ └── local │ │ │ └── intel_sysret_priv_esc.md │ ├── linux │ │ ├── asan_suid_executable_priv_esc.md │ │ ├── http │ │ │ ├── alienvault_exec.md │ │ │ ├── apache_couchdb_cmd_exec.md │ │ │ ├── asuswrt_lan_rce.md │ │ │ ├── axis_srv_parhand_rce.md │ │ │ ├── centreon_useralias_exec.md │ │ │ ├── cisco_firepower_useradd.md │ │ │ ├── cisco_prime_inf_rce.md │ │ │ ├── cisco_rv130_rmi_rce.md │ │ │ ├── cisco_rv32x_rce.md │ │ │ ├── dcos_marathon.md │ │ │ ├── denyall_waf_exec.md │ │ │ ├── dlink_dir850l_unauth_exec.md │ │ │ ├── dlink_dsl2750b_exec_noauth.md │ │ │ ├── docker_daemon_tcp.md │ │ │ ├── epmp1000_get_chart_cmd_shell.md │ │ │ ├── epmp1000_ping_cmd_shell.md │ │ │ ├── github_enterprise_secret.md │ │ │ ├── goahead_ldpreload.md │ │ │ ├── goautodial_3_rce_code_injection.md │ │ │ ├── hadoop_unauth_exec.md │ │ │ ├── hp_van_sdn_cmd_inject.md │ │ │ ├── huawei_hg532n_cmdinject.md │ │ │ ├── ibm_qradar_unauth_rce.md │ │ │ ├── imperva_securesphere_exec.md │ │ │ ├── ipfire_bashbug_exec.md │ │ │ ├── ipfire_oinkcode_exec.md │ │ │ ├── ipfire_proxy_exec.md │ │ │ ├── kaltura_unserialize_cookie_rce.md │ │ │ ├── kaltura_unserialize_rce.md │ │ │ ├── linksys_wvbr0_user_agent_exec_noauth.md │ │ │ ├── logsign_exec.md │ │ │ ├── mailcleaner_exec.md │ │ │ ├── microfocus_secure_messaging_gateway.md │ │ │ ├── mvpower_dvr_shell_exec.md │ │ │ ├── nagios_xi_chained_rce.md │ │ │ ├── nagios_xi_chained_rce_2_electric_boogaloo.md │ │ │ ├── netgear_dgn1000_setup_unauth_exec.md │ │ │ ├── netgear_dnslookup_cmd_exec.md │ │ │ ├── netgear_r7000_cgibin_exec.md │ │ │ ├── netgear_unauth_exec.md │ │ │ ├── op5_config_exec.md │ │ │ ├── panos_readsessionvars.md │ │ │ ├── php_imap_open_rce.md │ │ │ ├── pineapple_bypass_cmdinject.md │ │ │ ├── pineapple_preconfig_cmdinject.md │ │ │ ├── qnap_qcenter_change_passwd_exec.md │ │ │ ├── rancher_server.md │ │ │ ├── samsung_srv_1670d_upload_exec.md │ │ │ ├── spark_unauth_rce.md │ │ │ ├── supervisor_xmlrpc_exec.md │ │ │ ├── symantec_messaging_gateway_exec.md │ │ │ ├── tiki_calendar_exec.md │ │ │ ├── trend_micro_imsva_exec.md │ │ │ ├── trendmicro_imsva_widget_exec.md │ │ │ ├── ueb_api_rce.md │ │ │ ├── wd_mycloud_multiupload_upload.md │ │ │ ├── wipg1000_cmd_injection.md │ │ │ ├── xplico_exec.md │ │ │ └── zimbra_xxe_rce.md │ │ ├── local │ │ │ ├── abrt_raceabrt_priv_esc.md │ │ │ ├── af_packet_chocobo_root_priv_esc.md │ │ │ ├── af_packet_packet_set_ring_priv_esc.md │ │ │ ├── apport_abrt_chroot_priv_esc.md │ │ │ ├── autostart_persistence.md │ │ │ ├── blueman_set_dhcp_handler_dbus_priv_esc.md │ │ │ ├── bpf_priv_esc.md │ │ │ ├── bpf_sign_extension_priv_esc.md │ │ │ ├── cron_persistence.md │ │ │ ├── glibc_ld_audit_dso_load_priv_esc.md │ │ │ ├── glibc_origin_expansion_priv_esc.md │ │ │ ├── glibc_realpath_priv_esc.md │ │ │ ├── juju_run_agent_priv_esc.md │ │ │ ├── lastore_daemon_dbus_priv_esc.md │ │ │ ├── libuser_roothelper_priv_esc.md │ │ │ ├── nested_namespace_idmap_limit_priv_esc.md │ │ │ ├── netfilter_priv_esc_ipv4.md │ │ │ ├── network_manager_vpnc_username_priv_esc.md │ │ │ ├── ntfs3g_priv_esc.md │ │ │ ├── overlayfs_priv_esc.md │ │ │ ├── rc_local_persistence.md │ │ │ ├── rds_priv_esc.md │ │ │ ├── recvmmsg_priv_esc.md │ │ │ ├── service_persistence.md │ │ │ ├── sock_sendpage.md │ │ │ ├── ueb_bpserverd_privesc.rb │ │ │ ├── ufo_privilege_escalation.md │ │ │ └── vmware_alsa_config.md │ │ ├── misc │ │ │ ├── asus_infosvr_auth_bypass_exec.md │ │ │ ├── hid_discoveryd_command_blink_on_unauth_rce.md │ │ │ ├── hp_jetdirect_path_traversal.md │ │ │ ├── jenkins_ldap_deserialize.md │ │ │ ├── netcore_udp_53413_backdoor.md │ │ │ ├── qnap_transcode_server.md │ │ │ └── ueb9_bpserverd.md │ │ ├── samba │ │ │ ├── is_known_pipename.md │ │ │ └── lsa_transnames_heap.md │ │ ├── smtp │ │ │ └── haraka.md │ │ ├── ssh │ │ │ ├── exagrid_known_privkey.md │ │ │ ├── mercurial_ssh_exec.md │ │ │ ├── solarwinds_lem_exec.md │ │ │ └── vmware_vdp_known_privkey.md │ │ ├── telnet │ │ │ └── netgear_telnetenable.md │ │ └── upnp │ │ │ └── belkin_wemo_upnp_exec.md │ ├── mainframe │ │ └── ftp │ │ │ └── ftp_jcl_creds.md │ ├── multi │ │ ├── browser │ │ │ ├── adobe_flash_hacking_team_uaf.md │ │ │ └── msfd_rce_browser.md │ │ ├── fileformat │ │ │ ├── evince_cbt_cmd_injection.md │ │ │ ├── ghostscript_failed_restore.md │ │ │ ├── libreoffice_macro_exec.md │ │ │ ├── office_word_macro.md │ │ │ └── swagger_param_inject.md │ │ ├── hams │ │ │ └── steamed.md │ │ ├── http │ │ │ ├── axis2_deployer.md │ │ │ ├── builderengine_upload_exec.md │ │ │ ├── caidao_php_backdoor_exec.md │ │ │ ├── clipbucket_fileupload_exec.md │ │ │ ├── cmsms_showtime2_rce.md │ │ │ ├── cmsms_upload_rename_rce.md │ │ │ ├── coldfusion_ckeditor_file_upload.md │ │ │ ├── confluence_widget_connector.md │ │ │ ├── drupal_drupageddon.md │ │ │ ├── git_submodule_command_exec.md │ │ │ ├── git_submodule_url_exec.md │ │ │ ├── gitlist_arg_injection.md │ │ │ ├── glassfish_deployer.md │ │ │ ├── horde_form_file_upload.md │ │ │ ├── ibm_openadmin_tool_soap_welcomeserver_exec.md │ │ │ ├── jenkins_metaprogramming.md │ │ │ ├── jenkins_script_console.md │ │ │ ├── jenkins_xstream_deserialize.md │ │ │ ├── jira_plugin_upload.md │ │ │ ├── magento_unserialize.md │ │ │ ├── makoserver_cmd_exec.md │ │ │ ├── mantisbt_manage_proj_page_rce.md │ │ │ ├── mediawiki_syntaxhighlight.md │ │ │ ├── monstra_fileupload_exec.md │ │ │ ├── navigate_cms_rce.md │ │ │ ├── oracle_weblogic_wsat_deserialization_rce.md │ │ │ ├── orientdb_exec.md │ │ │ ├── oscommerce_installer_unauth_code_exec.md │ │ │ ├── phpmailer_arg_injection.md │ │ │ ├── phpmyadmin_lfi_rce.md │ │ │ ├── phpmyadmin_null_termination_exec.md │ │ │ ├── playsms_filename_exec.md │ │ │ ├── playsms_uploadcsv_exec.md │ │ │ ├── processmaker_exec.md │ │ │ ├── processmaker_plugin_upload.md │ │ │ ├── rails_actionpack_inline_exec.md │ │ │ ├── rails_dynamic_render_code_exec.md │ │ │ ├── rails_web_console_v2_code_exec.md │ │ │ ├── sonicwall_scrutinizer_methoddetail_sqli.md │ │ │ ├── splunk_upload_app_exec.md │ │ │ ├── struts2_content_type_ognl.md │ │ │ ├── struts2_namespace_ognl.md │ │ │ ├── struts2_rest_xstream.md │ │ │ ├── struts_dmi_exec.md │ │ │ ├── struts_dmi_rest_exec.md │ │ │ ├── tomcat_jsp_upload_bypass.md │ │ │ ├── tomcat_mgr_deploy.md │ │ │ ├── tomcat_mgr_upload.md │ │ │ ├── trendmicro_threat_discovery_admin_sys_time_cmdi.md │ │ │ ├── vtiger_logo_upload_exec.md │ │ │ ├── werkzeug_debug_rce.md │ │ │ ├── wp_crop_rce.md │ │ │ └── wp_responsive_thumbnail_slider_upload.md │ │ ├── local │ │ │ ├── allwinner_backdoor.md │ │ │ ├── magnicomp_sysinfo_mcsiwrapper_priv_esc.md │ │ │ └── xorg_x11_suid_server.md │ │ ├── misc │ │ │ ├── bmc_patrol_cmd_exec.md │ │ │ ├── bmc_server_automation_rscd_nsh_rce.md │ │ │ ├── claymore_dual_miner_remote_manager_rce.md │ │ │ ├── consul_rexec_exec.md │ │ │ ├── consul_service_exec.md │ │ │ ├── erlang_cookie_rce.md │ │ │ ├── msf_rpc_console.md │ │ │ ├── msfd_rce_remote.md │ │ │ ├── nodejs_v8_debugger.md │ │ │ ├── openoffice_document_macro.md │ │ │ ├── osgi_console_exec.md │ │ │ ├── teamcity_agent_xmlrpc_exec.md │ │ │ ├── weblogic_deserialize.md │ │ │ ├── weblogic_deserialize_marshalledobject.md │ │ │ ├── weblogic_deserialize_rawobject.md │ │ │ └── weblogic_deserialize_unicastref.md │ │ ├── mysql │ │ │ └── mysql_udf_payload.md │ │ ├── php │ │ │ └── wp_duplicator_code_inject.md │ │ └── script │ │ │ └── web_delivery.md │ ├── osx │ │ ├── browser │ │ │ └── safari_proxy_object_type_confusion.md │ │ └── local │ │ │ ├── libxpc_mitm_ssudo.md │ │ │ └── root_no_password.md │ ├── qnx │ │ └── local │ │ │ └── ifwatchd_priv_esc.md │ ├── solaris │ │ └── local │ │ │ ├── extremeparr_dtappgather_priv_esc.md │ │ │ ├── libnspr_nspr_log_file_priv_esc.md │ │ │ └── rsh_stack_clash_priv_esc.md │ ├── unix │ │ ├── dhcp │ │ │ └── rhel_dhcp_client_command_injection.md │ │ ├── fileformat │ │ │ └── imagemagick_delegate.md │ │ ├── http │ │ │ ├── pfsense_clickjacking.md │ │ │ ├── pfsense_graph_injection_exec.md │ │ │ ├── pfsense_group_member_exec.md │ │ │ ├── quest_kace_systems_management_rce.md │ │ │ └── xdebug_unauth_exec.md │ │ ├── local │ │ │ ├── at_persistence.md │ │ │ ├── emacs_movemail.md │ │ │ └── netbsd_mail_local.md │ │ ├── misc │ │ │ ├── polycom_hdx_auth_bypass.md │ │ │ ├── polycom_hdx_traceroute_exec.md │ │ │ └── qnx_qconn_exec.md │ │ ├── smtp │ │ │ ├── morris_sendmail_debug.md │ │ │ └── qmail_bash_env_exec.md │ │ ├── sonicwall │ │ │ └── sonicwall_xmlrpc_rce.md │ │ ├── webapp │ │ │ ├── drupal_drupalgeddon2.md │ │ │ ├── drupal_restws_unserialize.md │ │ │ ├── elfinder_php_connector_exiftran_cmd_injection.md │ │ │ ├── joomla_comfields_sqli_rce.md │ │ │ ├── jquery_file_upload.md │ │ │ ├── phpcollab_upload_exec.md │ │ │ ├── piwik_superuser_plugin_upload.md │ │ │ ├── vicidial_user_authorization_unauth_cmd_exec.md │ │ │ ├── webmin_upload_exec.md │ │ │ ├── wp_admin_shell_upload.md │ │ │ ├── wp_mobile_detector_upload_execute.md │ │ │ └── wp_phpmailer_host_header.md │ │ └── x11 │ │ │ └── x11_keyboard_exec.md │ └── windows │ │ ├── backdoor │ │ └── energizer_duo_payload.md │ │ ├── backupexec │ │ └── ssl_uaf.md │ │ ├── browser │ │ ├── cisco_webex_ext.md │ │ ├── exodus.md │ │ ├── firefox_smil_uaf.md │ │ ├── getgodm_http_response_bof.md │ │ └── ms14_064_ole_code_execution.md │ │ ├── fileformat │ │ ├── boxoft_wav_to_mp3.md │ │ ├── cve_2017_8464_lnk_rce.md │ │ ├── cyberlink_lpp_bof.md │ │ ├── dupscout_xml.md │ │ ├── foxit_reader_uaf.md │ │ ├── microsoft_windows_contact.md │ │ ├── office_dde_delivery.md │ │ ├── office_excel_slk.md │ │ ├── office_ms17_11882.md │ │ ├── office_word_hta.md │ │ ├── syncbreeze_xml.md │ │ ├── vlc_mkv.md │ │ └── zahir_enterprise_plus_csv.md │ │ ├── ftp │ │ ├── ayukov_nftp.md │ │ ├── ftpshell_cli_bof.md │ │ ├── labf_nfsaxe.md │ │ └── wing_ftp_admin_exec.md │ │ ├── http │ │ ├── disk_pulse_enterprise_get.md │ │ ├── diskboss_get_bof.md │ │ ├── disksavvy_get_bof.md │ │ ├── disksorter_bof.md │ │ ├── dup_scout_enterprise_login_bof.md │ │ ├── dupscts_bof.md │ │ ├── easychatserver_seh.md │ │ ├── easyfilesharing_post.md │ │ ├── ektron_xslt_exec_ws.md │ │ ├── geutebrueck_gcore_x64_rce_bo.md │ │ ├── gitstack_rce.md │ │ ├── hp_imc_java_deserialize.md │ │ ├── manage_engine_opmanager_rce.md │ │ ├── manageengine_adshacluster_rce.md │ │ ├── manageengine_appmanager_exec.md │ │ ├── manageengine_connectionid_write.md │ │ ├── octopusdeploy_deploy.md │ │ ├── serviio_checkstreamurl_cmd_exec.md │ │ ├── syncbreeze_bof.md │ │ ├── trendmicro_officescan_widget_exec.md │ │ └── vxsrchs_bof.md │ │ ├── iis │ │ └── iis_webdav_upload_asp.md │ │ ├── local │ │ ├── alpc_taskscheduler.md │ │ ├── bypassuac_comhijack.md │ │ ├── bypassuac_fodhelper.md │ │ ├── bypassuac_injection_winsxs.md │ │ ├── bypassuac_sluihijack.md │ │ ├── cve_2017_8464_lnk_lpe.md │ │ ├── mov_ss.md │ │ ├── ms16_014_wmi_recv_notif.md │ │ ├── ms16_016_webdav.md │ │ ├── ms16_075_reflection.md │ │ ├── ms16_075_reflection_juicy.md │ │ ├── ms16_reflection.md │ │ ├── ms18_8120_win32k_privesc.md │ │ ├── panda_psevents.md │ │ ├── persistence_service.md │ │ ├── ps_persist.md │ │ └── webexec.md │ │ ├── misc │ │ ├── cloudme_sync.md │ │ ├── commvault_cmd_exec.md │ │ ├── disk_savvy_adm.md │ │ ├── gh0st.md │ │ ├── hp_dataprotector_encrypted_comms.md │ │ ├── hp_imc_dbman_restartdb_unauth_rce.md │ │ ├── hp_imc_dbman_restoredbase_unauth_rce.md │ │ ├── hp_loadrunner_magentproc_cmdexec.md │ │ ├── plugx.md │ │ └── webdav_delivery.md │ │ ├── mssql │ │ └── mssql_clr_payload.md │ │ ├── nuuo │ │ ├── nuuo_cms_fu.md │ │ └── nuuo_cms_sqli.md │ │ ├── scada │ │ ├── advantech_webaccess_dashboard_file_upload.md │ │ ├── advantech_webaccess_webvrpcs_bof.md │ │ └── delta_ia_commgr_bof.md │ │ ├── smb │ │ ├── ms08_067_netapi.md │ │ ├── ms17_010_eternalblue.md │ │ ├── ms17_010_psexec.md │ │ ├── psexec.md │ │ └── webexec.md │ │ ├── smtp │ │ └── sysgauge_client_bof.md │ │ ├── ssh │ │ └── freesshd_authbypass.md │ │ └── winrm │ │ └── winrm_script_exec.md │ ├── module_doc_template.md │ ├── payload │ ├── android │ │ └── meterpreter │ │ │ ├── injection.md │ │ │ └── reverse_tcp.md │ ├── cmd │ │ └── unix │ │ │ └── bind_busybox_telnetd.md │ ├── linux │ │ └── x86 │ │ │ └── meterpreter │ │ │ └── reverse_tcp.md │ ├── osx │ │ └── x64 │ │ │ └── meterpreter │ │ │ └── reverse_tcp.md │ ├── php │ │ └── meterpreter │ │ │ └── reverse_tcp.md │ ├── python │ │ └── meterpreter │ │ │ └── reverse_tcp.md │ └── windows │ │ ├── meterpreter │ │ ├── reverse_https.md │ │ └── reverse_tcp.md │ │ └── shell │ │ └── reverse_ord_tcp.md │ └── post │ ├── android │ └── gather │ │ ├── sub_info.md │ │ └── wireless_ap.md │ ├── apple_ios │ └── gather │ │ ├── ios_image_gather.md │ │ └── ios_text_gather.md │ ├── firefox │ └── gather │ │ └── passwords.md │ ├── hardware │ ├── automotive │ │ ├── can_flood.md │ │ ├── canprobe.md │ │ ├── getvinfo.md │ │ ├── identifymodules.md │ │ └── pdt.md │ ├── rftransceiver │ │ ├── rfpwnon.md │ │ └── transmitter.md │ └── zigbee │ │ └── zstumbler.md │ ├── juniper │ └── gather │ │ └── enum_juniper.md │ ├── linux │ ├── dos │ │ └── xen_420_dos.md │ ├── gather │ │ ├── checkcontainer.md │ │ ├── checkvm.md │ │ ├── hashdump.md │ │ └── phpmyadmin_credsteal.md │ └── manage │ │ └── sshkey_persistence.md │ ├── multi │ ├── escalate │ │ └── aws_create_iam_user.md │ ├── gather │ │ ├── aws_ec2_instance_metadata.md │ │ ├── aws_keys.md │ │ ├── chrome_cookies.md │ │ ├── irssi_creds.md │ │ ├── jboss_gather.md │ │ ├── jenkins_gather.md │ │ ├── maven_creds.md │ │ ├── tomcat_gather.md │ │ └── wlan_geolocate.md │ ├── manage │ │ ├── autoroute.md │ │ ├── hsts_eraser.md │ │ ├── open.md │ │ ├── play_youtube.md │ │ ├── screensaver.md │ │ ├── shell_to_meterpreter.md │ │ └── upload_exec.md │ └── recon │ │ ├── local_exploit_suggester.md │ │ ├── multiport_egress_traffic.md │ │ └── sudo_commands.md │ ├── osx │ ├── admin │ │ └── say.md │ ├── capture │ │ └── screen.md │ └── gather │ │ ├── apfs_encrypted_volume_passwd.md │ │ ├── enum_osx.md │ │ ├── hashdump.md │ │ ├── password_prompt_spoof.md │ │ └── vnc_password_osx.md │ ├── solaris │ └── escalate │ │ ├── pfexec.md │ │ └── srsexec_readline.md │ └── windows │ ├── capture │ └── keylog_recorder.md │ ├── escalate │ └── unmarshal.md │ ├── gather │ ├── ad_to_sqlite.md │ ├── checkvm.md │ ├── credentials │ │ ├── dynazip_log.md │ │ ├── mdaemon_cred_collector.md │ │ └── purevpn_cred_collector.md │ ├── enum_chrome.md │ ├── enum_ie.md │ ├── hashdump.md │ ├── make_csv_orgchart.md │ ├── ntds_grabber.md │ └── psreadline_history.md │ ├── manage │ ├── archmigrate.md │ ├── hashcarve.md │ ├── mssql_local_auth_bypass.md │ ├── peinjector.md │ ├── powershell │ │ └── build_net_code.md │ ├── priv_migrate.md │ ├── rid_hijack.md │ ├── rollback_defender_signatures.md │ └── run_as_psh.md │ └── wlan │ └── wlan_probe_request.md ├── external ├── burp-proxy │ ├── readme.txt │ ├── wmap_plugin_v0.1-burp_v1.1.jar │ └── wmap_plugin_v0.1-burp_v1.2.jar ├── serialport │ ├── CHANGELOG │ ├── MANIFEST │ ├── README.msf │ ├── README.orig │ ├── debian │ │ ├── changelog │ │ ├── control │ │ ├── copyright │ │ └── rules │ ├── extconf.rb │ ├── serialport.c │ └── test │ │ └── miniterm.rb ├── source │ ├── DLLHijackAuditKit.zip │ ├── DLLHijackAuditKit │ │ ├── 01_StartAudit.bat │ │ ├── 02_Analyze.bat │ │ ├── DLLAudit.pmc │ │ ├── README.txt │ │ ├── analyze.js │ │ ├── audit.js │ │ ├── package.sh │ │ ├── regenerate_binaries.rb │ │ ├── runcalc.dll │ │ ├── runcalc.exe │ │ ├── runtest.dll │ │ └── runtest.exe │ ├── SqlClrPayload │ │ ├── AssemblyAttributes-v2.0.cs │ │ ├── AssemblyAttributes-v3.5.cs │ │ ├── AssemblyAttributes-v4.0.cs │ │ ├── AssemblyAttributes-v4.5.1.cs │ │ ├── AssemblyAttributes-v4.5.2.cs │ │ ├── AssemblyAttributes-v4.5.cs │ │ ├── AssemblyAttributes-v4.6.1.cs │ │ ├── AssemblyAttributes-v4.6.cs │ │ ├── AssemblyInfo.cs │ │ ├── StoredProcedures.cs │ │ └── make.bat │ ├── byakugan │ │ ├── COPYING │ │ ├── README │ │ ├── bin │ │ │ ├── Vista │ │ │ │ ├── byakugan.dll │ │ │ │ ├── detoured.dll │ │ │ │ └── injectsu.dll │ │ │ ├── Win7 │ │ │ │ ├── byakugan.dll │ │ │ │ ├── detoured.dll │ │ │ │ └── injectsu.dll │ │ │ ├── WinXP │ │ │ │ ├── byakugan.dll │ │ │ │ ├── detoured.dll │ │ │ │ └── injectsu.dll │ │ │ └── XPSP2 │ │ │ │ ├── byakugan.dll │ │ │ │ ├── detoured.dll │ │ │ │ └── injectsu.dll │ │ ├── byakugan.cpp │ │ ├── byakugan.def │ │ ├── byakugan.h │ │ ├── byakugan.rc │ │ ├── csv_parser.cpp │ │ ├── csv_parser.hpp │ │ ├── detours │ │ │ ├── Makefile │ │ │ ├── creatwth.cpp │ │ │ ├── detoured.RES │ │ │ ├── detoured.cpp │ │ │ ├── detoured.h │ │ │ ├── detoured.rc │ │ │ ├── detours.cpp │ │ │ ├── detours.h │ │ │ ├── disasm.cpp │ │ │ ├── image.cpp │ │ │ └── modules.cpp │ │ ├── exts.cpp │ │ ├── handlerJutsu.cpp │ │ ├── heapModeler.cpp │ │ ├── heapSplay.cpp │ │ ├── heapStructs.h │ │ ├── i386 │ │ │ ├── byakugan.dll │ │ │ ├── byakugan.exp │ │ │ ├── byakugan.lib │ │ │ └── byakugan.pdb │ │ ├── include │ │ │ └── .keep │ │ ├── injectsu │ │ │ ├── detours.h │ │ │ ├── i386 │ │ │ │ ├── injectsu.dll │ │ │ │ ├── injectsu.exp │ │ │ │ ├── injectsu.lib │ │ │ │ └── injectsu.pdb │ │ │ ├── injectsu.def │ │ │ ├── lib │ │ │ │ ├── detoured.exp │ │ │ │ ├── detoured.lib │ │ │ │ ├── detours.lib │ │ │ │ └── detours.pdb │ │ │ ├── makefile │ │ │ ├── noxheap.c │ │ │ └── sources │ │ ├── jutsu.cpp │ │ ├── jutsu.h │ │ ├── lib │ │ │ └── .keep │ │ ├── makefile │ │ ├── msfpattern.cpp │ │ ├── msfpattern.h │ │ ├── mushishi.cpp │ │ ├── mushishi.h │ │ ├── setup.bat │ │ ├── sources │ │ ├── stdwindbg.cpp │ │ ├── stdwindbg.h │ │ ├── symPort.cpp │ │ ├── symPort.h │ │ ├── tenketsu.cpp │ │ ├── tenketsu.h │ │ └── test │ │ │ ├── memtest.c │ │ │ ├── testBufIdent.cpp │ │ │ ├── testDoubleFree.c │ │ │ ├── testHeapOverflow.cpp │ │ │ ├── testPattern.c │ │ │ ├── testPattern.cpp │ │ │ └── testTenk.c │ ├── cmdstager │ │ └── debug_asm │ │ │ ├── Makefile │ │ │ ├── fix_up.rb │ │ │ ├── h2b.com.dbg.in │ │ │ └── woop.txt │ ├── dllinject │ │ ├── README │ │ ├── generic.c │ │ ├── libloader.c │ │ ├── libloader.h │ │ ├── shell.c │ │ ├── srv.c │ │ └── tester.c │ ├── exploits │ │ ├── CVE-2008-5353 │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── Makefile │ │ │ ├── bin │ │ │ │ ├── java.policy.applet │ │ │ │ └── msf │ │ │ │ │ └── x │ │ │ │ │ ├── AppletX.class │ │ │ │ │ ├── LoaderX.class │ │ │ │ │ ├── PayloadX$StreamConnector.class │ │ │ │ │ └── PayloadX.class │ │ │ └── src │ │ │ │ └── msf │ │ │ │ └── x │ │ │ │ ├── AppletX.java │ │ │ │ ├── LoaderX.java │ │ │ │ └── PayloadX.java │ │ ├── CVE-2008-5499 │ │ │ └── Exploit.as │ │ ├── CVE-2008-6508 │ │ │ └── Example.java │ │ ├── CVE-2009-3867 │ │ │ ├── AppletX.java │ │ │ └── compile.sh │ │ ├── CVE-2009-3869 │ │ │ ├── AppletX.java │ │ │ ├── compile.sh │ │ │ └── test.png │ │ ├── CVE-2010-0094 │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── Exploit.java │ │ │ ├── PayloadClassLoader.java │ │ │ ├── PayloadCreater.java │ │ │ ├── Payloader.java │ │ │ └── payload.ser │ │ ├── CVE-2010-0232 │ │ │ ├── common │ │ │ │ ├── ResourceLoader.c │ │ │ │ ├── ResourceLoader.h │ │ │ │ └── common.h │ │ │ ├── kitrap0d.sln │ │ │ ├── kitrap0d │ │ │ │ ├── kitrap0d.c │ │ │ │ ├── kitrap0d.rc │ │ │ │ ├── kitrap0d.vcxproj │ │ │ │ ├── kitrap0d.vcxproj.filters │ │ │ │ └── resource.h │ │ │ ├── kitrap0d_payload │ │ │ │ ├── kitrap0d.c │ │ │ │ ├── kitrap0d.h │ │ │ │ ├── kitrap0d_payload.vcxproj │ │ │ │ ├── kitrap0d_payload.vcxproj.filters │ │ │ │ └── main.c │ │ │ └── make.msbuild │ │ ├── CVE-2010-0840 │ │ │ └── vuln │ │ │ │ ├── Exploit.java │ │ │ │ ├── Link.java │ │ │ │ └── Test.java │ │ ├── CVE-2010-0842 │ │ │ └── MixerMidiApplet │ │ │ │ ├── META-INF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── services │ │ │ │ │ └── javax.sound.midi.spi.MidiDeviceProvider │ │ │ │ ├── MixerMidiApplet.java │ │ │ │ └── MyController.java │ │ ├── CVE-2010-3563 │ │ │ ├── BasicServiceExploit.java │ │ │ ├── Exploit.java │ │ │ └── build.txt │ │ ├── CVE-2011-0609 │ │ │ └── exploit.as │ │ ├── CVE-2011-2110 │ │ │ └── CVE-2011-2110.as │ │ ├── CVE-2011-3544 │ │ │ └── Exploit.java │ │ ├── CVE-2012-0507 │ │ │ ├── Makefile │ │ │ └── msf │ │ │ │ └── x │ │ │ │ ├── Exploit.java │ │ │ │ ├── Help.java │ │ │ │ └── PayloadX.java │ │ ├── CVE-2012-0754 │ │ │ └── Exploit.as │ │ ├── CVE-2012-0779 │ │ │ └── CVE_2012_0779.as │ │ ├── CVE-2012-1535 │ │ │ ├── Main.as │ │ │ ├── Main_FontClass.as │ │ │ └── PSPop.otf │ │ ├── CVE-2012-1723 │ │ │ ├── CVE-2012-1723.jar │ │ │ ├── Makefile │ │ │ ├── bin │ │ │ │ ├── cve1723 │ │ │ │ │ ├── Attacker.class │ │ │ │ │ ├── Confuser.class │ │ │ │ │ └── ConfusingClassLoader.class │ │ │ │ └── msf │ │ │ │ │ └── x │ │ │ │ │ ├── PayloadX$StreamConnector.class │ │ │ │ │ └── PayloadX.class │ │ │ ├── lib │ │ │ │ ├── asm-4.0.jar │ │ │ │ └── cve1723 │ │ │ │ │ └── Generator.class │ │ │ └── src │ │ │ │ ├── cve1723 │ │ │ │ ├── Attacker.java │ │ │ │ ├── ConfusingClassLoader.java │ │ │ │ └── Generator.java │ │ │ │ └── msf │ │ │ │ └── x │ │ │ │ └── PayloadX.java │ │ ├── CVE-2012-4681 │ │ │ └── Exploit.java │ │ ├── CVE-2013-0634 │ │ │ └── exploit.as │ │ ├── CVE-2013-2171 │ │ │ ├── Makefile │ │ │ └── exploit.c │ │ ├── CVE-2013-2465 │ │ │ ├── Exploit.java │ │ │ └── Makefile │ │ ├── CVE-2013-5331 │ │ │ └── Exploit.as │ │ ├── CVE-2013-6282 │ │ │ ├── Android.mk │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ └── exploit.c │ │ ├── CVE-2014-0322 │ │ │ └── AsXploit.as │ │ ├── CVE-2014-0497 │ │ │ └── Vickers.as │ │ ├── CVE-2014-0515 │ │ │ ├── Elf.as │ │ │ ├── Exploit.as │ │ │ ├── ExploitByteArray.as │ │ │ ├── ExploitVector.as │ │ │ ├── Exploiter.as │ │ │ ├── GraphShadLinux.as │ │ │ ├── GraphShadWindows.as │ │ │ ├── Logger.as │ │ │ ├── PE.as │ │ │ ├── binary_data_linux │ │ │ └── binary_data_windows │ │ ├── CVE-2014-0556 │ │ │ ├── Elf.as │ │ │ ├── Exploit.as │ │ │ ├── ExploitByteArray.as │ │ │ ├── ExploitVector.as │ │ │ ├── Exploiter.as │ │ │ ├── Logger.as │ │ │ └── PE.as │ │ ├── CVE-2014-0569 │ │ │ ├── Elf.as │ │ │ ├── Exploit.as │ │ │ ├── ExploitByteArray.as │ │ │ ├── ExploitVector.as │ │ │ ├── Exploiter.as │ │ │ ├── Logger.as │ │ │ └── PE.as │ │ ├── CVE-2014-3153 │ │ │ ├── Android.mk │ │ │ ├── Makefile │ │ │ ├── futex_requeue.c │ │ │ ├── log.h │ │ │ └── main.c │ │ ├── CVE-2014-4404 │ │ │ ├── Makefile │ │ │ └── key_exploit.c │ │ ├── CVE-2014-8440 │ │ │ ├── Elf.as │ │ │ ├── Exploit.as │ │ │ ├── ExploitByteArray.as │ │ │ ├── ExploitVector.as │ │ │ ├── Exploiter.as │ │ │ ├── Logger.as │ │ │ └── PE.as │ │ ├── CVE-2015-0311 │ │ │ ├── Elf.as │ │ │ ├── Exploit.as │ │ │ ├── ExploitByteArray.as │ │ │ ├── ExploitVector.as │ │ │ ├── Exploiter.as │ │ │ ├── Logger.as │ │ │ └── PE.as │ │ ├── CVE-2015-0313 │ │ │ ├── Elf.as │ │ │ ├── Exploit.as │ │ │ ├── ExploitByteArray.as │ │ │ ├── ExploitVector.as │ │ │ ├── Exploiter.as │ │ │ ├── Logger.as │ │ │ └── PE.as │ │ ├── CVE-2015-0318 │ │ │ ├── Main.as │ │ │ ├── Memory.as │ │ │ ├── PE32.as │ │ │ └── Pwned.as │ │ ├── CVE-2015-0336 │ │ │ ├── Elf.as │ │ │ ├── Exploit.as │ │ │ ├── ExploitByteArray.as │ │ │ ├── ExploitVector.as │ │ │ ├── Exploiter.as │ │ │ ├── Logger.as │ │ │ ├── PE.as │ │ │ ├── Trigger │ │ │ │ ├── Trigger.as2proj │ │ │ │ └── src │ │ │ │ │ └── Main.as │ │ │ └── TriggerLinux │ │ │ │ ├── TriggerLinux.as2proj │ │ │ │ └── src │ │ │ │ └── Main.as │ │ ├── CVE-2015-0359 │ │ │ ├── Elf.as │ │ │ ├── Exploit.as │ │ │ ├── ExploitByteArray.as │ │ │ ├── ExploitVector.as │ │ │ ├── Exploiter.as │ │ │ ├── Logger.as │ │ │ └── PE.as │ │ ├── CVE-2015-1328 │ │ │ ├── 1328.c │ │ │ └── ofs-lib.c │ │ ├── CVE-2015-2426 │ │ │ ├── .gitignore │ │ │ ├── LICENSE.txt │ │ │ ├── Readme.md │ │ │ ├── common │ │ │ │ └── ReflectiveDLLInjection.h │ │ │ ├── dll │ │ │ │ ├── reflective_dll.vcxproj │ │ │ │ ├── reflective_dll.vcxproj.filters │ │ │ │ └── src │ │ │ │ │ ├── Exploit.cpp │ │ │ │ │ ├── Exploit.h │ │ │ │ │ ├── Exploiter.cpp │ │ │ │ │ ├── Exploiter.h │ │ │ │ │ ├── FontData.cpp │ │ │ │ │ ├── FontData.h │ │ │ │ │ ├── MySyscalls.asm │ │ │ │ │ ├── ReflectiveDll.c │ │ │ │ │ ├── ReflectiveLoader.c │ │ │ │ │ ├── ReflectiveLoader.h │ │ │ │ │ ├── Win32kLeaker.cpp │ │ │ │ │ └── Win32kLeaker.h │ │ │ ├── inject │ │ │ │ ├── inject.vcxproj │ │ │ │ ├── inject.vcxproj.filters │ │ │ │ └── src │ │ │ │ │ ├── GetProcAddressR.c │ │ │ │ │ ├── GetProcAddressR.h │ │ │ │ │ ├── Inject.c │ │ │ │ │ ├── LoadLibraryR.c │ │ │ │ │ └── LoadLibraryR.h │ │ │ └── rdi.sln │ │ ├── CVE-2015-3090 │ │ │ ├── Elf.as │ │ │ ├── Exploit.as │ │ │ ├── ExploitByteArray.as │ │ │ ├── ExploitVector.as │ │ │ ├── Exploiter.as │ │ │ ├── Logger.as │ │ │ ├── PE.as │ │ │ └── exploit.pbj │ │ ├── CVE-2015-3105 │ │ │ ├── Elf.as │ │ │ ├── Exploit.as │ │ │ ├── ExploitByteArray.as │ │ │ ├── ExploitVector.as │ │ │ ├── Exploiter.as │ │ │ ├── Logger.as │ │ │ ├── PE.as │ │ │ ├── pbsrc_bin.pbj │ │ │ └── test_bin.pbj │ │ ├── CVE-2015-3113 │ │ │ ├── Elf.as │ │ │ ├── Exploit.as │ │ │ ├── ExploitByteArray.as │ │ │ ├── ExploitVector.as │ │ │ ├── Exploiter.as │ │ │ ├── Logger.as │ │ │ └── PE.as │ │ ├── CVE-2015-5119 │ │ │ ├── Elf.as │ │ │ ├── Exploit.as │ │ │ ├── ExploitByteArray.as │ │ │ ├── ExploitVector.as │ │ │ ├── Exploiter.as │ │ │ ├── Logger.as │ │ │ ├── MyClass.as │ │ │ ├── MyClass1.as │ │ │ ├── MyClass2.as │ │ │ └── PE.as │ │ ├── CVE-2015-5122 │ │ │ ├── Elf.as │ │ │ ├── Exploit.as │ │ │ ├── ExploitByteArray.as │ │ │ ├── ExploitVector.as │ │ │ ├── Exploiter.as │ │ │ ├── Logger.as │ │ │ ├── MyClass.as │ │ │ └── PE.as │ │ ├── CVE-2015-8103 │ │ │ ├── Deserialize.java │ │ │ ├── ExecBlockingSecurityManager.java │ │ │ ├── GeneratePayload.java │ │ │ ├── RMIRegistryExploit.java │ │ │ └── payloads │ │ │ │ ├── ClassLoaderInvoker.java │ │ │ │ ├── CommonsCollections1.java │ │ │ │ ├── CommonsCollections2.java │ │ │ │ ├── CommonsCollections3.java │ │ │ │ ├── Groovy1.java │ │ │ │ ├── ObjectPayload.java │ │ │ │ ├── Spring1.java │ │ │ │ ├── annotation │ │ │ │ └── Dependencies.java │ │ │ │ └── util │ │ │ │ ├── ClassFiles.java │ │ │ │ ├── Gadgets.java │ │ │ │ ├── PayloadRunner.java │ │ │ │ ├── Reflections.java │ │ │ │ └── Serializables.java │ │ ├── CVE-2015-8660 │ │ │ └── 8660.c │ │ ├── CVE-2016-0040 │ │ │ ├── Application │ │ │ │ └── Application.vcxproj │ │ │ ├── CVE-2016-0040.sln │ │ │ ├── Library │ │ │ │ ├── Library.c │ │ │ │ ├── Library.h │ │ │ │ └── Library.vcxproj │ │ │ └── Metasploit │ │ │ │ ├── Metasploit.c │ │ │ │ ├── Metasploit.h │ │ │ │ └── Metasploit.vcxproj │ │ ├── CVE-2016-4655 │ │ │ ├── Makefile │ │ │ ├── arch.h │ │ │ ├── create_bin.rb │ │ │ ├── exploit32.c │ │ │ ├── exploit64.h │ │ │ ├── exploit64.m │ │ │ ├── find.h │ │ │ ├── find.m │ │ │ ├── flatten-macho.m │ │ │ ├── headers │ │ │ │ └── IOKit │ │ │ │ │ ├── IOKitKeys.h │ │ │ │ │ ├── IOKitLib.h │ │ │ │ │ ├── IOReturn.h │ │ │ │ │ ├── IOTypes.h │ │ │ │ │ └── OSMessageNotification.h │ │ │ ├── mach-o.h │ │ │ ├── main.m │ │ │ ├── main32.c │ │ │ ├── nvpatch.h │ │ │ ├── nvpatch.m │ │ │ ├── offsets32.c │ │ │ ├── set.h │ │ │ └── set.m │ │ ├── CVE-2018-0824 │ │ │ ├── UnmarshalPwn.cpp │ │ │ ├── UnmarshalPwn.sln │ │ │ ├── UnmarshalPwn.vcxproj │ │ │ ├── UnmarshalPwn.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ ├── CVE-2018-4237 │ │ │ ├── Makefile │ │ │ ├── libspc │ │ │ │ ├── array.c │ │ │ │ ├── array.h │ │ │ │ ├── connection.c │ │ │ │ ├── connection.h │ │ │ │ ├── datatypes.c │ │ │ │ ├── datatypes.h │ │ │ │ ├── dictionary.c │ │ │ │ ├── dictionary.h │ │ │ │ ├── serialization.c │ │ │ │ ├── serialization.h │ │ │ │ ├── spc.h │ │ │ │ ├── utils.c │ │ │ │ └── utils.h │ │ │ └── ssudo │ │ │ │ ├── Makefile │ │ │ │ ├── ssudo │ │ │ │ └── ssudo.c │ │ ├── CVE-2018-4404 │ │ │ ├── Makefile │ │ │ ├── gen_offsets.rb │ │ │ ├── stage1 │ │ │ │ ├── Makefile │ │ │ │ └── stage1.asm │ │ │ └── stage2 │ │ │ │ ├── Makefile │ │ │ │ └── payload.c │ │ ├── CVE-2018-8120 │ │ │ ├── CVE-2018-8120.sln │ │ │ ├── CVE-2018-8120 │ │ │ │ ├── CVE-2018-8120.vcxproj │ │ │ │ ├── CVE-2018-8120.vcxproj.filters │ │ │ │ ├── Source.cpp │ │ │ │ └── shellcode.asm │ │ │ └── LICENSE │ │ ├── CVE-2018-8440 │ │ │ └── dll │ │ │ │ ├── ALPC-TaskSched-LPE.sln │ │ │ │ └── ALPC-TaskSched-LPE │ │ │ │ ├── ALPC-TaskSched-LPE.cpp │ │ │ │ ├── ALPC-TaskSched-LPE.filters │ │ │ │ ├── ALPC-TaskSched-LPE.vcxproj │ │ │ │ ├── Hardlink.cpp │ │ │ │ ├── dllmain.cpp │ │ │ │ ├── ntimports.h │ │ │ │ ├── rpc.idl │ │ │ │ ├── rpc_c.c │ │ │ │ ├── rpc_h.h │ │ │ │ ├── rpc_s.c │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── typed_buffer.h │ │ ├── IE11SandboxEscapes │ │ │ ├── CVE-2013-5045 │ │ │ │ ├── CVE-2013-5045.cpp │ │ │ │ ├── CVE-2013-5045.vcxproj │ │ │ │ ├── dllmain.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── targetver.h │ │ │ ├── CVE-2013-5046 │ │ │ │ ├── CVE-2013-5046.cpp │ │ │ │ ├── CVE-2013-5046.vcxproj │ │ │ │ ├── dllmain.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── targetver.h │ │ │ ├── CVE-2014-0257 │ │ │ │ ├── CVE-2014-0257.cpp │ │ │ │ ├── CVE-2014-0257.vcxproj │ │ │ │ ├── dllmain.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── targetver.h │ │ │ ├── CVE-2014-0268 │ │ │ │ ├── CVE-2014-0268.cpp │ │ │ │ ├── CVE-2014-0268.vcxproj │ │ │ │ ├── dllmain.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── targetver.h │ │ │ ├── CommonUtils │ │ │ │ ├── CommonUtils.vcxproj │ │ │ │ ├── Utils.cpp │ │ │ │ ├── Utils.h │ │ │ │ ├── interfaces.h │ │ │ │ ├── regln.cpp │ │ │ │ ├── regln.h │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── targetver.h │ │ │ ├── IE11SandboxEscapes.sln │ │ │ ├── InjectDll │ │ │ │ ├── InjectDll.cpp │ │ │ │ ├── InjectDll.vcxproj │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── targetver.h │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── make.msbuild │ │ ├── batik_svg │ │ │ └── Exploit.java │ │ ├── bypassuac │ │ │ ├── CMMN.cpp │ │ │ ├── CMMN.h │ │ │ ├── Redirector.cpp │ │ │ ├── Redirector.h │ │ │ ├── TIOR │ │ │ │ ├── TIOR.cpp │ │ │ │ ├── TIOR.vcxproj │ │ │ │ ├── TIOR.vcxproj.filters │ │ │ │ ├── TIOR.vcxproj.user │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── targetver.h │ │ │ ├── Win7Elevate.sln │ │ │ ├── Win7Elevate │ │ │ │ ├── Resource.h │ │ │ │ ├── Win7Elevate.cpp │ │ │ │ ├── Win7Elevate.rc │ │ │ │ ├── Win7Elevate.vcxproj │ │ │ │ ├── Win7Elevate.vcxproj.filters │ │ │ │ ├── Win7Elevate.vcxproj.user │ │ │ │ ├── Win7Elevate_Inject.cpp │ │ │ │ ├── Win7Elevate_Inject.h │ │ │ │ ├── Win7Elevate_Utils.cpp │ │ │ │ ├── Win7Elevate_Utils.h │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── targetver.h │ │ │ ├── Win7ElevateDll │ │ │ │ ├── Win7ElevateDll.cpp │ │ │ │ ├── Win7ElevateDll.vcxproj │ │ │ │ ├── Win7ElevateDll.vcxproj.filters │ │ │ │ ├── Win7ElevateDll.vcxproj.user │ │ │ │ ├── dllmain.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── targetver.h │ │ │ ├── make.msbuild │ │ │ ├── source.rb │ │ │ │ └── .keep │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ ├── bypassuac_injection │ │ │ ├── .gitignore │ │ │ ├── bypassuac_injection.sln │ │ │ ├── dll │ │ │ │ ├── reflective_dll.vcxproj │ │ │ │ └── src │ │ │ │ │ ├── Exploit.cpp │ │ │ │ │ ├── Exploit.h │ │ │ │ │ └── ReflectiveDll.c │ │ │ ├── make.bat │ │ │ └── make.msbuild │ │ ├── capcom_sys_exec │ │ │ ├── .gitignore │ │ │ ├── capcom_sys_exec.sln │ │ │ ├── capcom_sys_exec │ │ │ │ ├── capcom_sys_exec.c │ │ │ │ └── capcom_sys_exec.vcxproj │ │ │ └── make.msbuild │ │ ├── cve-2010-4452 │ │ │ ├── AppletX.java │ │ │ ├── compile.sh │ │ │ └── get_offsets.rb │ │ ├── cve-2012-5076 │ │ │ ├── Exploit.java │ │ │ ├── Makefile │ │ │ └── MyPayload.java │ │ ├── cve-2012-5076_2 │ │ │ ├── B.java │ │ │ ├── Exploit.java │ │ │ └── Makefile │ │ ├── cve-2012-5088 │ │ │ ├── B.java │ │ │ ├── Exploit.java │ │ │ └── Makefile │ │ ├── cve-2013-0074 │ │ │ ├── .gitignore │ │ │ ├── README │ │ │ ├── SilverApp1.sln │ │ │ └── SilverApp1 │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── MainPage.xaml │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ ├── Properties │ │ │ │ ├── AppManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── SilverApp1.csproj │ │ ├── cve-2013-0109 │ │ │ ├── make.msbuild │ │ │ ├── nvidia_nvsvc.sln │ │ │ └── nvidia_nvsvc │ │ │ │ ├── dllmain.c │ │ │ │ ├── nvidia_nvsvc.cpp │ │ │ │ ├── nvidia_nvsvc.h │ │ │ │ ├── nvidia_nvsvc.vcxproj │ │ │ │ └── nvidia_nvsvc.vcxproj.filters │ │ ├── cve-2013-0422 │ │ │ ├── B.java │ │ │ ├── Exploit.java │ │ │ └── Makefile │ │ ├── cve-2013-0431 │ │ │ ├── B.java │ │ │ ├── Exploit.java │ │ │ ├── Makefile │ │ │ └── Serializer.java │ │ ├── cve-2013-1300 │ │ │ ├── cve-2013-1300.sln │ │ │ ├── make.msbuild │ │ │ └── schlamperei │ │ │ │ ├── schlamperei.c │ │ │ │ └── schlamperei.vcxproj │ │ ├── cve-2013-1488 │ │ │ ├── Exploit.java │ │ │ ├── FakeDriver.java │ │ │ ├── FakeDriver2.java │ │ │ ├── META-INF │ │ │ │ └── services │ │ │ │ │ ├── java.lang.Object │ │ │ │ │ └── java.sql.Driver │ │ │ └── Makefile │ │ ├── cve-2013-1493 │ │ │ ├── Init.java │ │ │ ├── Leak.java │ │ │ ├── Makefile │ │ │ ├── MyBufferedImage.java │ │ │ └── MyColorSpace.java │ │ ├── cve-2013-2460 │ │ │ ├── DisableSecurityManagerAction.java │ │ │ ├── ExpProvider.java │ │ │ ├── Exploit.java │ │ │ └── Makefile │ │ ├── cve-2013-3660 │ │ │ ├── .gitignore │ │ │ ├── make.msbuild │ │ │ ├── ppr_flatten_rec.sln │ │ │ └── ppr_flatten_rec │ │ │ │ ├── ComplexPath.h │ │ │ │ ├── ppr_flatten_rec.c │ │ │ │ ├── ppr_flatten_rec.vcxproj │ │ │ │ └── ppr_flatten_rec.vcxproj.filters │ │ ├── cve-2013-3881 │ │ │ ├── .gitignore │ │ │ ├── cve-2013-3881.sln │ │ │ ├── cve-2013-3881 │ │ │ │ ├── cve-2013-3881.c │ │ │ │ └── cve-2013-3881.vcxproj │ │ │ └── make.msbuild │ │ ├── cve-2014-4113 │ │ │ ├── .gitignore │ │ │ ├── cve-2014-4113.sln │ │ │ ├── cve-2014-4113 │ │ │ │ ├── cve-2014-4113.c │ │ │ │ └── cve-2014-4113.vcxproj │ │ │ └── make.msbuild │ │ ├── cve-2015-0016 │ │ │ ├── .gitignore │ │ │ ├── LICENSE.txt │ │ │ ├── Readme.md │ │ │ ├── bin │ │ │ │ ├── inject.arm.exe │ │ │ │ ├── inject.exe │ │ │ │ ├── inject.x64.exe │ │ │ │ ├── reflective_dll.arm.dll │ │ │ │ ├── reflective_dll.dll │ │ │ │ └── reflective_dll.x64.dll │ │ │ ├── dll │ │ │ │ ├── reflective_dll.sln │ │ │ │ ├── reflective_dll.vcproj │ │ │ │ ├── reflective_dll.vcxproj │ │ │ │ ├── reflective_dll.vcxproj.filters │ │ │ │ └── src │ │ │ │ │ ├── Exploit.cpp │ │ │ │ │ ├── Exploit.h │ │ │ │ │ ├── ReflectiveDLLInjection.h │ │ │ │ │ ├── ReflectiveDll.c │ │ │ │ │ ├── ReflectiveLoader.c │ │ │ │ │ ├── ReflectiveLoader.h │ │ │ │ │ ├── ShimsInstaller.cpp │ │ │ │ │ └── ShimsInstaller.h │ │ │ ├── inject │ │ │ │ ├── inject.sln │ │ │ │ ├── inject.vcproj │ │ │ │ ├── inject.vcxproj │ │ │ │ ├── inject.vcxproj.filters │ │ │ │ └── src │ │ │ │ │ ├── GetProcAddressR.c │ │ │ │ │ ├── GetProcAddressR.h │ │ │ │ │ ├── Inject.c │ │ │ │ │ ├── LoadLibraryR.c │ │ │ │ │ ├── LoadLibraryR.h │ │ │ │ │ └── ReflectiveDLLInjection.h │ │ │ └── rdi.sln │ │ ├── cve-2015-1701 │ │ │ ├── .gitignore │ │ │ ├── cve-2015-1701.sln │ │ │ ├── cve-2015-1701 │ │ │ │ ├── cve-2015-1701.c │ │ │ │ ├── cve-2015-1701.h │ │ │ │ └── cve-2015-1701.vcxproj │ │ │ └── make.msbuild │ │ ├── cve-2016-0051 │ │ │ └── dll │ │ │ │ ├── ReflectiveDll.c │ │ │ │ └── defs.h │ │ ├── cve-2016-0189 │ │ │ ├── ielocalserver.cpp │ │ │ └── ieshell32.cpp │ │ ├── cve-2017-8464 │ │ │ ├── build.sh │ │ │ ├── template.c │ │ │ ├── template.def │ │ │ ├── template.h │ │ │ └── template.rc │ │ ├── cve-2018-8897 │ │ │ ├── dll │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Readme.md │ │ │ │ ├── common │ │ │ │ │ └── ReflectiveDLLInjection.h │ │ │ │ ├── inject │ │ │ │ │ ├── inject.vcxproj │ │ │ │ │ ├── inject.vcxproj.filters │ │ │ │ │ ├── src │ │ │ │ │ │ ├── GetProcAddressR.c │ │ │ │ │ │ ├── GetProcAddressR.h │ │ │ │ │ │ ├── Inject.c │ │ │ │ │ │ ├── LoadLibraryR.c │ │ │ │ │ │ └── LoadLibraryR.h │ │ │ │ │ └── ~AutoRecover.inject.vcxproj │ │ │ │ ├── rdi.sln │ │ │ │ └── rdi │ │ │ │ │ ├── reflective_dll.vcxproj │ │ │ │ │ ├── reflective_dll.vcxproj.filters │ │ │ │ │ └── src │ │ │ │ │ ├── Error.h │ │ │ │ │ ├── Exploit.cpp │ │ │ │ │ ├── Exploit.h │ │ │ │ │ ├── Exploiter.h │ │ │ │ │ ├── KernelRoutines.h │ │ │ │ │ ├── LockedMemory.h │ │ │ │ │ ├── Native.asm │ │ │ │ │ ├── Native.h │ │ │ │ │ ├── NtDefines.h │ │ │ │ │ ├── ReflectiveDll.c │ │ │ │ │ ├── ReflectiveLoader.c │ │ │ │ │ ├── ReflectiveLoader.h │ │ │ │ │ └── exploiter.cpp │ │ │ └── exe │ │ │ │ ├── Error.h │ │ │ │ ├── KernelRoutines.h │ │ │ │ ├── LICENSE │ │ │ │ ├── LockedMemory.h │ │ │ │ ├── Native.asm │ │ │ │ ├── Native.h │ │ │ │ ├── NtDefines.h │ │ │ │ ├── README.md │ │ │ │ ├── cve-2018-8897-exe.cpp │ │ │ │ ├── cve-2018-8897-exe.sln │ │ │ │ ├── cve-2018-8897-exe.vcxproj │ │ │ │ └── cve-2018-8897-exe.vcxproj.filters │ │ ├── exec_payload_msi │ │ │ └── exec_payload.wxs │ │ ├── jre17u17 │ │ │ ├── Exploit.java │ │ │ └── Makefile │ │ ├── juicypotato │ │ │ ├── .gitignore │ │ │ ├── JuicyPotato.sln │ │ │ └── JuicyPotato │ │ │ │ ├── BlockingQueue.h │ │ │ │ ├── IStorageTrigger.cpp │ │ │ │ ├── IStorageTrigger.h │ │ │ │ ├── JuicyPotato.cpp │ │ │ │ ├── JuicyPotato.vcxproj │ │ │ │ ├── JuicyPotato.vcxproj.filters │ │ │ │ ├── LocalNegotiator.cpp │ │ │ │ ├── LocalNegotiator.h │ │ │ │ ├── MSFRottenPotato.h │ │ │ │ ├── ReflectiveDLLInjection.h │ │ │ │ ├── ReflectiveLoader.c │ │ │ │ ├── ReflectiveLoader.h │ │ │ │ ├── dllmain.cpp │ │ │ │ ├── dump.stg │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── targetver.h │ │ ├── make.bat │ │ ├── ntapphelpcachecontrol │ │ │ ├── exploit.sln │ │ │ └── exploit │ │ │ │ ├── CaptureImpersonationToken.cpp │ │ │ │ ├── dllmain.cpp │ │ │ │ ├── exploit.vcxproj │ │ │ │ ├── my_winternl.h │ │ │ │ ├── sdb.h │ │ │ │ ├── sdb_functions.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── targetver.h │ │ ├── office_word_macro │ │ │ └── macro.vba │ │ ├── rottenpotato │ │ │ ├── MSFRottenPotato.sln │ │ │ └── MSFRottenPotato │ │ │ │ ├── BlockingQueue.h │ │ │ │ ├── IStorageTrigger.cpp │ │ │ │ ├── IStorageTrigger.h │ │ │ │ ├── LocalNegotiator.cpp │ │ │ │ ├── LocalNegotiator.h │ │ │ │ ├── MSFRottenPotato.cpp │ │ │ │ ├── MSFRottenPotato.h │ │ │ │ ├── MSFRottenPotato.vcxproj │ │ │ │ ├── MSFRottenPotato.vcxproj.filters │ │ │ │ ├── ReflectiveDllInjection.h │ │ │ │ ├── ReflectiveLoader.c │ │ │ │ ├── ReflectiveLoader.h │ │ │ │ ├── dllmain.cpp │ │ │ │ ├── dump.stg │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── targetver.h │ │ ├── splunk │ │ │ └── upload_app_exec │ │ │ │ ├── bin │ │ │ │ └── msf_exec.py │ │ │ │ ├── default │ │ │ │ ├── app.conf │ │ │ │ └── commands.conf │ │ │ │ └── metadata │ │ │ │ └── default.meta │ │ ├── tpwn │ │ │ ├── Makefile │ │ │ ├── import.h │ │ │ ├── lsym.h │ │ │ ├── lsym.m │ │ │ ├── lsym_gadgets.h │ │ │ └── main.m │ │ └── windows-lpe-template │ │ │ ├── .gitignore │ │ │ ├── make.msbuild │ │ │ ├── windows-lpe-template.sln │ │ │ └── windows-lpe-template │ │ │ ├── exploit.c │ │ │ └── windows-lpe-template.vcxproj │ ├── flash_detector │ │ ├── bin │ │ │ ├── expressInstall.swf │ │ │ ├── index.html │ │ │ └── js │ │ │ │ └── swfobject.js │ │ ├── flash_detector.as2proj │ │ └── src │ │ │ └── Main.as │ ├── flash_exploiter │ │ ├── Elf.as │ │ ├── Exploit.as │ │ ├── ExploitByteArray.as │ │ ├── ExploitVector.as │ │ ├── Exploiter.as │ │ ├── Logger.as │ │ └── PE.as │ ├── ipwn │ │ ├── Makefile │ │ ├── Makefile.native │ │ ├── README │ │ ├── auto.h │ │ ├── cmd.h │ │ ├── cmd_base.c │ │ ├── cmd_expl.c │ │ ├── cmd_fd.c │ │ ├── cmd_fs.c │ │ ├── cmd_misc.c │ │ ├── cmd_net.c │ │ ├── cmd_privs.c │ │ ├── cmd_proc.c │ │ ├── cmd_sys.c │ │ ├── main.c │ │ └── misc.c │ ├── javapayload │ │ └── README │ ├── libssh │ │ └── ssh_server_fork.patch │ ├── meterpreter │ │ └── README │ ├── metsvc │ │ ├── ChangeLog.txt │ │ ├── README.txt │ │ ├── VERSION │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── metsvc-server.cpp │ │ │ ├── metsvc.cpp │ │ │ └── metsvc.h │ │ └── test.rb │ ├── msfJavaToolkit │ │ ├── compile.sh │ │ ├── javaCompile │ │ │ ├── CompileSourceInMemory.java │ │ │ ├── CreateJarFile.java │ │ │ └── SignJar.java │ │ ├── msfkeystore │ │ ├── output.jar │ │ ├── soutput.jar │ │ ├── testCompilation.rb │ │ ├── testKeytool.rb │ │ └── testoutdir │ │ │ └── .keep │ ├── osx │ │ ├── README │ │ ├── isight │ │ │ ├── CSGCamera.h │ │ │ ├── CSGCamera.m │ │ │ ├── CSGImage.h │ │ │ ├── CSGImage.m │ │ │ ├── CocoaSequenceGrabber.h │ │ │ ├── Makefile │ │ │ └── main.m │ │ ├── nfs_mount_priv_escalation.c │ │ └── x86 │ │ │ ├── Makefile │ │ │ ├── include │ │ │ ├── _dup2_std_fds.s │ │ │ ├── _execve_binsh.s │ │ │ ├── _exit.s │ │ │ ├── _inject_bundle.s │ │ │ ├── _read_exec.s │ │ │ ├── _shell.s │ │ │ ├── _tcp_connect.s │ │ │ └── _tcp_listen.s │ │ │ └── src │ │ │ ├── single_bundleinject_bind_tcp.s │ │ │ ├── single_bundleinject_reverse_tcp.s │ │ │ ├── single_shell_bind_tcp.s │ │ │ ├── single_shell_reverse_tcp.s │ │ │ ├── stage_bundleinject.s │ │ │ ├── stage_shell.s │ │ │ ├── stager_bind_tcp.s │ │ │ ├── stager_reverse_tcp.s │ │ │ └── test │ │ │ ├── Makefile │ │ │ ├── run_tests.sh │ │ │ ├── server.c │ │ │ ├── test_component.c │ │ │ └── write_size_and_data.rb │ ├── passivex │ │ ├── CPassiveX.cpp │ │ ├── CPassiveX.h │ │ ├── HttpTunnel.cpp │ │ ├── HttpTunnel.h │ │ ├── PassiveX.bin │ │ ├── PassiveX.cpp │ │ ├── PassiveX.h │ │ ├── PassiveX.idl │ │ ├── PassiveXLib.h │ │ ├── PassiveX_i.c │ │ ├── PassiveX_p.c │ │ ├── dlldata.c │ │ ├── passivex.def │ │ ├── passivex.rc │ │ ├── passivex.sln │ │ ├── passivex.vcproj │ │ └── resource.h │ ├── psh_exe │ │ ├── dot_net_exe.cs │ │ ├── dot_net_service.cs │ │ └── dot_net_unsafe.cs │ ├── pxesploit │ │ ├── autoinf │ │ │ ├── Release │ │ │ │ ├── .keep │ │ │ │ └── autoinf.exe │ │ │ ├── autoinf.sln │ │ │ └── autoinf │ │ │ │ ├── autoinf.vcproj │ │ │ │ └── main.cpp │ │ ├── customPayload │ │ │ ├── Release │ │ │ │ └── .keep │ │ │ ├── autoinf.sln │ │ │ └── autoinf │ │ │ │ ├── Release │ │ │ │ └── .keep │ │ │ │ ├── autoinf.vcxproj │ │ │ │ ├── autoinf.vcxproj.filters │ │ │ │ └── main.cpp │ │ ├── regeditor │ │ │ ├── LGPL.txt │ │ │ ├── README.txt │ │ │ ├── addmsf.c │ │ │ ├── compile.sh │ │ │ ├── ntreg.c │ │ │ └── ntreg.h │ │ └── spoolsv │ │ │ └── spoolsv.cpp │ ├── shellcode │ │ ├── Makefile │ │ ├── Makefile.incl │ │ ├── apple_ios │ │ │ └── aarch64 │ │ │ │ └── single_reverse_tcp_shell.s │ │ ├── bsd │ │ │ ├── ia32 │ │ │ │ ├── Makefile │ │ │ │ ├── generic.asm │ │ │ │ ├── single_bind_tcp_shell.asm │ │ │ │ ├── single_bind_tcp_shell_ipv6.asm │ │ │ │ ├── single_exec.asm │ │ │ │ ├── single_find_tcp_shell.asm │ │ │ │ ├── single_findsock.asm │ │ │ │ ├── single_reverse_libinject.asm │ │ │ │ ├── single_reverse_tcp_shell.asm │ │ │ │ ├── single_reverse_tcp_shell_ipv6.asm │ │ │ │ ├── stage_tcp_shell.asm │ │ │ │ ├── stager_sock_bind.asm │ │ │ │ ├── stager_sock_bind_ipv6.asm │ │ │ │ ├── stager_sock_find.asm │ │ │ │ ├── stager_sock_reverse.asm │ │ │ │ └── stager_sock_reverse_ipv6.asm │ │ │ └── sparc │ │ │ │ ├── single_bind_tcp.s │ │ │ │ └── single_reverse_tcp.s │ │ ├── bsdi │ │ │ └── ia32 │ │ │ │ ├── Makefile │ │ │ │ ├── generic.asm │ │ │ │ ├── single_bind_tcp_shell.asm │ │ │ │ ├── single_find_tcp_shell.asm │ │ │ │ ├── single_reverse_tcp_shell.asm │ │ │ │ ├── stage_tcp_shell.asm │ │ │ │ ├── stager_sock_bind.asm │ │ │ │ ├── stager_sock_find.asm │ │ │ │ ├── stager_sock_reverse.asm │ │ │ │ └── syscall_bsdi_4.3.h │ │ ├── generic │ │ │ ├── ia32 │ │ │ │ └── stager_stdin.asm │ │ │ └── sparc │ │ │ │ └── single_shell.s │ │ ├── linux │ │ │ ├── aarch64 │ │ │ │ ├── single_reverse_tcp_shell.s │ │ │ │ ├── stage_mettle.s │ │ │ │ ├── stage_shell.s │ │ │ │ └── stager_sock_reverse.s │ │ │ ├── armbe │ │ │ │ └── single_sock_bind.s │ │ │ ├── armle │ │ │ │ ├── single_sock_bind.s │ │ │ │ ├── single_sock_reverse.s │ │ │ │ ├── stage_mettle.s │ │ │ │ ├── stage_shell.s │ │ │ │ ├── stager_sock_bind.s │ │ │ │ └── stager_sock_reverse.s │ │ │ ├── ia32 │ │ │ │ ├── Makefile │ │ │ │ ├── generic.asm │ │ │ │ ├── linux_2.6.7_unistd_ia32.h │ │ │ │ ├── single_adduser.asm │ │ │ │ ├── single_adduser.template │ │ │ │ ├── single_bind_tcp_shell.asm │ │ │ │ ├── single_exec.asm │ │ │ │ ├── single_find_tcp_shell.asm │ │ │ │ ├── single_findsock.asm │ │ │ │ ├── single_reverse_tcp_shell.asm │ │ │ │ ├── single_reverse_udp_shell.asm │ │ │ │ ├── single_shell_bind_tcp_random_port.asm │ │ │ │ ├── stage_tcp_shell.asm │ │ │ │ ├── stage_udp_shell.asm │ │ │ │ ├── stager_egghunt.asm │ │ │ │ ├── stager_sock_bind.asm │ │ │ │ ├── stager_sock_bind6.asm │ │ │ │ ├── stager_sock_bind_icmp.asm │ │ │ │ ├── stager_sock_bind_udp.asm │ │ │ │ ├── stager_sock_find.asm │ │ │ │ ├── stager_sock_reverse.asm │ │ │ │ ├── stager_sock_reverse_icmp.asm │ │ │ │ ├── stager_sock_reverse_udp.asm │ │ │ │ └── stager_sock_reverse_udp_dns.asm │ │ │ ├── mips │ │ │ │ ├── stage_mettle.s │ │ │ │ └── stage_tcp_shell.s │ │ │ ├── mipsbe │ │ │ │ └── stager_sock_reverse.s │ │ │ ├── mipsle │ │ │ │ └── stager_sock_reverse.s │ │ │ ├── sparc │ │ │ │ ├── single_bind_tcp.s │ │ │ │ ├── single_findsock.s │ │ │ │ └── single_reverse_tcp.s │ │ │ └── x64 │ │ │ │ └── stager_sock_reverse.s │ │ ├── mainframe │ │ │ └── shell_reverse_tcp.s │ │ ├── osx │ │ │ ├── ppc │ │ │ │ ├── encoder_dword_xor.asm │ │ │ │ ├── encoder_dword_xor_tag.asm │ │ │ │ ├── single_bind_tcp.asm │ │ │ │ ├── single_reverse_tcp.asm │ │ │ │ ├── stage_tcp_shell.asm │ │ │ │ ├── stager_sock_bind.asm │ │ │ │ ├── stager_sock_find.asm │ │ │ │ ├── stager_sock_find_peek.asm │ │ │ │ ├── stager_sock_reverse.asm │ │ │ │ ├── stager_sock_reverse_nf.asm │ │ │ │ └── stub_sock_find_peek_flusher.asm │ │ │ ├── stager │ │ │ │ ├── Makefile │ │ │ │ └── main.c │ │ │ └── syscall.h │ │ ├── solaris │ │ │ └── sparc │ │ │ │ ├── single_bind_tcp.s │ │ │ │ ├── single_findsock.s │ │ │ │ └── single_reverse_tcp.s │ │ └── windows │ │ │ ├── README │ │ │ ├── build.sh │ │ │ ├── midstager.asm │ │ │ ├── msf2 │ │ │ ├── README │ │ │ ├── passivex.asm │ │ │ ├── win32_stage_api.asm │ │ │ ├── win32_stage_boot_bind.asm │ │ │ ├── win32_stage_boot_bind_inlineegg.asm │ │ │ ├── win32_stage_boot_bind_read.asm │ │ │ ├── win32_stage_boot_bind_shell.asm │ │ │ ├── win32_stage_boot_reverse.asm │ │ │ ├── win32_stage_boot_reverse_inlineegg.asm │ │ │ ├── win32_stage_boot_reverse_read.asm │ │ │ ├── win32_stage_boot_reverse_shell.asm │ │ │ ├── win32_stage_boot_reverse_shell_revert.asm │ │ │ ├── win32_stage_boot_reverse_udp.asm │ │ │ ├── win32_stage_boot_winsock_bind.asm │ │ │ ├── win32_stage_boot_winsock_conn.asm │ │ │ ├── win32_stage_boot_winsock_conn_udp.asm │ │ │ ├── win32_stage_inlineegg.asm │ │ │ ├── win32_stage_revert.asm │ │ │ ├── win32_stage_shell.asm │ │ │ ├── win32_stage_uploadexec.asm │ │ │ └── win32_stage_winexec.asm │ │ │ ├── multi_arch_kernel_queue_apc.asm │ │ │ ├── single_adduser.asm │ │ │ ├── single_exec.asm │ │ │ ├── single_shell_bind_tcp.asm │ │ │ ├── single_shell_bind_tcp_xpfw.asm │ │ │ ├── single_shell_reverse_tcp.asm │ │ │ ├── speech │ │ │ ├── COPYRIGHT.txt │ │ │ ├── Speak.cpp │ │ │ ├── Speak.exe │ │ │ ├── w32-speaking-shellcode-eaf.bin │ │ │ ├── w32-speaking-shellcode-esp.bin │ │ │ ├── w32-speaking-shellcode-hash-list.asm │ │ │ ├── w32-speaking-shellcode.asm │ │ │ └── w32-speaking-shellcode.bin │ │ │ ├── stage_shell.asm │ │ │ ├── stage_upexec.asm │ │ │ ├── stager_bind_ipv6_tcp_nx.asm │ │ │ ├── stager_bind_tcp.asm │ │ │ ├── stager_bind_tcp_nx.asm │ │ │ ├── stager_find_tag.asm │ │ │ ├── stager_reverse_http.asm │ │ │ ├── stager_reverse_ipv6_tcp_nx.asm │ │ │ ├── stager_reverse_ord_tcp.asm │ │ │ ├── stager_reverse_tcp.asm │ │ │ ├── stager_reverse_tcp_nx.asm │ │ │ ├── templates │ │ │ ├── inc │ │ │ │ ├── README │ │ │ │ ├── byte.inc │ │ │ │ ├── function.inc │ │ │ │ ├── language.inc │ │ │ │ ├── nasm.inc │ │ │ │ ├── pe.asm │ │ │ │ ├── pe.inc │ │ │ │ ├── win32.inc │ │ │ │ ├── win32dll.inc │ │ │ │ └── win32n.inc │ │ │ ├── linux_template.asm │ │ │ └── win32_template.asm │ │ │ ├── x64 │ │ │ ├── bin │ │ │ │ ├── .keep │ │ │ │ └── stager_reverse_https.bin │ │ │ ├── build.py │ │ │ └── src │ │ │ │ ├── block │ │ │ │ ├── block_api.asm │ │ │ │ ├── block_bind_tcp.asm │ │ │ │ ├── block_exitfunk.asm │ │ │ │ ├── block_recv.asm │ │ │ │ ├── block_reverse_https.asm │ │ │ │ ├── block_reverse_tcp.asm │ │ │ │ └── block_shell.asm │ │ │ │ ├── migrate │ │ │ │ ├── apc.asm │ │ │ │ ├── migrate.asm │ │ │ │ └── remotethread.asm │ │ │ │ ├── single │ │ │ │ ├── single_exec.asm │ │ │ │ ├── single_loadlibrary.asm │ │ │ │ ├── single_shell_bind_tcp.asm │ │ │ │ └── single_shell_reverse_tcp.asm │ │ │ │ ├── stage │ │ │ │ └── stage_shell.asm │ │ │ │ └── stager │ │ │ │ ├── stager_bind_tcp_nx.asm │ │ │ │ ├── stager_reverse_https.asm │ │ │ │ └── stager_reverse_tcp_nx.asm │ │ │ └── x86 │ │ │ ├── bin │ │ │ └── .keep │ │ │ ├── build.py │ │ │ └── src │ │ │ ├── block │ │ │ ├── block_api.asm │ │ │ ├── block_bind_tcp.asm │ │ │ ├── block_create_remote_process.asm │ │ │ ├── block_exitfunk.asm │ │ │ ├── block_get_pstore_creds.asm │ │ │ ├── block_hidden_bind_ipknock.asm │ │ │ ├── block_hidden_bind_tcp.asm │ │ │ ├── block_rc4.asm │ │ │ ├── block_recv.asm │ │ │ ├── block_recv_rc4.asm │ │ │ ├── block_reverse_http.asm │ │ │ ├── block_reverse_http_use_proxy_creds.asm │ │ │ ├── block_reverse_https_proxy.asm │ │ │ ├── block_reverse_ipv6_tcp.asm │ │ │ ├── block_reverse_tcp.asm │ │ │ ├── block_reverse_tcp_allports.asm │ │ │ ├── block_reverse_tcp_dns.asm │ │ │ ├── block_reverse_winhttp.asm │ │ │ ├── block_service.asm │ │ │ ├── block_service_change_description.asm │ │ │ ├── block_service_stopped.asm │ │ │ └── block_shell.asm │ │ │ ├── hash.py │ │ │ ├── kernel │ │ │ └── stager_sysenter_hook.asm │ │ │ ├── migrate │ │ │ ├── apc.asm │ │ │ ├── executex64.asm │ │ │ └── migrate.asm │ │ │ ├── single │ │ │ ├── alloc_execute.asm │ │ │ ├── createthread.asm │ │ │ ├── single_create_remote_process.asm │ │ │ ├── single_exec.asm │ │ │ ├── single_loadlibrary.asm │ │ │ ├── single_service_stuff.asm │ │ │ ├── single_shell_bind_tcp.asm │ │ │ ├── single_shell_hidden_bind_tcp.asm │ │ │ └── single_shell_reverse_tcp.asm │ │ │ ├── stage │ │ │ ├── stage_shell.asm │ │ │ └── stage_upexec.asm │ │ │ ├── stager │ │ │ ├── stager_bind_ipknock_tcp.asm │ │ │ ├── stager_bind_tcp_nx.asm │ │ │ ├── stager_bind_tcp_rc4.asm │ │ │ ├── stager_hidden_bind_tcp.asm │ │ │ ├── stager_reverse_http.asm │ │ │ ├── stager_reverse_http_proxy_pstore.asm │ │ │ ├── stager_reverse_https.asm │ │ │ ├── stager_reverse_https_proxy.asm │ │ │ ├── stager_reverse_ipv6_tcp_nx.asm │ │ │ ├── stager_reverse_tcp_dns.asm │ │ │ ├── stager_reverse_tcp_dns_connect_only.asm │ │ │ ├── stager_reverse_tcp_nx.asm │ │ │ ├── stager_reverse_tcp_nx_allports.asm │ │ │ ├── stager_reverse_tcp_rc4.asm │ │ │ ├── stager_reverse_tcp_rc4_dns.asm │ │ │ └── stager_reverse_winhttp.asm │ │ │ └── test_rc4.asm │ ├── tightvnc │ │ ├── ChangeLog │ │ ├── LICENCE.TXT │ │ ├── README │ │ ├── WhatsNew │ │ ├── classes │ │ │ ├── AuthPanel.class │ │ │ ├── ButtonPanel.class │ │ │ ├── CapabilityInfo.class │ │ │ ├── CapsContainer.class │ │ │ ├── ClipboardFrame.class │ │ │ ├── DesCipher.class │ │ │ ├── HTTPConnectSocket.class │ │ │ ├── HTTPConnectSocketFactory.class │ │ │ ├── InStream.class │ │ │ ├── MemInStream.class │ │ │ ├── OptionsFrame.class │ │ │ ├── RecordingFrame.class │ │ │ ├── ReloginPanel.class │ │ │ ├── RfbProto.class │ │ │ ├── SessionRecorder.class │ │ │ ├── SocketFactory.class │ │ │ ├── VncCanvas.class │ │ │ ├── VncCanvas2.class │ │ │ ├── VncViewer.class │ │ │ ├── VncViewer.jar │ │ │ ├── ZlibInStream.class │ │ │ └── index.vnc │ │ ├── index.html │ │ └── vnc.html │ ├── unixasm │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── README │ │ ├── aix-power-bndsockcode.S │ │ ├── aix-power-bndsockcode.c │ │ ├── aix-power-bndsockcode.rc │ │ ├── aix-power-bndsockcode64.S │ │ ├── aix-power-bndsockcode64.c │ │ ├── aix-power-cntsockcode.S │ │ ├── aix-power-cntsockcode.c │ │ ├── aix-power-cntsockcode.rc │ │ ├── aix-power-cntsockcode64.S │ │ ├── aix-power-cntsockcode64.c │ │ ├── aix-power-fndsockcode.S │ │ ├── aix-power-fndsockcode.c │ │ ├── aix-power-fndsockcode.rc │ │ ├── aix-power-fndsockcode64.S │ │ ├── aix-power-fndsockcode64.c │ │ ├── aix-power-shellcode.S │ │ ├── aix-power-shellcode.c │ │ ├── aix-power-shellcode.rc │ │ ├── aix-power-shellcode64.S │ │ ├── aix-power-shellcode64.c │ │ ├── aix-power.h │ │ ├── aix-power.rb │ │ ├── bsd-x86-bndsockcode.c │ │ ├── bsd-x86-bndsockcode.s │ │ ├── bsd-x86-cntsockcode.c │ │ ├── bsd-x86-cntsockcode.s │ │ ├── bsd-x86-fndsockcode.c │ │ ├── bsd-x86-fndsockcode.s │ │ ├── bsd-x86-shellcode.c │ │ ├── bsd-x86-shellcode.s │ │ ├── fndsockclient.c │ │ ├── fndsockserver.c │ │ ├── lin-power-bndsockcode.S │ │ ├── lin-power-bndsockcode.c │ │ ├── lin-power-bndsockcode64.S │ │ ├── lin-power-bndsockcode64.c │ │ ├── lin-power-cntsockcode.S │ │ ├── lin-power-cntsockcode.c │ │ ├── lin-power-cntsockcode64.S │ │ ├── lin-power-cntsockcode64.c │ │ ├── lin-power-fndsockcode.S │ │ ├── lin-power-fndsockcode.c │ │ ├── lin-power-fndsockcode64.S │ │ ├── lin-power-fndsockcode64.c │ │ ├── lin-power-shellcode.S │ │ ├── lin-power-shellcode.c │ │ ├── lin-power-shellcode64.S │ │ ├── lin-power-shellcode64.c │ │ ├── lin-x86-bndsockcode.c │ │ ├── lin-x86-bndsockcode.s │ │ ├── lin-x86-cntsockcode.c │ │ ├── lin-x86-cntsockcode.s │ │ ├── lin-x86-fndsockcode.c │ │ ├── lin-x86-fndsockcode.s │ │ ├── lin-x86-shellcode.c │ │ ├── lin-x86-shellcode.s │ │ ├── linux-power.h │ │ ├── objdumptoc.rb │ │ ├── osx-ppc-shellcode.s │ │ ├── osx-x86-bndsockcode.c │ │ ├── osx-x86-bndsockcode.s │ │ ├── osx-x86-cntsockcode.c │ │ ├── osx-x86-cntsockcode.s │ │ ├── osx-x86-fndsockcode.c │ │ ├── osx-x86-fndsockcode.s │ │ ├── osx-x86-shellcode.c │ │ ├── osx-x86-shellcode.s │ │ ├── sco-x86-shellcode.c │ │ ├── sco-x86-shellcode.s │ │ ├── sol-sparc-bndsockcode.s │ │ ├── sol-sparc-shellcode.c │ │ ├── sol-sparc-shellcode.s │ │ ├── sol-x86-bndsockcode.c │ │ ├── sol-x86-bndsockcode.s │ │ ├── sol-x86-cntsockcode.c │ │ ├── sol-x86-cntsockcode.s │ │ ├── sol-x86-fndsockcode.c │ │ ├── sol-x86-fndsockcode.s │ │ ├── sol-x86-shellcode.c │ │ └── sol-x86-shellcode.s │ ├── vncdll │ │ ├── .gitignore │ │ ├── make.bat │ │ ├── make.msbuild │ │ ├── vncdll.sln │ │ ├── vncdll │ │ │ ├── LICENSE.txt │ │ │ ├── context.c │ │ │ ├── context.h │ │ │ ├── inject.c │ │ │ ├── inject.h │ │ │ ├── loader.c │ │ │ ├── loader.h │ │ │ ├── loader.rc │ │ │ ├── ps.c │ │ │ ├── ps.h │ │ │ ├── session.c │ │ │ ├── session.h │ │ │ ├── vncdll.vcxproj │ │ │ └── vncdll.vcxproj.filters │ │ └── winvnc │ │ │ ├── AdministrationControls.h │ │ │ ├── COPYING.txt │ │ │ ├── DynamicFn.cpp │ │ │ ├── DynamicFn.h │ │ │ ├── FileTransferItemInfo.cpp │ │ │ ├── FileTransferItemInfo.h │ │ │ ├── HtmlHelp.h │ │ │ ├── IncomingConnectionsControls.h │ │ │ ├── InputHandlingControls.h │ │ │ ├── LICENCE.txt │ │ │ ├── MatchWindow.h │ │ │ ├── MinMax.cpp │ │ │ ├── MinMax.h │ │ │ ├── ParseHost.h │ │ │ ├── PollControls.h │ │ │ ├── QuerySettingsControls.h │ │ │ ├── README.TXT │ │ │ ├── RectList.cpp │ │ │ ├── RectList.h │ │ │ ├── SharedDesktopArea.h │ │ │ ├── TsSessions.cpp │ │ │ ├── TsSessions.h │ │ │ ├── VNCHelp.h │ │ │ ├── VNCHooks │ │ │ ├── VNCHooks-vc8.vcproj │ │ │ ├── VNCHooks.cpp │ │ │ ├── VNCHooks.def │ │ │ ├── VNCHooks.dsp │ │ │ ├── VNCHooks.h │ │ │ ├── VNCHooks.rc │ │ │ ├── VNCHooks.vcproj │ │ │ └── resource.h │ │ │ ├── VSocket.cpp │ │ │ ├── VSocket.h │ │ │ ├── VTypes.h │ │ │ ├── VideoDriver.cpp │ │ │ ├── VideoDriver.h │ │ │ ├── WallpaperUtils.cpp │ │ │ ├── WallpaperUtils.h │ │ │ ├── WinVNC.vcxproj │ │ │ ├── WinVNC.vcxproj.filters │ │ │ ├── common.h │ │ │ ├── d3des.c │ │ │ ├── d3des.h │ │ │ ├── keysymdef.h │ │ │ ├── libjpeg │ │ │ ├── README │ │ │ ├── ansi2knr.1 │ │ │ ├── ansi2knr.c │ │ │ ├── cderror.h │ │ │ ├── cdjpeg.c │ │ │ ├── cdjpeg.h │ │ │ ├── change.log │ │ │ ├── cjpeg.1 │ │ │ ├── cjpeg.c │ │ │ ├── ckconfig.c │ │ │ ├── coderules.doc │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── djpeg.1 │ │ │ ├── djpeg.c │ │ │ ├── example.c │ │ │ ├── filelist.doc │ │ │ ├── install-sh │ │ │ ├── install.doc │ │ │ ├── jcapimin.c │ │ │ ├── jcapistd.c │ │ │ ├── jccoefct.c │ │ │ ├── jccolor.c │ │ │ ├── jcdctmgr.c │ │ │ ├── jchuff.c │ │ │ ├── jchuff.h │ │ │ ├── jcinit.c │ │ │ ├── jcmainct.c │ │ │ ├── jcmarker.c │ │ │ ├── jcmaster.c │ │ │ ├── jcomapi.c │ │ │ ├── jconfig.bcc │ │ │ ├── jconfig.cfg │ │ │ ├── jconfig.dj │ │ │ ├── jconfig.doc │ │ │ ├── jconfig.h │ │ │ ├── jconfig.mac │ │ │ ├── jconfig.manx │ │ │ ├── jconfig.mc6 │ │ │ ├── jconfig.sas │ │ │ ├── jconfig.st │ │ │ ├── jconfig.vc │ │ │ ├── jconfig.vms │ │ │ ├── jconfig.wat │ │ │ ├── jcparam.c │ │ │ ├── jcphuff.c │ │ │ ├── jcprepct.c │ │ │ ├── jcsample.c │ │ │ ├── jctrans.c │ │ │ ├── jdapimin.c │ │ │ ├── jdapistd.c │ │ │ ├── jdatadst.c │ │ │ ├── jdatasrc.c │ │ │ ├── jdcoefct.c │ │ │ ├── jdcolor.c │ │ │ ├── jdct.h │ │ │ ├── jddctmgr.c │ │ │ ├── jdhuff.c │ │ │ ├── jdhuff.h │ │ │ ├── jdinput.c │ │ │ ├── jdmainct.c │ │ │ ├── jdmarker.c │ │ │ ├── jdmaster.c │ │ │ ├── jdmerge.c │ │ │ ├── jdphuff.c │ │ │ ├── jdpostct.c │ │ │ ├── jdsample.c │ │ │ ├── jdtrans.c │ │ │ ├── jerror.c │ │ │ ├── jerror.h │ │ │ ├── jfdctflt.c │ │ │ ├── jfdctfst.c │ │ │ ├── jfdctint.c │ │ │ ├── jidctflt.c │ │ │ ├── jidctfst.c │ │ │ ├── jidctint.c │ │ │ ├── jidctred.c │ │ │ ├── jinclude.h │ │ │ ├── jmemansi.c │ │ │ ├── jmemdos.c │ │ │ ├── jmemdosa.asm │ │ │ ├── jmemmac.c │ │ │ ├── jmemmgr.c │ │ │ ├── jmemname.c │ │ │ ├── jmemnobs.c │ │ │ ├── jmemsys.h │ │ │ ├── jmorecfg.h │ │ │ ├── jpegint.h │ │ │ ├── jpeglib.h │ │ │ ├── jpegtran.1 │ │ │ ├── jpegtran.c │ │ │ ├── jquant1.c │ │ │ ├── jquant2.c │ │ │ ├── jutils.c │ │ │ ├── jversion.h │ │ │ ├── libjpeg-vc8.vcproj │ │ │ ├── libjpeg.doc │ │ │ ├── libjpeg.dsp │ │ │ ├── libjpeg.vcproj │ │ │ ├── ltconfig │ │ │ ├── ltmain.sh │ │ │ ├── makcjpeg.st │ │ │ ├── makdjpeg.st │ │ │ ├── makeapps.ds │ │ │ ├── makefile.ansi │ │ │ ├── makefile.bcc │ │ │ ├── makefile.cfg │ │ │ ├── makefile.dj │ │ │ ├── makefile.manx │ │ │ ├── makefile.mc6 │ │ │ ├── makefile.mms │ │ │ ├── makefile.sas │ │ │ ├── makefile.unix │ │ │ ├── makefile.vc │ │ │ ├── makefile.vms │ │ │ ├── makefile.wat │ │ │ ├── makelib.ds │ │ │ ├── makeproj.mac │ │ │ ├── makljpeg.st │ │ │ ├── maktjpeg.st │ │ │ ├── makvms.opt │ │ │ ├── rdbmp.c │ │ │ ├── rdcolmap.c │ │ │ ├── rdgif.c │ │ │ ├── rdjpgcom.1 │ │ │ ├── rdjpgcom.c │ │ │ ├── rdppm.c │ │ │ ├── rdrle.c │ │ │ ├── rdswitch.c │ │ │ ├── rdtarga.c │ │ │ ├── structure.doc │ │ │ ├── transupp.c │ │ │ ├── transupp.h │ │ │ ├── usage.doc │ │ │ ├── wizard.doc │ │ │ ├── wrbmp.c │ │ │ ├── wrgif.c │ │ │ ├── wrjpgcom.1 │ │ │ ├── wrjpgcom.c │ │ │ ├── wrppm.c │ │ │ ├── wrrle.c │ │ │ └── wrtarga.c │ │ │ ├── omnithread │ │ │ ├── nt.cpp │ │ │ ├── nt.h │ │ │ ├── omnithread-vc8.vcproj │ │ │ ├── omnithread.dsp │ │ │ ├── omnithread.h │ │ │ └── omnithread.vcproj │ │ │ ├── resource.h │ │ │ ├── rfb.h │ │ │ ├── rfbproto.h │ │ │ ├── stdhdrs.cpp │ │ │ ├── stdhdrs.h │ │ │ ├── tableinitcmtemplate.cpp │ │ │ ├── tableinittctemplate.cpp │ │ │ ├── tabletranstemplate.cpp │ │ │ ├── translate.cpp │ │ │ ├── translate.h │ │ │ ├── vncAbout.h │ │ │ ├── vncAcceptDialog.h │ │ │ ├── vncAcceptReverseDlg.h │ │ │ ├── vncBuffer.cpp │ │ │ ├── vncBuffer.h │ │ │ ├── vncClient.cpp │ │ │ ├── vncClient.h │ │ │ ├── vncConnDialog.h │ │ │ ├── vncCorbaConnect.h │ │ │ ├── vncDesktop.cpp │ │ │ ├── vncDesktop.h │ │ │ ├── vncEncodeCoRRE.cpp │ │ │ ├── vncEncodeCoRRE.h │ │ │ ├── vncEncodeHexT.cpp │ │ │ ├── vncEncodeHexT.h │ │ │ ├── vncEncodeRRE.cpp │ │ │ ├── vncEncodeRRE.h │ │ │ ├── vncEncodeTight.cpp │ │ │ ├── vncEncodeTight.h │ │ │ ├── vncEncodeZlib.cpp │ │ │ ├── vncEncodeZlib.h │ │ │ ├── vncEncodeZlibHex.cpp │ │ │ ├── vncEncodeZlibHex.h │ │ │ ├── vncEncoder.cpp │ │ │ ├── vncEncoder.h │ │ │ ├── vncHTTPConnect.h │ │ │ ├── vncInstHandler.cpp │ │ │ ├── vncInstHandler.h │ │ │ ├── vncKeymap.cpp │ │ │ ├── vncKeymap.h │ │ │ ├── vncMenu.h │ │ │ ├── vncPasswd.h │ │ │ ├── vncProperties.h │ │ │ ├── vncRegion.cpp │ │ │ ├── vncRegion.h │ │ │ ├── vncServer.cpp │ │ │ ├── vncServer.h │ │ │ ├── vncService.cpp │ │ │ ├── vncService.h │ │ │ ├── vncSockConnect.cpp │ │ │ ├── vncSockConnect.h │ │ │ ├── vncTimedMsgBox.h │ │ │ ├── vncauth.c │ │ │ ├── vncauth.h │ │ │ ├── vncdll.cpp │ │ │ └── zlib │ │ │ ├── ChangeLog │ │ │ ├── FAQ │ │ │ ├── INDEX │ │ │ ├── Make_vms.com │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── Makefile.riscos │ │ │ ├── README │ │ │ ├── adler32.c │ │ │ ├── algorithm.txt │ │ │ ├── compress.c │ │ │ ├── configure │ │ │ ├── crc32.c │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── descrip.mms │ │ │ ├── example.c │ │ │ ├── gzio.c │ │ │ ├── infblock.c │ │ │ ├── infblock.h │ │ │ ├── infcodes.c │ │ │ ├── infcodes.h │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── infutil.c │ │ │ ├── infutil.h │ │ │ ├── maketree.c │ │ │ ├── minigzip.c │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── zconf.h │ │ │ ├── zlib-vc8.vcproj │ │ │ ├── zlib.3 │ │ │ ├── zlib.dsp │ │ │ ├── zlib.h │ │ │ ├── zlib.html │ │ │ ├── zlib.vcproj │ │ │ ├── zutil.c │ │ │ └── zutil.h │ └── win_kernel_common │ │ ├── kernel.c │ │ ├── kernel.h │ │ └── windefs.h └── zsh │ ├── README.md │ ├── _msfconsole │ └── _msfvenom ├── lib ├── anemone.rb ├── anemone │ ├── cli.rb │ ├── cli │ │ ├── count.rb │ │ ├── cron.rb │ │ ├── pagedepth.rb │ │ ├── serialize.rb │ │ └── url_list.rb │ ├── cookie_store.rb │ ├── core.rb │ ├── docs │ │ ├── CHANGELOG.rdoc │ │ ├── CONTRIBUTORS │ │ ├── LICENSE.txt │ │ ├── MODIFIED.txt │ │ ├── README.rdoc │ │ ├── Rakefile │ │ └── VERSION │ ├── exceptions.rb │ ├── extractors │ │ ├── anchors.rb │ │ ├── dirbuster.rb │ │ ├── dirbuster │ │ │ └── directories │ │ ├── forms.rb │ │ ├── frames.rb │ │ ├── generic.rb │ │ ├── links.rb │ │ ├── meta_refresh.rb │ │ └── scripts.rb │ ├── http.rb │ ├── page.rb │ ├── page_store.rb │ ├── rex_http.rb │ ├── storage.rb │ ├── storage │ │ ├── base.rb │ │ ├── exceptions.rb │ │ ├── mongodb.rb │ │ ├── pstore.rb │ │ ├── redis.rb │ │ └── tokyo_cabinet.rb │ └── tentacle.rb ├── enumerable.rb ├── metasploit │ ├── framework.rb │ └── framework │ │ ├── afp │ │ └── client.rb │ │ ├── api.rb │ │ ├── api │ │ └── version.rb │ │ ├── aws │ │ └── client.rb │ │ ├── command.rb │ │ ├── command │ │ ├── base.rb │ │ └── console.rb │ │ ├── common_engine.rb │ │ ├── community_string_collection.rb │ │ ├── compiler │ │ ├── headers │ │ │ ├── base.rb │ │ │ └── windows.rb │ │ ├── utils.rb │ │ └── windows.rb │ │ ├── core.rb │ │ ├── core │ │ └── version.rb │ │ ├── credential.rb │ │ ├── credential_collection.rb │ │ ├── data_service.rb │ │ ├── data_service │ │ ├── proxy │ │ │ ├── core.rb │ │ │ ├── credential_data_proxy.rb │ │ │ ├── data_proxy_auto_loader.rb │ │ │ ├── db_export_data_proxy.rb │ │ │ ├── db_import_data_proxy.rb │ │ │ ├── event_data_proxy.rb │ │ │ ├── exploit_data_proxy.rb │ │ │ ├── host_data_proxy.rb │ │ │ ├── login_data_proxy.rb │ │ │ ├── loot_data_proxy.rb │ │ │ ├── msf_data_proxy.rb │ │ │ ├── nmap_data_proxy.rb │ │ │ ├── note_data_proxy.rb │ │ │ ├── payload_data_proxy.rb │ │ │ ├── service_data_proxy.rb │ │ │ ├── session_data_proxy.rb │ │ │ ├── session_event_data_proxy.rb │ │ │ ├── vuln_attempt_data_proxy.rb │ │ │ ├── vuln_data_proxy.rb │ │ │ ├── web_data_proxy.rb │ │ │ └── workspace_data_proxy.rb │ │ ├── remote │ │ │ ├── http │ │ │ │ ├── core.rb │ │ │ │ ├── data_service_auto_loader.rb │ │ │ │ ├── query_meta.rb │ │ │ │ ├── remote_credential_data_service.rb │ │ │ │ ├── remote_db_export_data_service.rb │ │ │ │ ├── remote_db_import_data_service.rb │ │ │ │ ├── remote_event_data_service.rb │ │ │ │ ├── remote_exploit_data_service.rb │ │ │ │ ├── remote_host_data_service.rb │ │ │ │ ├── remote_login_data_service.rb │ │ │ │ ├── remote_loot_data_service.rb │ │ │ │ ├── remote_msf_data_service.rb │ │ │ │ ├── remote_nmap_data_service.rb │ │ │ │ ├── remote_note_data_service.rb │ │ │ │ ├── remote_payload_data_service.rb │ │ │ │ ├── remote_service_data_service.rb │ │ │ │ ├── remote_session_data_service.rb │ │ │ │ ├── remote_session_event_data_service.rb │ │ │ │ ├── remote_vuln_attempt_data_service.rb │ │ │ │ ├── remote_vuln_data_service.rb │ │ │ │ ├── remote_web_data_service.rb │ │ │ │ ├── remote_workspace_data_service.rb │ │ │ │ └── response_data_helper.rb │ │ │ └── managed_remote_data_service.rb │ │ └── stubs │ │ │ ├── credential_data_service.rb │ │ │ ├── db_export_service.rb │ │ │ ├── db_import_service.rb │ │ │ ├── event_data_service.rb │ │ │ ├── exploit_data_service.rb │ │ │ ├── host_data_service.rb │ │ │ ├── login_data_service.rb │ │ │ ├── loot_data_service.rb │ │ │ ├── module_data_service.rb │ │ │ ├── msf_data_service.rb │ │ │ ├── note_data_service.rb │ │ │ ├── payload_data_service.rb │ │ │ ├── query_service.rb │ │ │ ├── search.rb │ │ │ ├── service_data_service.rb │ │ │ ├── session_data_service.rb │ │ │ ├── session_event_service.rb │ │ │ ├── vuln_data_service.rb │ │ │ ├── web_data_service.rb │ │ │ └── workspace_data_service.rb │ │ ├── database.rb │ │ ├── engine.rb │ │ ├── ftp │ │ └── client.rb │ │ ├── hashes │ │ └── identify.rb │ │ ├── jtr │ │ ├── cracker.rb │ │ ├── formatter.rb │ │ ├── invalid_wordlist.rb │ │ └── wordlist.rb │ │ ├── login_scanner.rb │ │ ├── login_scanner │ │ ├── acpp.rb │ │ ├── advantech_webaccess.rb │ │ ├── afp.rb │ │ ├── axis2.rb │ │ ├── base.rb │ │ ├── bavision_cameras.rb │ │ ├── buffalo.rb │ │ ├── caidao.rb │ │ ├── chef_webui.rb │ │ ├── cisco_firepower.rb │ │ ├── db2.rb │ │ ├── directadmin.rb │ │ ├── ftp.rb │ │ ├── gitlab.rb │ │ ├── glassfish.rb │ │ ├── http.rb │ │ ├── invalid.rb │ │ ├── ipboard.rb │ │ ├── jenkins.rb │ │ ├── manageengine_desktop_central.rb │ │ ├── mqtt.rb │ │ ├── mssql.rb │ │ ├── mybook_live.rb │ │ ├── mysql.rb │ │ ├── nessus.rb │ │ ├── ntlm.rb │ │ ├── octopusdeploy.rb │ │ ├── phpmyadmin.rb │ │ ├── pop3.rb │ │ ├── postgres.rb │ │ ├── redis.rb │ │ ├── result.rb │ │ ├── rex_socket.rb │ │ ├── smb.rb │ │ ├── smh.rb │ │ ├── snmp.rb │ │ ├── ssh.rb │ │ ├── symantec_web_gateway.rb │ │ ├── telnet.rb │ │ ├── tomcat.rb │ │ ├── varnish.rb │ │ ├── vmauthd.rb │ │ ├── vnc.rb │ │ ├── winrm.rb │ │ ├── wordpress_multicall.rb │ │ ├── wordpress_rpc.rb │ │ └── zabbix.rb │ │ ├── mssql │ │ ├── client.rb │ │ └── tdssslproxy.rb │ │ ├── ntds │ │ ├── account.rb │ │ └── parser.rb │ │ ├── obfuscation │ │ ├── crandomizer.rb │ │ └── crandomizer │ │ │ ├── code_factory.rb │ │ │ ├── code_factory │ │ │ ├── base.rb │ │ │ ├── fake_function.rb │ │ │ ├── fake_function_collection.rb │ │ │ ├── gettickcount.rb │ │ │ ├── if.rb │ │ │ ├── int_assignments.rb │ │ │ ├── malloc.rb │ │ │ ├── outputdebugstring.rb │ │ │ ├── printf.rb │ │ │ ├── string_assignments.rb │ │ │ ├── switch.rb │ │ │ └── uninit_variables.rb │ │ │ ├── modifier.rb │ │ │ ├── parser.rb │ │ │ ├── random_statements.rb │ │ │ └── utility.rb │ │ ├── parsed_options.rb │ │ ├── parsed_options │ │ ├── base.rb │ │ ├── console.rb │ │ └── remote_db.rb │ │ ├── rails_version_constraint.rb │ │ ├── require.rb │ │ ├── spec.rb │ │ ├── spec │ │ ├── constants.rb │ │ ├── constants │ │ │ ├── each.rb │ │ │ └── suite.rb │ │ ├── threads.rb │ │ ├── threads │ │ │ ├── logger.rb │ │ │ └── suite.rb │ │ └── untested_payloads.rb │ │ ├── tcp │ │ └── client.rb │ │ ├── telnet │ │ └── client.rb │ │ ├── thread_factory_provider.rb │ │ ├── varnish │ │ └── client.rb │ │ └── version.rb ├── msf │ ├── LICENSE │ ├── base.rb │ ├── base │ │ ├── config.rb │ │ ├── logging.rb │ │ ├── persistent_storage.rb │ │ ├── persistent_storage │ │ │ └── flatfile.rb │ │ ├── serializer │ │ │ ├── json.rb │ │ │ └── readable_text.rb │ │ ├── sessions │ │ │ ├── command_shell.rb │ │ │ ├── command_shell_options.rb │ │ │ ├── hwbridge.rb │ │ │ ├── mainframe_shell.rb │ │ │ ├── meterpreter.rb │ │ │ ├── meterpreter_aarch64_apple_ios.rb │ │ │ ├── meterpreter_aarch64_linux.rb │ │ │ ├── meterpreter_android.rb │ │ │ ├── meterpreter_armbe_linux.rb │ │ │ ├── meterpreter_armle_apple_ios.rb │ │ │ ├── meterpreter_armle_linux.rb │ │ │ ├── meterpreter_java.rb │ │ │ ├── meterpreter_mips64_linux.rb │ │ │ ├── meterpreter_mipsbe_linux.rb │ │ │ ├── meterpreter_mipsle_linux.rb │ │ │ ├── meterpreter_multi.rb │ │ │ ├── meterpreter_options.rb │ │ │ ├── meterpreter_php.rb │ │ │ ├── meterpreter_ppc64le_linux.rb │ │ │ ├── meterpreter_ppc_linux.rb │ │ │ ├── meterpreter_ppce500v2_linux.rb │ │ │ ├── meterpreter_python.rb │ │ │ ├── meterpreter_x64_linux.rb │ │ │ ├── meterpreter_x64_osx.rb │ │ │ ├── meterpreter_x64_win.rb │ │ │ ├── meterpreter_x86_bsd.rb │ │ │ ├── meterpreter_x86_linux.rb │ │ │ ├── meterpreter_x86_osx.rb │ │ │ ├── meterpreter_x86_win.rb │ │ │ ├── meterpreter_zarch_linux.rb │ │ │ ├── mettle_config.rb │ │ │ ├── powershell.rb │ │ │ ├── scriptable.rb │ │ │ ├── tty.rb │ │ │ ├── vncinject.rb │ │ │ └── vncinject_options.rb │ │ ├── simple.rb │ │ └── simple │ │ │ ├── auxiliary.rb │ │ │ ├── buffer.rb │ │ │ ├── encoder.rb │ │ │ ├── evasion.rb │ │ │ ├── exploit.rb │ │ │ ├── framework.rb │ │ │ ├── framework │ │ │ └── module_paths.rb │ │ │ ├── module.rb │ │ │ ├── nop.rb │ │ │ ├── payload.rb │ │ │ ├── post.rb │ │ │ └── statistics.rb │ ├── core.rb │ ├── core │ │ ├── analyze.rb │ │ ├── author.rb │ │ ├── auxiliary.rb │ │ ├── auxiliary │ │ │ ├── auth_brute.rb │ │ │ ├── cisco.rb │ │ │ ├── cnpilot.rb │ │ │ ├── commandshell.rb │ │ │ ├── crand.rb │ │ │ ├── crawler.rb │ │ │ ├── dos.rb │ │ │ ├── drdos.rb │ │ │ ├── epmp.rb │ │ │ ├── etcd.rb │ │ │ ├── fuzzer.rb │ │ │ ├── iax2.rb │ │ │ ├── jtr.rb │ │ │ ├── juniper.rb │ │ │ ├── kademlia.rb │ │ │ ├── llmnr.rb │ │ │ ├── login.rb │ │ │ ├── mdns.rb │ │ │ ├── mime_types.rb │ │ │ ├── mixins.rb │ │ │ ├── mms.rb │ │ │ ├── mqtt.rb │ │ │ ├── natpmp.rb │ │ │ ├── nmap.rb │ │ │ ├── ntp.rb │ │ │ ├── pii.rb │ │ │ ├── redis.rb │ │ │ ├── report.rb │ │ │ ├── rservices.rb │ │ │ ├── scanner.rb │ │ │ ├── sms.rb │ │ │ ├── timed.rb │ │ │ ├── udp_scanner.rb │ │ │ ├── web.rb │ │ │ ├── web │ │ │ │ ├── analysis │ │ │ │ │ ├── differential.rb │ │ │ │ │ ├── taint.rb │ │ │ │ │ └── timing.rb │ │ │ │ ├── form.rb │ │ │ │ ├── fuzzable.rb │ │ │ │ ├── http.rb │ │ │ │ ├── path.rb │ │ │ │ └── target.rb │ │ │ └── wmapmodule.rb │ │ ├── cert_provider.rb │ │ ├── constants.rb │ │ ├── data_store.rb │ │ ├── database_event.rb │ │ ├── db_export.rb │ │ ├── db_import_error.rb │ │ ├── db_manager.rb │ │ ├── db_manager │ │ │ ├── adapter.rb │ │ │ ├── client.rb │ │ │ ├── connection.rb │ │ │ ├── cred.rb │ │ │ ├── db_export.rb │ │ │ ├── event.rb │ │ │ ├── exploit_attempt.rb │ │ │ ├── exploited_host.rb │ │ │ ├── host.rb │ │ │ ├── host_detail.rb │ │ │ ├── host_tag.rb │ │ │ ├── import.rb │ │ │ ├── import │ │ │ │ ├── acunetix.rb │ │ │ │ ├── amap.rb │ │ │ │ ├── appscan.rb │ │ │ │ ├── burp_issue.rb │ │ │ │ ├── burp_session.rb │ │ │ │ ├── ci.rb │ │ │ │ ├── foundstone.rb │ │ │ │ ├── fusion_vm.rb │ │ │ │ ├── gpp.rb │ │ │ │ ├── ip360.rb │ │ │ │ ├── ip360 │ │ │ │ │ ├── aspl.rb │ │ │ │ │ └── v3.rb │ │ │ │ ├── ip_list.rb │ │ │ │ ├── libpcap.rb │ │ │ │ ├── mbsa.rb │ │ │ │ ├── metasploit_framework.rb │ │ │ │ ├── metasploit_framework │ │ │ │ │ ├── credential.rb │ │ │ │ │ ├── xml.rb │ │ │ │ │ └── zip.rb │ │ │ │ ├── nessus.rb │ │ │ │ ├── nessus │ │ │ │ │ ├── nbe.rb │ │ │ │ │ ├── xml.rb │ │ │ │ │ └── xml │ │ │ │ │ │ ├── v1.rb │ │ │ │ │ │ └── v2.rb │ │ │ │ ├── netsparker.rb │ │ │ │ ├── nexpose.rb │ │ │ │ ├── nexpose │ │ │ │ │ ├── raw.rb │ │ │ │ │ └── simple.rb │ │ │ │ ├── nikto.rb │ │ │ │ ├── nmap.rb │ │ │ │ ├── open_vas.rb │ │ │ │ ├── outpost24.rb │ │ │ │ ├── qualys.rb │ │ │ │ ├── qualys │ │ │ │ │ ├── asset.rb │ │ │ │ │ └── scan.rb │ │ │ │ ├── report.rb │ │ │ │ ├── retina.rb │ │ │ │ ├── spiceworks.rb │ │ │ │ └── wapiti.rb │ │ │ ├── ip_address.rb │ │ │ ├── login.rb │ │ │ ├── loot.rb │ │ │ ├── migration.rb │ │ │ ├── module_cache.rb │ │ │ ├── note.rb │ │ │ ├── payload.rb │ │ │ ├── ref.rb │ │ │ ├── report.rb │ │ │ ├── route.rb │ │ │ ├── service.rb │ │ │ ├── session.rb │ │ │ ├── session_event.rb │ │ │ ├── task.rb │ │ │ ├── user.rb │ │ │ ├── vuln.rb │ │ │ ├── vuln_attempt.rb │ │ │ ├── vuln_detail.rb │ │ │ ├── web.rb │ │ │ ├── wmap.rb │ │ │ └── workspace.rb │ │ ├── encoded_payload.rb │ │ ├── encoder.rb │ │ ├── encoder │ │ │ ├── alphanum.rb │ │ │ ├── nonalpha.rb │ │ │ ├── nonupper.rb │ │ │ ├── xor.rb │ │ │ ├── xor_additive_feedback.rb │ │ │ └── xor_dynamic.rb │ │ ├── encoding │ │ │ └── xor.rb │ │ ├── evasion.rb │ │ ├── evasion_driver.rb │ │ ├── event_dispatcher.rb │ │ ├── exceptions.rb │ │ ├── exe │ │ │ ├── segment_appender.rb │ │ │ └── segment_injector.rb │ │ ├── exploit.rb │ │ ├── exploit │ │ │ ├── afp.rb │ │ │ ├── android.rb │ │ │ ├── arkeia.rb │ │ │ ├── auto_target.rb │ │ │ ├── browser_autopwn.rb │ │ │ ├── browser_autopwn2.rb │ │ │ ├── brute.rb │ │ │ ├── brutetargets.rb │ │ │ ├── capture.rb │ │ │ ├── cmdstager.rb │ │ │ ├── cmdstager │ │ │ │ └── http.rb │ │ │ ├── db2.rb │ │ │ ├── dcerpc.rb │ │ │ ├── dcerpc_epm.rb │ │ │ ├── dcerpc_lsa.rb │ │ │ ├── dcerpc_mgmt.rb │ │ │ ├── dect_coa.rb │ │ │ ├── dhcp.rb │ │ │ ├── dialup.rb │ │ │ ├── dns.rb │ │ │ ├── dns │ │ │ │ ├── client.rb │ │ │ │ ├── common.rb │ │ │ │ └── server.rb │ │ │ ├── egghunter.rb │ │ │ ├── exe.rb │ │ │ ├── file_dropper.rb │ │ │ ├── fileformat.rb │ │ │ ├── fmtstr.rb │ │ │ ├── format │ │ │ │ └── webarchive.rb │ │ │ ├── ftp.rb │ │ │ ├── ftpserver.rb │ │ │ ├── gdb.rb │ │ │ ├── git.rb │ │ │ ├── http │ │ │ │ ├── client.rb │ │ │ │ ├── drupal.rb │ │ │ │ ├── jboss.rb │ │ │ │ ├── jboss │ │ │ │ │ ├── base.rb │ │ │ │ │ ├── bean_shell.rb │ │ │ │ │ ├── bean_shell_scripts.rb │ │ │ │ │ ├── deployment_file_repository.rb │ │ │ │ │ └── deployment_file_repository_scripts.rb │ │ │ │ ├── joomla.rb │ │ │ │ ├── joomla │ │ │ │ │ ├── base.rb │ │ │ │ │ └── version.rb │ │ │ │ ├── server.rb │ │ │ │ ├── server │ │ │ │ │ ├── html.rb │ │ │ │ │ └── php_include.rb │ │ │ │ ├── typo3.rb │ │ │ │ ├── typo3 │ │ │ │ │ ├── login.rb │ │ │ │ │ └── uris.rb │ │ │ │ ├── wordpress.rb │ │ │ │ └── wordpress │ │ │ │ │ ├── admin.rb │ │ │ │ │ ├── base.rb │ │ │ │ │ ├── helpers.rb │ │ │ │ │ ├── login.rb │ │ │ │ │ ├── posts.rb │ │ │ │ │ ├── register.rb │ │ │ │ │ ├── uris.rb │ │ │ │ │ ├── users.rb │ │ │ │ │ ├── version.rb │ │ │ │ │ └── xml_rpc.rb │ │ │ ├── imap.rb │ │ │ ├── ip.rb │ │ │ ├── ipv6.rb │ │ │ ├── java.rb │ │ │ ├── java │ │ │ │ └── rmi │ │ │ │ │ ├── builder.rb │ │ │ │ │ ├── client.rb │ │ │ │ │ ├── client │ │ │ │ │ ├── jmx.rb │ │ │ │ │ ├── jmx │ │ │ │ │ │ ├── connection.rb │ │ │ │ │ │ ├── connection │ │ │ │ │ │ │ └── builder.rb │ │ │ │ │ │ ├── server.rb │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── builder.rb │ │ │ │ │ │ │ └── parser.rb │ │ │ │ │ ├── registry.rb │ │ │ │ │ └── registry │ │ │ │ │ │ ├── builder.rb │ │ │ │ │ │ └── parser.rb │ │ │ │ │ └── util.rb │ │ │ ├── jsobfu.rb │ │ │ ├── kerberos │ │ │ │ ├── client.rb │ │ │ │ └── client │ │ │ │ │ ├── as_request.rb │ │ │ │ │ ├── as_response.rb │ │ │ │ │ ├── base.rb │ │ │ │ │ ├── cache_credential.rb │ │ │ │ │ ├── pac.rb │ │ │ │ │ ├── tgs_request.rb │ │ │ │ │ └── tgs_response.rb │ │ │ ├── kernel_mode.rb │ │ │ ├── local.rb │ │ │ ├── local │ │ │ │ ├── compile_c.rb │ │ │ │ ├── linux.rb │ │ │ │ ├── linux_kernel.rb │ │ │ │ └── windows_kernel.rb │ │ │ ├── mixins.rb │ │ │ ├── mssql.rb │ │ │ ├── mssql_commands.rb │ │ │ ├── mssql_sqli.rb │ │ │ ├── mysql.rb │ │ │ ├── ndmp.rb │ │ │ ├── ndmp_socket.rb │ │ │ ├── ntlm.rb │ │ │ ├── omelet.rb │ │ │ ├── oracle.rb │ │ │ ├── pdf.rb │ │ │ ├── pdf_parse.rb │ │ │ ├── php_exe.rb │ │ │ ├── pop2.rb │ │ │ ├── postgres.rb │ │ │ ├── powershell.rb │ │ │ ├── powershell │ │ │ │ └── dot_net.rb │ │ │ ├── realport.rb │ │ │ ├── remote │ │ │ │ ├── browser_exploit_server.rb │ │ │ │ ├── browser_profile_manager.rb │ │ │ │ ├── firefox_addon_generator.rb │ │ │ │ ├── firefox_privilege_escalation.rb │ │ │ │ └── nuuo.rb │ │ │ ├── riff.rb │ │ │ ├── ropdb.rb │ │ │ ├── seh.rb │ │ │ ├── sip.rb │ │ │ ├── smb │ │ │ │ ├── client.rb │ │ │ │ ├── client │ │ │ │ │ ├── authenticated.rb │ │ │ │ │ ├── local_paths.rb │ │ │ │ │ ├── pipe_auditor.rb │ │ │ │ │ ├── psexec.rb │ │ │ │ │ ├── psexec_ms17_010.rb │ │ │ │ │ ├── remote_paths.rb │ │ │ │ │ └── webexec.rb │ │ │ │ ├── server.rb │ │ │ │ └── server │ │ │ │ │ ├── share.rb │ │ │ │ │ └── share │ │ │ │ │ ├── command.rb │ │ │ │ │ ├── command │ │ │ │ │ ├── close.rb │ │ │ │ │ ├── negotiate.rb │ │ │ │ │ ├── nt_create_andx.rb │ │ │ │ │ ├── read_andx.rb │ │ │ │ │ ├── session_setup_andx.rb │ │ │ │ │ ├── trans2.rb │ │ │ │ │ └── trans2 │ │ │ │ │ │ ├── find_first2.rb │ │ │ │ │ │ ├── query_file_information.rb │ │ │ │ │ │ └── query_path_information.rb │ │ │ │ │ ├── information_level.rb │ │ │ │ │ └── information_level │ │ │ │ │ ├── find.rb │ │ │ │ │ └── query.rb │ │ │ ├── smtp.rb │ │ │ ├── smtp_deliver.rb │ │ │ ├── snmp.rb │ │ │ ├── socket_server.rb │ │ │ ├── ssh.rb │ │ │ ├── ssh │ │ │ │ └── auth_methods.rb │ │ │ ├── sunrpc.rb │ │ │ ├── tcp.rb │ │ │ ├── tcp_server.rb │ │ │ ├── telnet.rb │ │ │ ├── tftp.rb │ │ │ ├── tincd.rb │ │ │ ├── tns.rb │ │ │ ├── udp.rb │ │ │ ├── vim_soap.rb │ │ │ ├── wbemexec.rb │ │ │ ├── wdbrpc.rb │ │ │ ├── wdbrpc_client.rb │ │ │ ├── web.rb │ │ │ ├── windows_constants.rb │ │ │ └── winrm.rb │ │ ├── exploit_driver.rb │ │ ├── framework.rb │ │ ├── handler.rb │ │ ├── handler │ │ │ ├── bind_named_pipe.rb │ │ │ ├── bind_tcp.rb │ │ │ ├── bind_udp.rb │ │ │ ├── find_port.rb │ │ │ ├── find_shell.rb │ │ │ ├── find_tag.rb │ │ │ ├── find_tty.rb │ │ │ ├── none.rb │ │ │ ├── reverse.rb │ │ │ ├── reverse │ │ │ │ ├── comm.rb │ │ │ │ └── ssl.rb │ │ │ ├── reverse_hop_http.rb │ │ │ ├── reverse_http.rb │ │ │ ├── reverse_https.rb │ │ │ ├── reverse_https_proxy.rb │ │ │ ├── reverse_named_pipe.rb │ │ │ ├── reverse_tcp.rb │ │ │ ├── reverse_tcp_allports.rb │ │ │ ├── reverse_tcp_double.rb │ │ │ ├── reverse_tcp_double_ssl.rb │ │ │ ├── reverse_tcp_ssl.rb │ │ │ └── reverse_udp.rb │ │ ├── host_state.rb │ │ ├── module.rb │ │ ├── module │ │ │ ├── arch.rb │ │ │ ├── auth.rb │ │ │ ├── author.rb │ │ │ ├── auxiliary_action.rb │ │ │ ├── compatibility.rb │ │ │ ├── data_store.rb │ │ │ ├── deprecated.rb │ │ │ ├── external.rb │ │ │ ├── failure.rb │ │ │ ├── full_name.rb │ │ │ ├── has_actions.rb │ │ │ ├── module_info.rb │ │ │ ├── module_store.rb │ │ │ ├── network.rb │ │ │ ├── options.rb │ │ │ ├── platform.rb │ │ │ ├── platform_list.rb │ │ │ ├── privileged.rb │ │ │ ├── ranking.rb │ │ │ ├── reference.rb │ │ │ ├── reliability.rb │ │ │ ├── search.rb │ │ │ ├── side_effects.rb │ │ │ ├── stability.rb │ │ │ ├── target.rb │ │ │ ├── type.rb │ │ │ ├── ui.rb │ │ │ ├── ui │ │ │ │ ├── line.rb │ │ │ │ ├── line │ │ │ │ │ └── verbose.rb │ │ │ │ ├── message.rb │ │ │ │ └── message │ │ │ │ │ └── verbose.rb │ │ │ └── uuid.rb │ │ ├── module_manager.rb │ │ ├── module_manager │ │ │ ├── cache.rb │ │ │ ├── loading.rb │ │ │ ├── module_paths.rb │ │ │ ├── module_sets.rb │ │ │ └── reloading.rb │ │ ├── module_set.rb │ │ ├── modules.rb │ │ ├── modules │ │ │ ├── error.rb │ │ │ ├── external.rb │ │ │ ├── external │ │ │ │ ├── bridge.rb │ │ │ │ ├── cli.rb │ │ │ │ ├── go │ │ │ │ │ └── src │ │ │ │ │ │ └── metasploit │ │ │ │ │ │ └── module │ │ │ │ │ │ ├── core.go │ │ │ │ │ │ ├── metadata.go │ │ │ │ │ │ └── report.go │ │ │ │ ├── message.rb │ │ │ │ ├── python │ │ │ │ │ ├── async_timeout │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── metasploit │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── cli.py │ │ │ │ │ │ ├── login_scanner.py │ │ │ │ │ │ ├── module.py │ │ │ │ │ │ └── probe_scanner.py │ │ │ │ ├── ruby │ │ │ │ │ └── metasploit.rb │ │ │ │ ├── shim.rb │ │ │ │ └── templates │ │ │ │ │ ├── capture_server.erb │ │ │ │ │ ├── common_check.erb │ │ │ │ │ ├── common_metadata.erb │ │ │ │ │ ├── dos.erb │ │ │ │ │ ├── evasion.erb │ │ │ │ │ ├── multi_scanner.erb │ │ │ │ │ ├── remote_exploit.erb │ │ │ │ │ ├── remote_exploit_cmd_stager.erb │ │ │ │ │ ├── single_host_login_scanner.erb │ │ │ │ │ └── single_scanner.erb │ │ │ ├── loader.rb │ │ │ ├── loader │ │ │ │ ├── base.rb │ │ │ │ ├── directory.rb │ │ │ │ └── executable.rb │ │ │ ├── metadata.rb │ │ │ └── metadata │ │ │ │ ├── cache.rb │ │ │ │ ├── maps.rb │ │ │ │ ├── obj.rb │ │ │ │ ├── search.rb │ │ │ │ └── store.rb │ │ ├── nop.rb │ │ ├── opt.rb │ │ ├── opt_address.rb │ │ ├── opt_address_local.rb │ │ ├── opt_address_range.rb │ │ ├── opt_base.rb │ │ ├── opt_bool.rb │ │ ├── opt_enum.rb │ │ ├── opt_float.rb │ │ ├── opt_int.rb │ │ ├── opt_path.rb │ │ ├── opt_port.rb │ │ ├── opt_raw.rb │ │ ├── opt_regexp.rb │ │ ├── opt_string.rb │ │ ├── option_container.rb │ │ ├── payload.rb │ │ ├── payload │ │ │ ├── aix.rb │ │ │ ├── android.rb │ │ │ ├── android │ │ │ │ ├── meterpreter_loader.rb │ │ │ │ ├── payload_options.rb │ │ │ │ ├── reverse_http.rb │ │ │ │ ├── reverse_https.rb │ │ │ │ └── reverse_tcp.rb │ │ │ ├── apk.rb │ │ │ ├── bsd.rb │ │ │ ├── bsd │ │ │ │ └── x86.rb │ │ │ ├── firefox.rb │ │ │ ├── generic.rb │ │ │ ├── hardware.rb │ │ │ ├── java.rb │ │ │ ├── java │ │ │ │ ├── bind_tcp.rb │ │ │ │ ├── meterpreter_loader.rb │ │ │ │ ├── payload_options.rb │ │ │ │ ├── reverse_http.rb │ │ │ │ ├── reverse_https.rb │ │ │ │ └── reverse_tcp.rb │ │ │ ├── jsp.rb │ │ │ ├── linux.rb │ │ │ ├── linux │ │ │ │ ├── bind_tcp.rb │ │ │ │ ├── reverse_tcp.rb │ │ │ │ ├── send_uuid.rb │ │ │ │ └── x64 │ │ │ │ │ └── reverse_tcp.rb │ │ │ ├── macho.rb │ │ │ ├── mainframe.rb │ │ │ ├── multi.rb │ │ │ ├── multi │ │ │ │ ├── reverse_http.rb │ │ │ │ └── reverse_https.rb │ │ │ ├── netware.rb │ │ │ ├── nodejs.rb │ │ │ ├── osx.rb │ │ │ ├── osx │ │ │ │ └── bundleinject.rb │ │ │ ├── php.rb │ │ │ ├── php │ │ │ │ ├── bind_tcp.rb │ │ │ │ ├── reverse_tcp.rb │ │ │ │ └── send_uuid.rb │ │ │ ├── python.rb │ │ │ ├── python │ │ │ │ ├── bind_tcp.rb │ │ │ │ ├── meterpreter_loader.rb │ │ │ │ ├── reverse_http.rb │ │ │ │ ├── reverse_tcp.rb │ │ │ │ ├── reverse_tcp_ssl.rb │ │ │ │ └── send_uuid.rb │ │ │ ├── r.rb │ │ │ ├── ruby.rb │ │ │ ├── single.rb │ │ │ ├── solaris.rb │ │ │ ├── stager.rb │ │ │ ├── transport_config.rb │ │ │ ├── uuid.rb │ │ │ ├── uuid │ │ │ │ └── options.rb │ │ │ ├── windows.rb │ │ │ └── windows │ │ │ │ ├── bind_named_pipe.rb │ │ │ │ ├── bind_tcp.rb │ │ │ │ ├── bind_tcp_rc4.rb │ │ │ │ ├── block_api.rb │ │ │ │ ├── dllinject.rb │ │ │ │ ├── exec.rb │ │ │ │ ├── exec_x64.rb │ │ │ │ ├── exitfunk.rb │ │ │ │ ├── loadlibrary.rb │ │ │ │ ├── meterpreter_loader.rb │ │ │ │ ├── migrate.rb │ │ │ │ ├── migrate_common.rb │ │ │ │ ├── migrate_http.rb │ │ │ │ ├── migrate_named_pipe.rb │ │ │ │ ├── migrate_tcp.rb │ │ │ │ ├── powershell.rb │ │ │ │ ├── prepend_migrate.rb │ │ │ │ ├── rc4.rb │ │ │ │ ├── reflectivedllinject.rb │ │ │ │ ├── reverse_http.rb │ │ │ │ ├── reverse_https.rb │ │ │ │ ├── reverse_named_pipe.rb │ │ │ │ ├── reverse_tcp.rb │ │ │ │ ├── reverse_tcp_dns.rb │ │ │ │ ├── reverse_tcp_rc4.rb │ │ │ │ ├── reverse_tcp_rc4_dns.rb │ │ │ │ ├── reverse_udp.rb │ │ │ │ ├── reverse_winhttp.rb │ │ │ │ ├── reverse_winhttps.rb │ │ │ │ ├── send_uuid.rb │ │ │ │ ├── verify_ssl.rb │ │ │ │ └── x64 │ │ │ │ ├── bind_named_pipe.rb │ │ │ │ ├── bind_tcp.rb │ │ │ │ ├── block_api.rb │ │ │ │ ├── exitfunk.rb │ │ │ │ ├── meterpreter_loader.rb │ │ │ │ ├── migrate.rb │ │ │ │ ├── migrate_common.rb │ │ │ │ ├── migrate_http.rb │ │ │ │ ├── migrate_named_pipe.rb │ │ │ │ ├── migrate_tcp.rb │ │ │ │ ├── rc4.rb │ │ │ │ ├── reflectivedllinject.rb │ │ │ │ ├── reverse_http.rb │ │ │ │ ├── reverse_https.rb │ │ │ │ ├── reverse_named_pipe.rb │ │ │ │ ├── reverse_tcp.rb │ │ │ │ ├── reverse_tcp_rc4.rb │ │ │ │ ├── reverse_winhttp.rb │ │ │ │ ├── reverse_winhttps.rb │ │ │ │ └── send_uuid.rb │ │ ├── payload_generator.rb │ │ ├── payload_set.rb │ │ ├── platform.rb │ │ ├── plugin.rb │ │ ├── plugin_manager.rb │ │ ├── post.rb │ │ ├── post │ │ │ ├── android.rb │ │ │ ├── android │ │ │ │ ├── priv.rb │ │ │ │ └── system.rb │ │ │ ├── common.rb │ │ │ ├── file.rb │ │ │ ├── hardware.rb │ │ │ ├── hardware │ │ │ │ ├── automotive │ │ │ │ │ ├── dtc.rb │ │ │ │ │ └── uds.rb │ │ │ │ ├── rftransceiver │ │ │ │ │ └── rftransceiver.rb │ │ │ │ └── zigbee │ │ │ │ │ └── utils.rb │ │ │ ├── linux.rb │ │ │ ├── linux │ │ │ │ ├── busy_box.rb │ │ │ │ ├── kernel.rb │ │ │ │ ├── priv.rb │ │ │ │ └── system.rb │ │ │ ├── osx.rb │ │ │ ├── osx │ │ │ │ ├── priv.rb │ │ │ │ ├── ruby_dl.rb │ │ │ │ └── system.rb │ │ │ ├── solaris.rb │ │ │ ├── solaris │ │ │ │ ├── kernel.rb │ │ │ │ ├── priv.rb │ │ │ │ └── system.rb │ │ │ ├── unix.rb │ │ │ ├── webrtc.rb │ │ │ ├── windows.rb │ │ │ └── windows │ │ │ │ ├── accounts.rb │ │ │ │ ├── cli_parse.rb │ │ │ │ ├── dotnet.rb │ │ │ │ ├── error.rb │ │ │ │ ├── eventlog.rb │ │ │ │ ├── extapi.rb │ │ │ │ ├── file_info.rb │ │ │ │ ├── kiwi.rb │ │ │ │ ├── ldap.rb │ │ │ │ ├── mssql.rb │ │ │ │ ├── netapi.rb │ │ │ │ ├── powershell.rb │ │ │ │ ├── priv.rb │ │ │ │ ├── process.rb │ │ │ │ ├── railgun.rb │ │ │ │ ├── reflective_dll_injection.rb │ │ │ │ ├── registry.rb │ │ │ │ ├── runas.rb │ │ │ │ ├── services.rb │ │ │ │ ├── shadowcopy.rb │ │ │ │ ├── user_profiles.rb │ │ │ │ └── wmic.rb │ │ ├── post_mixin.rb │ │ ├── reference.rb │ │ ├── reflective_dll_loader.rb │ │ ├── rpc.rb │ │ ├── rpc │ │ │ ├── json │ │ │ │ ├── client.rb │ │ │ │ ├── dispatcher.rb │ │ │ │ ├── dispatcher_helper.rb │ │ │ │ ├── error.rb │ │ │ │ ├── request.rb │ │ │ │ ├── response.rb │ │ │ │ ├── rpc_command.rb │ │ │ │ ├── rpc_command_factory.rb │ │ │ │ ├── v1_0 │ │ │ │ │ └── rpc_command.rb │ │ │ │ └── v2_0 │ │ │ │ │ └── rpc_test.rb │ │ │ └── v10 │ │ │ │ ├── client.rb │ │ │ │ ├── constants.rb │ │ │ │ ├── rpc_auth.rb │ │ │ │ ├── rpc_base.rb │ │ │ │ ├── rpc_console.rb │ │ │ │ ├── rpc_core.rb │ │ │ │ ├── rpc_db.rb │ │ │ │ ├── rpc_job.rb │ │ │ │ ├── rpc_module.rb │ │ │ │ ├── rpc_plugin.rb │ │ │ │ ├── rpc_session.rb │ │ │ │ └── service.rb │ │ ├── service_state.rb │ │ ├── session.rb │ │ ├── session │ │ │ ├── basic.rb │ │ │ ├── comm.rb │ │ │ ├── interactive.rb │ │ │ ├── netware_console.rb │ │ │ └── provider │ │ │ │ ├── multi_command_execution.rb │ │ │ │ ├── multi_command_shell.rb │ │ │ │ ├── single_command_execution.rb │ │ │ │ └── single_command_shell.rb │ │ ├── session_manager.rb │ │ ├── site_reference.rb │ │ ├── target.rb │ │ ├── thread_manager.rb │ │ ├── web_services.rb │ │ └── web_services │ │ │ ├── authentication.rb │ │ │ ├── authentication │ │ │ ├── strategies.rb │ │ │ └── strategies │ │ │ │ ├── admin_api_token.rb │ │ │ │ ├── api_token.rb │ │ │ │ └── user_password.rb │ │ │ ├── db_manager_proxy.rb │ │ │ ├── framework_extension.rb │ │ │ ├── http_db_manager_service.rb │ │ │ ├── job_processor.rb │ │ │ ├── json_rpc_app.rb │ │ │ ├── metasploit_api_app.rb │ │ │ ├── module_search.rb │ │ │ ├── public │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── msf-ws.css │ │ │ └── oauth2-redirect.html │ │ │ ├── servlet │ │ │ ├── api_docs_servlet.rb │ │ │ ├── auth_servlet.rb │ │ │ ├── credential_servlet.rb │ │ │ ├── db_export_servlet.rb │ │ │ ├── db_import_servlet.rb │ │ │ ├── event_servlet.rb │ │ │ ├── exploit_servlet.rb │ │ │ ├── host_servlet.rb │ │ │ ├── json_rpc_servlet.rb │ │ │ ├── login_servlet.rb │ │ │ ├── loot_servlet.rb │ │ │ ├── module_search_servlet.rb │ │ │ ├── msf_servlet.rb │ │ │ ├── nmap_servlet.rb │ │ │ ├── note_servlet.rb │ │ │ ├── payload_servlet.rb │ │ │ ├── service_servlet.rb │ │ │ ├── session_event_servlet.rb │ │ │ ├── session_servlet.rb │ │ │ ├── user_servlet.rb │ │ │ ├── vuln_attempt_servlet.rb │ │ │ ├── vuln_servlet.rb │ │ │ ├── web_servlet.rb │ │ │ └── workspace_servlet.rb │ │ │ ├── servlet_helper.rb │ │ │ └── views │ │ │ ├── api_docs.erb │ │ │ └── auth │ │ │ ├── account.erb │ │ │ └── login.erb │ ├── events.rb │ ├── scripts │ │ ├── meterpreter.rb │ │ └── meterpreter │ │ │ ├── accounts.rb │ │ │ ├── common.rb │ │ │ ├── file.rb │ │ │ ├── registry.rb │ │ │ └── services.rb │ ├── ui.rb │ ├── ui │ │ ├── banner.rb │ │ ├── common.rb │ │ ├── console.rb │ │ ├── console │ │ │ ├── command_dispatcher.rb │ │ │ ├── command_dispatcher │ │ │ │ ├── auxiliary.rb │ │ │ │ ├── common.rb │ │ │ │ ├── core.rb │ │ │ │ ├── creds.rb │ │ │ │ ├── db.rb │ │ │ │ ├── db │ │ │ │ │ └── analyze.rb │ │ │ │ ├── developer.rb │ │ │ │ ├── encoder.rb │ │ │ │ ├── evasion.rb │ │ │ │ ├── exploit.rb │ │ │ │ ├── jobs.rb │ │ │ │ ├── modules.rb │ │ │ │ ├── nop.rb │ │ │ │ ├── payload.rb │ │ │ │ ├── post.rb │ │ │ │ └── resource.rb │ │ │ ├── driver.rb │ │ │ ├── framework_event_manager.rb │ │ │ ├── module_command_dispatcher.rb │ │ │ └── table.rb │ │ ├── driver.rb │ │ ├── web.rb │ │ └── web │ │ │ ├── comm.rb │ │ │ ├── console.rb │ │ │ └── driver.rb │ ├── util.rb │ ├── util │ │ ├── db_manager.rb │ │ ├── document_generator.rb │ │ ├── document_generator │ │ │ ├── normalizer.rb │ │ │ └── pull_request_finder.rb │ │ ├── exe.rb │ │ ├── helper.rb │ │ ├── host.rb │ │ ├── java_deserialization.rb │ │ ├── payload_cached_size.rb │ │ └── service_helper.rb │ └── windows_error.rb ├── msfenv.rb ├── net │ ├── dns.rb │ ├── dns │ │ ├── README │ │ ├── dns.rb │ │ ├── header.rb │ │ ├── names │ │ │ └── names.rb │ │ ├── packet.rb │ │ ├── question.rb │ │ ├── resolver.rb │ │ ├── resolver │ │ │ ├── socks.rb │ │ │ └── timeouts.rb │ │ ├── rr.rb │ │ └── rr │ │ │ ├── a.rb │ │ │ ├── aaaa.rb │ │ │ ├── classes.rb │ │ │ ├── cname.rb │ │ │ ├── hinfo.rb │ │ │ ├── mr.rb │ │ │ ├── mx.rb │ │ │ ├── ns.rb │ │ │ ├── null.rb │ │ │ ├── ptr.rb │ │ │ ├── soa.rb │ │ │ ├── srv.rb │ │ │ ├── txt.rb │ │ │ └── types.rb │ └── ssh │ │ ├── command_stream.rb │ │ └── pubkey_verifier.rb ├── pg │ └── deprecated_constants.rb ├── postgres │ ├── binary_reader.rb │ ├── binary_writer.rb │ ├── buffer.rb │ ├── byteorder.rb │ └── postgres-pr │ │ ├── connection.rb │ │ ├── message.rb │ │ ├── postgres-compat.rb │ │ ├── typeconv │ │ ├── array.rb │ │ ├── bytea.rb │ │ └── conv.rb │ │ └── version.rb ├── postgres_msf.rb ├── rabal │ └── tree.rb ├── rbmysql.rb ├── rbmysql │ ├── README │ ├── charset.rb │ ├── compat.rb │ ├── constants.rb │ ├── error.rb │ └── protocol.rb ├── rex.rb ├── rex │ ├── LICENSE │ ├── crypto │ │ ├── aes256.rb │ │ └── rc4.rb │ ├── exceptions.rb │ ├── google │ │ └── geolocation.rb │ ├── io │ │ └── gram_server.rb │ ├── job.rb │ ├── job_container.rb │ ├── json_hash_file.rb │ ├── logging.rb │ ├── logging │ │ ├── log_dispatcher.rb │ │ ├── log_sink.rb │ │ └── sinks │ │ │ ├── flatfile.rb │ │ │ ├── stderr.rb │ │ │ └── timestamp_flatfile.rb │ ├── mac_oui.rb │ ├── parser │ │ ├── acunetix_nokogiri.rb │ │ ├── apple_backup_manifestdb.rb │ │ ├── appscan_nokogiri.rb │ │ ├── arguments.rb │ │ ├── burp_issue_nokogiri.rb │ │ ├── burp_session_nokogiri.rb │ │ ├── ci_nokogiri.rb │ │ ├── foundstone_nokogiri.rb │ │ ├── fs │ │ │ ├── bitlocker.rb │ │ │ └── ntfs.rb │ │ ├── fusionvm_nokogiri.rb │ │ ├── group_policy_preferences.rb │ │ ├── ini.rb │ │ ├── ip360_aspl_xml.rb │ │ ├── ip360_xml.rb │ │ ├── mbsa_nokogiri.rb │ │ ├── nessus_xml.rb │ │ ├── netsparker_xml.rb │ │ ├── nexpose_raw_nokogiri.rb │ │ ├── nexpose_simple_nokogiri.rb │ │ ├── nexpose_xml.rb │ │ ├── nmap_nokogiri.rb │ │ ├── nmap_xml.rb │ │ ├── nokogiri_doc_mixin.rb │ │ ├── openvas_nokogiri.rb │ │ ├── outpost24_nokogiri.rb │ │ ├── retina_xml.rb │ │ ├── unattend.rb │ │ ├── wapiti_nokogiri.rb │ │ └── winscp.rb │ ├── payloads.rb │ ├── payloads │ │ ├── meterpreter │ │ │ ├── config.rb │ │ │ └── uri_checksum.rb │ │ ├── win32.rb │ │ └── win32 │ │ │ ├── common.rb │ │ │ ├── kernel.rb │ │ │ └── kernel │ │ │ ├── common.rb │ │ │ ├── migration.rb │ │ │ ├── recovery.rb │ │ │ └── stager.rb │ ├── post.rb │ ├── post │ │ ├── dir.rb │ │ ├── file.rb │ │ ├── file_stat.rb │ │ ├── hwbridge.rb │ │ ├── hwbridge │ │ │ ├── client.rb │ │ │ ├── extension.rb │ │ │ ├── extensions │ │ │ │ ├── automotive │ │ │ │ │ ├── automotive.rb │ │ │ │ │ └── uds_errors.rb │ │ │ │ ├── custom_methods │ │ │ │ │ └── custom_methods.rb │ │ │ │ ├── rftransceiver │ │ │ │ │ └── rftransceiver.rb │ │ │ │ └── zigbee │ │ │ │ │ └── zigbee.rb │ │ │ ├── object_aliases.rb │ │ │ └── ui │ │ │ │ ├── console.rb │ │ │ │ └── console │ │ │ │ ├── command_dispatcher.rb │ │ │ │ ├── command_dispatcher │ │ │ │ ├── automotive.rb │ │ │ │ ├── core.rb │ │ │ │ ├── custom_methods.rb │ │ │ │ ├── rftransceiver.rb │ │ │ │ └── zigbee.rb │ │ │ │ └── interactive_channel.rb │ │ ├── io.rb │ │ ├── meterpreter.rb │ │ ├── meterpreter │ │ │ ├── channel.rb │ │ │ ├── channel_container.rb │ │ │ ├── channels │ │ │ │ ├── datagram.rb │ │ │ │ ├── pool.rb │ │ │ │ ├── pools │ │ │ │ │ ├── file.rb │ │ │ │ │ └── stream_pool.rb │ │ │ │ ├── socket_abstraction.rb │ │ │ │ ├── stream.rb │ │ │ │ └── streams │ │ │ │ │ └── .cvskeep │ │ │ ├── client.rb │ │ │ ├── client_core.rb │ │ │ ├── dependencies.rb │ │ │ ├── extension.rb │ │ │ ├── extensions │ │ │ │ ├── android │ │ │ │ │ ├── android.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── appapi │ │ │ │ │ ├── appapi.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── espia │ │ │ │ │ ├── espia.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── extapi │ │ │ │ │ ├── adsi │ │ │ │ │ │ └── adsi.rb │ │ │ │ │ ├── clipboard │ │ │ │ │ │ └── clipboard.rb │ │ │ │ │ ├── extapi.rb │ │ │ │ │ ├── ntds │ │ │ │ │ │ └── ntds.rb │ │ │ │ │ ├── pageant │ │ │ │ │ │ └── pageant.rb │ │ │ │ │ ├── service │ │ │ │ │ │ └── service.rb │ │ │ │ │ ├── tlv.rb │ │ │ │ │ ├── window │ │ │ │ │ │ └── window.rb │ │ │ │ │ └── wmi │ │ │ │ │ │ └── wmi.rb │ │ │ │ ├── incognito │ │ │ │ │ ├── incognito.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── kiwi │ │ │ │ │ ├── kiwi.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── lanattacks │ │ │ │ │ ├── dhcp │ │ │ │ │ │ └── dhcp.rb │ │ │ │ │ ├── lanattacks.rb │ │ │ │ │ ├── tftp │ │ │ │ │ │ └── tftp.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── mimikatz │ │ │ │ │ ├── mimikatz.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── networkpug │ │ │ │ │ ├── networkpug.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── peinjector │ │ │ │ │ ├── peinjector.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── powershell │ │ │ │ │ ├── powershell.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── priv │ │ │ │ │ ├── fs.rb │ │ │ │ │ ├── passwd.rb │ │ │ │ │ ├── priv.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── python │ │ │ │ │ ├── python.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── sniffer │ │ │ │ │ ├── sniffer.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── stdapi │ │ │ │ │ ├── audio_output │ │ │ │ │ │ └── audio_output.rb │ │ │ │ │ ├── constants.rb │ │ │ │ │ ├── fs │ │ │ │ │ │ ├── dir.rb │ │ │ │ │ │ ├── file.rb │ │ │ │ │ │ ├── file_stat.rb │ │ │ │ │ │ ├── io.rb │ │ │ │ │ │ └── mount.rb │ │ │ │ │ ├── mic │ │ │ │ │ │ └── mic.rb │ │ │ │ │ ├── net │ │ │ │ │ │ ├── arp.rb │ │ │ │ │ │ ├── config.rb │ │ │ │ │ │ ├── interface.rb │ │ │ │ │ │ ├── netstat.rb │ │ │ │ │ │ ├── resolve.rb │ │ │ │ │ │ ├── route.rb │ │ │ │ │ │ ├── socket.rb │ │ │ │ │ │ └── socket_subsystem │ │ │ │ │ │ │ ├── tcp_client_channel.rb │ │ │ │ │ │ │ ├── tcp_server_channel.rb │ │ │ │ │ │ │ └── udp_channel.rb │ │ │ │ │ ├── railgun │ │ │ │ │ │ ├── buffer_item.rb │ │ │ │ │ │ ├── const_manager.rb │ │ │ │ │ │ ├── def │ │ │ │ │ │ │ ├── linux │ │ │ │ │ │ │ │ ├── api_constants.rb │ │ │ │ │ │ │ │ └── def_libc.rb │ │ │ │ │ │ │ ├── osx │ │ │ │ │ │ │ │ ├── api_constants.rb │ │ │ │ │ │ │ │ ├── def_libc.rb │ │ │ │ │ │ │ │ └── def_libobjc.rb │ │ │ │ │ │ │ └── windows │ │ │ │ │ │ │ │ ├── api_constants.rb │ │ │ │ │ │ │ │ ├── def_advapi32.rb │ │ │ │ │ │ │ │ ├── def_crypt32.rb │ │ │ │ │ │ │ │ ├── def_iphlpapi.rb │ │ │ │ │ │ │ │ ├── def_kernel32.rb │ │ │ │ │ │ │ │ ├── def_netapi32.rb │ │ │ │ │ │ │ │ ├── def_ntdll.rb │ │ │ │ │ │ │ │ ├── def_psapi.rb │ │ │ │ │ │ │ │ ├── def_shell32.rb │ │ │ │ │ │ │ │ ├── def_user32.rb │ │ │ │ │ │ │ │ ├── def_version.rb │ │ │ │ │ │ │ │ ├── def_wlanapi.rb │ │ │ │ │ │ │ │ ├── def_wldap32.rb │ │ │ │ │ │ │ │ └── def_ws2_32.rb │ │ │ │ │ │ ├── library.rb │ │ │ │ │ │ ├── library_function.rb │ │ │ │ │ │ ├── library_helper.rb │ │ │ │ │ │ ├── library_wrapper.rb │ │ │ │ │ │ ├── multicall.rb │ │ │ │ │ │ ├── platform_util.rb │ │ │ │ │ │ ├── railgun.rb │ │ │ │ │ │ ├── tlv.rb │ │ │ │ │ │ ├── type │ │ │ │ │ │ │ └── pointer_util.rb │ │ │ │ │ │ └── util.rb │ │ │ │ │ ├── stdapi.rb │ │ │ │ │ ├── sys │ │ │ │ │ │ ├── config.rb │ │ │ │ │ │ ├── event_log.rb │ │ │ │ │ │ ├── event_log_subsystem │ │ │ │ │ │ │ └── event_record.rb │ │ │ │ │ │ ├── power.rb │ │ │ │ │ │ ├── process.rb │ │ │ │ │ │ ├── process_subsystem │ │ │ │ │ │ │ ├── image.rb │ │ │ │ │ │ │ ├── io.rb │ │ │ │ │ │ │ ├── memory.rb │ │ │ │ │ │ │ └── thread.rb │ │ │ │ │ │ ├── registry.rb │ │ │ │ │ │ ├── registry_subsystem │ │ │ │ │ │ │ ├── registry_key.rb │ │ │ │ │ │ │ ├── registry_value.rb │ │ │ │ │ │ │ └── remote_registry_key.rb │ │ │ │ │ │ └── thread.rb │ │ │ │ │ ├── tlv.rb │ │ │ │ │ ├── ui.rb │ │ │ │ │ └── webcam │ │ │ │ │ │ └── webcam.rb │ │ │ │ ├── unhook │ │ │ │ │ ├── tlv.rb │ │ │ │ │ └── unhook.rb │ │ │ │ └── winpmem │ │ │ │ │ ├── tlv.rb │ │ │ │ │ └── winpmem.rb │ │ │ ├── inbound_packet_handler.rb │ │ │ ├── object_aliases.rb │ │ │ ├── packet.rb │ │ │ ├── packet_dispatcher.rb │ │ │ ├── packet_parser.rb │ │ │ ├── packet_response_waiter.rb │ │ │ ├── pivot.rb │ │ │ ├── pivot_container.rb │ │ │ └── ui │ │ │ │ ├── console.rb │ │ │ │ └── console │ │ │ │ ├── command_dispatcher.rb │ │ │ │ ├── command_dispatcher │ │ │ │ ├── android.rb │ │ │ │ ├── appapi.rb │ │ │ │ ├── core.rb │ │ │ │ ├── espia.rb │ │ │ │ ├── extapi.rb │ │ │ │ ├── extapi │ │ │ │ │ ├── adsi.rb │ │ │ │ │ ├── clipboard.rb │ │ │ │ │ ├── service.rb │ │ │ │ │ ├── window.rb │ │ │ │ │ └── wmi.rb │ │ │ │ ├── incognito.rb │ │ │ │ ├── kiwi.rb │ │ │ │ ├── lanattacks.rb │ │ │ │ ├── lanattacks │ │ │ │ │ ├── dhcp.rb │ │ │ │ │ └── tftp.rb │ │ │ │ ├── mimikatz.rb │ │ │ │ ├── networkpug.rb │ │ │ │ ├── peinjector.rb │ │ │ │ ├── powershell.rb │ │ │ │ ├── priv.rb │ │ │ │ ├── priv │ │ │ │ │ ├── elevate.rb │ │ │ │ │ ├── passwd.rb │ │ │ │ │ └── timestomp.rb │ │ │ │ ├── python.rb │ │ │ │ ├── sniffer.rb │ │ │ │ ├── stdapi.rb │ │ │ │ ├── stdapi │ │ │ │ │ ├── audio_output.rb │ │ │ │ │ ├── fs.rb │ │ │ │ │ ├── mic.rb │ │ │ │ │ ├── net.rb │ │ │ │ │ ├── sys.rb │ │ │ │ │ ├── ui.rb │ │ │ │ │ └── webcam.rb │ │ │ │ ├── unhook.rb │ │ │ │ └── winpmem.rb │ │ │ │ └── interactive_channel.rb │ │ ├── permission.rb │ │ ├── process.rb │ │ ├── thread.rb │ │ └── ui.rb │ ├── proto.rb │ ├── proto │ │ ├── acpp.rb │ │ ├── acpp │ │ │ ├── client.rb │ │ │ └── message.rb │ │ ├── adb.rb │ │ ├── adb │ │ │ ├── client.rb │ │ │ └── message.rb │ │ ├── addp.rb │ │ ├── dcerpc.rb │ │ ├── dcerpc │ │ │ ├── client.rb │ │ │ ├── exceptions.rb │ │ │ ├── handle.rb │ │ │ ├── ndr.rb │ │ │ ├── packet.rb │ │ │ ├── response.rb │ │ │ ├── svcctl.rb │ │ │ ├── svcctl │ │ │ │ └── packet.rb │ │ │ ├── uuid.rb │ │ │ ├── wdscp.rb │ │ │ └── wdscp │ │ │ │ ├── constants.rb │ │ │ │ └── packet.rb │ │ ├── dhcp.rb │ │ ├── dhcp │ │ │ ├── constants.rb │ │ │ └── server.rb │ │ ├── dns.rb │ │ ├── dns │ │ │ ├── packet.rb │ │ │ ├── resolver.rb │ │ │ └── server.rb │ │ ├── drda.rb │ │ ├── drda │ │ │ ├── constants.rb │ │ │ ├── packet.rb │ │ │ └── utils.rb │ │ ├── ftp.rb │ │ ├── ftp │ │ │ └── client.rb │ │ ├── http.rb │ │ ├── http │ │ │ ├── client.rb │ │ │ ├── client_request.rb │ │ │ ├── handler.rb │ │ │ ├── handler │ │ │ │ ├── erb.rb │ │ │ │ └── proc.rb │ │ │ ├── packet.rb │ │ │ ├── packet │ │ │ │ └── header.rb │ │ │ ├── request.rb │ │ │ ├── response.rb │ │ │ └── server.rb │ │ ├── iax2.rb │ │ ├── iax2 │ │ │ ├── call.rb │ │ │ ├── client.rb │ │ │ ├── codecs.rb │ │ │ ├── codecs │ │ │ │ ├── alaw.rb │ │ │ │ ├── g711.rb │ │ │ │ └── mulaw.rb │ │ │ └── constants.rb │ │ ├── ipmi.rb │ │ ├── ipmi │ │ │ ├── channel_auth_reply.rb │ │ │ ├── open_session_reply.rb │ │ │ ├── rakp2.rb │ │ │ └── utils.rb │ │ ├── kademlia.rb │ │ ├── kademlia │ │ │ ├── bootstrap_request.rb │ │ │ ├── bootstrap_response.rb │ │ │ ├── message.rb │ │ │ ├── ping.rb │ │ │ ├── pong.rb │ │ │ └── util.rb │ │ ├── kerberos.rb │ │ ├── kerberos │ │ │ ├── client.rb │ │ │ ├── credential_cache.rb │ │ │ ├── credential_cache │ │ │ │ ├── cache.rb │ │ │ │ ├── credential.rb │ │ │ │ ├── element.rb │ │ │ │ ├── key_block.rb │ │ │ │ ├── principal.rb │ │ │ │ └── time.rb │ │ │ ├── crypto.rb │ │ │ ├── crypto │ │ │ │ ├── rc4_hmac.rb │ │ │ │ └── rsa_md5.rb │ │ │ ├── model.rb │ │ │ ├── model │ │ │ │ ├── ap_req.rb │ │ │ │ ├── authenticator.rb │ │ │ │ ├── authorization_data.rb │ │ │ │ ├── checksum.rb │ │ │ │ ├── element.rb │ │ │ │ ├── enc_kdc_response.rb │ │ │ │ ├── encrypted_data.rb │ │ │ │ ├── encryption_key.rb │ │ │ │ ├── kdc_request.rb │ │ │ │ ├── kdc_request_body.rb │ │ │ │ ├── kdc_response.rb │ │ │ │ ├── krb_error.rb │ │ │ │ ├── last_request.rb │ │ │ │ ├── pre_auth_data.rb │ │ │ │ ├── pre_auth_enc_time_stamp.rb │ │ │ │ ├── pre_auth_pac_request.rb │ │ │ │ ├── principal_name.rb │ │ │ │ └── ticket.rb │ │ │ ├── pac.rb │ │ │ └── pac │ │ │ │ ├── client_info.rb │ │ │ │ ├── element.rb │ │ │ │ ├── logon_info.rb │ │ │ │ ├── priv_svr_checksum.rb │ │ │ │ ├── server_checksum.rb │ │ │ │ └── type.rb │ │ ├── mms.rb │ │ ├── mms │ │ │ ├── client.rb │ │ │ ├── exception.rb │ │ │ ├── model.rb │ │ │ └── model │ │ │ │ ├── message.rb │ │ │ │ └── smtp.rb │ │ ├── mqtt.rb │ │ ├── mqtt │ │ │ └── client.rb │ │ ├── natpmp.rb │ │ ├── natpmp │ │ │ ├── constants.rb │ │ │ └── packet.rb │ │ ├── ntlm.rb │ │ ├── ntlm │ │ │ ├── base.rb │ │ │ ├── constants.rb │ │ │ ├── crypt.rb │ │ │ ├── exceptions.rb │ │ │ ├── message.rb │ │ │ └── utils.rb │ │ ├── ntp.rb │ │ ├── ntp │ │ │ ├── constants.rb │ │ │ └── modes.rb │ │ ├── pjl.rb │ │ ├── pjl │ │ │ └── client.rb │ │ ├── proxy │ │ │ ├── socks4a.rb │ │ │ ├── socks5.rb │ │ │ └── socks5 │ │ │ │ ├── packet.rb │ │ │ │ ├── server.rb │ │ │ │ └── server_client.rb │ │ ├── quake.rb │ │ ├── quake │ │ │ └── message.rb │ │ ├── rfb.rb │ │ ├── rfb │ │ │ ├── cipher.rb │ │ │ ├── client.rb │ │ │ └── constants.rb │ │ ├── rmi.rb │ │ ├── rmi │ │ │ ├── decode_error.rb │ │ │ ├── exception.rb │ │ │ ├── model.rb │ │ │ └── model │ │ │ │ ├── call.rb │ │ │ │ ├── call_data.rb │ │ │ │ ├── continuation.rb │ │ │ │ ├── dgc_ack.rb │ │ │ │ ├── element.rb │ │ │ │ ├── output_header.rb │ │ │ │ ├── ping.rb │ │ │ │ ├── ping_ack.rb │ │ │ │ ├── protocol_ack.rb │ │ │ │ ├── return_data.rb │ │ │ │ ├── return_value.rb │ │ │ │ └── unique_identifier.rb │ │ ├── sip.rb │ │ ├── sip │ │ │ └── response.rb │ │ ├── smb.rb │ │ ├── smb │ │ │ ├── client.rb │ │ │ ├── constants.rb │ │ │ ├── crypt.rb │ │ │ ├── evasions.rb │ │ │ ├── exceptions.rb │ │ │ ├── simpleclient.rb │ │ │ ├── simpleclient │ │ │ │ ├── open_file.rb │ │ │ │ └── open_pipe.rb │ │ │ └── utils.rb │ │ ├── sms.rb │ │ ├── sms │ │ │ ├── client.rb │ │ │ ├── exception.rb │ │ │ ├── model.rb │ │ │ └── model │ │ │ │ ├── message.rb │ │ │ │ └── smtp.rb │ │ ├── steam.rb │ │ ├── steam │ │ │ └── message.rb │ │ ├── sunrpc.rb │ │ ├── sunrpc │ │ │ └── client.rb │ │ ├── tftp.rb │ │ └── tftp │ │ │ ├── client.rb │ │ │ ├── constants.rb │ │ │ └── server.rb │ ├── script.rb │ ├── script │ │ ├── base.rb │ │ ├── meterpreter.rb │ │ └── shell.rb │ ├── service.rb │ ├── service_manager.rb │ ├── services │ │ └── local_relay.rb │ ├── tar.rb │ ├── thread_factory.rb │ ├── time.rb │ ├── transformer.rb │ ├── ui.rb │ ├── ui │ │ ├── interactive.rb │ │ ├── output.rb │ │ ├── output │ │ │ └── none.rb │ │ ├── subscriber.rb │ │ └── text │ │ │ ├── bidirectional_pipe.rb │ │ │ ├── dispatcher_shell.rb │ │ │ ├── input.rb │ │ │ ├── input │ │ │ ├── buffer.rb │ │ │ ├── readline.rb │ │ │ ├── socket.rb │ │ │ └── stdio.rb │ │ │ ├── irb_shell.rb │ │ │ ├── output.rb │ │ │ ├── output │ │ │ ├── buffer.rb │ │ │ ├── buffer │ │ │ │ └── stdout.rb │ │ │ ├── file.rb │ │ │ ├── socket.rb │ │ │ ├── stdio.rb │ │ │ └── tee.rb │ │ │ ├── resource.rb │ │ │ └── shell.rb │ └── user_agent.rb ├── robots.rb ├── snmp.rb ├── snmp │ ├── agent.rb │ ├── ber.rb │ ├── manager.rb │ ├── mib.rb │ ├── pdu.rb │ └── varbind.rb ├── sqlmap │ ├── sqlmap_manager.rb │ └── sqlmap_session.rb ├── tasks │ └── databases.rake ├── telephony.rb ├── telephony │ └── modem.rb └── windows_console_color_support.rb ├── metasploit-framework.gemspec ├── modules ├── auxiliary │ ├── admin │ │ ├── 2wire │ │ │ └── xslt_password_reset.rb │ │ ├── android │ │ │ └── google_play_store_uxss_xframe_rce.rb │ │ ├── appletv │ │ │ ├── appletv_display_image.rb │ │ │ └── appletv_display_video.rb │ │ ├── atg │ │ │ └── atg_client.rb │ │ ├── aws │ │ │ └── aws_launch_instances.rb │ │ ├── backupexec │ │ │ ├── dump.rb │ │ │ └── registry.rb │ │ ├── chromecast │ │ │ ├── chromecast_reset.rb │ │ │ └── chromecast_youtube.rb │ │ ├── cisco │ │ │ ├── cisco_asa_extrabacon.rb │ │ │ ├── cisco_secure_acs_bypass.rb │ │ │ └── vpn_3000_ftp_bypass.rb │ │ ├── db2 │ │ │ └── db2rcmd.rb │ │ ├── dns │ │ │ └── dyn_dns_update.rb │ │ ├── edirectory │ │ │ ├── edirectory_dhost_cookie.rb │ │ │ └── edirectory_edirutil.rb │ │ ├── emc │ │ │ ├── alphastor_devicemanager_exec.rb │ │ │ └── alphastor_librarymanager_exec.rb │ │ ├── firetv │ │ │ └── firetv_youtube.rb │ │ ├── hp │ │ │ ├── hp_data_protector_cmd.rb │ │ │ ├── hp_ilo_create_admin_account.rb │ │ │ └── hp_imc_som_create_account.rb │ │ ├── http │ │ │ ├── allegro_rompager_auth_bypass.rb │ │ │ ├── arris_motorola_surfboard_backdoor_xss.rb │ │ │ ├── axigen_file_access.rb │ │ │ ├── cfme_manageiq_evm_pass_reset.rb │ │ │ ├── cnpilot_r_cmd_exec.rb │ │ │ ├── cnpilot_r_fpt.rb │ │ │ ├── contentkeeper_fileaccess.rb │ │ │ ├── dlink_dir_300_600_exec_noauth.rb │ │ │ ├── dlink_dir_645_password_extractor.rb │ │ │ ├── dlink_dsl320b_password_extractor.rb │ │ │ ├── foreman_openstack_satellite_priv_esc.rb │ │ │ ├── gitstack_rest.rb │ │ │ ├── hp_web_jetadmin_exec.rb │ │ │ ├── iis_auth_bypass.rb │ │ │ ├── intersil_pass_reset.rb │ │ │ ├── iomega_storcenterpro_sessionid.rb │ │ │ ├── jboss_bshdeployer.rb │ │ │ ├── jboss_deploymentfilerepository.rb │ │ │ ├── jboss_seam_exec.rb │ │ │ ├── joomla_registration_privesc.rb │ │ │ ├── kaseya_master_admin.rb │ │ │ ├── katello_satellite_priv_esc.rb │ │ │ ├── limesurvey_file_download.rb │ │ │ ├── linksys_e1500_e2500_exec.rb │ │ │ ├── linksys_tmunblock_admin_reset_bof.rb │ │ │ ├── linksys_wrt54gl_exec.rb │ │ │ ├── manage_engine_dc_create_admin.rb │ │ │ ├── manageengine_dir_listing.rb │ │ │ ├── manageengine_file_download.rb │ │ │ ├── manageengine_pmp_privesc.rb │ │ │ ├── mantisbt_password_reset.rb │ │ │ ├── mutiny_frontend_read_delete.rb │ │ │ ├── netflow_file_download.rb │ │ │ ├── netgear_auth_download.rb │ │ │ ├── netgear_soap_password_extractor.rb │ │ │ ├── netgear_wnr2000_pass_recovery.rb │ │ │ ├── nexpose_xxe_file_read.rb │ │ │ ├── novell_file_reporter_filedelete.rb │ │ │ ├── nuuo_nvrmini_reset.rb │ │ │ ├── openbravo_xxe.rb │ │ │ ├── pfadmin_set_protected_alias.rb │ │ │ ├── rails_devise_pass_reset.rb │ │ │ ├── scadabr_credential_dump.rb │ │ │ ├── scrutinizer_add_user.rb │ │ │ ├── sophos_wpa_traversal.rb │ │ │ ├── sysaid_admin_acct.rb │ │ │ ├── sysaid_file_download.rb │ │ │ ├── sysaid_sql_creds.rb │ │ │ ├── telpho10_credential_dump.rb │ │ │ ├── tomcat_administration.rb │ │ │ ├── tomcat_utf8_traversal.rb │ │ │ ├── trendmicro_dlp_traversal.rb │ │ │ ├── typo3_news_module_sqli.rb │ │ │ ├── typo3_sa_2009_001.rb │ │ │ ├── typo3_sa_2009_002.rb │ │ │ ├── typo3_sa_2010_020.rb │ │ │ ├── typo3_winstaller_default_enc_keys.rb │ │ │ ├── ulterius_file_download.rb │ │ │ ├── vbulletin_upgrade_admin.rb │ │ │ ├── webnms_cred_disclosure.rb │ │ │ ├── webnms_file_download.rb │ │ │ ├── wp_custom_contact_forms.rb │ │ │ ├── wp_easycart_privilege_escalation.rb │ │ │ ├── wp_gdpr_compliance_privesc.rb │ │ │ ├── wp_google_maps_sqli.rb │ │ │ ├── wp_symposium_sql_injection.rb │ │ │ ├── wp_wplms_privilege_escalation.rb │ │ │ └── zyxel_admin_password_extractor.rb │ │ ├── kerberos │ │ │ └── ms14_068_kerberos_checksum.rb │ │ ├── maxdb │ │ │ └── maxdb_cons_exec.rb │ │ ├── misc │ │ │ ├── sercomm_dump_config.rb │ │ │ └── wol.rb │ │ ├── motorola │ │ │ └── wr850g_cred.rb │ │ ├── ms │ │ │ └── ms08_059_his2006.rb │ │ ├── mssql │ │ │ ├── mssql_enum.rb │ │ │ ├── mssql_enum_domain_accounts.rb │ │ │ ├── mssql_enum_domain_accounts_sqli.rb │ │ │ ├── mssql_enum_sql_logins.rb │ │ │ ├── mssql_escalate_dbowner.rb │ │ │ ├── mssql_escalate_dbowner_sqli.rb │ │ │ ├── mssql_escalate_execute_as.rb │ │ │ ├── mssql_escalate_execute_as_sqli.rb │ │ │ ├── mssql_exec.rb │ │ │ ├── mssql_findandsampledata.rb │ │ │ ├── mssql_idf.rb │ │ │ ├── mssql_ntlm_stealer.rb │ │ │ ├── mssql_ntlm_stealer_sqli.rb │ │ │ ├── mssql_sql.rb │ │ │ └── mssql_sql_file.rb │ │ ├── mysql │ │ │ ├── mysql_enum.rb │ │ │ └── mysql_sql.rb │ │ ├── natpmp │ │ │ └── natpmp_map.rb │ │ ├── netbios │ │ │ └── netbios_spoof.rb │ │ ├── officescan │ │ │ └── tmlisten_traversal.rb │ │ ├── oracle │ │ │ ├── ora_ntlm_stealer.rb │ │ │ ├── oracle_index_privesc.rb │ │ │ ├── oracle_login.rb │ │ │ ├── oracle_sql.rb │ │ │ ├── oraenum.rb │ │ │ ├── osb_execqr.rb │ │ │ ├── osb_execqr2.rb │ │ │ ├── osb_execqr3.rb │ │ │ ├── post_exploitation │ │ │ │ ├── win32exec.rb │ │ │ │ └── win32upload.rb │ │ │ ├── sid_brute.rb │ │ │ └── tnscmd.rb │ │ ├── pop2 │ │ │ └── uw_fileretrieval.rb │ │ ├── postgres │ │ │ ├── postgres_readfile.rb │ │ │ └── postgres_sql.rb │ │ ├── sap │ │ │ ├── sap_configservlet_exec_noauth.rb │ │ │ └── sap_mgmt_con_osexec.rb │ │ ├── scada │ │ │ ├── advantech_webaccess_dbvisitor_sqli.rb │ │ │ ├── ge_proficy_substitute_traversal.rb │ │ │ ├── modicon_command.rb │ │ │ ├── modicon_password_recovery.rb │ │ │ ├── modicon_stux_transfer.rb │ │ │ ├── moxa_credentials_recovery.rb │ │ │ ├── multi_cip_command.rb │ │ │ ├── pcom_command.rb │ │ │ ├── phoenix_command.rb │ │ │ └── yokogawa_bkbcopyd_client.rb │ │ ├── serverprotect │ │ │ └── file.rb │ │ ├── smb │ │ │ ├── check_dir_file.rb │ │ │ ├── delete_file.rb │ │ │ ├── download_file.rb │ │ │ ├── list_directory.rb │ │ │ ├── ms17_010_command.rb │ │ │ ├── psexec_command.rb │ │ │ ├── psexec_ntdsgrab.rb │ │ │ ├── samba_symlink_traversal.rb │ │ │ ├── upload_file.rb │ │ │ └── webexec_command.rb │ │ ├── sunrpc │ │ │ └── solaris_kcms_readfile.rb │ │ ├── teradata │ │ │ └── teradata_odbc_sql.py │ │ ├── tftp │ │ │ └── tftp_transfer_util.rb │ │ ├── tikiwiki │ │ │ └── tikidblib.rb │ │ ├── upnp │ │ │ └── soap_portmapping.rb │ │ ├── vmware │ │ │ ├── poweroff_vm.rb │ │ │ ├── poweron_vm.rb │ │ │ ├── tag_vm.rb │ │ │ └── terminate_esx_sessions.rb │ │ ├── vnc │ │ │ └── realvnc_41_bypass.rb │ │ ├── vxworks │ │ │ ├── apple_airport_extreme_password.rb │ │ │ ├── dlink_i2eye_autoanswer.rb │ │ │ ├── wdbrpc_memory_dump.rb │ │ │ └── wdbrpc_reboot.rb │ │ ├── webmin │ │ │ ├── edit_html_fileaccess.rb │ │ │ └── file_disclosure.rb │ │ ├── wemo │ │ │ └── crockpot.rb │ │ └── zend │ │ │ └── java_bridge.rb │ ├── analyze │ │ ├── apply_pot.rb │ │ ├── jtr_aix.rb │ │ ├── jtr_linux.rb │ │ ├── jtr_mssql_fast.rb │ │ ├── jtr_mysql_fast.rb │ │ ├── jtr_oracle_fast.rb │ │ ├── jtr_postgres_fast.rb │ │ └── jtr_windows_fast.rb │ ├── bnat │ │ ├── bnat_router.rb │ │ └── bnat_scan.rb │ ├── client │ │ ├── hwbridge │ │ │ └── connect.rb │ │ ├── iec104 │ │ │ └── iec104.rb │ │ ├── mms │ │ │ └── send_mms.rb │ │ ├── sms │ │ │ └── send_text.rb │ │ └── smtp │ │ │ └── emailer.rb │ ├── crawler │ │ └── msfcrawler.rb │ ├── docx │ │ └── word_unc_injector.rb │ ├── dos │ │ ├── android │ │ │ └── android_stock_browser_iframe.rb │ │ ├── apple_ios │ │ │ └── webkit_backdrop_filter_blur.rb │ │ ├── cisco │ │ │ ├── ios_http_percentpercent.rb │ │ │ └── ios_telnet_rocem.rb │ │ ├── dhcp │ │ │ └── isc_dhcpd_clientid.rb │ │ ├── dns │ │ │ ├── bind_tkey.rb │ │ │ └── bind_tsig.rb │ │ ├── freebsd │ │ │ └── nfsd │ │ │ │ └── nfsd_mount.rb │ │ ├── hp │ │ │ └── data_protector_rds.rb │ │ ├── http │ │ │ ├── 3com_superstack_switch.rb │ │ │ ├── apache_commons_fileupload_dos.rb │ │ │ ├── apache_mod_isapi.rb │ │ │ ├── apache_range_dos.rb │ │ │ ├── apache_tomcat_transfer_encoding.rb │ │ │ ├── brother_debut_dos.rb │ │ │ ├── canon_wireless_printer.rb │ │ │ ├── dell_openmanage_post.rb │ │ │ ├── f5_bigip_apm_max_sessions.rb │ │ │ ├── flexense_http_server_dos.rb │ │ │ ├── gzip_bomb_dos.rb │ │ │ ├── hashcollision_dos.rb │ │ │ ├── ibm_lotus_notes.rb │ │ │ ├── ibm_lotus_notes2.rb │ │ │ ├── marked_redos.rb │ │ │ ├── monkey_headers.rb │ │ │ ├── ms15_034_ulonglongadd.rb │ │ │ ├── nodejs_pipelining.rb │ │ │ ├── novell_file_reporter_heap_bof.rb │ │ │ ├── rails_action_view.rb │ │ │ ├── rails_json_float_dos.rb │ │ │ ├── slowloris.py │ │ │ ├── sonicwall_ssl_format.rb │ │ │ ├── ua_parser_js_redos.rb │ │ │ ├── webkitplus.rb │ │ │ ├── webrick_regex.rb │ │ │ ├── wordpress_directory_traversal_dos.rb │ │ │ ├── wordpress_long_password_dos.rb │ │ │ ├── wordpress_xmlrpc_dos.rb │ │ │ └── ws_dos.rb │ │ ├── mdns │ │ │ └── avahi_portzero.rb │ │ ├── misc │ │ │ ├── dopewars.rb │ │ │ ├── ibm_sametime_webplayer_dos.rb │ │ │ ├── ibm_tsm_dos.rb │ │ │ └── memcached.rb │ │ ├── ntp │ │ │ └── ntpd_reserved_dos.rb │ │ ├── pptp │ │ │ └── ms02_063_pptp_dos.rb │ │ ├── rpc │ │ │ └── rpcbomb.rb │ │ ├── samba │ │ │ ├── lsa_addprivs_heap.rb │ │ │ ├── lsa_transnames_heap.rb │ │ │ └── read_nttrans_ea_list.rb │ │ ├── sap │ │ │ └── sap_soap_rfc_eps_delete_file.rb │ │ ├── scada │ │ │ ├── allen_bradley_pccc.rb │ │ │ ├── beckhoff_twincat.rb │ │ │ ├── d20_tftp_overflow.rb │ │ │ ├── igss9_dataserver.rb │ │ │ ├── siemens_siprotec4.rb │ │ │ └── yokogawa_logsvr.rb │ │ ├── smb │ │ │ └── smb_loris.rb │ │ ├── smtp │ │ │ └── sendmail_prescan.rb │ │ ├── solaris │ │ │ └── lpd │ │ │ │ └── cascade_delete.rb │ │ ├── ssl │ │ │ ├── dtls_changecipherspec.rb │ │ │ ├── dtls_fragment_overflow.rb │ │ │ └── openssl_aesni.rb │ │ ├── syslog │ │ │ └── rsyslog_long_tag.rb │ │ ├── tcp │ │ │ ├── claymore_dos.py │ │ │ ├── junos_tcp_opt.rb │ │ │ └── synflood.rb │ │ ├── upnp │ │ │ └── miniupnpd_dos.rb │ │ ├── windows │ │ │ ├── appian │ │ │ │ └── appian_bpm.rb │ │ │ ├── browser │ │ │ │ └── ms09_065_eot_integer.rb │ │ │ ├── ftp │ │ │ │ ├── filezilla_admin_user.rb │ │ │ │ ├── filezilla_server_port.rb │ │ │ │ ├── guildftp_cwdlist.rb │ │ │ │ ├── iis75_ftpd_iac_bof.rb │ │ │ │ ├── iis_list_exhaustion.rb │ │ │ │ ├── solarftp_user.rb │ │ │ │ ├── titan626_site.rb │ │ │ │ ├── vicftps50_list.rb │ │ │ │ ├── winftp230_nlst.rb │ │ │ │ ├── xmeasy560_nlst.rb │ │ │ │ └── xmeasy570_nlst.rb │ │ │ ├── games │ │ │ │ └── kaillera.rb │ │ │ ├── http │ │ │ │ ├── ms10_065_ii6_asp_dos.rb │ │ │ │ └── pi3web_isapi.rb │ │ │ ├── llmnr │ │ │ │ └── ms11_030_dnsapi.rb │ │ │ ├── nat │ │ │ │ └── nat_helper.rb │ │ │ ├── rdp │ │ │ │ └── ms12_020_maxchannelids.rb │ │ │ ├── smb │ │ │ │ ├── ms05_047_pnp.rb │ │ │ │ ├── ms06_035_mailslot.rb │ │ │ │ ├── ms06_063_trans.rb │ │ │ │ ├── ms09_001_write.rb │ │ │ │ ├── ms09_050_smb2_negotiate_pidhigh.rb │ │ │ │ ├── ms09_050_smb2_session_logoff.rb │ │ │ │ ├── ms10_006_negotiate_response_loop.rb │ │ │ │ ├── ms10_054_queryfs_pool_overflow.rb │ │ │ │ ├── ms11_019_electbowser.rb │ │ │ │ ├── rras_vls_null_deref.rb │ │ │ │ └── vista_negotiate_stop.rb │ │ │ ├── smtp │ │ │ │ └── ms06_019_exchange.rb │ │ │ ├── ssh │ │ │ │ └── sysax_sshd_kexchange.rb │ │ │ └── tftp │ │ │ │ ├── pt360_write.rb │ │ │ │ └── solarwinds.rb │ │ └── wireshark │ │ │ ├── capwap.rb │ │ │ ├── chunked.rb │ │ │ ├── cldap.rb │ │ │ └── ldap.rb │ ├── example.rb │ ├── fileformat │ │ ├── badpdf.rb │ │ ├── multidrop.rb │ │ └── odt_badodt.rb │ ├── fuzzers │ │ ├── dns │ │ │ └── dns_fuzzer.rb │ │ ├── ftp │ │ │ ├── client_ftp.rb │ │ │ └── ftp_pre_post.rb │ │ ├── http │ │ │ ├── http_form_field.rb │ │ │ ├── http_get_uri_long.rb │ │ │ └── http_get_uri_strings.rb │ │ ├── ntp │ │ │ └── ntp_protocol_fuzzer.rb │ │ ├── smb │ │ │ ├── smb2_negotiate_corrupt.rb │ │ │ ├── smb_create_pipe.rb │ │ │ ├── smb_create_pipe_corrupt.rb │ │ │ ├── smb_negotiate_corrupt.rb │ │ │ ├── smb_ntlm1_login_corrupt.rb │ │ │ ├── smb_tree_connect.rb │ │ │ └── smb_tree_connect_corrupt.rb │ │ ├── smtp │ │ │ └── smtp_fuzzer.rb │ │ ├── ssh │ │ │ ├── ssh_kexinit_corrupt.rb │ │ │ ├── ssh_version_15.rb │ │ │ ├── ssh_version_2.rb │ │ │ └── ssh_version_corrupt.rb │ │ └── tds │ │ │ ├── tds_login_corrupt.rb │ │ │ └── tds_login_username.rb │ ├── gather │ │ ├── advantech_webaccess_creds.rb │ │ ├── alienvault_iso27001_sqli.rb │ │ ├── alienvault_newpolicyform_sqli.rb │ │ ├── android_browser_file_theft.rb │ │ ├── android_browser_new_tab_cookie_theft.rb │ │ ├── android_htmlfileprovider.rb │ │ ├── android_object_tag_webview_uxss.rb │ │ ├── android_stock_browser_uxss.rb │ │ ├── apache_rave_creds.rb │ │ ├── apple_safari_ftp_url_cookie_theft.rb │ │ ├── apple_safari_webarchive_uxss.rb │ │ ├── asterisk_creds.rb │ │ ├── avtech744_dvr_accounts.rb │ │ ├── browser_info.rb │ │ ├── browser_lanipleak.rb │ │ ├── c2s_dvr_password_disclosure.rb │ │ ├── censys_search.rb │ │ ├── cerberus_helpdesk_hash_disclosure.rb │ │ ├── checkpoint_hostname.rb │ │ ├── cisco_rv320_config.rb │ │ ├── citrix_published_applications.rb │ │ ├── citrix_published_bruteforce.rb │ │ ├── coldfusion_pwd_props.rb │ │ ├── corpwatch_lookup_id.rb │ │ ├── corpwatch_lookup_name.rb │ │ ├── d20pass.rb │ │ ├── darkcomet_filedownloader.rb │ │ ├── dolibarr_creds_sqli.rb │ │ ├── doliwamp_traversal_creds.rb │ │ ├── drupal_openid_xxe.rb │ │ ├── eaton_nsm_creds.rb │ │ ├── emc_cta_xxe.rb │ │ ├── enum_dns.rb │ │ ├── eventlog_cred_disclosure.rb │ │ ├── external_ip.rb │ │ ├── f5_bigip_cookie_disclosure.rb │ │ ├── firefox_pdfjs_file_theft.rb │ │ ├── flash_rosetta_jsonp_url_disclosure.rb │ │ ├── get_user_spns.py │ │ ├── hp_enum_perfd.rb │ │ ├── hp_snac_domain_creds.rb │ │ ├── http_pdf_authors.rb │ │ ├── huawei_wifi_info.rb │ │ ├── ibm_bigfix_sites_packages_enum.rb │ │ ├── ibm_sametime_enumerate_users.rb │ │ ├── ibm_sametime_room_brute.rb │ │ ├── ibm_sametime_version.rb │ │ ├── ie_sandbox_findfiles.rb │ │ ├── ie_uxss_injection.rb │ │ ├── impersonate_ssl.rb │ │ ├── ipcamera_password_disclosure.rb │ │ ├── java_rmi_registry.rb │ │ ├── jenkins_cred_recovery.rb │ │ ├── joomla_com_realestatemanager_sqli.rb │ │ ├── joomla_contenthistory_sqli.rb │ │ ├── joomla_weblinks_sqli.rb │ │ ├── kerberos_enumusers.rb │ │ ├── konica_minolta_pwd_extract.rb │ │ ├── lansweeper_collector.rb │ │ ├── mantisbt_admin_sqli.rb │ │ ├── mcafee_epo_xxe.rb │ │ ├── memcached_extractor.rb │ │ ├── mongodb_js_inject_collection_enum.rb │ │ ├── ms14_052_xmldom.rb │ │ ├── mybb_db_fingerprint.rb │ │ ├── natpmp_external_address.rb │ │ ├── netgear_password_disclosure.rb │ │ ├── nis_bootparamd_domain.rb │ │ ├── nis_ypserv_map.rb │ │ ├── nuuo_cms_bruteforce.rb │ │ ├── nuuo_cms_file_download.rb │ │ ├── office365userenum.py │ │ ├── opennms_xxe.rb │ │ ├── pimcore_creds_sqli.rb │ │ ├── qnap_backtrace_admin_hash.rb │ │ ├── rails_doubletap_file_read.rb │ │ ├── safari_file_url_navigation.rb │ │ ├── samsung_browser_sop_bypass.rb │ │ ├── search_email_collector.rb │ │ ├── searchengine_subdomains_collector.rb │ │ ├── shodan_honeyscore.rb │ │ ├── shodan_search.rb │ │ ├── snare_registry.rb │ │ ├── solarwinds_orion_sqli.rb │ │ ├── ssllabs_scan.rb │ │ ├── teamtalk_creds.rb │ │ ├── trackit_sql_domain_creds.rb │ │ ├── vbulletin_vote_sqli.rb │ │ ├── windows_deployment_services_shares.rb │ │ ├── wp_all_in_one_migration_export.rb │ │ ├── wp_ultimate_csv_importer_user_extract.rb │ │ ├── wp_w3_total_cache_hash_extract.rb │ │ ├── xbmc_traversal.rb │ │ ├── xerox_pwd_extract.rb │ │ ├── xerox_workcentre_5xxx_ldap.rb │ │ ├── zabbix_toggleids_sqli.rb │ │ └── zoomeye_search.rb │ ├── parser │ │ └── unattend.rb │ ├── pdf │ │ └── foxit │ │ │ └── authbypass.rb │ ├── scanner │ │ ├── acpp │ │ │ └── login.rb │ │ ├── afp │ │ │ ├── afp_login.rb │ │ │ └── afp_server_info.rb │ │ ├── backdoor │ │ │ └── energizer_duo_detect.rb │ │ ├── chargen │ │ │ └── chargen_probe.rb │ │ ├── couchdb │ │ │ ├── couchdb_enum.rb │ │ │ └── couchdb_login.rb │ │ ├── db2 │ │ │ ├── db2_auth.rb │ │ │ ├── db2_version.rb │ │ │ └── discovery.rb │ │ ├── dcerpc │ │ │ ├── endpoint_mapper.rb │ │ │ ├── hidden.rb │ │ │ ├── management.rb │ │ │ ├── tcp_dcerpc_auditor.rb │ │ │ └── windows_deployment_services.rb │ │ ├── dect │ │ │ ├── call_scanner.rb │ │ │ └── station_scanner.rb │ │ ├── discovery │ │ │ ├── arp_sweep.rb │ │ │ ├── empty_udp.rb │ │ │ ├── ipv6_multicast_ping.rb │ │ │ ├── ipv6_neighbor.rb │ │ │ ├── ipv6_neighbor_router_advertisement.rb │ │ │ ├── udp_probe.rb │ │ │ └── udp_sweep.rb │ │ ├── dlsw │ │ │ └── dlsw_leak_capture.rb │ │ ├── dns │ │ │ └── dns_amp.rb │ │ ├── elasticsearch │ │ │ └── indices_enum.rb │ │ ├── emc │ │ │ ├── alphastor_devicemanager.rb │ │ │ └── alphastor_librarymanager.rb │ │ ├── etcd │ │ │ ├── open_key_scanner.rb │ │ │ └── version.rb │ │ ├── finger │ │ │ └── finger_users.rb │ │ ├── ftp │ │ │ ├── anonymous.rb │ │ │ ├── bison_ftp_traversal.rb │ │ │ ├── colorado_ftp_traversal.rb │ │ │ ├── easy_file_sharing_ftp.rb │ │ │ ├── ftp_login.rb │ │ │ ├── ftp_version.rb │ │ │ ├── konica_ftp_traversal.rb │ │ │ ├── pcman_ftp_traversal.rb │ │ │ └── titanftp_xcrc_traversal.rb │ │ ├── gopher │ │ │ └── gopher_gophermap.rb │ │ ├── h323 │ │ │ └── h323_version.rb │ │ ├── http │ │ │ ├── a10networks_ax_directory_traversal.rb │ │ │ ├── accellion_fta_statecode_file_read.rb │ │ │ ├── adobe_xml_inject.rb │ │ │ ├── advantech_webaccess_login.rb │ │ │ ├── allegro_rompager_misfortune_cookie.rb │ │ │ ├── apache_activemq_source_disclosure.rb │ │ │ ├── apache_activemq_traversal.rb │ │ │ ├── apache_mod_cgi_bash_env.rb │ │ │ ├── apache_optionsbleed.rb │ │ │ ├── apache_userdir_enum.rb │ │ │ ├── appletv_login.rb │ │ │ ├── atlassian_crowd_fileaccess.rb │ │ │ ├── axis_local_file_include.rb │ │ │ ├── axis_login.rb │ │ │ ├── backup_file.rb │ │ │ ├── barracuda_directory_traversal.rb │ │ │ ├── bavision_cam_login.rb │ │ │ ├── binom3_login_config_pass_dump.rb │ │ │ ├── bitweaver_overlay_type_traversal.rb │ │ │ ├── blind_sql_query.rb │ │ │ ├── bmc_trackit_passwd_reset.rb │ │ │ ├── brute_dirs.rb │ │ │ ├── buffalo_login.rb │ │ │ ├── buildmaster_login.rb │ │ │ ├── caidao_bruteforce_login.rb │ │ │ ├── canon_wireless.rb │ │ │ ├── cert.rb │ │ │ ├── cgit_traversal.rb │ │ │ ├── chef_webui_login.rb │ │ │ ├── chromecast_webserver.rb │ │ │ ├── chromecast_wifi.rb │ │ │ ├── cisco_asa_asdm.rb │ │ │ ├── cisco_device_manager.rb │ │ │ ├── cisco_directory_traversal.rb │ │ │ ├── cisco_firepower_download.rb │ │ │ ├── cisco_firepower_login.rb │ │ │ ├── cisco_ios_auth_bypass.rb │ │ │ ├── cisco_ironport_enum.rb │ │ │ ├── cisco_nac_manager_traversal.rb │ │ │ ├── cisco_ssl_vpn.rb │ │ │ ├── cisco_ssl_vpn_priv_esc.rb │ │ │ ├── clansphere_traversal.rb │ │ │ ├── cnpilot_r_web_login_loot.rb │ │ │ ├── coldfusion_locale_traversal.rb │ │ │ ├── coldfusion_version.rb │ │ │ ├── concrete5_member_list.rb │ │ │ ├── copy_of_file.rb │ │ │ ├── crawler.rb │ │ │ ├── dell_idrac.rb │ │ │ ├── dicoogle_traversal.rb │ │ │ ├── dir_listing.rb │ │ │ ├── dir_scanner.rb │ │ │ ├── dir_webdav_unicode_bypass.rb │ │ │ ├── directadmin_login.rb │ │ │ ├── dlink_dir_300_615_http_login.rb │ │ │ ├── dlink_dir_615h_http_login.rb │ │ │ ├── dlink_dir_session_cgi_http_login.rb │ │ │ ├── dlink_user_agent_backdoor.rb │ │ │ ├── dnalims_file_retrieve.rb │ │ │ ├── docker_version.rb │ │ │ ├── dolibarr_login.rb │ │ │ ├── drupal_views_user_enum.rb │ │ │ ├── ektron_cms400net.rb │ │ │ ├── elasticsearch_traversal.rb │ │ │ ├── enum_wayback.rb │ │ │ ├── epmp1000_dump_config.rb │ │ │ ├── epmp1000_dump_hashes.rb │ │ │ ├── epmp1000_get_chart_cmd_exec.rb │ │ │ ├── epmp1000_ping_cmd_exec.rb │ │ │ ├── epmp1000_reset_pass.rb │ │ │ ├── epmp1000_web_login.rb │ │ │ ├── error_sql_injection.rb │ │ │ ├── es_file_explorer_open_port.rb │ │ │ ├── etherpad_duo_login.rb │ │ │ ├── f5_bigip_virtual_server.rb │ │ │ ├── f5_mgmt_scanner.rb │ │ │ ├── file_same_name_dir.rb │ │ │ ├── files_dir.rb │ │ │ ├── fortinet_ssl_vpn.rb │ │ │ ├── frontpage_credential_dump.md │ │ │ ├── frontpage_credential_dump.rb │ │ │ ├── frontpage_login.rb │ │ │ ├── gavazzi_em_login_loot.rb │ │ │ ├── git_scanner.rb │ │ │ ├── gitlab_login.rb │ │ │ ├── gitlab_user_enum.rb │ │ │ ├── glassfish_login.rb │ │ │ ├── glassfish_traversal.rb │ │ │ ├── goahead_traversal.rb │ │ │ ├── groupwise_agents_http_traversal.rb │ │ │ ├── host_header_injection.rb │ │ │ ├── hp_imc_bims_downloadservlet_traversal.rb │ │ │ ├── hp_imc_faultdownloadservlet_traversal.rb │ │ │ ├── hp_imc_ictdownloadservlet_traversal.rb │ │ │ ├── hp_imc_reportimgservlt_traversal.rb │ │ │ ├── hp_imc_som_file_download.rb │ │ │ ├── hp_sitescope_getfileinternal_fileaccess.rb │ │ │ ├── hp_sitescope_getsitescopeconfiguration.rb │ │ │ ├── hp_sitescope_loadfilecontent_fileaccess.rb │ │ │ ├── hp_sys_mgmt_login.rb │ │ │ ├── http_header.rb │ │ │ ├── http_hsts.rb │ │ │ ├── http_login.rb │ │ │ ├── http_put.rb │ │ │ ├── http_sickrage_password_leak.rb │ │ │ ├── http_traversal.rb │ │ │ ├── http_version.rb │ │ │ ├── httpbl_lookup.rb │ │ │ ├── httpdasm_directory_traversal.rb │ │ │ ├── iis_internal_ip.rb │ │ │ ├── iis_shortname_scanner.rb │ │ │ ├── influxdb_enum.rb │ │ │ ├── infovista_enum.rb │ │ │ ├── intel_amt_digest_bypass.rb │ │ │ ├── ipboard_login.rb │ │ │ ├── jboss_status.rb │ │ │ ├── jboss_vulnscan.rb │ │ │ ├── jenkins_command.rb │ │ │ ├── jenkins_enum.rb │ │ │ ├── jenkins_login.rb │ │ │ ├── joomla_bruteforce_login.rb │ │ │ ├── joomla_ecommercewd_sqli_scanner.rb │ │ │ ├── joomla_gallerywd_sqli_scanner.rb │ │ │ ├── joomla_pages.rb │ │ │ ├── joomla_plugins.rb │ │ │ ├── joomla_version.rb │ │ │ ├── kodi_traversal.rb │ │ │ ├── linknat_vos_traversal.rb │ │ │ ├── linksys_e1500_traversal.rb │ │ │ ├── litespeed_source_disclosure.rb │ │ │ ├── lucky_punch.rb │ │ │ ├── majordomo2_directory_traversal.rb │ │ │ ├── manageengine_desktop_central_login.rb │ │ │ ├── manageengine_deviceexpert_traversal.rb │ │ │ ├── manageengine_deviceexpert_user_creds.rb │ │ │ ├── manageengine_securitymanager_traversal.rb │ │ │ ├── mediawiki_svg_fileaccess.rb │ │ │ ├── meteocontrol_weblog_extractadmin.rb │ │ │ ├── mod_negotiation_brute.rb │ │ │ ├── mod_negotiation_scanner.rb │ │ │ ├── ms09_020_webdav_unicode_bypass.rb │ │ │ ├── ms15_034_http_sys_memory_dump.rb │ │ │ ├── mybook_live_login.rb │ │ │ ├── netdecision_traversal.rb │ │ │ ├── netgear_sph200d_traversal.rb │ │ │ ├── nginx_source_disclosure.rb │ │ │ ├── novell_file_reporter_fsfui_fileaccess.rb │ │ │ ├── novell_file_reporter_srs_fileaccess.rb │ │ │ ├── novell_mdm_creds.rb │ │ │ ├── ntlm_info_enumeration.rb │ │ │ ├── octopusdeploy_login.rb │ │ │ ├── open_proxy.rb │ │ │ ├── openmind_messageos_login.rb │ │ │ ├── options.rb │ │ │ ├── oracle_demantra_database_credentials_leak.rb │ │ │ ├── oracle_demantra_file_retrieval.rb │ │ │ ├── oracle_ilom_login.rb │ │ │ ├── owa_ews_login.rb │ │ │ ├── owa_iis_internal_ip.rb │ │ │ ├── owa_login.rb │ │ │ ├── phpmyadmin_login.rb │ │ │ ├── pocketpad_login.rb │ │ │ ├── prev_dir_same_name_file.rb │ │ │ ├── radware_appdirector_enum.rb │ │ │ ├── rails_json_yaml_scanner.rb │ │ │ ├── rails_mass_assignment.rb │ │ │ ├── rails_xml_yaml_scanner.rb │ │ │ ├── replace_ext.rb │ │ │ ├── rewrite_proxy_bypass.rb │ │ │ ├── rfcode_reader_enum.rb │ │ │ ├── rips_traversal.rb │ │ │ ├── riverbed_steelhead_vcx_file_read.rb │ │ │ ├── robots_txt.rb │ │ │ ├── s40_traversal.rb │ │ │ ├── sap_businessobjects_user_brute.rb │ │ │ ├── sap_businessobjects_user_brute_web.rb │ │ │ ├── sap_businessobjects_user_enum.rb │ │ │ ├── sap_businessobjects_version_enum.rb │ │ │ ├── scraper.rb │ │ │ ├── sentry_cdu_enum.rb │ │ │ ├── servicedesk_plus_traversal.rb │ │ │ ├── sevone_enum.rb │ │ │ ├── simple_webserver_traversal.rb │ │ │ ├── smt_ipmi_49152_exposure.rb │ │ │ ├── smt_ipmi_cgi_scanner.rb │ │ │ ├── smt_ipmi_static_cert_scanner.rb │ │ │ ├── smt_ipmi_url_redirect_traversal.rb │ │ │ ├── soap_xml.rb │ │ │ ├── sockso_traversal.rb │ │ │ ├── splunk_web_login.rb │ │ │ ├── squid_pivot_scanning.rb │ │ │ ├── squiz_matrix_user_enum.rb │ │ │ ├── ssl.rb │ │ │ ├── ssl_version.rb │ │ │ ├── support_center_plus_directory_traversal.rb │ │ │ ├── surgenews_user_creds.rb │ │ │ ├── svn_scanner.rb │ │ │ ├── svn_wcdb_scanner.rb │ │ │ ├── sybase_easerver_traversal.rb │ │ │ ├── symantec_brightmail_ldapcreds.rb │ │ │ ├── symantec_brightmail_logfile.rb │ │ │ ├── symantec_web_gateway_login.rb │ │ │ ├── titan_ftp_admin_pwd.rb │ │ │ ├── title.rb │ │ │ ├── tomcat_enum.rb │ │ │ ├── tomcat_mgr_login.rb │ │ │ ├── totaljs_traversal.rb │ │ │ ├── tplink_traversal_noauth.rb │ │ │ ├── trace.rb │ │ │ ├── trace_axd.rb │ │ │ ├── typo3_bruteforce.rb │ │ │ ├── vcms_login.rb │ │ │ ├── verb_auth_bypass.rb │ │ │ ├── vhost_scanner.rb │ │ │ ├── wangkongbao_traversal.rb │ │ │ ├── web_vulndb.rb │ │ │ ├── webdav_internal_ip.rb │ │ │ ├── webdav_scanner.rb │ │ │ ├── webdav_website_content.rb │ │ │ ├── webpagetest_traversal.rb │ │ │ ├── wildfly_traversal.rb │ │ │ ├── wordpress_content_injection.rb │ │ │ ├── wordpress_cp_calendar_sqli.rb │ │ │ ├── wordpress_ghost_scanner.rb │ │ │ ├── wordpress_login_enum.rb │ │ │ ├── wordpress_multicall_creds.rb │ │ │ ├── wordpress_pingback_access.rb │ │ │ ├── wordpress_scanner.rb │ │ │ ├── wordpress_xmlrpc_login.rb │ │ │ ├── wp_arbitrary_file_deletion.rb │ │ │ ├── wp_contus_video_gallery_sqli.rb │ │ │ ├── wp_dukapress_file_read.rb │ │ │ ├── wp_gimedia_library_file_read.rb │ │ │ ├── wp_mobile_pack_info_disclosure.rb │ │ │ ├── wp_mobileedition_file_read.rb │ │ │ ├── wp_nextgen_galley_file_read.rb │ │ │ ├── wp_simple_backup_file_read.rb │ │ │ ├── wp_subscribe_comments_file_read.rb │ │ │ ├── xpath.rb │ │ │ ├── yaws_traversal.rb │ │ │ ├── zabbix_login.rb │ │ │ ├── zenworks_assetmanagement_fileaccess.rb │ │ │ └── zenworks_assetmanagement_getconfig.rb │ │ ├── ike │ │ │ └── cisco_ike_benigncertain.rb │ │ ├── imap │ │ │ └── imap_version.rb │ │ ├── ip │ │ │ └── ipidseq.rb │ │ ├── ipmi │ │ │ ├── ipmi_cipher_zero.rb │ │ │ ├── ipmi_dumphashes.rb │ │ │ └── ipmi_version.rb │ │ ├── jenkins │ │ │ └── jenkins_udp_broadcast_enum.rb │ │ ├── kademlia │ │ │ └── server_info.rb │ │ ├── llmnr │ │ │ └── query.rb │ │ ├── lotus │ │ │ ├── lotus_domino_hashes.rb │ │ │ ├── lotus_domino_login.rb │ │ │ └── lotus_domino_version.rb │ │ ├── mdns │ │ │ └── query.rb │ │ ├── memcached │ │ │ ├── memcached_amp.rb │ │ │ └── memcached_udp_version.rb │ │ ├── misc │ │ │ ├── cctv_dvr_login.rb │ │ │ ├── cisco_smart_install.rb │ │ │ ├── clamav_control.rb │ │ │ ├── dahua_dvr_auth_bypass.rb │ │ │ ├── dvr_config_disclosure.rb │ │ │ ├── easycafe_server_fileaccess.rb │ │ │ ├── ib_service_mgr_info.rb │ │ │ ├── ibm_mq_channel_brute.rb │ │ │ ├── ibm_mq_enum.rb │ │ │ ├── ibm_mq_login.rb │ │ │ ├── java_jmx_server.rb │ │ │ ├── java_rmi_server.rb │ │ │ ├── oki_scanner.rb │ │ │ ├── poisonivy_control_scanner.rb │ │ │ ├── raysharp_dvr_passwords.rb │ │ │ ├── rosewill_rxs3211_passwords.rb │ │ │ ├── sercomm_backdoor_scanner.rb │ │ │ ├── sunrpc_portmapper.rb │ │ │ └── zenworks_preboot_fileaccess.rb │ │ ├── mongodb │ │ │ └── mongodb_login.rb │ │ ├── motorola │ │ │ └── timbuktu_udp.rb │ │ ├── mqtt │ │ │ └── connect.rb │ │ ├── msf │ │ │ ├── msf_rpc_login.rb │ │ │ └── msf_web_login.rb │ │ ├── msmail │ │ │ ├── exchange_enum.go │ │ │ ├── host_id.go │ │ │ ├── onprem_enum.go │ │ │ └── shared │ │ │ │ └── src │ │ │ │ └── msmail │ │ │ │ └── msmail.go │ │ ├── mssql │ │ │ ├── mssql_hashdump.rb │ │ │ ├── mssql_login.rb │ │ │ ├── mssql_ping.rb │ │ │ └── mssql_schemadump.rb │ │ ├── mysql │ │ │ ├── mysql_authbypass_hashdump.rb │ │ │ ├── mysql_file_enum.rb │ │ │ ├── mysql_hashdump.rb │ │ │ ├── mysql_login.rb │ │ │ ├── mysql_schemadump.rb │ │ │ ├── mysql_version.rb │ │ │ └── mysql_writable_dirs.rb │ │ ├── natpmp │ │ │ └── natpmp_portscan.rb │ │ ├── nessus │ │ │ ├── nessus_ntp_login.rb │ │ │ ├── nessus_rest_login.rb │ │ │ ├── nessus_xmlrpc_login.rb │ │ │ └── nessus_xmlrpc_ping.rb │ │ ├── netbios │ │ │ └── nbname.rb │ │ ├── nexpose │ │ │ └── nexpose_api_login.rb │ │ ├── nfs │ │ │ └── nfsmount.rb │ │ ├── nntp │ │ │ └── nntp_login.rb │ │ ├── ntp │ │ │ ├── ntp_monlist.rb │ │ │ ├── ntp_nak_to_the_future.rb │ │ │ ├── ntp_peer_list_dos.rb │ │ │ ├── ntp_peer_list_sum_dos.rb │ │ │ ├── ntp_readvar.rb │ │ │ ├── ntp_req_nonce_dos.rb │ │ │ ├── ntp_reslist_dos.rb │ │ │ └── ntp_unsettrap_dos.rb │ │ ├── openvas │ │ │ ├── openvas_gsad_login.rb │ │ │ ├── openvas_omp_login.rb │ │ │ └── openvas_otp_login.rb │ │ ├── oracle │ │ │ ├── emc_sid.rb │ │ │ ├── isqlplus_login.rb │ │ │ ├── isqlplus_sidbrute.rb │ │ │ ├── oracle_hashdump.rb │ │ │ ├── oracle_login.rb │ │ │ ├── sid_brute.rb │ │ │ ├── sid_enum.rb │ │ │ ├── spy_sid.rb │ │ │ ├── tnslsnr_version.rb │ │ │ ├── tnspoison_checker.rb │ │ │ ├── xdb_sid.rb │ │ │ └── xdb_sid_brute.rb │ │ ├── pcanywhere │ │ │ ├── pcanywhere_login.rb │ │ │ ├── pcanywhere_tcp.rb │ │ │ └── pcanywhere_udp.rb │ │ ├── pop3 │ │ │ ├── pop3_login.rb │ │ │ └── pop3_version.rb │ │ ├── portmap │ │ │ └── portmap_amp.rb │ │ ├── portscan │ │ │ ├── ack.rb │ │ │ ├── ftpbounce.rb │ │ │ ├── syn.rb │ │ │ ├── tcp.rb │ │ │ └── xmas.rb │ │ ├── postgres │ │ │ ├── postgres_dbname_flag_injection.rb │ │ │ ├── postgres_hashdump.rb │ │ │ ├── postgres_login.rb │ │ │ ├── postgres_schemadump.rb │ │ │ └── postgres_version.rb │ │ ├── printer │ │ │ ├── canon_iradv_pwd_extract.rb │ │ │ ├── printer_delete_file.rb │ │ │ ├── printer_download_file.rb │ │ │ ├── printer_env_vars.rb │ │ │ ├── printer_list_dir.rb │ │ │ ├── printer_list_volumes.rb │ │ │ ├── printer_ready_message.rb │ │ │ ├── printer_upload_file.rb │ │ │ └── printer_version_info.rb │ │ ├── quake │ │ │ └── server_info.rb │ │ ├── rdp │ │ │ ├── ms12_020_check.rb │ │ │ └── rdp_scanner.rb │ │ ├── redis │ │ │ ├── file_upload.rb │ │ │ ├── redis_login.rb │ │ │ └── redis_server.rb │ │ ├── rogue │ │ │ ├── rogue_recv.rb │ │ │ └── rogue_send.rb │ │ ├── rservices │ │ │ ├── rexec_login.rb │ │ │ ├── rlogin_login.rb │ │ │ └── rsh_login.rb │ │ ├── rsync │ │ │ └── modules_list.rb │ │ ├── sap │ │ │ ├── sap_ctc_verb_tampering_user_mgmt.rb │ │ │ ├── sap_hostctrl_getcomputersystem.rb │ │ │ ├── sap_icf_public_info.rb │ │ │ ├── sap_icm_urlscan.rb │ │ │ ├── sap_mgmt_con_abaplog.rb │ │ │ ├── sap_mgmt_con_brute_login.rb │ │ │ ├── sap_mgmt_con_extractusers.rb │ │ │ ├── sap_mgmt_con_getaccesspoints.rb │ │ │ ├── sap_mgmt_con_getenv.rb │ │ │ ├── sap_mgmt_con_getlogfiles.rb │ │ │ ├── sap_mgmt_con_getprocesslist.rb │ │ │ ├── sap_mgmt_con_getprocessparameter.rb │ │ │ ├── sap_mgmt_con_instanceproperties.rb │ │ │ ├── sap_mgmt_con_listconfigfiles.rb │ │ │ ├── sap_mgmt_con_listlogfiles.rb │ │ │ ├── sap_mgmt_con_startprofile.rb │ │ │ ├── sap_mgmt_con_version.rb │ │ │ ├── sap_router_info_request.rb │ │ │ ├── sap_router_portscanner.rb │ │ │ ├── sap_service_discovery.rb │ │ │ ├── sap_smb_relay.rb │ │ │ ├── sap_soap_bapi_user_create1.rb │ │ │ ├── sap_soap_rfc_brute_login.rb │ │ │ ├── sap_soap_rfc_dbmcli_sxpg_call_system_command_exec.rb │ │ │ ├── sap_soap_rfc_dbmcli_sxpg_command_exec.rb │ │ │ ├── sap_soap_rfc_eps_get_directory_listing.rb │ │ │ ├── sap_soap_rfc_pfl_check_os_file_existence.rb │ │ │ ├── sap_soap_rfc_ping.rb │ │ │ ├── sap_soap_rfc_read_table.rb │ │ │ ├── sap_soap_rfc_rzl_read_dir.rb │ │ │ ├── sap_soap_rfc_susr_rfc_user_interface.rb │ │ │ ├── sap_soap_rfc_sxpg_call_system_exec.rb │ │ │ ├── sap_soap_rfc_sxpg_command_exec.rb │ │ │ ├── sap_soap_rfc_system_info.rb │ │ │ ├── sap_soap_th_saprel_disclosure.rb │ │ │ └── sap_web_gui_brute_login.rb │ │ ├── scada │ │ │ ├── digi_addp_reboot.rb │ │ │ ├── digi_addp_version.rb │ │ │ ├── digi_realport_serialport_scan.rb │ │ │ ├── digi_realport_version.rb │ │ │ ├── indusoft_ntwebserver_fileaccess.rb │ │ │ ├── koyo_login.rb │ │ │ ├── modbus_findunitid.rb │ │ │ ├── modbusclient.rb │ │ │ ├── modbusdetect.rb │ │ │ ├── moxa_discover.rb │ │ │ ├── pcomclient.rb │ │ │ ├── profinet_siemens.rb │ │ │ └── sielco_winlog_fileaccess.rb │ │ ├── sip │ │ │ ├── enumerator.rb │ │ │ ├── enumerator_tcp.rb │ │ │ ├── options.rb │ │ │ ├── options_tcp.rb │ │ │ └── sipdroid_ext_enum.rb │ │ ├── smb │ │ │ ├── impacket │ │ │ │ ├── _msf_impacket.py │ │ │ │ ├── dcomexec.py │ │ │ │ ├── secretsdump.py │ │ │ │ └── wmiexec.py │ │ │ ├── pipe_auditor.rb │ │ │ ├── pipe_dcerpc_auditor.rb │ │ │ ├── psexec_loggedin_users.rb │ │ │ ├── smb1.rb │ │ │ ├── smb2.rb │ │ │ ├── smb_enum_gpp.rb │ │ │ ├── smb_enumshares.rb │ │ │ ├── smb_enumusers.rb │ │ │ ├── smb_enumusers_domain.rb │ │ │ ├── smb_login.rb │ │ │ ├── smb_lookupsid.rb │ │ │ ├── smb_ms17_010.rb │ │ │ ├── smb_uninit_cred.rb │ │ │ └── smb_version.rb │ │ ├── smtp │ │ │ ├── smtp_enum.rb │ │ │ ├── smtp_ntlm_domain.rb │ │ │ ├── smtp_relay.rb │ │ │ └── smtp_version.rb │ │ ├── snmp │ │ │ ├── aix_version.rb │ │ │ ├── arris_dg950.rb │ │ │ ├── brocade_enumhash.rb │ │ │ ├── cisco_config_tftp.rb │ │ │ ├── cisco_upload_file.rb │ │ │ ├── cnpilot_r_snmp_loot.rb │ │ │ ├── epmp1000_snmp_loot.rb │ │ │ ├── netopia_enum.rb │ │ │ ├── sbg6580_enum.rb │ │ │ ├── snmp_enum.rb │ │ │ ├── snmp_enum_hp_laserjet.rb │ │ │ ├── snmp_enumshares.rb │ │ │ ├── snmp_enumusers.rb │ │ │ ├── snmp_login.rb │ │ │ ├── snmp_set.rb │ │ │ ├── ubee_ddw3611.rb │ │ │ └── xerox_workcentre_enumusers.rb │ │ ├── ssh │ │ │ ├── apache_karaf_command_execution.rb │ │ │ ├── cerberus_sftp_enumusers.rb │ │ │ ├── detect_kippo.rb │ │ │ ├── eaton_xpert_backdoor.rb │ │ │ ├── fortinet_backdoor.rb │ │ │ ├── juniper_backdoor.rb │ │ │ ├── karaf_login.rb │ │ │ ├── libssh_auth_bypass.rb │ │ │ ├── ssh_enumusers.rb │ │ │ ├── ssh_identify_pubkeys.rb │ │ │ ├── ssh_login.rb │ │ │ ├── ssh_login_pubkey.rb │ │ │ └── ssh_version.rb │ │ ├── ssl │ │ │ ├── bleichenbacher_oracle.py │ │ │ ├── openssl_ccs.rb │ │ │ └── openssl_heartbleed.rb │ │ ├── steam │ │ │ └── server_info.rb │ │ ├── telephony │ │ │ └── wardial.rb │ │ ├── telnet │ │ │ ├── brocade_enable_login.rb │ │ │ ├── lantronix_telnet_password.rb │ │ │ ├── lantronix_telnet_version.rb │ │ │ ├── satel_cmd_exec.rb │ │ │ ├── telnet_encrypt_overflow.rb │ │ │ ├── telnet_login.rb │ │ │ ├── telnet_ruggedcom.rb │ │ │ └── telnet_version.rb │ │ ├── teradata │ │ │ └── teradata_odbc_login.py │ │ ├── tftp │ │ │ ├── ipswitch_whatsupgold_tftp.rb │ │ │ ├── netdecision_tftp.rb │ │ │ └── tftpbrute.rb │ │ ├── ubiquiti │ │ │ └── ubiquiti_discover.rb │ │ ├── udp │ │ │ ├── example.rb │ │ │ └── udp_amplification.rb │ │ ├── upnp │ │ │ ├── ssdp_amp.rb │ │ │ └── ssdp_msearch.rb │ │ ├── varnish │ │ │ ├── varnish_cli_file_read.rb │ │ │ └── varnish_cli_login.rb │ │ ├── vmware │ │ │ ├── esx_fingerprint.rb │ │ │ ├── vmauthd_login.rb │ │ │ ├── vmauthd_version.rb │ │ │ ├── vmware_enum_permissions.rb │ │ │ ├── vmware_enum_sessions.rb │ │ │ ├── vmware_enum_users.rb │ │ │ ├── vmware_enum_vms.rb │ │ │ ├── vmware_host_details.rb │ │ │ ├── vmware_http_login.rb │ │ │ ├── vmware_screenshot_stealer.rb │ │ │ ├── vmware_server_dir_trav.rb │ │ │ └── vmware_update_manager_traversal.rb │ │ ├── vnc │ │ │ ├── ard_root_pw.rb │ │ │ ├── vnc_login.rb │ │ │ └── vnc_none_auth.rb │ │ ├── voice │ │ │ └── recorder.rb │ │ ├── vxworks │ │ │ ├── wdbrpc_bootline.rb │ │ │ └── wdbrpc_version.rb │ │ ├── winrm │ │ │ ├── winrm_auth_methods.rb │ │ │ ├── winrm_cmd.rb │ │ │ ├── winrm_login.rb │ │ │ └── winrm_wql.rb │ │ ├── wproxy │ │ │ └── att_open_proxy.py │ │ ├── wsdd │ │ │ └── wsdd_query.rb │ │ └── x11 │ │ │ └── open_x11.rb │ ├── server │ │ ├── android_browsable_msf_launch.rb │ │ ├── android_mercury_parseuri.rb │ │ ├── browser_autopwn.rb │ │ ├── browser_autopwn2.rb │ │ ├── capture │ │ │ ├── drda.rb │ │ │ ├── ftp.rb │ │ │ ├── http.rb │ │ │ ├── http_basic.rb │ │ │ ├── http_javascript_keylogger.rb │ │ │ ├── http_ntlm.rb │ │ │ ├── imap.rb │ │ │ ├── mssql.rb │ │ │ ├── mysql.rb │ │ │ ├── pop3.rb │ │ │ ├── postgresql.rb │ │ │ ├── printjob_capture.rb │ │ │ ├── sip.rb │ │ │ ├── smb.rb │ │ │ ├── smtp.rb │ │ │ ├── telnet.rb │ │ │ └── vnc.rb │ │ ├── dhclient_bash_env.rb │ │ ├── dhcp.rb │ │ ├── dns │ │ │ ├── native_server.rb │ │ │ └── spoofhelper.rb │ │ ├── fakedns.rb │ │ ├── ftp.rb │ │ ├── http_ntlmrelay.rb │ │ ├── icmp_exfil.rb │ │ ├── jsse_skiptls_mitm_proxy.rb │ │ ├── local_hwbridge.rb │ │ ├── ms15_134_mcl_leak.rb │ │ ├── netbios_spoof_nat.rb │ │ ├── openssl_altchainsforgery_mitm_proxy.rb │ │ ├── openssl_heartbeat_client_memory.rb │ │ ├── pxeexploit.rb │ │ ├── regsvr32_command_delivery_server.rb │ │ ├── socks4a.rb │ │ ├── socks5.rb │ │ ├── socks_unc.rb │ │ ├── tftp.rb │ │ ├── webkit_xslt_dropper.rb │ │ ├── wget_symlink_file_write.rb │ │ └── wpad.rb │ ├── sniffer │ │ └── psnuffle.rb │ ├── spoof │ │ ├── arp │ │ │ └── arp_poisoning.rb │ │ ├── cisco │ │ │ ├── cdp.rb │ │ │ └── dtp.rb │ │ ├── dns │ │ │ ├── bailiwicked_domain.rb │ │ │ ├── bailiwicked_host.rb │ │ │ ├── compare_results.rb │ │ │ └── native_spoofer.rb │ │ ├── llmnr │ │ │ └── llmnr_response.rb │ │ ├── mdns │ │ │ └── mdns_response.rb │ │ ├── nbns │ │ │ └── nbns_response.rb │ │ └── replay │ │ │ └── pcap_replay.rb │ ├── sqli │ │ └── oracle │ │ │ ├── dbms_cdc_ipublish.rb │ │ │ ├── dbms_cdc_publish.rb │ │ │ ├── dbms_cdc_publish2.rb │ │ │ ├── dbms_cdc_publish3.rb │ │ │ ├── dbms_cdc_subscribe_activate_subscription.rb │ │ │ ├── dbms_export_extension.rb │ │ │ ├── dbms_metadata_get_granted_xml.rb │ │ │ ├── dbms_metadata_get_xml.rb │ │ │ ├── dbms_metadata_open.rb │ │ │ ├── droptable_trigger.rb │ │ │ ├── jvm_os_code_10g.rb │ │ │ ├── jvm_os_code_11g.rb │ │ │ ├── lt_compressworkspace.rb │ │ │ ├── lt_findricset_cursor.rb │ │ │ ├── lt_mergeworkspace.rb │ │ │ ├── lt_removeworkspace.rb │ │ │ └── lt_rollbackworkspace.rb │ ├── voip │ │ ├── asterisk_login.rb │ │ ├── cisco_cucdm_call_forward.rb │ │ ├── cisco_cucdm_speed_dials.rb │ │ ├── sip_deregister.rb │ │ ├── sip_invite_spoof.rb │ │ └── telisca_ips_lock_control.rb │ └── vsploit │ │ ├── exploit │ │ └── .keep │ │ ├── malware │ │ └── dns │ │ │ ├── dns_mariposa.rb │ │ │ ├── dns_query.rb │ │ │ └── dns_zeus.rb │ │ └── pii │ │ ├── email_pii.rb │ │ └── web_pii.rb ├── encoders │ ├── cmd │ │ ├── brace.rb │ │ ├── echo.rb │ │ ├── generic_sh.rb │ │ ├── ifs.rb │ │ ├── perl.rb │ │ ├── powershell_base64.rb │ │ └── printf_php_mq.rb │ ├── generic │ │ ├── eicar.rb │ │ └── none.rb │ ├── mipsbe │ │ ├── byte_xori.rb │ │ └── longxor.rb │ ├── mipsle │ │ ├── byte_xori.rb │ │ └── longxor.rb │ ├── php │ │ └── base64.rb │ ├── ppc │ │ ├── longxor.rb │ │ └── longxor_tag.rb │ ├── ruby │ │ └── base64.rb │ ├── sparc │ │ └── longxor_tag.rb │ ├── x64 │ │ ├── xor.rb │ │ ├── xor_dynamic.rb │ │ └── zutto_dekiru.rb │ └── x86 │ │ ├── add_sub.rb │ │ ├── alpha_mixed.rb │ │ ├── alpha_upper.rb │ │ ├── avoid_underscore_tolower.rb │ │ ├── avoid_utf8_tolower.rb │ │ ├── bloxor.rb │ │ ├── bmp_polyglot.rb │ │ ├── call4_dword_xor.rb │ │ ├── context_cpuid.rb │ │ ├── context_stat.rb │ │ ├── context_time.rb │ │ ├── countdown.rb │ │ ├── fnstenv_mov.rb │ │ ├── jmp_call_additive.rb │ │ ├── nonalpha.rb │ │ ├── nonupper.rb │ │ ├── opt_sub.rb │ │ ├── service.rb │ │ ├── shikata_ga_nai.rb │ │ ├── single_static_bit.rb │ │ ├── unicode_mixed.rb │ │ ├── unicode_upper.rb │ │ └── xor_dynamic.rb ├── evasion │ └── windows │ │ ├── windows_defender_exe.rb │ │ └── windows_defender_js_hta.rb ├── exploits │ ├── aix │ │ ├── local │ │ │ └── ibstat_path.rb │ │ ├── rpc_cmsd_opcode21.rb │ │ └── rpc_ttdbserverd_realpath.rb │ ├── android │ │ ├── adb │ │ │ └── adb_server_exec.rb │ │ ├── browser │ │ │ ├── samsung_knox_smdm_url.rb │ │ │ ├── stagefright_mp4_tx3g_64bit.rb │ │ │ └── webview_addjavascriptinterface.rb │ │ ├── fileformat │ │ │ └── adobe_reader_pdf_js_interface.rb │ │ └── local │ │ │ ├── futex_requeue.rb │ │ │ ├── put_user_vroot.rb │ │ │ └── su_exec.rb │ ├── apple_ios │ │ ├── browser │ │ │ ├── safari_libtiff.rb │ │ │ └── webkit_trident.rb │ │ ├── email │ │ │ └── mobilemail_libtiff.rb │ │ └── ssh │ │ │ └── cydia_default_ssh.rb │ ├── bsd │ │ └── finger │ │ │ └── morris_fingerd_bof.rb │ ├── bsdi │ │ └── softcart │ │ │ └── mercantec_softcart.rb │ ├── dialup │ │ └── multi │ │ │ └── login │ │ │ └── manyargs.rb │ ├── example.rb │ ├── firefox │ │ └── local │ │ │ └── exec_shellcode.rb │ ├── freebsd │ │ ├── ftp │ │ │ └── proftp_telnet_iac.rb │ │ ├── http │ │ │ └── watchguard_cmd_exec.rb │ │ ├── local │ │ │ ├── intel_sysret_priv_esc.rb │ │ │ ├── mmap.rb │ │ │ └── watchguard_fix_corrupt_mail.rb │ │ ├── misc │ │ │ └── citrix_netscaler_soap_bof.rb │ │ ├── samba │ │ │ └── trans2open.rb │ │ ├── tacacs │ │ │ └── xtacacsd_report.rb │ │ └── telnet │ │ │ └── telnet_encrypt_keyid.rb │ ├── hpux │ │ └── lpd │ │ │ └── cleanup_exec.rb │ ├── irix │ │ └── lpd │ │ │ └── tagprinter_exec.rb │ ├── linux │ │ ├── antivirus │ │ │ └── escan_password_exec.rb │ │ ├── browser │ │ │ └── adobe_flashplayer_aslaunch.rb │ │ ├── ftp │ │ │ ├── proftp_sreplace.rb │ │ │ └── proftp_telnet_iac.rb │ │ ├── games │ │ │ └── ut2004_secure.rb │ │ ├── http │ │ │ ├── accellion_fta_getstatus_oauth.rb │ │ │ ├── advantech_switch_bash_env_exec.rb │ │ │ ├── airties_login_cgi_bof.rb │ │ │ ├── alcatel_omnipcx_mastercgi_exec.rb │ │ │ ├── alienvault_exec.rb │ │ │ ├── alienvault_sqli_exec.rb │ │ │ ├── apache_continuum_cmd_exec.rb │ │ │ ├── apache_couchdb_cmd_exec.rb │ │ │ ├── astium_sqli_upload.rb │ │ │ ├── asuswrt_lan_rce.rb │ │ │ ├── atutor_filemanager_traversal.rb │ │ │ ├── axis_srv_parhand_rce.rb │ │ │ ├── belkin_login_bof.rb │ │ │ ├── centreon_sqli_exec.rb │ │ │ ├── centreon_useralias_exec.rb │ │ │ ├── cfme_manageiq_evm_upload_exec.rb │ │ │ ├── cisco_firepower_useradd.rb │ │ │ ├── cisco_prime_inf_rce.rb │ │ │ ├── cisco_rv130_rmi_rce.rb │ │ │ ├── cisco_rv32x_rce.rb │ │ │ ├── crypttech_cryptolog_login_exec.rb │ │ │ ├── dcos_marathon.rb │ │ │ ├── ddwrt_cgibin_exec.rb │ │ │ ├── denyall_waf_exec.rb │ │ │ ├── dlink_authentication_cgi_bof.rb │ │ │ ├── dlink_command_php_exec_noauth.rb │ │ │ ├── dlink_dcs931l_upload.rb │ │ │ ├── dlink_dcs_930l_authenticated_remote_command_execution.rb │ │ │ ├── dlink_diagnostic_exec_noauth.rb │ │ │ ├── dlink_dir300_exec_telnet.rb │ │ │ ├── dlink_dir605l_captcha_bof.rb │ │ │ ├── dlink_dir615_up_exec.rb │ │ │ ├── dlink_dir850l_unauth_exec.rb │ │ │ ├── dlink_dsl2750b_exec_noauth.rb │ │ │ ├── dlink_dspw110_cookie_noauth_exec.rb │ │ │ ├── dlink_dspw215_info_cgi_bof.rb │ │ │ ├── dlink_hedwig_cgi_bof.rb │ │ │ ├── dlink_hnap_bof.rb │ │ │ ├── dlink_hnap_header_exec_noauth.rb │ │ │ ├── dlink_hnap_login_bof.rb │ │ │ ├── dlink_upnp_exec_noauth.rb │ │ │ ├── dnalims_admin_exec.rb │ │ │ ├── docker_daemon_tcp.rb │ │ │ ├── dolibarr_cmd_exec.rb │ │ │ ├── dreambox_openpli_shell.rb │ │ │ ├── efw_chpasswd_exec.rb │ │ │ ├── empire_skywalker.rb │ │ │ ├── esva_exec.rb │ │ │ ├── f5_icall_cmd.rb │ │ │ ├── f5_icontrol_exec.rb │ │ │ ├── foreman_openstack_satellite_code_exec.rb │ │ │ ├── fritzbox_echo_exec.rb │ │ │ ├── github_enterprise_secret.rb │ │ │ ├── gitlist_exec.rb │ │ │ ├── goahead_ldpreload.rb │ │ │ ├── goautodial_3_rce_command_injection.rb │ │ │ ├── gpsd_format_string.rb │ │ │ ├── groundwork_monarch_cmd_exec.rb │ │ │ ├── hadoop_unauth_exec.rb │ │ │ ├── hp_system_management.rb │ │ │ ├── hp_van_sdn_cmd_inject.rb │ │ │ ├── huawei_hg532n_cmdinject.rb │ │ │ ├── ibm_qradar_unauth_rce.rb │ │ │ ├── imperva_securesphere_exec.rb │ │ │ ├── ipfire_bashbug_exec.rb │ │ │ ├── ipfire_oinkcode_exec.rb │ │ │ ├── ipfire_proxy_exec.rb │ │ │ ├── kaltura_unserialize_cookie_rce.rb │ │ │ ├── kaltura_unserialize_rce.rb │ │ │ ├── kloxo_sqli.rb │ │ │ ├── lifesize_uvc_ping_rce.rb │ │ │ ├── linksys_apply_cgi.rb │ │ │ ├── linksys_e1500_apply_exec.rb │ │ │ ├── linksys_themoon_exec.rb │ │ │ ├── linksys_wrt110_cmd_exec.rb │ │ │ ├── linksys_wrt160nv2_apply_exec.rb │ │ │ ├── linksys_wrt54gl_apply_exec.rb │ │ │ ├── linksys_wvbr0_user_agent_exec_noauth.rb │ │ │ ├── logsign_exec.rb │ │ │ ├── mailcleaner_exec.rb │ │ │ ├── microfocus_secure_messaging_gateway.rb │ │ │ ├── multi_ncc_ping_exec.rb │ │ │ ├── mutiny_frontend_upload.rb │ │ │ ├── mvpower_dvr_shell_exec.rb │ │ │ ├── nagios_xi_chained_rce.rb │ │ │ ├── nagios_xi_chained_rce_2_electric_boogaloo.rb │ │ │ ├── netgear_dgn1000_setup_unauth_exec.rb │ │ │ ├── netgear_dgn1000b_setup_exec.rb │ │ │ ├── netgear_dgn2200b_pppoe_exec.rb │ │ │ ├── netgear_dnslookup_cmd_exec.rb │ │ │ ├── netgear_r7000_cgibin_exec.rb │ │ │ ├── netgear_readynas_exec.rb │ │ │ ├── netgear_unauth_exec.rb │ │ │ ├── netgear_wnr2000_rce.rb │ │ │ ├── nginx_chunked_size.rb │ │ │ ├── nuuo_nvrmini_auth_rce.rb │ │ │ ├── nuuo_nvrmini_unauth_rce.rb │ │ │ ├── op5_config_exec.rb │ │ │ ├── openfiler_networkcard_exec.rb │ │ │ ├── pandora_fms_exec.rb │ │ │ ├── pandora_fms_sqli.rb │ │ │ ├── panos_readsessionvars.rb │ │ │ ├── peercast_url.rb │ │ │ ├── php_imap_open_rce.rb │ │ │ ├── pineapp_ldapsyncnow_exec.rb │ │ │ ├── pineapp_livelog_exec.rb │ │ │ ├── pineapp_test_li_conn_exec.rb │ │ │ ├── pineapple_bypass_cmdinject.rb │ │ │ ├── pineapple_preconfig_cmdinject.rb │ │ │ ├── piranha_passwd_exec.rb │ │ │ ├── qnap_qcenter_change_passwd_exec.rb │ │ │ ├── raidsonic_nas_ib5220_exec_noauth.rb │ │ │ ├── railo_cfml_rfi.rb │ │ │ ├── rancher_server.rb │ │ │ ├── realtek_miniigd_upnp_exec_noauth.rb │ │ │ ├── riverbed_netprofiler_netexpress_exec.rb │ │ │ ├── samsung_srv_1670d_upload_exec.rb │ │ │ ├── seagate_nas_php_exec_noauth.rb │ │ │ ├── smt_ipmi_close_window_bof.rb │ │ │ ├── sophos_wpa_iface_exec.rb │ │ │ ├── sophos_wpa_sblistpack_exec.rb │ │ │ ├── spark_unauth_rce.rb │ │ │ ├── supervisor_xmlrpc_exec.rb │ │ │ ├── symantec_messaging_gateway_exec.rb │ │ │ ├── symantec_web_gateway_exec.rb │ │ │ ├── symantec_web_gateway_file_upload.rb │ │ │ ├── symantec_web_gateway_lfi.rb │ │ │ ├── symantec_web_gateway_pbcontrol.rb │ │ │ ├── symantec_web_gateway_restore.rb │ │ │ ├── synology_dsm_sliceupload_exec_noauth.rb │ │ │ ├── tiki_calendar_exec.rb │ │ │ ├── tp_link_sc2020n_authenticated_telnet_injection.rb │ │ │ ├── tr064_ntpserver_cmdinject.rb │ │ │ ├── trend_micro_imsva_exec.rb │ │ │ ├── trendmicro_imsva_widget_exec.rb │ │ │ ├── trendmicro_sps_exec.rb │ │ │ ├── trueonline_billion_5200w_rce.rb │ │ │ ├── trueonline_p660hn_v1_rce.rb │ │ │ ├── trueonline_p660hn_v2_rce.rb │ │ │ ├── ueb_api_rce.rb │ │ │ ├── vap2500_tools_command_exec.rb │ │ │ ├── vcms_upload.rb │ │ │ ├── wanem_exec.rb │ │ │ ├── wd_mycloud_multiupload_upload.rb │ │ │ ├── webcalendar_settings_exec.rb │ │ │ ├── webid_converter.rb │ │ │ ├── wipg1000_cmd_injection.rb │ │ │ ├── xplico_exec.rb │ │ │ ├── zabbix_sqli.rb │ │ │ ├── zen_load_balancer_exec.rb │ │ │ ├── zenoss_showdaemonxmlconfig_exec.rb │ │ │ └── zimbra_xxe_rce.rb │ │ ├── ids │ │ │ ├── alienvault_centerd_soap_exec.rb │ │ │ └── snortbopre.rb │ │ ├── imap │ │ │ └── imap_uw_lsub.rb │ │ ├── local │ │ │ ├── abrt_raceabrt_priv_esc.rb │ │ │ ├── af_packet_chocobo_root_priv_esc.rb │ │ │ ├── af_packet_packet_set_ring_priv_esc.rb │ │ │ ├── apport_abrt_chroot_priv_esc.rb │ │ │ ├── asan_suid_executable_priv_esc.rb │ │ │ ├── autostart_persistence.rb │ │ │ ├── blueman_set_dhcp_handler_dbus_priv_esc.rb │ │ │ ├── bpf_priv_esc.rb │ │ │ ├── bpf_sign_extension_priv_esc.rb │ │ │ ├── cron_persistence.rb │ │ │ ├── desktop_privilege_escalation.rb │ │ │ ├── docker_daemon_privilege_escalation.rb │ │ │ ├── glibc_ld_audit_dso_load_priv_esc.rb │ │ │ ├── glibc_origin_expansion_priv_esc.rb │ │ │ ├── glibc_realpath_priv_esc.rb │ │ │ ├── hp_smhstart.rb │ │ │ ├── juju_run_agent_priv_esc.rb │ │ │ ├── kloxo_lxsuexec.rb │ │ │ ├── lastore_daemon_dbus_priv_esc.rb │ │ │ ├── libuser_roothelper_priv_esc.rb │ │ │ ├── nested_namespace_idmap_limit_priv_esc.rb │ │ │ ├── netfilter_priv_esc_ipv4.rb │ │ │ ├── network_manager_vpnc_username_priv_esc.rb │ │ │ ├── ntfs3g_priv_esc.rb │ │ │ ├── overlayfs_priv_esc.rb │ │ │ ├── pkexec.rb │ │ │ ├── rc_local_persistence.rb │ │ │ ├── rds_priv_esc.rb │ │ │ ├── recvmmsg_priv_esc.rb │ │ │ ├── service_persistence.rb │ │ │ ├── sock_sendpage.rb │ │ │ ├── sophos_wpa_clear_keys.rb │ │ │ ├── udev_netlink.rb │ │ │ ├── ueb_bpserverd_privesc.rb │ │ │ ├── ufo_privilege_escalation.rb │ │ │ ├── vmware_alsa_config.rb │ │ │ ├── vmware_mount.rb │ │ │ └── zpanel_zsudo.rb │ │ ├── misc │ │ │ ├── accellion_fta_mpipe2.rb │ │ │ ├── asus_infosvr_auth_bypass_exec.rb │ │ │ ├── drb_remote_codeexec.rb │ │ │ ├── gld_postfix.rb │ │ │ ├── hid_discoveryd_command_blink_on_unauth_rce.rb │ │ │ ├── hikvision_rtsp_bof.rb │ │ │ ├── hp_data_protector_cmd_exec.rb │ │ │ ├── hp_jetdirect_path_traversal.rb │ │ │ ├── hp_nnmi_pmd_bof.rb │ │ │ ├── hp_vsa_login_bof.rb │ │ │ ├── hplip_hpssd_exec.rb │ │ │ ├── ib_inet_connect.rb │ │ │ ├── ib_jrd8_create_database.rb │ │ │ ├── ib_open_marker_file.rb │ │ │ ├── ib_pwd_db_aliased.rb │ │ │ ├── jenkins_java_deserialize.rb │ │ │ ├── jenkins_ldap_deserialize.rb │ │ │ ├── lprng_format_string.rb │ │ │ ├── mongod_native_helper.rb │ │ │ ├── nagios_nrpe_arguments.rb │ │ │ ├── netcore_udp_53413_backdoor.rb │ │ │ ├── netsupport_manager_agent.rb │ │ │ ├── novell_edirectory_ncp_bof.rb │ │ │ ├── opennms_java_serialize.rb │ │ │ ├── qnap_transcode_server.rb │ │ │ ├── quest_pmmasterd_bof.rb │ │ │ ├── sercomm_exec.rb │ │ │ ├── ueb9_bpserverd.rb │ │ │ └── zabbix_server_exec.rb │ │ ├── mysql │ │ │ ├── mysql_yassl_getname.rb │ │ │ └── mysql_yassl_hello.rb │ │ ├── pop3 │ │ │ └── cyrus_pop3d_popsubfolders.rb │ │ ├── postgres │ │ │ └── postgres_payload.rb │ │ ├── pptp │ │ │ └── poptop_negative_read.rb │ │ ├── proxy │ │ │ └── squid_ntlm_authenticate.rb │ │ ├── samba │ │ │ ├── chain_reply.rb │ │ │ ├── is_known_pipename.rb │ │ │ ├── lsa_transnames_heap.rb │ │ │ ├── setinfopolicy_heap.rb │ │ │ └── trans2open.rb │ │ ├── smtp │ │ │ ├── exim4_dovecot_exec.rb │ │ │ ├── exim_gethostbyname_bof.rb │ │ │ └── haraka.py │ │ ├── ssh │ │ │ ├── ceragon_fibeair_known_privkey.rb │ │ │ ├── exagrid_known_privkey.rb │ │ │ ├── f5_bigip_known_privkey.rb │ │ │ ├── loadbalancerorg_enterprise_known_privkey.rb │ │ │ ├── mercurial_ssh_exec.rb │ │ │ ├── quantum_dxi_known_privkey.rb │ │ │ ├── quantum_vmpro_backdoor.rb │ │ │ ├── solarwinds_lem_exec.rb │ │ │ ├── symantec_smg_ssh.rb │ │ │ ├── ubiquiti_airos_file_upload.rb │ │ │ └── vmware_vdp_known_privkey.rb │ │ ├── telnet │ │ │ ├── netgear_telnetenable.rb │ │ │ └── telnet_encrypt_keyid.rb │ │ └── upnp │ │ │ ├── belkin_wemo_upnp_exec.rb │ │ │ ├── dlink_upnp_msearch_exec.rb │ │ │ └── miniupnpd_soap_bof.rb │ ├── mainframe │ │ └── ftp │ │ │ └── ftp_jcl_creds.rb │ ├── multi │ │ ├── browser │ │ │ ├── adobe_flash_hacking_team_uaf.rb │ │ │ ├── adobe_flash_nellymoser_bof.rb │ │ │ ├── adobe_flash_net_connection_confusion.rb │ │ │ ├── adobe_flash_opaque_background_uaf.rb │ │ │ ├── adobe_flash_pixel_bender_bof.rb │ │ │ ├── adobe_flash_shader_drawing_fill.rb │ │ │ ├── adobe_flash_shader_job_overflow.rb │ │ │ ├── adobe_flash_uncompress_zlib_uaf.rb │ │ │ ├── firefox_escape_retval.rb │ │ │ ├── firefox_pdfjs_privilege_escalation.rb │ │ │ ├── firefox_proto_crmfrequest.rb │ │ │ ├── firefox_proxy_prototype.rb │ │ │ ├── firefox_queryinterface.rb │ │ │ ├── firefox_svg_plugin.rb │ │ │ ├── firefox_tostring_console_injection.rb │ │ │ ├── firefox_webidl_injection.rb │ │ │ ├── firefox_xpi_bootstrapped_addon.rb │ │ │ ├── itms_overflow.rb │ │ │ ├── java_atomicreferencearray.rb │ │ │ ├── java_calendar_deserialize.rb │ │ │ ├── java_getsoundbank_bof.rb │ │ │ ├── java_jre17_driver_manager.rb │ │ │ ├── java_jre17_exec.rb │ │ │ ├── java_jre17_glassfish_averagerangestatisticimpl.rb │ │ │ ├── java_jre17_jaxws.rb │ │ │ ├── java_jre17_jmxbean.rb │ │ │ ├── java_jre17_jmxbean_2.rb │ │ │ ├── java_jre17_method_handle.rb │ │ │ ├── java_jre17_provider_skeleton.rb │ │ │ ├── java_jre17_reflection_types.rb │ │ │ ├── java_rhino.rb │ │ │ ├── java_rmi_connection_impl.rb │ │ │ ├── java_setdifficm_bof.rb │ │ │ ├── java_signed_applet.rb │ │ │ ├── java_storeimagearray.rb │ │ │ ├── java_trusted_chain.rb │ │ │ ├── java_verifier_field_access.rb │ │ │ ├── mozilla_compareto.rb │ │ │ ├── mozilla_navigatorjava.rb │ │ │ ├── msfd_rce_browser.rb │ │ │ ├── opera_configoverwrite.rb │ │ │ ├── opera_historysearch.rb │ │ │ └── qtjava_pointer.rb │ │ ├── elasticsearch │ │ │ ├── script_mvel_rce.rb │ │ │ └── search_groovy_script.rb │ │ ├── fileformat │ │ │ ├── adobe_u3d_meshcont.rb │ │ │ ├── evince_cbt_cmd_injection.rb │ │ │ ├── ghostscript_failed_restore.rb │ │ │ ├── js_unpacker_eval_injection.rb │ │ │ ├── libreoffice_macro_exec.rb │ │ │ ├── maple_maplet.rb │ │ │ ├── nodejs_js_yaml_load_code_exec.rb │ │ │ ├── office_word_macro.rb │ │ │ ├── peazip_command_injection.rb │ │ │ └── swagger_param_inject.rb │ │ ├── ftp │ │ │ ├── pureftpd_bash_env_exec.rb │ │ │ └── wuftpd_site_exec_format.rb │ │ ├── gdb │ │ │ └── gdb_server_exec.rb │ │ ├── hams │ │ │ └── steamed.rb │ │ ├── handler.rb │ │ ├── http │ │ │ ├── activecollab_chat.rb │ │ │ ├── ajaxplorer_checkinstall_exec.rb │ │ │ ├── apache_activemq_upload_jsp.rb │ │ │ ├── apache_jetspeed_file_upload.rb │ │ │ ├── apache_mod_cgi_bash_env_exec.rb │ │ │ ├── apache_roller_ognl_injection.rb │ │ │ ├── apprain_upload_exec.rb │ │ │ ├── atutor_sqli.rb │ │ │ ├── auxilium_upload_exec.rb │ │ │ ├── axis2_deployer.rb │ │ │ ├── bassmaster_js_injection.rb │ │ │ ├── bolt_file_upload.rb │ │ │ ├── builderengine_upload_exec.rb │ │ │ ├── caidao_php_backdoor_exec.rb │ │ │ ├── cisco_dcnm_upload.rb │ │ │ ├── clipbucket_fileupload_exec.rb │ │ │ ├── cmsms_showtime2_rce.rb │ │ │ ├── cmsms_upload_rename_rce.rb │ │ │ ├── coldfusion_ckeditor_file_upload.rb │ │ │ ├── coldfusion_rds.rb │ │ │ ├── confluence_widget_connector.rb │ │ │ ├── cups_bash_env_exec.rb │ │ │ ├── cuteflow_upload_exec.rb │ │ │ ├── dexter_casinoloader_exec.rb │ │ │ ├── drupal_drupageddon.rb │ │ │ ├── eaton_nsm_code_exec.rb │ │ │ ├── eventlog_file_upload.rb │ │ │ ├── extplorer_upload_exec.rb │ │ │ ├── familycms_less_exec.rb │ │ │ ├── freenas_exec_raw.rb │ │ │ ├── gestioip_exec.rb │ │ │ ├── git_client_command_exec.rb │ │ │ ├── git_submodule_command_exec.rb │ │ │ ├── git_submodule_url_exec.rb │ │ │ ├── gitlab_shell_exec.rb │ │ │ ├── gitlist_arg_injection.rb │ │ │ ├── gitorious_graph.rb │ │ │ ├── glassfish_deployer.rb │ │ │ ├── glossword_upload_exec.rb │ │ │ ├── glpi_install_rce.rb │ │ │ ├── horde_form_file_upload.rb │ │ │ ├── horde_href_backdoor.rb │ │ │ ├── hp_sitescope_issuesiebelcmd.rb │ │ │ ├── hp_sitescope_uploadfileshandler.rb │ │ │ ├── hp_sys_mgmt_exec.rb │ │ │ ├── hyperic_hq_script_console.rb │ │ │ ├── ibm_openadmin_tool_soap_welcomeserver_exec.rb │ │ │ ├── ispconfig_php_exec.rb │ │ │ ├── jboss_bshdeployer.rb │ │ │ ├── jboss_deploymentfilerepository.rb │ │ │ ├── jboss_invoke_deploy.rb │ │ │ ├── jboss_maindeployer.rb │ │ │ ├── jboss_seam_upload_exec.rb │ │ │ ├── jenkins_metaprogramming.rb │ │ │ ├── jenkins_script_console.rb │ │ │ ├── jenkins_xstream_deserialize.rb │ │ │ ├── jira_hipchat_template.rb │ │ │ ├── jira_plugin_upload.rb │ │ │ ├── joomla_http_header_rce.rb │ │ │ ├── kordil_edms_upload_exec.rb │ │ │ ├── lcms_php_exec.rb │ │ │ ├── log1cms_ajax_create_folder.rb │ │ │ ├── magento_unserialize.rb │ │ │ ├── makoserver_cmd_exec.rb │ │ │ ├── manage_engine_dc_pmp_sqli.rb │ │ │ ├── manageengine_auth_upload.rb │ │ │ ├── manageengine_sd_uploader.rb │ │ │ ├── manageengine_search_sqli.rb │ │ │ ├── mantisbt_manage_proj_page_rce.rb │ │ │ ├── mantisbt_php_exec.rb │ │ │ ├── mediawiki_syntaxhighlight.rb │ │ │ ├── mediawiki_thumb.rb │ │ │ ├── metasploit_static_secret_key_base.rb │ │ │ ├── metasploit_webui_console_command_execution.rb │ │ │ ├── mma_backdoor_upload.rb │ │ │ ├── mobilecartly_upload_exec.rb │ │ │ ├── monstra_fileupload_exec.rb │ │ │ ├── moodle_cmd_exec.rb │ │ │ ├── movabletype_upgrade_exec.rb │ │ │ ├── mutiny_subnetmask_exec.rb │ │ │ ├── nas4free_php_exec.rb │ │ │ ├── navigate_cms_rce.rb │ │ │ ├── netwin_surgeftp_exec.rb │ │ │ ├── nibbleblog_file_upload.rb │ │ │ ├── novell_servicedesk_rce.rb │ │ │ ├── nuuo_nvrmini_upgrade_rce.rb │ │ │ ├── op5_license.rb │ │ │ ├── op5_welcome.rb │ │ │ ├── openfire_auth_bypass.rb │ │ │ ├── openmediavault_cmd_exec.rb │ │ │ ├── openx_backdoor_php.rb │ │ │ ├── opmanager_socialit_file_upload.rb │ │ │ ├── oracle_ats_file_upload.rb │ │ │ ├── oracle_reports_rce.rb │ │ │ ├── oracle_weblogic_wsat_deserialization_rce.rb │ │ │ ├── orientdb_exec.rb │ │ │ ├── oscommerce_installer_unauth_code_exec.rb │ │ │ ├── pandora_upload_exec.rb │ │ │ ├── phoenix_exec.rb │ │ │ ├── php_cgi_arg_injection.rb │ │ │ ├── php_utility_belt_rce.rb │ │ │ ├── php_volunteer_upload_exec.rb │ │ │ ├── phpfilemanager_rce.rb │ │ │ ├── phpldapadmin_query_engine.rb │ │ │ ├── phpmailer_arg_injection.rb │ │ │ ├── phpmoadmin_exec.rb │ │ │ ├── phpmyadmin_3522_backdoor.rb │ │ │ ├── phpmyadmin_lfi_rce.rb │ │ │ ├── phpmyadmin_null_termination_exec.rb │ │ │ ├── phpmyadmin_preg_replace.rb │ │ │ ├── phpscheduleit_start_date.rb │ │ │ ├── phptax_exec.rb │ │ │ ├── phpwiki_ploticus_exec.rb │ │ │ ├── playsms_filename_exec.rb │ │ │ ├── playsms_uploadcsv_exec.rb │ │ │ ├── plone_popen2.rb │ │ │ ├── pmwiki_pagelist.rb │ │ │ ├── polarcms_upload_exec.rb │ │ │ ├── processmaker_exec.rb │ │ │ ├── processmaker_plugin_upload.rb │ │ │ ├── qdpm_upload_exec.rb │ │ │ ├── rails_actionpack_inline_exec.rb │ │ │ ├── rails_dynamic_render_code_exec.rb │ │ │ ├── rails_json_yaml_code_exec.rb │ │ │ ├── rails_secret_deserialization.rb │ │ │ ├── rails_web_console_v2_code_exec.rb │ │ │ ├── rails_xml_yaml_code_exec.rb │ │ │ ├── rocket_servergraph_file_requestor_rce.rb │ │ │ ├── sflog_upload_exec.rb │ │ │ ├── simple_backdoors_exec.rb │ │ │ ├── sit_file_upload.rb │ │ │ ├── snortreport_exec.rb │ │ │ ├── solarwinds_store_manager_auth_filter.rb │ │ │ ├── sonicwall_gms_upload.rb │ │ │ ├── sonicwall_scrutinizer_methoddetail_sqli.rb │ │ │ ├── splunk_mappy_exec.rb │ │ │ ├── splunk_upload_app_exec.rb │ │ │ ├── spree_search_exec.rb │ │ │ ├── spree_searchlogic_exec.rb │ │ │ ├── struts2_code_exec_showcase.rb │ │ │ ├── struts2_content_type_ognl.rb │ │ │ ├── struts2_namespace_ognl.rb │ │ │ ├── struts2_rest_xstream.rb │ │ │ ├── struts_code_exec.rb │ │ │ ├── struts_code_exec_classloader.rb │ │ │ ├── struts_code_exec_exception_delegator.rb │ │ │ ├── struts_code_exec_parameters.rb │ │ │ ├── struts_default_action_mapper.rb │ │ │ ├── struts_dev_mode.rb │ │ │ ├── struts_dmi_exec.rb │ │ │ ├── struts_dmi_rest_exec.rb │ │ │ ├── struts_include_params.rb │ │ │ ├── stunshell_eval.rb │ │ │ ├── stunshell_exec.rb │ │ │ ├── sun_jsws_dav_options.rb │ │ │ ├── sysaid_auth_file_upload.rb │ │ │ ├── sysaid_rdslogs_file_upload.rb │ │ │ ├── testlink_upload_exec.rb │ │ │ ├── tomcat_jsp_upload_bypass.rb │ │ │ ├── tomcat_mgr_deploy.rb │ │ │ ├── tomcat_mgr_upload.rb │ │ │ ├── traq_plugin_exec.rb │ │ │ ├── trendmicro_threat_discovery_admin_sys_time_cmdi.rb │ │ │ ├── uptime_file_upload_1.rb │ │ │ ├── uptime_file_upload_2.rb │ │ │ ├── v0pcr3w_exec.rb │ │ │ ├── vbseo_proc_deutf.rb │ │ │ ├── vbulletin_unserialize.rb │ │ │ ├── visual_mining_netcharts_upload.rb │ │ │ ├── vtiger_install_rce.rb │ │ │ ├── vtiger_logo_upload_exec.rb │ │ │ ├── vtiger_php_exec.rb │ │ │ ├── vtiger_soap_upload.rb │ │ │ ├── webnms_file_upload.rb │ │ │ ├── webpagetest_upload_exec.rb │ │ │ ├── werkzeug_debug_rce.rb │ │ │ ├── wikka_spam_exec.rb │ │ │ ├── wp_crop_rce.rb │ │ │ ├── wp_ninja_forms_unauthenticated_file_upload.rb │ │ │ ├── wp_responsive_thumbnail_slider_upload.rb │ │ │ ├── x7chat2_php_exec.rb │ │ │ ├── zabbix_script_exec.rb │ │ │ ├── zemra_panel_rce.rb │ │ │ ├── zenworks_configuration_management_upload.rb │ │ │ ├── zenworks_control_center_upload.rb │ │ │ └── zpanel_information_disclosure_rce.rb │ │ ├── ids │ │ │ └── snort_dce_rpc.rb │ │ ├── local │ │ │ ├── allwinner_backdoor.rb │ │ │ ├── magnicomp_sysinfo_mcsiwrapper_priv_esc.rb │ │ │ └── xorg_x11_suid_server.rb │ │ ├── misc │ │ │ ├── arkeia_agent_exec.rb │ │ │ ├── batik_svg_java.rb │ │ │ ├── bmc_patrol_cmd_exec.rb │ │ │ ├── bmc_server_automation_rscd_nsh_rce.rb │ │ │ ├── claymore_dual_miner_remote_manager_rce.rb │ │ │ ├── consul_rexec_exec.rb │ │ │ ├── consul_service_exec.rb │ │ │ ├── erlang_cookie_rce.rb │ │ │ ├── hp_data_protector_exec_integutil.rb │ │ │ ├── hp_vsa_exec.rb │ │ │ ├── indesign_server_soap.rb │ │ │ ├── java_jdwp_debugger.rb │ │ │ ├── java_jmx_server.rb │ │ │ ├── java_rmi_server.rb │ │ │ ├── legend_bot_exec.rb │ │ │ ├── msf_rpc_console.rb │ │ │ ├── msfd_rce_remote.rb │ │ │ ├── nodejs_v8_debugger.rb │ │ │ ├── openoffice_document_macro.rb │ │ │ ├── openview_omniback_exec.rb │ │ │ ├── osgi_console_exec.rb │ │ │ ├── pbot_exec.rb │ │ │ ├── persistent_hpca_radexec_exec.rb │ │ │ ├── ra1nx_pubcall_exec.rb │ │ │ ├── teamcity_agent_xmlrpc_exec.rb │ │ │ ├── veritas_netbackup_cmdexec.rb │ │ │ ├── w3tw0rk_exec.rb │ │ │ ├── weblogic_deserialize.rb │ │ │ ├── weblogic_deserialize_marshalledobject.rb │ │ │ ├── weblogic_deserialize_rawobject.rb │ │ │ ├── weblogic_deserialize_unicastref.rb │ │ │ ├── wireshark_lwres_getaddrbyname.rb │ │ │ ├── wireshark_lwres_getaddrbyname_loop.rb │ │ │ ├── xdh_x_exec.rb │ │ │ └── zend_java_bridge.rb │ │ ├── mysql │ │ │ └── mysql_udf_payload.rb │ │ ├── ntp │ │ │ └── ntp_overflow.rb │ │ ├── php │ │ │ ├── php_unserialize_zval_cookie.rb │ │ │ └── wp_duplicator_code_inject.rb │ │ ├── postgres │ │ │ └── postgres_createlang.rb │ │ ├── realserver │ │ │ └── describe.rb │ │ ├── samba │ │ │ ├── nttrans.rb │ │ │ └── usermap_script.rb │ │ ├── sap │ │ │ ├── sap_mgmt_con_osexec_payload.rb │ │ │ ├── sap_soap_rfc_sxpg_call_system_exec.rb │ │ │ └── sap_soap_rfc_sxpg_command_exec.rb │ │ ├── script │ │ │ └── web_delivery.rb │ │ ├── ssh │ │ │ └── sshexec.rb │ │ ├── svn │ │ │ └── svnserve_date.rb │ │ ├── upnp │ │ │ └── libupnp_ssdp_overflow.rb │ │ ├── vnc │ │ │ ├── .keep │ │ │ └── vnc_keyboard_exec.rb │ │ ├── vpn │ │ │ └── tincd_bof.rb │ │ └── wyse │ │ │ └── hagent_untrusted_hsdata.rb │ ├── netware │ │ ├── smb │ │ │ └── lsass_cifs.rb │ │ └── sunrpc │ │ │ └── pkernel_callit.rb │ ├── osx │ │ ├── afp │ │ │ └── loginext.rb │ │ ├── arkeia │ │ │ └── type77.rb │ │ ├── browser │ │ │ ├── adobe_flash_delete_range_tl_op.rb │ │ │ ├── mozilla_mchannel.rb │ │ │ ├── safari_file_policy.rb │ │ │ ├── safari_metadata_archive.rb │ │ │ ├── safari_proxy_object_type_confusion.rb │ │ │ ├── safari_user_assisted_applescript_exec.rb │ │ │ ├── safari_user_assisted_download_launch.rb │ │ │ └── software_update.rb │ │ ├── email │ │ │ └── mailapp_image_exec.rb │ │ ├── ftp │ │ │ └── webstar_ftp_user.rb │ │ ├── http │ │ │ └── evocam_webserver.rb │ │ ├── local │ │ │ ├── dyld_print_to_file_root.rb │ │ │ ├── iokit_keyboard_root.rb │ │ │ ├── libxpc_mitm_ssudo.rb │ │ │ ├── nfs_mount_root.rb │ │ │ ├── persistence.rb │ │ │ ├── root_no_password.rb │ │ │ ├── rootpipe.rb │ │ │ ├── rootpipe_entitlements.rb │ │ │ ├── rsh_libmalloc.rb │ │ │ ├── setuid_tunnelblick.rb │ │ │ ├── setuid_viscosity.rb │ │ │ ├── sudo_password_bypass.rb │ │ │ ├── tpwn.rb │ │ │ └── vmware_bash_function_root.rb │ │ ├── mdns │ │ │ └── upnp_location.rb │ │ ├── misc │ │ │ └── ufo_ai.rb │ │ ├── rtsp │ │ │ └── quicktime_rtsp_content_type.rb │ │ └── samba │ │ │ ├── lsa_transnames_heap.rb │ │ │ └── trans2open.rb │ ├── qnx │ │ ├── local │ │ │ └── ifwatchd_priv_esc.rb │ │ └── qconn │ │ │ └── qconn_exec.rb │ ├── solaris │ │ ├── dtspcd │ │ │ └── heap_noir.rb │ │ ├── local │ │ │ ├── extremeparr_dtappgather_priv_esc.rb │ │ │ ├── libnspr_nspr_log_file_priv_esc.rb │ │ │ └── rsh_stack_clash_priv_esc.rb │ │ ├── lpd │ │ │ └── sendmail_exec.rb │ │ ├── samba │ │ │ ├── lsa_transnames_heap.rb │ │ │ └── trans2open.rb │ │ ├── sunrpc │ │ │ ├── sadmind_adm_build_path.rb │ │ │ ├── sadmind_exec.rb │ │ │ └── ypupdated_exec.rb │ │ └── telnet │ │ │ ├── fuser.rb │ │ │ └── ttyprompt.rb │ ├── unix │ │ ├── dhcp │ │ │ ├── bash_environment.rb │ │ │ └── rhel_dhcp_client_command_injection.rb │ │ ├── fileformat │ │ │ ├── ghostscript_type_confusion.rb │ │ │ └── imagemagick_delegate.rb │ │ ├── ftp │ │ │ ├── proftpd_133c_backdoor.rb │ │ │ ├── proftpd_modcopy_exec.rb │ │ │ └── vsftpd_234_backdoor.rb │ │ ├── http │ │ │ ├── contentkeeperweb_mimencode.rb │ │ │ ├── ctek_skyrouter.rb │ │ │ ├── dell_kace_k1000_upload.rb │ │ │ ├── epmp1000_get_chart_cmd_shell.rb │ │ │ ├── epmp1000_ping_cmd_shell.rb │ │ │ ├── freepbx_callmenum.rb │ │ │ ├── lifesize_room.rb │ │ │ ├── pfsense_clickjacking.rb │ │ │ ├── pfsense_graph_injection_exec.rb │ │ │ ├── pfsense_group_member_exec.rb │ │ │ ├── quest_kace_systems_management_rce.rb │ │ │ ├── tnftp_savefile.rb │ │ │ ├── twiki_debug_plugins.rb │ │ │ ├── vmturbo_vmtadmin_exec_noauth.rb │ │ │ └── xdebug_unauth_exec.rb │ │ ├── irc │ │ │ └── unreal_ircd_3281_backdoor.rb │ │ ├── local │ │ │ ├── at_persistence.rb │ │ │ ├── chkrootkit.rb │ │ │ ├── emacs_movemail.rb │ │ │ ├── exim_perl_startup.rb │ │ │ ├── netbsd_mail_local.rb │ │ │ └── setuid_nmap.rb │ │ ├── misc │ │ │ ├── distcc_exec.rb │ │ │ ├── polycom_hdx_auth_bypass.rb │ │ │ ├── polycom_hdx_traceroute_exec.rb │ │ │ ├── qnx_qconn_exec.rb │ │ │ ├── spamassassin_exec.rb │ │ │ ├── xerox_mfp.rb │ │ │ └── zabbix_agent_exec.rb │ │ ├── polycom_hdx_auth_bypass.rb │ │ ├── smtp │ │ │ ├── clamav_milter_blackhole.rb │ │ │ ├── exim4_string_format.rb │ │ │ ├── morris_sendmail_debug.rb │ │ │ └── qmail_bash_env_exec.rb │ │ ├── sonicwall │ │ │ └── sonicwall_xmlrpc_rce.rb │ │ ├── ssh │ │ │ ├── array_vxag_vapv_privkey_privesc.rb │ │ │ └── tectia_passwd_changereq.rb │ │ ├── webapp │ │ │ ├── actualanalyzer_ant_cookie_exec.rb │ │ │ ├── arkeia_upload_exec.rb │ │ │ ├── awstats_configdir_exec.rb │ │ │ ├── awstats_migrate_exec.rb │ │ │ ├── awstatstotals_multisort.rb │ │ │ ├── barracuda_img_exec.rb │ │ │ ├── base_qry_common.rb │ │ │ ├── basilic_diff_exec.rb │ │ │ ├── cacti_graphimage_exec.rb │ │ │ ├── cakephp_cache_corruption.rb │ │ │ ├── carberp_backdoor_exec.rb │ │ │ ├── citrix_access_gateway_exec.rb │ │ │ ├── clipbucket_upload_exec.rb │ │ │ ├── coppermine_piceditor.rb │ │ │ ├── datalife_preview_exec.rb │ │ │ ├── dogfood_spell_exec.rb │ │ │ ├── drupal_coder_exec.rb │ │ │ ├── drupal_drupalgeddon2.rb │ │ │ ├── drupal_restws_exec.rb │ │ │ ├── drupal_restws_unserialize.rb │ │ │ ├── egallery_upload_exec.rb │ │ │ ├── elfinder_php_connector_exiftran_cmd_injection.rb │ │ │ ├── flashchat_upload_exec.rb │ │ │ ├── foswiki_maketext.rb │ │ │ ├── freepbx_config_exec.rb │ │ │ ├── generic_exec.rb │ │ │ ├── get_simple_cms_upload_exec.rb │ │ │ ├── google_proxystylesheet_exec.rb │ │ │ ├── graphite_pickle_exec.rb │ │ │ ├── guestbook_ssi_exec.rb │ │ │ ├── hastymail_exec.rb │ │ │ ├── havalite_upload_exec.rb │ │ │ ├── horde_unserialize_exec.rb │ │ │ ├── hybridauth_install_php_exec.rb │ │ │ ├── instantcms_exec.rb │ │ │ ├── invision_pboard_unserialize_exec.rb │ │ │ ├── joomla_akeeba_unserialize.rb │ │ │ ├── joomla_comfields_sqli_rce.rb │ │ │ ├── joomla_comjce_imgmanager.rb │ │ │ ├── joomla_contenthistory_sqli_rce.rb │ │ │ ├── joomla_media_upload_exec.rb │ │ │ ├── joomla_tinybrowser.rb │ │ │ ├── jquery_file_upload.rb │ │ │ ├── kimai_sqli.rb │ │ │ ├── libretto_upload_exec.rb │ │ │ ├── maarch_letterbox_file_upload.rb │ │ │ ├── mambo_cache_lite.rb │ │ │ ├── mitel_awc_exec.rb │ │ │ ├── moinmoin_twikidraw.rb │ │ │ ├── mybb_backdoor.rb │ │ │ ├── nagios3_history_cgi.rb │ │ │ ├── nagios3_statuswml_ping.rb │ │ │ ├── nagios_graph_explorer.rb │ │ │ ├── narcissus_backend_exec.rb │ │ │ ├── open_flash_chart_upload_exec.rb │ │ │ ├── openemr_sqli_privesc_upload.rb │ │ │ ├── openemr_upload_exec.rb │ │ │ ├── opensis_modname_exec.rb │ │ │ ├── openview_connectednodes_exec.rb │ │ │ ├── openx_banner_edit.rb │ │ │ ├── oracle_vm_agent_utl.rb │ │ │ ├── oscommerce_filemanager.rb │ │ │ ├── pajax_remote_exec.rb │ │ │ ├── php_charts_exec.rb │ │ │ ├── php_eval.rb │ │ │ ├── php_include.rb │ │ │ ├── php_vbulletin_template.rb │ │ │ ├── php_xmlrpc_eval.rb │ │ │ ├── phpbb_highlight.rb │ │ │ ├── phpcollab_upload_exec.rb │ │ │ ├── phpmyadmin_config.rb │ │ │ ├── piwik_superuser_plugin_upload.rb │ │ │ ├── projectpier_upload_exec.rb │ │ │ ├── projectsend_upload_exec.rb │ │ │ ├── qtss_parse_xml_exec.rb │ │ │ ├── redmine_scm_exec.rb │ │ │ ├── seportal_sqli_exec.rb │ │ │ ├── simple_e_document_upload_exec.rb │ │ │ ├── sixapart_movabletype_storable_exec.rb │ │ │ ├── skybluecanvas_exec.rb │ │ │ ├── sphpblog_file_upload.rb │ │ │ ├── spip_connect_exec.rb │ │ │ ├── squash_yaml_exec.rb │ │ │ ├── squirrelmail_pgp_plugin.rb │ │ │ ├── sugarcrm_rest_unserialize_exec.rb │ │ │ ├── sugarcrm_unserialize_exec.rb │ │ │ ├── tikiwiki_graph_formula_exec.rb │ │ │ ├── tikiwiki_jhot_exec.rb │ │ │ ├── tikiwiki_unserialize_exec.rb │ │ │ ├── tikiwiki_upload_exec.rb │ │ │ ├── trixbox_langchoice.rb │ │ │ ├── tuleap_rest_unserialize_exec.rb │ │ │ ├── tuleap_unserialize_exec.rb │ │ │ ├── twiki_history.rb │ │ │ ├── twiki_maketext.rb │ │ │ ├── twiki_search.rb │ │ │ ├── vbulletin_vote_sqli_exec.rb │ │ │ ├── vicidial_manager_send_cmd_exec.rb │ │ │ ├── vicidial_user_authorization_unauth_cmd_exec.rb │ │ │ ├── webmin_show_cgi_exec.rb │ │ │ ├── webmin_upload_exec.rb │ │ │ ├── webtester_exec.rb │ │ │ ├── wp_admin_shell_upload.rb │ │ │ ├── wp_advanced_custom_fields_exec.rb │ │ │ ├── wp_ajax_load_more_file_upload.rb │ │ │ ├── wp_asset_manager_upload_exec.rb │ │ │ ├── wp_creativecontactform_file_upload.rb │ │ │ ├── wp_downloadmanager_upload.rb │ │ │ ├── wp_easycart_unrestricted_file_upload.rb │ │ │ ├── wp_foxypress_upload.rb │ │ │ ├── wp_frontend_editor_file_upload.rb │ │ │ ├── wp_google_document_embedder_exec.rb │ │ │ ├── wp_holding_pattern_file_upload.rb │ │ │ ├── wp_inboundio_marketing_file_upload.rb │ │ │ ├── wp_infusionsoft_upload.rb │ │ │ ├── wp_lastpost_exec.rb │ │ │ ├── wp_mobile_detector_upload_execute.rb │ │ │ ├── wp_nmediawebsite_file_upload.rb │ │ │ ├── wp_optimizepress_upload.rb │ │ │ ├── wp_photo_gallery_unrestricted_file_upload.rb │ │ │ ├── wp_phpmailer_host_header.rb │ │ │ ├── wp_pixabay_images_upload.rb │ │ │ ├── wp_platform_exec.rb │ │ │ ├── wp_property_upload_exec.rb │ │ │ ├── wp_reflexgallery_file_upload.rb │ │ │ ├── wp_revslider_upload_execute.rb │ │ │ ├── wp_slideshowgallery_upload.rb │ │ │ ├── wp_symposium_shell_upload.rb │ │ │ ├── wp_total_cache_exec.rb │ │ │ ├── wp_worktheflow_upload.rb │ │ │ ├── wp_wpshop_ecommerce_file_upload.rb │ │ │ ├── wp_wptouch_file_upload.rb │ │ │ ├── wp_wysija_newsletters_upload.rb │ │ │ ├── xoda_file_upload.rb │ │ │ ├── zeroshell_exec.rb │ │ │ ├── zimbra_lfi.rb │ │ │ ├── zoneminder_packagecontrol_exec.rb │ │ │ └── zpanel_username_exec.rb │ │ └── x11 │ │ │ └── x11_keyboard_exec.rb │ └── windows │ │ ├── antivirus │ │ ├── ams_hndlrsvc.rb │ │ ├── ams_xfr.rb │ │ ├── symantec_endpoint_manager_rce.rb │ │ ├── symantec_iao.rb │ │ ├── symantec_rtvscan.rb │ │ ├── symantec_workspace_streaming_exec.rb │ │ ├── trendmicro_serverprotect.rb │ │ ├── trendmicro_serverprotect_createbinding.rb │ │ └── trendmicro_serverprotect_earthagent.rb │ │ ├── arkeia │ │ └── type77.rb │ │ ├── backdoor │ │ └── energizer_duo_payload.rb │ │ ├── backupexec │ │ ├── name_service.rb │ │ ├── remote_agent.rb │ │ └── ssl_uaf.rb │ │ ├── brightstor │ │ ├── ca_arcserve_342.rb │ │ ├── discovery_tcp.rb │ │ ├── discovery_udp.rb │ │ ├── etrust_itm_alert.rb │ │ ├── hsmserver.rb │ │ ├── lgserver.rb │ │ ├── lgserver_multi.rb │ │ ├── lgserver_rxrlogin.rb │ │ ├── lgserver_rxssetdatagrowthscheduleandfilter.rb │ │ ├── lgserver_rxsuselicenseini.rb │ │ ├── license_gcr.rb │ │ ├── mediasrv_sunrpc.rb │ │ ├── message_engine.rb │ │ ├── message_engine_72.rb │ │ ├── message_engine_heap.rb │ │ ├── sql_agent.rb │ │ ├── tape_engine.rb │ │ ├── tape_engine_0x8a.rb │ │ └── universal_agent.rb │ │ ├── browser │ │ ├── adobe_cooltype_sing.rb │ │ ├── adobe_flash_avm2.rb │ │ ├── adobe_flash_casi32_int_overflow.rb │ │ ├── adobe_flash_copy_pixels_to_byte_array.rb │ │ ├── adobe_flash_domain_memory_uaf.rb │ │ ├── adobe_flash_filters_type_confusion.rb │ │ ├── adobe_flash_mp4_cprt.rb │ │ ├── adobe_flash_otf_font.rb │ │ ├── adobe_flash_pcre.rb │ │ ├── adobe_flash_regex_value.rb │ │ ├── adobe_flash_rtmp.rb │ │ ├── adobe_flash_sps.rb │ │ ├── adobe_flash_uncompress_zlib_uninitialized.rb │ │ ├── adobe_flash_worker_byte_array_uaf.rb │ │ ├── adobe_flashplayer_arrayindexing.rb │ │ ├── adobe_flashplayer_avm.rb │ │ ├── adobe_flashplayer_flash10o.rb │ │ ├── adobe_flashplayer_newfunction.rb │ │ ├── adobe_flatedecode_predictor02.rb │ │ ├── adobe_geticon.rb │ │ ├── adobe_jbig2decode.rb │ │ ├── adobe_media_newplayer.rb │ │ ├── adobe_shockwave_rcsl_corruption.rb │ │ ├── adobe_toolbutton.rb │ │ ├── adobe_utilprintf.rb │ │ ├── advantech_webaccess_dvs_getcolor.rb │ │ ├── aim_goaway.rb │ │ ├── aladdin_choosefilepath_bof.rb │ │ ├── amaya_bdo.rb │ │ ├── aol_ampx_convertfile.rb │ │ ├── aol_icq_downloadagent.rb │ │ ├── apple_itunes_playlist.rb │ │ ├── apple_quicktime_marshaled_punk.rb │ │ ├── apple_quicktime_mime_type.rb │ │ ├── apple_quicktime_rdrf.rb │ │ ├── apple_quicktime_rtsp.rb │ │ ├── apple_quicktime_smil_debug.rb │ │ ├── apple_quicktime_texml_font_table.rb │ │ ├── ask_shortformat.rb │ │ ├── asus_net4switch_ipswcom.rb │ │ ├── athocgov_completeinstallation.rb │ │ ├── autodesk_idrop.rb │ │ ├── aventail_epi_activex.rb │ │ ├── awingsoft_web3d_bof.rb │ │ ├── awingsoft_winds3d_sceneurl.rb │ │ ├── baofeng_storm_onbeforevideodownload.rb │ │ ├── barcode_ax49.rb │ │ ├── blackice_downloadimagefileurl.rb │ │ ├── c6_messenger_downloaderactivex.rb │ │ ├── ca_brightstor_addcolumn.rb │ │ ├── chilkat_crypt_writefile.rb │ │ ├── cisco_anyconnect_exec.rb │ │ ├── cisco_playerpt_setsource.rb │ │ ├── cisco_playerpt_setsource_surl.rb │ │ ├── cisco_webex_ext.rb │ │ ├── citrix_gateway_actx.rb │ │ ├── clear_quest_cqole.rb │ │ ├── communicrypt_mail_activex.rb │ │ ├── creative_software_cachefolder.rb │ │ ├── crystal_reports_printcontrol.rb │ │ ├── dell_webcam_crazytalk.rb │ │ ├── dxstudio_player_exec.rb │ │ ├── ea_checkrequirements.rb │ │ ├── ebook_flipviewer_fviewerloading.rb │ │ ├── enjoysapgui_comp_download.rb │ │ ├── enjoysapgui_preparetoposthtml.rb │ │ ├── example.rb │ │ ├── exodus.rb │ │ ├── facebook_extractiptc.rb │ │ ├── firefox_smil_uaf.rb │ │ ├── foxit_reader_plugin_url_bof.rb │ │ ├── getgodm_http_response_bof.rb │ │ ├── gom_openurl.rb │ │ ├── greendam_url.rb │ │ ├── honeywell_hscremotedeploy_exec.rb │ │ ├── honeywell_tema_exec.rb │ │ ├── hp_alm_xgo_setshapenodetype_exec.rb │ │ ├── hp_easy_printer_care_xmlcachemgr.rb │ │ ├── hp_easy_printer_care_xmlsimpleaccessor.rb │ │ ├── hp_loadrunner_addfile.rb │ │ ├── hp_loadrunner_addfolder.rb │ │ ├── hp_loadrunner_writefilebinary.rb │ │ ├── hp_loadrunner_writefilestring.rb │ │ ├── hpmqc_progcolor.rb │ │ ├── hyleos_chemviewx_activex.rb │ │ ├── ibm_spss_c1sizer.rb │ │ ├── ibm_tivoli_pme_activex_bof.rb │ │ ├── ibmegath_getxmlvalue.rb │ │ ├── ibmlotusdomino_dwa_uploadmodule.rb │ │ ├── ie_cbutton_uaf.rb │ │ ├── ie_cgenericelement_uaf.rb │ │ ├── ie_createobject.rb │ │ ├── ie_execcommand_uaf.rb │ │ ├── ie_iscomponentinstalled.rb │ │ ├── ie_setmousecapture_uaf.rb │ │ ├── ie_unsafe_scripting.rb │ │ ├── imgeviewer_tifmergemultifiles.rb │ │ ├── indusoft_issymbol_internationalseparator.rb │ │ ├── inotes_dwa85w_bof.rb │ │ ├── intrust_annotatex_add.rb │ │ ├── java_basicservice_impl.rb │ │ ├── java_cmm.rb │ │ ├── java_codebase_trust.rb │ │ ├── java_docbase_bof.rb │ │ ├── java_mixer_sequencer.rb │ │ ├── java_ws_arginject_altjvm.rb │ │ ├── java_ws_double_quote.rb │ │ ├── java_ws_vmargs.rb │ │ ├── juniper_sslvpn_ive_setupdll.rb │ │ ├── kazaa_altnet_heap.rb │ │ ├── keyhelp_launchtripane_exec.rb │ │ ├── logitechvideocall_start.rb │ │ ├── lpviewer_url.rb │ │ ├── macrovision_downloadandexecute.rb │ │ ├── macrovision_unsafe.rb │ │ ├── malwarebytes_update_exec.rb │ │ ├── maxthon_history_xcs.rb │ │ ├── mcafee_mcsubmgr_vsprintf.rb │ │ ├── mcafee_mvt_exec.rb │ │ ├── mcafeevisualtrace_tracetarget.rb │ │ ├── mirc_irc_url.rb │ │ ├── mozilla_attribchildremoved.rb │ │ ├── mozilla_firefox_onreadystatechange.rb │ │ ├── mozilla_firefox_xmlserializer.rb │ │ ├── mozilla_interleaved_write.rb │ │ ├── mozilla_mchannel.rb │ │ ├── mozilla_nssvgvalue.rb │ │ ├── mozilla_nstreerange.rb │ │ ├── mozilla_reduceright.rb │ │ ├── ms03_020_ie_objecttype.rb │ │ ├── ms05_054_onload.rb │ │ ├── ms06_001_wmf_setabortproc.rb │ │ ├── ms06_013_createtextrange.rb │ │ ├── ms06_055_vml_method.rb │ │ ├── ms06_057_webview_setslice.rb │ │ ├── ms06_067_keyframe.rb │ │ ├── ms06_071_xml_core.rb │ │ ├── ms07_017_ani_loadimage_chunksize.rb │ │ ├── ms08_041_snapshotviewer.rb │ │ ├── ms08_053_mediaencoder.rb │ │ ├── ms08_070_visual_studio_msmask.rb │ │ ├── ms08_078_xml_corruption.rb │ │ ├── ms09_002_memory_corruption.rb │ │ ├── ms09_043_owc_htmlurl.rb │ │ ├── ms09_043_owc_msdso.rb │ │ ├── ms09_072_style_object.rb │ │ ├── ms10_002_aurora.rb │ │ ├── ms10_002_ie_object.rb │ │ ├── ms10_018_ie_behaviors.rb │ │ ├── ms10_018_ie_tabular_activex.rb │ │ ├── ms10_022_ie_vbscript_winhlp32.rb │ │ ├── ms10_026_avi_nsamplespersec.rb │ │ ├── ms10_042_helpctr_xss_cmd_exec.rb │ │ ├── ms10_046_shortcut_icon_dllloader.rb │ │ ├── ms10_090_ie_css_clip.rb │ │ ├── ms11_003_ie_css_import.rb │ │ ├── ms11_050_mshtml_cobjectelement.rb │ │ ├── ms11_081_option.rb │ │ ├── ms11_093_ole32.rb │ │ ├── ms12_004_midi.rb │ │ ├── ms12_037_ie_colspan.rb │ │ ├── ms12_037_same_id.rb │ │ ├── ms13_009_ie_slayoutrun_uaf.rb │ │ ├── ms13_022_silverlight_script_object.rb │ │ ├── ms13_037_svg_dashstyle.rb │ │ ├── ms13_055_canchor.rb │ │ ├── ms13_059_cflatmarkuppointer.rb │ │ ├── ms13_069_caret.rb │ │ ├── ms13_080_cdisplaypointer.rb │ │ ├── ms13_090_cardspacesigninhelper.rb │ │ ├── ms14_012_cmarkup_uaf.rb │ │ ├── ms14_012_textrange.rb │ │ ├── ms14_064_ole_code_execution.rb │ │ ├── ms16_051_vbscript.rb │ │ ├── msvidctl_mpeg2.rb │ │ ├── mswhale_checkforupdates.rb │ │ ├── msxml_get_definition_code_exec.rb │ │ ├── nctaudiofile2_setformatlikesample.rb │ │ ├── nis2004_antispam.rb │ │ ├── nis2004_get.rb │ │ ├── notes_handler_cmdinject.rb │ │ ├── novell_groupwise_gwcls1_actvx.rb │ │ ├── novelliprint_callbackurl.rb │ │ ├── novelliprint_datetime.rb │ │ ├── novelliprint_executerequest.rb │ │ ├── novelliprint_executerequest_dbg.rb │ │ ├── novelliprint_getdriversettings.rb │ │ ├── novelliprint_getdriversettings_2.rb │ │ ├── novelliprint_target_frame.rb │ │ ├── ntr_activex_check_bof.rb │ │ ├── ntr_activex_stopmodule.rb │ │ ├── oracle_autovue_setmarkupmode.rb │ │ ├── oracle_dc_submittoexpress.rb │ │ ├── oracle_webcenter_checkoutandopen.rb │ │ ├── orbit_connecting.rb │ │ ├── ovftool_format_string.rb │ │ ├── pcvue_func.rb │ │ ├── persits_xupload_traversal.rb │ │ ├── quickr_qp2_bof.rb │ │ ├── real_arcade_installerdlg.rb │ │ ├── realplayer_cdda_uri.rb │ │ ├── realplayer_console.rb │ │ ├── realplayer_import.rb │ │ ├── realplayer_qcp.rb │ │ ├── realplayer_smil.rb │ │ ├── roxio_cineplayer.rb │ │ ├── safari_xslt_output.rb │ │ ├── samsung_neti_wiewer_backuptoavi_bof.rb │ │ ├── samsung_security_manager_put.rb │ │ ├── sapgui_saveviewtosessionfile.rb │ │ ├── siemens_solid_edge_selistctrlx.rb │ │ ├── softartisans_getdrivename.rb │ │ ├── sonicwall_addrouteentry.rb │ │ ├── symantec_altirisdeployment_downloadandinstall.rb │ │ ├── symantec_altirisdeployment_runcmd.rb │ │ ├── symantec_appstream_unsafe.rb │ │ ├── symantec_backupexec_pvcalendar.rb │ │ ├── symantec_consoleutilities_browseandsavefile.rb │ │ ├── synactis_connecttosynactis_bof.rb │ │ ├── systemrequirementslab_unsafe.rb │ │ ├── teechart_pro.rb │ │ ├── tom_sawyer_tsgetx71ex552.rb │ │ ├── trendmicro_extsetowner.rb │ │ ├── trendmicro_officescan.rb │ │ ├── tumbleweed_filetransfer.rb │ │ ├── ubisoft_uplay_cmd_exec.rb │ │ ├── ultramjcam_openfiledig_bof.rb │ │ ├── ultraoffice_httpupload.rb │ │ ├── verypdf_pdfview.rb │ │ ├── viscom_movieplayer_drawtext.rb │ │ ├── vlc_amv.rb │ │ ├── vlc_mms_bof.rb │ │ ├── webdav_dll_hijacker.rb │ │ ├── webex_ucf_newobject.rb │ │ ├── wellintech_kingscada_kxclientdownload.rb │ │ ├── winamp_playlist_unc.rb │ │ ├── winamp_ultravox.rb │ │ ├── windvd7_applicationtype.rb │ │ ├── winzip_fileview.rb │ │ ├── wmi_admintools.rb │ │ ├── x360_video_player_set_text_bof.rb │ │ ├── xmplay_asx.rb │ │ ├── yahoomessenger_fvcom.rb │ │ ├── yahoomessenger_server.rb │ │ ├── zenturiprogramchecker_unsafe.rb │ │ └── zenworks_helplauncher_exec.rb │ │ ├── dcerpc │ │ ├── ms03_026_dcom.rb │ │ ├── ms05_017_msmq.rb │ │ ├── ms07_029_msdns_zonename.rb │ │ └── ms07_065_msmq.rb │ │ ├── email │ │ ├── ms07_017_ani_loadimage_chunksize.rb │ │ ├── ms10_045_outlook_ref_only.rb │ │ └── ms10_045_outlook_ref_resolve.rb │ │ ├── emc │ │ ├── alphastor_agent.rb │ │ ├── alphastor_device_manager_exec.rb │ │ ├── networker_format_string.rb │ │ └── replication_manager_exec.rb │ │ ├── fileformat │ │ ├── a_pdf_wav_to_mp3.rb │ │ ├── abbs_amp_lst.rb │ │ ├── acdsee_fotoslate_string.rb │ │ ├── acdsee_xpm.rb │ │ ├── actfax_import_users_bof.rb │ │ ├── activepdf_webgrabber.rb │ │ ├── adobe_collectemailinfo.rb │ │ ├── adobe_cooltype_sing.rb │ │ ├── adobe_flashplayer_button.rb │ │ ├── adobe_flashplayer_newfunction.rb │ │ ├── adobe_flatedecode_predictor02.rb │ │ ├── adobe_geticon.rb │ │ ├── adobe_illustrator_v14_eps.rb │ │ ├── adobe_jbig2decode.rb │ │ ├── adobe_libtiff.rb │ │ ├── adobe_media_newplayer.rb │ │ ├── adobe_pdf_embedded_exe.rb │ │ ├── adobe_pdf_embedded_exe_nojs.rb │ │ ├── adobe_reader_u3d.rb │ │ ├── adobe_toolbutton.rb │ │ ├── adobe_u3d_meshdecl.rb │ │ ├── adobe_utilprintf.rb │ │ ├── allplayer_m3u_bof.rb │ │ ├── altap_salamander_pdb.rb │ │ ├── aol_desktop_linktag.rb │ │ ├── aol_phobos_bof.rb │ │ ├── apple_quicktime_pnsize.rb │ │ ├── apple_quicktime_rdrf.rb │ │ ├── apple_quicktime_texml.rb │ │ ├── audio_coder_m3u.rb │ │ ├── audio_wkstn_pls.rb │ │ ├── audiotran_pls.rb │ │ ├── audiotran_pls_1424.rb │ │ ├── aviosoft_plf_buf.rb │ │ ├── bacnet_csv.rb │ │ ├── beetel_netconfig_ini_bof.rb │ │ ├── blazedvd_hdtv_bof.rb │ │ ├── blazedvd_plf.rb │ │ ├── boxoft_wav_to_mp3.rb │ │ ├── bpftp_client_bps_bof.rb │ │ ├── bsplayer_m3u.rb │ │ ├── ca_cab.rb │ │ ├── cain_abel_4918_rdp.rb │ │ ├── ccmplayer_m3u_bof.rb │ │ ├── chasys_draw_ies_bmp_bof.rb │ │ ├── coolpdf_image_stream_bof.rb │ │ ├── corelpdf_fusion_bof.rb │ │ ├── csound_getnum_bof.rb │ │ ├── cutezip_bof.rb │ │ ├── cve_2017_8464_lnk_rce.rb │ │ ├── cyberlink_lpp_bof.rb │ │ ├── cyberlink_p2g_bof.rb │ │ ├── cytel_studio_cy3.rb │ │ ├── deepburner_path.rb │ │ ├── destinymediaplayer16.rb │ │ ├── digital_music_pad_pls.rb │ │ ├── djstudio_pls_bof.rb │ │ ├── djvu_imageurl.rb │ │ ├── dupscout_xml.rb │ │ ├── dvdx_plf_bof.rb │ │ ├── easycdda_pls_bof.rb │ │ ├── emc_appextender_keyworks.rb │ │ ├── erdas_er_viewer_bof.rb │ │ ├── erdas_er_viewer_rf_report_error.rb │ │ ├── esignal_styletemplate_bof.rb │ │ ├── etrust_pestscan.rb │ │ ├── ezip_wizard_bof.rb │ │ ├── fatplayer_wav.rb │ │ ├── fdm_torrent.rb │ │ ├── feeddemon_opml.rb │ │ ├── foxit_reader_filewrite.rb │ │ ├── foxit_reader_launch.rb │ │ ├── foxit_reader_uaf.rb │ │ ├── foxit_title_bof.rb │ │ ├── free_mp3_ripper_wav.rb │ │ ├── galan_fileformat_bof.rb │ │ ├── gsm_sim.rb │ │ ├── gta_samp.rb │ │ ├── hhw_hhp_compiledfile_bof.rb │ │ ├── hhw_hhp_contentfile_bof.rb │ │ ├── hhw_hhp_indexfile_bof.rb │ │ ├── homm3_h3m.rb │ │ ├── ht_mp3player_ht3_bof.rb │ │ ├── ibm_forms_viewer_fontname.rb │ │ ├── ibm_pcm_ws.rb │ │ ├── icofx_bof.rb │ │ ├── ideal_migration_ipj.rb │ │ ├── iftp_schedule_bof.rb │ │ ├── irfanview_jpeg2000_bof.rb │ │ ├── ispvm_xcf_ispxcf.rb │ │ ├── kingview_kingmess_kvl.rb │ │ ├── lattice_pac_bof.rb │ │ ├── lotusnotes_lzh.rb │ │ ├── magix_musikmaker_16_mmm.rb │ │ ├── mcafee_hercules_deletesnapshot.rb │ │ ├── mcafee_showreport_exec.rb │ │ ├── mediacoder_m3u.rb │ │ ├── mediajukebox.rb │ │ ├── microp_mppl.rb │ │ ├── microsoft_windows_contact.rb │ │ ├── millenium_mp3_pls.rb │ │ ├── mini_stream_pls_bof.rb │ │ ├── mjm_coreplayer2011_s3m.rb │ │ ├── mjm_quickplayer_s3m.rb │ │ ├── moxa_mediadbplayback.rb │ │ ├── mplayer_m3u_bof.rb │ │ ├── mplayer_sami_bof.rb │ │ ├── ms09_067_excel_featheader.rb │ │ ├── ms10_004_textbytesatom.rb │ │ ├── ms10_038_excel_obj_bof.rb │ │ ├── ms10_087_rtf_pfragments_bof.rb │ │ ├── ms11_006_createsizeddibsection.rb │ │ ├── ms11_021_xlb_bof.rb │ │ ├── ms12_005.rb │ │ ├── ms12_027_mscomctl_bof.rb │ │ ├── ms13_071_theme.rb │ │ ├── ms14_017_rtf.rb │ │ ├── ms14_060_sandworm.rb │ │ ├── ms14_064_packager_python.rb │ │ ├── ms14_064_packager_run_as_admin.rb │ │ ├── ms15_020_shortcut_icon_dllloader.rb │ │ ├── ms15_100_mcl_exe.rb │ │ ├── ms_visual_basic_vbp.rb │ │ ├── mswin_tiff_overflow.rb │ │ ├── msworks_wkspictureinterface.rb │ │ ├── mymp3player_m3u.rb │ │ ├── netop.rb │ │ ├── nitro_reader_jsapi.rb │ │ ├── nuance_pdf_launch_overflow.rb │ │ ├── office_dde_delivery.rb │ │ ├── office_excel_slk.rb │ │ ├── office_ms17_11882.rb │ │ ├── office_ole_multiple_dll_hijack.rb │ │ ├── office_word_hta.rb │ │ ├── openoffice_ole.rb │ │ ├── orbit_download_failed_bof.rb │ │ ├── orbital_viewer_orb.rb │ │ ├── ovf_format_string.rb │ │ ├── proshow_cellimage_bof.rb │ │ ├── proshow_load_bof.rb │ │ ├── publishit_pui.rb │ │ ├── real_networks_netzip_bof.rb │ │ ├── real_player_url_property_bof.rb │ │ ├── realplayer_ver_attribute_bof.rb │ │ ├── safenet_softremote_groupname.rb │ │ ├── sascam_get.rb │ │ ├── scadaphone_zip.rb │ │ ├── shadow_stream_recorder_bof.rb │ │ ├── shaper_pdf_bof.rb │ │ ├── somplplayer_m3u.rb │ │ ├── subtitle_processor_m3u_bof.rb │ │ ├── syncbreeze_xml.rb │ │ ├── tfm_mmplayer_m3u_ppl_bof.rb │ │ ├── total_video_player_ini_bof.rb │ │ ├── tugzip.rb │ │ ├── ultraiso_ccd.rb │ │ ├── ultraiso_cue.rb │ │ ├── ursoft_w32dasm.rb │ │ ├── varicad_dwb.rb │ │ ├── videocharge_studio.rb │ │ ├── videolan_tivo.rb │ │ ├── videospirit_visprj.rb │ │ ├── visio_dxf_bof.rb │ │ ├── visiwave_vwr_type.rb │ │ ├── vlc_mkv.rb │ │ ├── vlc_modplug_s3m.rb │ │ ├── vlc_realtext.rb │ │ ├── vlc_smb_uri.rb │ │ ├── vlc_webm.rb │ │ ├── vuplayer_cue.rb │ │ ├── vuplayer_m3u.rb │ │ ├── watermark_master.rb │ │ ├── winamp_maki_bof.rb │ │ ├── winrar_name_spoofing.rb │ │ ├── wireshark_mpeg_overflow.rb │ │ ├── wireshark_packet_dect.rb │ │ ├── wm_downloader_m3u.rb │ │ ├── xenorate_xpl_bof.rb │ │ ├── xion_m3u_sehbof.rb │ │ ├── xradio_xrl_sehbof.rb │ │ ├── zahir_enterprise_plus_csv.rb │ │ └── zinfaudioplayer221_pls.rb │ │ ├── firewall │ │ ├── blackice_pam_icq.rb │ │ └── kerio_auth.rb │ │ ├── ftp │ │ ├── 32bitftp_list_reply.rb │ │ ├── 3cdaemon_ftp_user.rb │ │ ├── aasync_list_reply.rb │ │ ├── ability_server_stor.rb │ │ ├── absolute_ftp_list_bof.rb │ │ ├── ayukov_nftp.rb │ │ ├── bison_ftp_bof.rb │ │ ├── cesarftp_mkd.rb │ │ ├── comsnd_ftpd_fmtstr.rb │ │ ├── dreamftp_format.rb │ │ ├── easyfilesharing_pass.rb │ │ ├── easyftp_cwd_fixret.rb │ │ ├── easyftp_list_fixret.rb │ │ ├── easyftp_mkd_fixret.rb │ │ ├── filecopa_list_overflow.rb │ │ ├── filewrangler_list_reply.rb │ │ ├── freefloatftp_user.rb │ │ ├── freefloatftp_wbem.rb │ │ ├── freeftpd_pass.rb │ │ ├── freeftpd_user.rb │ │ ├── ftpgetter_pwd_reply.rb │ │ ├── ftppad_list_reply.rb │ │ ├── ftpshell51_pwd_reply.rb │ │ ├── ftpshell_cli_bof.rb │ │ ├── ftpsynch_list_reply.rb │ │ ├── gekkomgr_list_reply.rb │ │ ├── globalscapeftp_input.rb │ │ ├── goldenftp_pass_bof.rb │ │ ├── httpdx_tolog_format.rb │ │ ├── kmftp_utility_cwd.rb │ │ ├── labf_nfsaxe.rb │ │ ├── leapftp_list_reply.rb │ │ ├── leapftp_pasv_reply.rb │ │ ├── ms09_053_ftpd_nlst.rb │ │ ├── netterm_netftpd_user.rb │ │ ├── odin_list_reply.rb │ │ ├── open_ftpd_wbem.rb │ │ ├── oracle9i_xdb_ftp_pass.rb │ │ ├── oracle9i_xdb_ftp_unlock.rb │ │ ├── pcman_put.rb │ │ ├── pcman_stor.rb │ │ ├── proftp_banner.rb │ │ ├── quickshare_traversal_write.rb │ │ ├── ricoh_dl_bof.rb │ │ ├── sami_ftpd_list.rb │ │ ├── sami_ftpd_user.rb │ │ ├── sasser_ftpd_port.rb │ │ ├── scriptftp_list.rb │ │ ├── seagull_list_reply.rb │ │ ├── servu_chmod.rb │ │ ├── servu_mdtm.rb │ │ ├── slimftpd_list_concat.rb │ │ ├── trellian_client_pasv.rb │ │ ├── turboftp_port.rb │ │ ├── vermillion_ftpd_port.rb │ │ ├── warftpd_165_pass.rb │ │ ├── warftpd_165_user.rb │ │ ├── wftpd_size.rb │ │ ├── winaxe_server_ready.rb │ │ ├── wing_ftp_admin_exec.rb │ │ ├── wsftp_server_503_mkd.rb │ │ ├── wsftp_server_505_xmd5.rb │ │ ├── xftp_client_pwd.rb │ │ ├── xlink_client.rb │ │ └── xlink_server.rb │ │ ├── games │ │ ├── mohaa_getinfo.rb │ │ ├── racer_503beta5.rb │ │ └── ut2004_secure.rb │ │ ├── http │ │ ├── adobe_robohelper_authbypass.rb │ │ ├── altn_securitygateway.rb │ │ ├── altn_webadmin.rb │ │ ├── amlibweb_webquerydll_app.rb │ │ ├── apache_chunked.rb │ │ ├── apache_mod_rewrite_ldap.rb │ │ ├── apache_modjk_overflow.rb │ │ ├── avaya_ccr_imageupload_exec.rb │ │ ├── badblue_ext_overflow.rb │ │ ├── badblue_passthru.rb │ │ ├── bea_weblogic_jsessionid.rb │ │ ├── bea_weblogic_post_bof.rb │ │ ├── bea_weblogic_transfer_encoding.rb │ │ ├── belkin_bulldog.rb │ │ ├── ca_arcserve_rpc_authbypass.rb │ │ ├── ca_igateway_debug.rb │ │ ├── ca_totaldefense_regeneratereports.rb │ │ ├── cogent_datahub_command.rb │ │ ├── cogent_datahub_request_headers_bof.rb │ │ ├── coldfusion_fckeditor.rb │ │ ├── cyclope_ess_sqli.rb │ │ ├── desktopcentral_file_upload.rb │ │ ├── desktopcentral_statusupdate_upload.rb │ │ ├── disk_pulse_enterprise_bof.rb │ │ ├── disk_pulse_enterprise_get.rb │ │ ├── diskboss_get_bof.rb │ │ ├── disksavvy_get_bof.rb │ │ ├── disksorter_bof.rb │ │ ├── dup_scout_enterprise_login_bof.rb │ │ ├── dupscts_bof.rb │ │ ├── easychatserver_seh.rb │ │ ├── easyfilesharing_post.rb │ │ ├── easyfilesharing_seh.rb │ │ ├── easyftp_list.rb │ │ ├── edirectory_host.rb │ │ ├── edirectory_imonitor.rb │ │ ├── efs_easychatserver_username.rb │ │ ├── efs_fmws_userid_bof.rb │ │ ├── ektron_xslt_exec.rb │ │ ├── ektron_xslt_exec_ws.rb │ │ ├── ericom_access_now_bof.rb │ │ ├── ezserver_http.rb │ │ ├── fdm_auth_header.rb │ │ ├── generic_http_dll_injection.rb │ │ ├── geutebrueck_gcore_x64_rce_bo.rb │ │ ├── gitstack_rce.rb │ │ ├── hp_autopass_license_traversal.rb │ │ ├── hp_imc_bims_upload.rb │ │ ├── hp_imc_java_deserialize.rb │ │ ├── hp_imc_mibfileupload.rb │ │ ├── hp_loadrunner_copyfiletoserver.rb │ │ ├── hp_mpa_job_acct.rb │ │ ├── hp_nnm_getnnmdata_hostname.rb │ │ ├── hp_nnm_getnnmdata_icount.rb │ │ ├── hp_nnm_getnnmdata_maxage.rb │ │ ├── hp_nnm_nnmrptconfig_nameparams.rb │ │ ├── hp_nnm_nnmrptconfig_schdparams.rb │ │ ├── hp_nnm_openview5.rb │ │ ├── hp_nnm_ovalarm_lang.rb │ │ ├── hp_nnm_ovas.rb │ │ ├── hp_nnm_ovbuildpath_textfile.rb │ │ ├── hp_nnm_ovwebhelp.rb │ │ ├── hp_nnm_ovwebsnmpsrv_main.rb │ │ ├── hp_nnm_ovwebsnmpsrv_ovutil.rb │ │ ├── hp_nnm_ovwebsnmpsrv_uro.rb │ │ ├── hp_nnm_snmp.rb │ │ ├── hp_nnm_snmpviewer_actapp.rb │ │ ├── hp_nnm_toolbar_01.rb │ │ ├── hp_nnm_toolbar_02.rb │ │ ├── hp_nnm_webappmon_execvp.rb │ │ ├── hp_nnm_webappmon_ovjavalocale.rb │ │ ├── hp_openview_insight_backdoor.rb │ │ ├── hp_pcm_snac_update_certificates.rb │ │ ├── hp_pcm_snac_update_domain.rb │ │ ├── hp_power_manager_filename.rb │ │ ├── hp_power_manager_login.rb │ │ ├── hp_sitescope_dns_tool.rb │ │ ├── hp_sitescope_runomagentcommand.rb │ │ ├── httpdx_handlepeer.rb │ │ ├── httpdx_tolog_format.rb │ │ ├── ia_webmail.rb │ │ ├── ibm_tivoli_endpoint_bof.rb │ │ ├── ibm_tpmfosd_overflow.rb │ │ ├── ibm_tsm_cad_header.rb │ │ ├── icecast_header.rb │ │ ├── integard_password_bof.rb │ │ ├── intersystems_cache.rb │ │ ├── intrasrv_bof.rb │ │ ├── ipswitch_wug_maincfgret.rb │ │ ├── jira_collector_traversal.rb │ │ ├── kaseya_uploader.rb │ │ ├── kaseya_uploadimage_file_upload.rb │ │ ├── kolibri_http.rb │ │ ├── landesk_thinkmanagement_upload_asp.rb │ │ ├── lexmark_markvision_gfd_upload.rb │ │ ├── mailenable_auth_header.rb │ │ ├── manage_engine_opmanager_rce.rb │ │ ├── manageengine_adshacluster_rce.rb │ │ ├── manageengine_appmanager_exec.rb │ │ ├── manageengine_apps_mngr.rb │ │ ├── manageengine_connectionid_write.rb │ │ ├── maxdb_webdbm_database.rb │ │ ├── maxdb_webdbm_get_overflow.rb │ │ ├── mcafee_epolicy_source.rb │ │ ├── mdaemon_worldclient_form2raw.rb │ │ ├── minishare_get_overflow.rb │ │ ├── miniweb_upload_wbem.rb │ │ ├── navicopa_get_overflow.rb │ │ ├── netdecision_http_bof.rb │ │ ├── netgear_nms_rce.rb │ │ ├── novell_imanager_upload.rb │ │ ├── novell_mdm_lfi.rb │ │ ├── novell_messenger_acceptlang.rb │ │ ├── nowsms.rb │ │ ├── octopusdeploy_deploy.rb │ │ ├── oracle9i_xdb_pass.rb │ │ ├── oracle_beehive_evaluation.rb │ │ ├── oracle_beehive_prepareaudiotoplay.rb │ │ ├── oracle_btm_writetofile.rb │ │ ├── oracle_endeca_exec.rb │ │ ├── oracle_event_processing_upload.rb │ │ ├── osb_uname_jlist.rb │ │ ├── peercast_url.rb │ │ ├── php_apache_request_headers_bof.rb │ │ ├── privatewire_gateway.rb │ │ ├── psoproxy91_overflow.rb │ │ ├── rabidhamster_r4_log.rb │ │ ├── rejetto_hfs_exec.rb │ │ ├── sambar6_search_results.rb │ │ ├── sap_configservlet_exec_noauth.rb │ │ ├── sap_host_control_cmd_exec.rb │ │ ├── sapdb_webtools.rb │ │ ├── savant_31_overflow.rb │ │ ├── sepm_auth_bypass_rce.rb │ │ ├── serviio_checkstreamurl_cmd_exec.rb │ │ ├── servu_session_cookie.rb │ │ ├── shoutcast_format.rb │ │ ├── shttpd_post.rb │ │ ├── solarwinds_fsm_userlogin.rb │ │ ├── solarwinds_storage_manager_sql.rb │ │ ├── sonicwall_scrutinizer_sqli.rb │ │ ├── steamcast_useragent.rb │ │ ├── sws_connection_bof.rb │ │ ├── sybase_easerver.rb │ │ ├── syncbreeze_bof.rb │ │ ├── sysax_create_folder.rb │ │ ├── trackercam_phparg_overflow.rb │ │ ├── trackit_file_upload.rb │ │ ├── trendmicro_officescan.rb │ │ ├── trendmicro_officescan_widget_exec.rb │ │ ├── ultraminihttp_bof.rb │ │ ├── umbraco_upload_aspx.rb │ │ ├── vmware_vcenter_chargeback_upload.rb │ │ ├── vxsrchs_bof.rb │ │ ├── webster_http.rb │ │ ├── xampp_webdav_upload_php.rb │ │ ├── xitami_if_mod_since.rb │ │ ├── zenworks_assetmgmt_uploadservlet.rb │ │ └── zenworks_uploadservlet.rb │ │ ├── iis │ │ ├── iis_webdav_scstoragepathfromurl.rb │ │ ├── iis_webdav_upload_asp.rb │ │ ├── ms01_023_printer.rb │ │ ├── ms01_026_dbldecode.rb │ │ ├── ms01_033_idq.rb │ │ ├── ms02_018_htr.rb │ │ ├── ms02_065_msadc.rb │ │ ├── ms03_007_ntdll_webdav.rb │ │ └── msadc.rb │ │ ├── imap │ │ ├── eudora_list.rb │ │ ├── imail_delete.rb │ │ ├── ipswitch_search.rb │ │ ├── mailenable_login.rb │ │ ├── mailenable_status.rb │ │ ├── mailenable_w3c_select.rb │ │ ├── mdaemon_cram_md5.rb │ │ ├── mdaemon_fetch.rb │ │ ├── mercur_imap_select_overflow.rb │ │ ├── mercur_login.rb │ │ ├── mercury_login.md │ │ ├── mercury_login.rb │ │ ├── mercury_rename.rb │ │ ├── novell_netmail_append.rb │ │ ├── novell_netmail_auth.rb │ │ ├── novell_netmail_status.rb │ │ └── novell_netmail_subscribe.rb │ │ ├── isapi │ │ ├── ms00_094_pbserver.rb │ │ ├── ms03_022_nsiislog_post.rb │ │ ├── ms03_051_fp30reg_chunked.rb │ │ ├── rsa_webagent_redirect.rb │ │ └── w3who_query.rb │ │ ├── ldap │ │ ├── imail_thc.rb │ │ └── pgp_keyserver7.rb │ │ ├── license │ │ ├── calicclnt_getconfig.rb │ │ ├── calicserv_getconfig.rb │ │ ├── flexnet_lmgrd_bof.rb │ │ └── sentinel_lm7_udp.rb │ │ ├── local │ │ ├── adobe_sandbox_adobecollabsync.rb │ │ ├── agnitum_outpost_acs.rb │ │ ├── alpc_taskscheduler.rb │ │ ├── always_install_elevated.rb │ │ ├── applocker_bypass.rb │ │ ├── ask.rb │ │ ├── bthpan.rb │ │ ├── bypassuac.rb │ │ ├── bypassuac_comhijack.rb │ │ ├── bypassuac_eventvwr.rb │ │ ├── bypassuac_fodhelper.rb │ │ ├── bypassuac_injection.rb │ │ ├── bypassuac_injection_winsxs.rb │ │ ├── bypassuac_sluihijack.rb │ │ ├── bypassuac_vbs.rb │ │ ├── capcom_sys_exec.rb │ │ ├── current_user_psexec.rb │ │ ├── cve_2017_8464_lnk_lpe.rb │ │ ├── ikeext_service.rb │ │ ├── ipass_launch_app.rb │ │ ├── lenovo_systemupdate.rb │ │ ├── mov_ss.rb │ │ ├── mqac_write.rb │ │ ├── ms10_015_kitrap0d.rb │ │ ├── ms10_092_schelevator.rb │ │ ├── ms11_080_afdjoinleaf.rb │ │ ├── ms13_005_hwnd_broadcast.rb │ │ ├── ms13_053_schlamperei.rb │ │ ├── ms13_081_track_popup_menu.rb │ │ ├── ms13_097_ie_registry_symlink.rb │ │ ├── ms14_009_ie_dfsvc.rb │ │ ├── ms14_058_track_popup_menu.rb │ │ ├── ms14_070_tcpip_ioctl.rb │ │ ├── ms15_004_tswbproxy.rb │ │ ├── ms15_051_client_copy_image.rb │ │ ├── ms15_078_atmfd_bof.rb │ │ ├── ms16_014_wmi_recv_notif.rb │ │ ├── ms16_016_webdav.rb │ │ ├── ms16_032_secondary_logon_handle_privesc.rb │ │ ├── ms16_075_reflection.rb │ │ ├── ms16_075_reflection_juicy.rb │ │ ├── ms18_8120_win32k_privesc.rb │ │ ├── ms_ndproxy.rb │ │ ├── novell_client_nicm.rb │ │ ├── novell_client_nwfs.rb │ │ ├── ntapphelpcachecontrol.rb │ │ ├── nvidia_nvsvc.rb │ │ ├── panda_psevents.rb │ │ ├── payload_inject.rb │ │ ├── persistence.rb │ │ ├── persistence_service.rb │ │ ├── powershell_cmd_upgrade.rb │ │ ├── powershell_remoting.rb │ │ ├── ppr_flatten_rec.rb │ │ ├── ps_persist.rb │ │ ├── ps_wmi_exec.rb │ │ ├── pxeexploit.rb │ │ ├── razer_zwopenprocess.rb │ │ ├── registry_persistence.rb │ │ ├── run_as.rb │ │ ├── s4u_persistence.rb │ │ ├── service_permissions.rb │ │ ├── trusted_service_path.rb │ │ ├── virtual_box_guest_additions.rb │ │ ├── virtual_box_opengl_escape.rb │ │ ├── vss_persistence.rb │ │ ├── webexec.rb │ │ ├── wmi.rb │ │ └── wmi_persistence.rb │ │ ├── lotus │ │ ├── domino_http_accept_language.rb │ │ ├── domino_icalendar_organizer.rb │ │ ├── domino_sametime_stmux.rb │ │ └── lotusnotes_lzh.rb │ │ ├── lpd │ │ ├── hummingbird_exceed.rb │ │ ├── niprint.rb │ │ ├── saplpd.rb │ │ └── wincomlpd_admin.rb │ │ ├── misc │ │ ├── achat_bof.rb │ │ ├── actfax_raw_server_bof.rb │ │ ├── agentxpp_receive_agentx.rb │ │ ├── allmediaserver_bof.rb │ │ ├── altiris_ds_sqli.rb │ │ ├── apple_quicktime_rtsp_response.rb │ │ ├── asus_dpcproxy_overflow.rb │ │ ├── avaya_winpmd_unihostrouter.rb │ │ ├── avidphoneticindexer.rb │ │ ├── bakbone_netvault_heap.rb │ │ ├── bcaaa_bof.rb │ │ ├── bigant_server.rb │ │ ├── bigant_server_250.rb │ │ ├── bigant_server_dupf_upload.rb │ │ ├── bigant_server_sch_dupf_bof.rb │ │ ├── bigant_server_usv.rb │ │ ├── bomberclone_overflow.rb │ │ ├── bopup_comm.rb │ │ ├── borland_interbase.rb │ │ ├── borland_starteam.rb │ │ ├── citrix_streamprocess.rb │ │ ├── citrix_streamprocess_data_msg.rb │ │ ├── citrix_streamprocess_get_boot_record_request.rb │ │ ├── citrix_streamprocess_get_footer.rb │ │ ├── citrix_streamprocess_get_objects.rb │ │ ├── cloudme_sync.rb │ │ ├── commvault_cmd_exec.rb │ │ ├── disk_savvy_adm.rb │ │ ├── doubletake.rb │ │ ├── eiqnetworks_esa.rb │ │ ├── eiqnetworks_esa_topology.rb │ │ ├── enterasys_netsight_syslog_bof.rb │ │ ├── eureka_mail_err.rb │ │ ├── fb_cnct_group.rb │ │ ├── fb_isc_attach_database.rb │ │ ├── fb_isc_create_database.rb │ │ ├── fb_svc_attach.rb │ │ ├── gh0st.rb │ │ ├── gimp_script_fu.rb │ │ ├── hp_dataprotector_cmd_exec.rb │ │ ├── hp_dataprotector_crs.rb │ │ ├── hp_dataprotector_dtbclslogin.rb │ │ ├── hp_dataprotector_encrypted_comms.rb │ │ ├── hp_dataprotector_exec_bar.rb │ │ ├── hp_dataprotector_install_service.rb │ │ ├── hp_dataprotector_new_folder.rb │ │ ├── hp_dataprotector_traversal.rb │ │ ├── hp_imc_dbman_restartdb_unauth_rce.rb │ │ ├── hp_imc_dbman_restoredbase_unauth_rce.rb │ │ ├── hp_imc_uam.rb │ │ ├── hp_loadrunner_magentproc.rb │ │ ├── hp_loadrunner_magentproc_cmdexec.rb │ │ ├── hp_magentservice.rb │ │ ├── hp_omniinet_1.rb │ │ ├── hp_omniinet_2.rb │ │ ├── hp_omniinet_3.rb │ │ ├── hp_omniinet_4.rb │ │ ├── hp_operations_agent_coda_34.rb │ │ ├── hp_operations_agent_coda_8c.rb │ │ ├── hp_ovtrace.rb │ │ ├── hta_server.rb │ │ ├── ib_isc_attach_database.rb │ │ ├── ib_isc_create_database.rb │ │ ├── ib_svc_attach.rb │ │ ├── ibm_cognos_tm1admsd_bof.rb │ │ ├── ibm_director_cim_dllinject.rb │ │ ├── ibm_tsm_cad_ping.rb │ │ ├── ibm_tsm_rca_dicugetidentify.rb │ │ ├── ibm_websphere_java_deserialize.rb │ │ ├── itunes_extm3u_bof.rb │ │ ├── landesk_aolnsrvr.rb │ │ ├── lianja_db_net.rb │ │ ├── manageengine_eventlog_analyzer_rce.rb │ │ ├── mercury_phonebook.rb │ │ ├── mini_stream.rb │ │ ├── mirc_privmsg_server.rb │ │ ├── ms07_064_sami.rb │ │ ├── ms10_104_sharepoint.rb │ │ ├── netcat110_nt.rb │ │ ├── nettransport.rb │ │ ├── nvidia_mental_ray.rb │ │ ├── plugx.rb │ │ ├── poisonivy_21x_bof.rb │ │ ├── poisonivy_bof.rb │ │ ├── poppeeper_date.rb │ │ ├── poppeeper_uidl.rb │ │ ├── realtek_playlist.rb │ │ ├── sap_2005_license.rb │ │ ├── sap_netweaver_dispatcher.rb │ │ ├── shixxnote_font.rb │ │ ├── solidworks_workgroup_pdmwservice_file_write.rb │ │ ├── splayer_content_type.rb │ │ ├── stream_down_bof.rb │ │ ├── talkative_response.rb │ │ ├── tiny_identd_overflow.rb │ │ ├── trendmicro_cmdprocessor_addtask.rb │ │ ├── ufo_ai.rb │ │ ├── vmhgfs_webdav_dll_sideload.rb │ │ ├── webdav_delivery.rb │ │ ├── windows_rsh.rb │ │ ├── wireshark_lua.rb │ │ └── wireshark_packet_dect.rb │ │ ├── mmsp │ │ └── ms10_025_wmss_connect_funnel.rb │ │ ├── motorola │ │ └── timbuktu_fileupload.rb │ │ ├── mssql │ │ ├── lyris_listmanager_weak_pass.rb │ │ ├── ms02_039_slammer.rb │ │ ├── ms02_056_hello.rb │ │ ├── ms09_004_sp_replwritetovarbin.rb │ │ ├── ms09_004_sp_replwritetovarbin_sqli.rb │ │ ├── mssql_clr_payload.rb │ │ ├── mssql_linkcrawler.rb │ │ ├── mssql_payload.rb │ │ └── mssql_payload_sqli.rb │ │ ├── mysql │ │ ├── mysql_mof.rb │ │ ├── mysql_start_up.rb │ │ ├── mysql_yassl_hello.rb │ │ └── scrutinizer_upload_exec.rb │ │ ├── nfs │ │ └── xlink_nfsd.rb │ │ ├── nntp │ │ └── ms05_030_nntp.rb │ │ ├── novell │ │ ├── file_reporter_fsfui_upload.rb │ │ ├── groupwisemessenger_client.rb │ │ ├── netiq_pum_eval.rb │ │ ├── nmap_stor.rb │ │ ├── zenworks_desktop_agent.rb │ │ ├── zenworks_preboot_op21_bof.rb │ │ ├── zenworks_preboot_op4c_bof.rb │ │ ├── zenworks_preboot_op6_bof.rb │ │ └── zenworks_preboot_op6c_bof.rb │ │ ├── nuuo │ │ ├── nuuo_cms_fu.rb │ │ └── nuuo_cms_sqli.rb │ │ ├── oracle │ │ ├── client_system_analyzer_upload.rb │ │ ├── extjob.rb │ │ ├── osb_ndmp_auth.rb │ │ ├── tns_arguments.rb │ │ ├── tns_auth_sesskey.rb │ │ └── tns_service_name.rb │ │ ├── pop3 │ │ └── seattlelab_pass.rb │ │ ├── postgres │ │ └── postgres_payload.rb │ │ ├── proxy │ │ ├── bluecoat_winproxy_host.rb │ │ ├── ccproxy_telnet_ping.rb │ │ ├── proxypro_http_get.rb │ │ └── qbik_wingate_wwwproxy.rb │ │ ├── scada │ │ ├── abb_wserver_exec.rb │ │ ├── advantech_webaccess_dashboard_file_upload.rb │ │ ├── advantech_webaccess_webvrpcs_bof.rb │ │ ├── citect_scada_odbc.rb │ │ ├── codesys_gateway_server_traversal.rb │ │ ├── codesys_web_server.rb │ │ ├── daq_factory_bof.rb │ │ ├── delta_ia_commgr_bof.rb │ │ ├── factorylink_csservice.rb │ │ ├── factorylink_vrn_09.rb │ │ ├── ge_proficy_cimplicity_gefebt.rb │ │ ├── iconics_genbroker.rb │ │ ├── iconics_webhmi_setactivexguid.rb │ │ ├── igss9_igssdataserver_listall.rb │ │ ├── igss9_igssdataserver_rename.rb │ │ ├── igss9_misc.rb │ │ ├── igss_exec_17.rb │ │ ├── indusoft_webstudio_exec.rb │ │ ├── moxa_mdmtool.rb │ │ ├── procyon_core_server.rb │ │ ├── realwin.rb │ │ ├── realwin_on_fc_binfile_a.rb │ │ ├── realwin_on_fcs_login.rb │ │ ├── realwin_scpc_initialize.rb │ │ ├── realwin_scpc_initialize_rf.rb │ │ ├── realwin_scpc_txtevent.rb │ │ ├── scadapro_cmdexe.rb │ │ ├── sunway_force_control_netdbsrv.rb │ │ ├── winlog_runtime.rb │ │ ├── winlog_runtime_2.rb │ │ ├── yokogawa_bkbcopyd_bof.rb │ │ ├── yokogawa_bkesimmgr_bof.rb │ │ ├── yokogawa_bkfsim_vhfd.rb │ │ └── yokogawa_bkhodeq_bof.rb │ │ ├── sip │ │ ├── aim_triton_cseq.rb │ │ ├── sipxezphone_cseq.rb │ │ └── sipxphone_cseq.rb │ │ ├── smb │ │ ├── generic_smb_dll_injection.rb │ │ ├── group_policy_startup.rb │ │ ├── ipass_pipe_exec.rb │ │ ├── ms03_049_netapi.rb │ │ ├── ms04_007_killbill.rb │ │ ├── ms04_011_lsass.rb │ │ ├── ms04_031_netdde.rb │ │ ├── ms05_039_pnp.rb │ │ ├── ms06_025_rasmans_reg.rb │ │ ├── ms06_025_rras.rb │ │ ├── ms06_040_netapi.rb │ │ ├── ms06_066_nwapi.rb │ │ ├── ms06_066_nwwks.rb │ │ ├── ms06_070_wkssvc.rb │ │ ├── ms07_029_msdns_zonename.rb │ │ ├── ms08_067_netapi.rb │ │ ├── ms09_050_smb2_negotiate_func_index.rb │ │ ├── ms10_046_shortcut_icon_dllloader.rb │ │ ├── ms10_061_spoolss.rb │ │ ├── ms15_020_shortcut_icon_dllloader.rb │ │ ├── ms17_010_eternalblue.rb │ │ ├── ms17_010_eternalblue_win8.py │ │ ├── ms17_010_psexec.rb │ │ ├── netidentity_xtierrpcpipe.rb │ │ ├── psexec.rb │ │ ├── psexec_psh.rb │ │ ├── smb_delivery.rb │ │ ├── smb_relay.rb │ │ ├── timbuktu_plughntcommand_bof.rb │ │ └── webexec.rb │ │ ├── smtp │ │ ├── mailcarrier_smtp_ehlo.rb │ │ ├── mercury_cram_md5.rb │ │ ├── ms03_046_exchange2000_xexch50.rb │ │ ├── njstar_smtp_bof.rb │ │ ├── sysgauge_client_bof.rb │ │ ├── wmailserver.rb │ │ └── ypops_overflow1.rb │ │ ├── ssh │ │ ├── freeftpd_key_exchange.rb │ │ ├── freesshd_authbypass.rb │ │ ├── freesshd_key_exchange.rb │ │ ├── putty_msg_debug.rb │ │ ├── securecrt_ssh1.rb │ │ └── sysax_ssh_username.rb │ │ ├── ssl │ │ └── ms04_011_pct.rb │ │ ├── telnet │ │ ├── gamsoft_telsrv_username.rb │ │ └── goodtech_telnet.rb │ │ ├── tftp │ │ ├── attftp_long_filename.rb │ │ ├── distinct_tftp_traversal.rb │ │ ├── dlink_long_filename.rb │ │ ├── futuresoft_transfermode.rb │ │ ├── netdecision_tftp_traversal.rb │ │ ├── opentftp_error_code.rb │ │ ├── quick_tftp_pro_mode.rb │ │ ├── tftpd32_long_filename.rb │ │ ├── tftpdwin_long_filename.rb │ │ ├── tftpserver_wrq_bof.rb │ │ └── threectftpsvc_long_mode.rb │ │ ├── unicenter │ │ └── cam_log_security.rb │ │ ├── vnc │ │ ├── realvnc_client.rb │ │ ├── ultravnc_client.rb │ │ ├── ultravnc_viewer_bof.rb │ │ └── winvnc_http_get.rb │ │ ├── vpn │ │ └── safenet_ike_11.rb │ │ ├── winrm │ │ └── winrm_script_exec.rb │ │ └── wins │ │ └── ms04_045_wins.rb ├── nops │ ├── aarch64 │ │ └── simple.rb │ ├── armle │ │ └── simple.rb │ ├── mipsbe │ │ └── better.rb │ ├── php │ │ └── generic.rb │ ├── ppc │ │ └── simple.rb │ ├── sparc │ │ └── random.rb │ ├── tty │ │ └── generic.rb │ ├── x64 │ │ └── simple.rb │ └── x86 │ │ ├── opty2.rb │ │ └── single_byte.rb ├── payloads │ ├── singles │ │ ├── aix │ │ │ └── ppc │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ ├── shell_find_port.rb │ │ │ │ ├── shell_interact.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ ├── android │ │ │ ├── meterpreter_reverse_http.rb │ │ │ ├── meterpreter_reverse_https.rb │ │ │ └── meterpreter_reverse_tcp.rb │ │ ├── apple_ios │ │ │ ├── aarch64 │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ │ └── armle │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ └── meterpreter_reverse_tcp.rb │ │ ├── bsd │ │ │ ├── sparc │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ │ ├── vax │ │ │ │ └── shell_reverse_tcp.rb │ │ │ ├── x64 │ │ │ │ ├── exec.rb │ │ │ │ ├── shell_bind_ipv6_tcp.rb │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ ├── shell_bind_tcp_small.rb │ │ │ │ ├── shell_reverse_ipv6_tcp.rb │ │ │ │ ├── shell_reverse_tcp.rb │ │ │ │ └── shell_reverse_tcp_small.rb │ │ │ └── x86 │ │ │ │ ├── exec.rb │ │ │ │ ├── metsvc_bind_tcp.rb │ │ │ │ ├── metsvc_reverse_tcp.rb │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ ├── shell_bind_tcp_ipv6.rb │ │ │ │ ├── shell_find_port.rb │ │ │ │ ├── shell_find_tag.rb │ │ │ │ ├── shell_reverse_tcp.rb │ │ │ │ └── shell_reverse_tcp_ipv6.rb │ │ ├── bsdi │ │ │ └── x86 │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ ├── shell_find_port.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ ├── cmd │ │ │ ├── mainframe │ │ │ │ ├── apf_privesc_jcl.rb │ │ │ │ ├── bind_shell_jcl.rb │ │ │ │ ├── generic_jcl.rb │ │ │ │ └── reverse_shell_jcl.rb │ │ │ ├── unix │ │ │ │ ├── bind_awk.rb │ │ │ │ ├── bind_busybox_telnetd.rb │ │ │ │ ├── bind_inetd.rb │ │ │ │ ├── bind_lua.rb │ │ │ │ ├── bind_netcat.rb │ │ │ │ ├── bind_netcat_gaping.rb │ │ │ │ ├── bind_netcat_gaping_ipv6.rb │ │ │ │ ├── bind_nodejs.rb │ │ │ │ ├── bind_perl.rb │ │ │ │ ├── bind_perl_ipv6.rb │ │ │ │ ├── bind_r.rb │ │ │ │ ├── bind_ruby.rb │ │ │ │ ├── bind_ruby_ipv6.rb │ │ │ │ ├── bind_socat_udp.rb │ │ │ │ ├── bind_stub.rb │ │ │ │ ├── bind_zsh.rb │ │ │ │ ├── generic.rb │ │ │ │ ├── interact.rb │ │ │ │ ├── reverse.rb │ │ │ │ ├── reverse_awk.rb │ │ │ │ ├── reverse_bash.rb │ │ │ │ ├── reverse_bash_telnet_ssl.rb │ │ │ │ ├── reverse_ksh.rb │ │ │ │ ├── reverse_lua.rb │ │ │ │ ├── reverse_ncat_ssl.rb │ │ │ │ ├── reverse_netcat.rb │ │ │ │ ├── reverse_netcat_gaping.rb │ │ │ │ ├── reverse_nodejs.rb │ │ │ │ ├── reverse_openssl.rb │ │ │ │ ├── reverse_perl.rb │ │ │ │ ├── reverse_perl_ssl.rb │ │ │ │ ├── reverse_php_ssl.rb │ │ │ │ ├── reverse_python.rb │ │ │ │ ├── reverse_python_ssl.rb │ │ │ │ ├── reverse_r.rb │ │ │ │ ├── reverse_ruby.rb │ │ │ │ ├── reverse_ruby_ssl.rb │ │ │ │ ├── reverse_socat_udp.rb │ │ │ │ ├── reverse_ssl_double_telnet.rb │ │ │ │ ├── reverse_stub.rb │ │ │ │ └── reverse_zsh.rb │ │ │ └── windows │ │ │ │ ├── adduser.rb │ │ │ │ ├── bind_lua.rb │ │ │ │ ├── bind_perl.rb │ │ │ │ ├── bind_perl_ipv6.rb │ │ │ │ ├── bind_ruby.rb │ │ │ │ ├── download_eval_vbs.rb │ │ │ │ ├── download_exec_vbs.rb │ │ │ │ ├── generic.rb │ │ │ │ ├── powershell_bind_tcp.rb │ │ │ │ ├── powershell_reverse_tcp.rb │ │ │ │ ├── reverse_lua.rb │ │ │ │ ├── reverse_perl.rb │ │ │ │ ├── reverse_powershell.rb │ │ │ │ └── reverse_ruby.rb │ │ ├── firefox │ │ │ ├── exec.rb │ │ │ ├── shell_bind_tcp.rb │ │ │ └── shell_reverse_tcp.rb │ │ ├── generic │ │ │ ├── custom.rb │ │ │ ├── debug_trap.rb │ │ │ ├── shell_bind_tcp.rb │ │ │ ├── shell_reverse_tcp.rb │ │ │ └── tight_loop.rb │ │ ├── java │ │ │ ├── jsp_shell_bind_tcp.rb │ │ │ ├── jsp_shell_reverse_tcp.rb │ │ │ └── shell_reverse_tcp.rb │ │ ├── linux │ │ │ ├── aarch64 │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ │ ├── armbe │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ └── shell_bind_tcp.rb │ │ │ ├── armle │ │ │ │ ├── adduser.rb │ │ │ │ ├── exec.rb │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ │ ├── mips64 │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ └── meterpreter_reverse_tcp.rb │ │ │ ├── mipsbe │ │ │ │ ├── exec.rb │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ ├── reboot.rb │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ │ ├── mipsle │ │ │ │ ├── exec.rb │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ ├── reboot.rb │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ │ ├── ppc │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ ├── shell_find_port.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ │ ├── ppc64 │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ ├── shell_find_port.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ │ ├── ppc64le │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ └── meterpreter_reverse_tcp.rb │ │ │ ├── ppce500v2 │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ └── meterpreter_reverse_tcp.rb │ │ │ ├── x64 │ │ │ │ ├── exec.rb │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ ├── shell_bind_ipv6_tcp.rb │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ ├── shell_bind_tcp_random_port.rb │ │ │ │ ├── shell_find_port.rb │ │ │ │ ├── shell_reverse_ipv6_tcp.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ │ ├── x86 │ │ │ │ ├── adduser.rb │ │ │ │ ├── chmod.rb │ │ │ │ ├── exec.rb │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ ├── metsvc_bind_tcp.rb │ │ │ │ ├── metsvc_reverse_tcp.rb │ │ │ │ ├── read_file.rb │ │ │ │ ├── shell_bind_ipv6_tcp.rb │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ ├── shell_bind_tcp_random_port.rb │ │ │ │ ├── shell_find_port.rb │ │ │ │ ├── shell_find_tag.rb │ │ │ │ ├── shell_reverse_tcp.rb │ │ │ │ └── shell_reverse_tcp_ipv6.rb │ │ │ └── zarch │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ └── meterpreter_reverse_tcp.rb │ │ ├── mainframe │ │ │ └── shell_reverse_tcp.rb │ │ ├── nodejs │ │ │ ├── shell_bind_tcp.rb │ │ │ ├── shell_reverse_tcp.rb │ │ │ └── shell_reverse_tcp_ssl.rb │ │ ├── osx │ │ │ ├── armle │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ ├── shell_reverse_tcp.rb │ │ │ │ └── vibrate.rb │ │ │ ├── ppc │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ │ ├── x64 │ │ │ │ ├── exec.rb │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ ├── say.rb │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ ├── shell_find_tag.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ │ └── x86 │ │ │ │ ├── exec.rb │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ ├── shell_find_port.rb │ │ │ │ ├── shell_reverse_tcp.rb │ │ │ │ ├── vforkshell_bind_tcp.rb │ │ │ │ └── vforkshell_reverse_tcp.rb │ │ ├── php │ │ │ ├── bind_perl.rb │ │ │ ├── bind_perl_ipv6.rb │ │ │ ├── bind_php.rb │ │ │ ├── bind_php_ipv6.rb │ │ │ ├── download_exec.rb │ │ │ ├── exec.rb │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ ├── reverse_perl.rb │ │ │ ├── reverse_php.rb │ │ │ └── shell_findsock.rb │ │ ├── python │ │ │ ├── meterpreter_bind_tcp.rb │ │ │ ├── meterpreter_reverse_http.rb │ │ │ ├── meterpreter_reverse_https.rb │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ ├── shell_bind_tcp.rb │ │ │ ├── shell_reverse_tcp.rb │ │ │ ├── shell_reverse_tcp_ssl.rb │ │ │ └── shell_reverse_udp.rb │ │ ├── r │ │ │ ├── shell_bind_tcp.rb │ │ │ └── shell_reverse_tcp.rb │ │ ├── ruby │ │ │ ├── shell_bind_tcp.rb │ │ │ ├── shell_bind_tcp_ipv6.rb │ │ │ ├── shell_reverse_tcp.rb │ │ │ └── shell_reverse_tcp_ssl.rb │ │ ├── solaris │ │ │ ├── sparc │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ ├── shell_find_port.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ │ └── x86 │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ ├── shell_find_port.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ ├── tty │ │ │ └── unix │ │ │ │ └── interact.rb │ │ └── windows │ │ │ ├── adduser.rb │ │ │ ├── dns_txt_query_exec.rb │ │ │ ├── download_exec.rb │ │ │ ├── exec.rb │ │ │ ├── format_all_drives.rb │ │ │ ├── loadlibrary.rb │ │ │ ├── messagebox.rb │ │ │ ├── meterpreter_bind_named_pipe.rb │ │ │ ├── meterpreter_bind_tcp.rb │ │ │ ├── meterpreter_reverse_http.rb │ │ │ ├── meterpreter_reverse_https.rb │ │ │ ├── meterpreter_reverse_ipv6_tcp.rb │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ ├── metsvc_bind_tcp.rb │ │ │ ├── metsvc_reverse_tcp.rb │ │ │ ├── powershell_bind_tcp.rb │ │ │ ├── powershell_reverse_tcp.rb │ │ │ ├── shell_bind_tcp.rb │ │ │ ├── shell_bind_tcp_xpfw.rb │ │ │ ├── shell_hidden_bind_tcp.rb │ │ │ ├── shell_reverse_tcp.rb │ │ │ ├── speak_pwned.rb │ │ │ └── x64 │ │ │ ├── exec.rb │ │ │ ├── loadlibrary.rb │ │ │ ├── messagebox.rb │ │ │ ├── meterpreter_bind_named_pipe.rb │ │ │ ├── meterpreter_bind_tcp.rb │ │ │ ├── meterpreter_reverse_http.rb │ │ │ ├── meterpreter_reverse_https.rb │ │ │ ├── meterpreter_reverse_ipv6_tcp.rb │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ ├── powershell_bind_tcp.rb │ │ │ ├── powershell_reverse_tcp.rb │ │ │ ├── shell_bind_tcp.rb │ │ │ └── shell_reverse_tcp.rb │ ├── stagers │ │ ├── android │ │ │ ├── reverse_http.rb │ │ │ ├── reverse_https.rb │ │ │ └── reverse_tcp.rb │ │ ├── bsd │ │ │ └── x86 │ │ │ │ ├── bind_ipv6_tcp.rb │ │ │ │ ├── bind_tcp.rb │ │ │ │ ├── find_tag.rb │ │ │ │ ├── reverse_ipv6_tcp.rb │ │ │ │ └── reverse_tcp.rb │ │ ├── bsdi │ │ │ └── x86 │ │ │ │ ├── bind_tcp.rb │ │ │ │ └── reverse_tcp.rb │ │ ├── java │ │ │ ├── bind_tcp.rb │ │ │ ├── reverse_http.rb │ │ │ ├── reverse_https.rb │ │ │ └── reverse_tcp.rb │ │ ├── linux │ │ │ ├── aarch64 │ │ │ │ └── reverse_tcp.rb │ │ │ ├── armle │ │ │ │ ├── bind_tcp.rb │ │ │ │ └── reverse_tcp.rb │ │ │ ├── mipsbe │ │ │ │ └── reverse_tcp.rb │ │ │ ├── mipsle │ │ │ │ └── reverse_tcp.rb │ │ │ ├── x64 │ │ │ │ ├── bind_tcp.rb │ │ │ │ └── reverse_tcp.rb │ │ │ └── x86 │ │ │ │ ├── bind_ipv6_tcp.rb │ │ │ │ ├── bind_ipv6_tcp_uuid.rb │ │ │ │ ├── bind_nonx_tcp.rb │ │ │ │ ├── bind_tcp.rb │ │ │ │ ├── bind_tcp_uuid.rb │ │ │ │ ├── find_tag.rb │ │ │ │ ├── reverse_ipv6_tcp.rb │ │ │ │ ├── reverse_nonx_tcp.rb │ │ │ │ ├── reverse_tcp.rb │ │ │ │ └── reverse_tcp_uuid.rb │ │ ├── multi │ │ │ ├── reverse_http.rb │ │ │ └── reverse_https.rb │ │ ├── netware │ │ │ └── reverse_tcp.rb │ │ ├── osx │ │ │ ├── armle │ │ │ │ ├── bind_tcp.rb │ │ │ │ └── reverse_tcp.rb │ │ │ ├── ppc │ │ │ │ ├── bind_tcp.rb │ │ │ │ ├── find_tag.rb │ │ │ │ └── reverse_tcp.rb │ │ │ ├── x64 │ │ │ │ ├── bind_tcp.rb │ │ │ │ └── reverse_tcp.rb │ │ │ └── x86 │ │ │ │ ├── bind_tcp.rb │ │ │ │ └── reverse_tcp.rb │ │ ├── php │ │ │ ├── bind_tcp.rb │ │ │ ├── bind_tcp_ipv6.rb │ │ │ ├── bind_tcp_ipv6_uuid.rb │ │ │ ├── bind_tcp_uuid.rb │ │ │ ├── reverse_tcp.rb │ │ │ └── reverse_tcp_uuid.rb │ │ ├── python │ │ │ ├── bind_tcp.rb │ │ │ ├── bind_tcp_uuid.rb │ │ │ ├── reverse_http.rb │ │ │ ├── reverse_https.rb │ │ │ ├── reverse_tcp.rb │ │ │ ├── reverse_tcp_ssl.rb │ │ │ └── reverse_tcp_uuid.rb │ │ └── windows │ │ │ ├── bind_hidden_ipknock_tcp.rb │ │ │ ├── bind_hidden_tcp.rb │ │ │ ├── bind_ipv6_tcp.rb │ │ │ ├── bind_ipv6_tcp_uuid.rb │ │ │ ├── bind_named_pipe.rb │ │ │ ├── bind_nonx_tcp.rb │ │ │ ├── bind_tcp.rb │ │ │ ├── bind_tcp_rc4.rb │ │ │ ├── bind_tcp_uuid.rb │ │ │ ├── findtag_ord.rb │ │ │ ├── reverse_hop_http.rb │ │ │ ├── reverse_http.rb │ │ │ ├── reverse_http_proxy_pstore.rb │ │ │ ├── reverse_https.rb │ │ │ ├── reverse_https_proxy.rb │ │ │ ├── reverse_ipv6_tcp.rb │ │ │ ├── reverse_named_pipe.rb │ │ │ ├── reverse_nonx_tcp.rb │ │ │ ├── reverse_ord_tcp.rb │ │ │ ├── reverse_tcp.rb │ │ │ ├── reverse_tcp_allports.rb │ │ │ ├── reverse_tcp_dns.rb │ │ │ ├── reverse_tcp_rc4.rb │ │ │ ├── reverse_tcp_rc4_dns.rb │ │ │ ├── reverse_tcp_uuid.rb │ │ │ ├── reverse_udp.rb │ │ │ ├── reverse_winhttp.rb │ │ │ ├── reverse_winhttps.rb │ │ │ └── x64 │ │ │ ├── bind_ipv6_tcp.rb │ │ │ ├── bind_ipv6_tcp_uuid.rb │ │ │ ├── bind_named_pipe.rb │ │ │ ├── bind_tcp.rb │ │ │ ├── bind_tcp_uuid.rb │ │ │ ├── reverse_http.rb │ │ │ ├── reverse_https.rb │ │ │ ├── reverse_named_pipe.rb │ │ │ ├── reverse_tcp.rb │ │ │ ├── reverse_tcp_rc4.rb │ │ │ ├── reverse_tcp_uuid.rb │ │ │ ├── reverse_winhttp.rb │ │ │ └── reverse_winhttps.rb │ └── stages │ │ ├── android │ │ ├── meterpreter.rb │ │ └── shell.rb │ │ ├── bsd │ │ └── x86 │ │ │ └── shell.rb │ │ ├── bsdi │ │ └── x86 │ │ │ └── shell.rb │ │ ├── java │ │ ├── meterpreter.rb │ │ └── shell.rb │ │ ├── linux │ │ ├── aarch64 │ │ │ ├── meterpreter.rb │ │ │ └── shell.rb │ │ ├── armle │ │ │ ├── meterpreter.rb │ │ │ └── shell.rb │ │ ├── mipsbe │ │ │ ├── meterpreter.rb │ │ │ └── shell.rb │ │ ├── mipsle │ │ │ ├── meterpreter.rb │ │ │ └── shell.rb │ │ ├── x64 │ │ │ ├── meterpreter.rb │ │ │ └── shell.rb │ │ └── x86 │ │ │ ├── meterpreter.rb │ │ │ └── shell.rb │ │ ├── multi │ │ └── meterpreter.rb │ │ ├── netware │ │ └── shell.rb │ │ ├── osx │ │ ├── armle │ │ │ ├── execute.rb │ │ │ └── shell.rb │ │ ├── ppc │ │ │ └── shell.rb │ │ ├── x64 │ │ │ ├── dupandexecve.rb │ │ │ └── meterpreter.rb │ │ └── x86 │ │ │ ├── bundleinject.rb │ │ │ ├── isight.rb │ │ │ └── vforkshell.rb │ │ ├── php │ │ └── meterpreter.rb │ │ ├── python │ │ └── meterpreter.rb │ │ └── windows │ │ ├── dllinject.rb │ │ ├── meterpreter.rb │ │ ├── patchupdllinject.rb │ │ ├── patchupmeterpreter.rb │ │ ├── shell.rb │ │ ├── upexec.rb │ │ ├── vncinject.rb │ │ └── x64 │ │ ├── meterpreter.rb │ │ ├── shell.rb │ │ └── vncinject.rb └── post │ ├── aix │ └── hashdump.rb │ ├── android │ ├── capture │ │ └── screen.rb │ ├── gather │ │ ├── sub_info.rb │ │ └── wireless_ap.rb │ └── manage │ │ ├── remove_lock.rb │ │ └── remove_lock_root.rb │ ├── apple_ios │ └── gather │ │ ├── ios_image_gather.rb │ │ └── ios_text_gather.rb │ ├── cisco │ └── gather │ │ └── enum_cisco.rb │ ├── firefox │ ├── gather │ │ ├── cookies.rb │ │ ├── history.rb │ │ ├── passwords.rb │ │ └── xss.rb │ └── manage │ │ └── webcam_chat.rb │ ├── hardware │ ├── automotive │ │ ├── can_flood.rb │ │ ├── canprobe.rb │ │ ├── getvinfo.rb │ │ ├── identifymodules.rb │ │ ├── malibu_overheat.rb │ │ └── pdt.rb │ ├── rftransceiver │ │ ├── rfpwnon.rb │ │ └── transmitter.rb │ └── zigbee │ │ └── zstumbler.rb │ ├── juniper │ └── gather │ │ └── enum_juniper.rb │ ├── linux │ ├── busybox │ │ ├── enum_connections.rb │ │ ├── enum_hosts.rb │ │ ├── jailbreak.rb │ │ ├── ping_net.rb │ │ ├── set_dmz.rb │ │ ├── set_dns.rb │ │ ├── smb_share_root.rb │ │ └── wget_exec.rb │ ├── dos │ │ └── xen_420_dos.rb │ ├── gather │ │ ├── checkcontainer.rb │ │ ├── checkvm.rb │ │ ├── ecryptfs_creds.rb │ │ ├── enum_commands.rb │ │ ├── enum_configs.rb │ │ ├── enum_network.rb │ │ ├── enum_protections.rb │ │ ├── enum_psk.rb │ │ ├── enum_system.rb │ │ ├── enum_users_history.rb │ │ ├── enum_xchat.rb │ │ ├── gnome_commander_creds.rb │ │ ├── gnome_keyring_dump.rb │ │ ├── hashdump.rb │ │ ├── mount_cifs_creds.rb │ │ ├── openvpn_credentials.rb │ │ ├── phpmyadmin_credsteal.rb │ │ ├── pptpd_chap_secrets.rb │ │ └── tor_hiddenservices.rb │ └── manage │ │ ├── dns_spoofing.rb │ │ ├── download_exec.rb │ │ ├── iptables_removal.rb │ │ ├── pseudo_shell.rb │ │ └── sshkey_persistence.rb │ ├── multi │ ├── escalate │ │ ├── aws_create_iam_user.rb │ │ ├── cups_root_file_read.rb │ │ └── metasploit_pcaplog.rb │ ├── gather │ │ ├── apple_ios_backup.rb │ │ ├── aws_ec2_instance_metadata.rb │ │ ├── aws_keys.rb │ │ ├── check_malware.rb │ │ ├── chrome_cookies.rb │ │ ├── dbvis_enum.rb │ │ ├── dns_bruteforce.rb │ │ ├── dns_reverse_lookup.rb │ │ ├── dns_srv_lookup.rb │ │ ├── docker_creds.rb │ │ ├── enum_vbox.rb │ │ ├── env.rb │ │ ├── fetchmailrc_creds.rb │ │ ├── filezilla_client_cred.rb │ │ ├── find_vmx.rb │ │ ├── firefox_creds.rb │ │ ├── gpg_creds.rb │ │ ├── irssi_creds.rb │ │ ├── jboss_gather.rb │ │ ├── jenkins_gather.rb │ │ ├── lastpass_creds.rb │ │ ├── maven_creds.rb │ │ ├── multi_command.rb │ │ ├── netrc_creds.rb │ │ ├── pgpass_creds.rb │ │ ├── pidgin_cred.rb │ │ ├── ping_sweep.rb │ │ ├── remmina_creds.rb │ │ ├── resolve_hosts.rb │ │ ├── rsyncd_creds.rb │ │ ├── rubygems_api_key.rb │ │ ├── run_console_rc_file.rb │ │ ├── skype_enum.rb │ │ ├── ssh_creds.rb │ │ ├── thunderbird_creds.rb │ │ ├── tomcat_gather.rb │ │ └── wlan_geolocate.rb │ ├── general │ │ ├── close.rb │ │ ├── execute.rb │ │ └── wall.rb │ ├── manage │ │ ├── autoroute.rb │ │ ├── dbvis_add_db_admin.rb │ │ ├── dbvis_query.rb │ │ ├── hsts_eraser.rb │ │ ├── multi_post.rb │ │ ├── open.rb │ │ ├── play_youtube.rb │ │ ├── record_mic.rb │ │ ├── screensaver.rb │ │ ├── set_wallpaper.rb │ │ ├── shell_to_meterpreter.rb │ │ ├── sudo.rb │ │ ├── system_session.rb │ │ ├── upload_exec.rb │ │ └── zip.rb │ └── recon │ │ ├── local_exploit_suggester.rb │ │ ├── multiport_egress_traffic.rb │ │ └── sudo_commands.rb │ ├── osx │ ├── admin │ │ └── say.rb │ ├── capture │ │ ├── keylog_recorder.rb │ │ └── screen.rb │ ├── gather │ │ ├── apfs_encrypted_volume_passwd.rb │ │ ├── autologin_password.rb │ │ ├── enum_adium.rb │ │ ├── enum_airport.rb │ │ ├── enum_chicken_vnc_profile.rb │ │ ├── enum_colloquy.rb │ │ ├── enum_keychain.rb │ │ ├── enum_messages.rb │ │ ├── enum_osx.rb │ │ ├── hashdump.rb │ │ ├── password_prompt_spoof.rb │ │ ├── safari_lastsession.rb │ │ └── vnc_password_osx.rb │ └── manage │ │ ├── mount_share.rb │ │ ├── record_mic.rb │ │ ├── vpn.rb │ │ └── webcam.rb │ ├── solaris │ ├── escalate │ │ ├── pfexec.rb │ │ └── srsexec_readline.rb │ └── gather │ │ ├── checkvm.rb │ │ ├── enum_packages.rb │ │ ├── enum_services.rb │ │ └── hashdump.rb │ └── windows │ ├── capture │ ├── keylog_recorder.rb │ └── lockout_keylogger.rb │ ├── escalate │ ├── droplnk.rb │ ├── getsystem.rb │ ├── golden_ticket.rb │ ├── ms10_073_kbdlayout.rb │ ├── screen_unlock.rb │ └── unmarshal_cmd_exec.rb │ ├── gather │ ├── ad_to_sqlite.rb │ ├── arp_scanner.rb │ ├── bitcoin_jacker.rb │ ├── bitlocker_fvek.rb │ ├── cachedump.rb │ ├── checkvm.rb │ ├── credentials │ │ ├── avira_password.rb │ │ ├── bulletproof_ftp.rb │ │ ├── coreftp.rb │ │ ├── credential_collector.rb │ │ ├── domain_hashdump.rb │ │ ├── dynazip_log.rb │ │ ├── dyndns.rb │ │ ├── enum_cred_store.rb │ │ ├── enum_laps.rb │ │ ├── enum_picasa_pwds.rb │ │ ├── epo_sql.rb │ │ ├── filezilla_server.rb │ │ ├── flashfxp.rb │ │ ├── ftpnavigator.rb │ │ ├── ftpx.rb │ │ ├── gpp.rb │ │ ├── heidisql.rb │ │ ├── idm.rb │ │ ├── imail.rb │ │ ├── imvu.rb │ │ ├── mcafee_vse_hashdump.rb │ │ ├── mdaemon_cred_collector.rb │ │ ├── meebo.rb │ │ ├── mremote.rb │ │ ├── mssql_local_hashdump.rb │ │ ├── nimbuzz.rb │ │ ├── outlook.rb │ │ ├── purevpn_cred_collector.rb │ │ ├── razer_synapse.rb │ │ ├── razorsql.rb │ │ ├── rdc_manager_creds.rb │ │ ├── skype.rb │ │ ├── smartermail.rb │ │ ├── smartftp.rb │ │ ├── spark_im.rb │ │ ├── sso.rb │ │ ├── steam.rb │ │ ├── tortoisesvn.rb │ │ ├── total_commander.rb │ │ ├── trillian.rb │ │ ├── vnc.rb │ │ ├── windows_autologin.rb │ │ ├── winscp.rb │ │ └── wsftp_client.rb │ ├── dnscache_dump.rb │ ├── dumplinks.rb │ ├── enum_ad_bitlocker.rb │ ├── enum_ad_computers.rb │ ├── enum_ad_groups.rb │ ├── enum_ad_managedby_groups.rb │ ├── enum_ad_service_principal_names.rb │ ├── enum_ad_to_wordlist.rb │ ├── enum_ad_user_comments.rb │ ├── enum_ad_users.rb │ ├── enum_applications.rb │ ├── enum_artifacts.rb │ ├── enum_av_excluded.rb │ ├── enum_chrome.rb │ ├── enum_computers.rb │ ├── enum_db.rb │ ├── enum_devices.rb │ ├── enum_dirperms.rb │ ├── enum_domain.rb │ ├── enum_domain_group_users.rb │ ├── enum_domain_tokens.rb │ ├── enum_domain_users.rb │ ├── enum_domains.rb │ ├── enum_emet.rb │ ├── enum_files.rb │ ├── enum_hostfile.rb │ ├── enum_ie.rb │ ├── enum_logged_on_users.rb │ ├── enum_ms_product_keys.rb │ ├── enum_muicache.rb │ ├── enum_patches.rb │ ├── enum_powershell_env.rb │ ├── enum_prefetch.rb │ ├── enum_proxy.rb │ ├── enum_putty_saved_sessions.rb │ ├── enum_services.rb │ ├── enum_shares.rb │ ├── enum_snmp.rb │ ├── enum_termserv.rb │ ├── enum_tokens.rb │ ├── enum_tomcat.rb │ ├── enum_trusted_locations.rb │ ├── enum_unattend.rb │ ├── file_from_raw_ntfs.rb │ ├── forensics │ │ ├── browser_history.rb │ │ ├── duqu_check.rb │ │ ├── enum_drives.rb │ │ ├── imager.rb │ │ ├── nbd_server.rb │ │ └── recovery_files.rb │ ├── hashdump.rb │ ├── local_admin_search_enum.rb │ ├── lsa_secrets.rb │ ├── make_csv_orgchart.rb │ ├── memory_grep.rb │ ├── netlm_downgrade.rb │ ├── ntds_grabber.rb │ ├── ntds_location.rb │ ├── outlook.rb │ ├── phish_windows_credentials.rb │ ├── psreadline_history.rb │ ├── resolve_sid.rb │ ├── reverse_lookup.rb │ ├── screen_spy.rb │ ├── smart_hashdump.rb │ ├── tcpnetstat.rb │ ├── usb_history.rb │ ├── win_privs.rb │ ├── wmic_command.rb │ └── word_unc_injector.rb │ ├── manage │ ├── add_user_domain.rb │ ├── archmigrate.rb │ ├── change_password.rb │ ├── clone_proxy_settings.rb │ ├── delete_user.rb │ ├── download_exec.rb │ ├── driver_loader.rb │ ├── enable_rdp.rb │ ├── enable_support_account.rb │ ├── exec_powershell.rb │ ├── forward_pageant.rb │ ├── hashcarve.rb │ ├── ie_proxypac.rb │ ├── inject_ca.rb │ ├── inject_host.rb │ ├── killav.rb │ ├── migrate.rb │ ├── mssql_local_auth_bypass.rb │ ├── multi_meterpreter_inject.rb │ ├── nbd_server.rb │ ├── payload_inject.rb │ ├── peinjector.rb │ ├── persistence_exe.rb │ ├── portproxy.rb │ ├── powershell │ │ ├── build_net_code.rb │ │ ├── exec_powershell.rb │ │ └── load_script.rb │ ├── pptp_tunnel.rb │ ├── priv_migrate.rb │ ├── pxeexploit.rb │ ├── reflective_dll_inject.rb │ ├── remove_ca.rb │ ├── remove_host.rb │ ├── rid_hijack.rb │ ├── rollback_defender_signatures.rb │ ├── rpcapd_start.rb │ ├── run_as.rb │ ├── run_as_psh.rb │ ├── sdel.rb │ ├── sticky_keys.rb │ ├── vmdk_mount.rb │ ├── vss_create.rb │ ├── vss_list.rb │ ├── vss_mount.rb │ ├── vss_set_storage.rb │ ├── vss_storage.rb │ ├── wdigest_caching.rb │ └── webcam.rb │ ├── recon │ ├── computer_browser_discovery.rb │ ├── outbound_ports.rb │ └── resolve_ip.rb │ └── wlan │ ├── wlan_bss_list.rb │ ├── wlan_current_connection.rb │ ├── wlan_disconnect.rb │ ├── wlan_probe_request.rb │ └── wlan_profile.rb ├── msf-json-rpc.ru ├── msf-ws.ru ├── msfconsole ├── msfd ├── msfdb ├── msfrpc ├── msfrpcd ├── msfupdate ├── msfvenom ├── plugins ├── aggregator.rb ├── alias.rb ├── auto_add_route.rb ├── beholder.rb ├── db_credcollect.rb ├── db_tracker.rb ├── event_tester.rb ├── ffautoregen.rb ├── ips_filter.rb ├── komand.rb ├── lab.rb ├── libnotify.rb ├── msfd.rb ├── msgrpc.rb ├── nessus.rb ├── nexpose.rb ├── openvas.rb ├── pcap_log.rb ├── request.rb ├── rssfeed.rb ├── sample.rb ├── session_notifier.rb ├── session_tagger.rb ├── socket_logger.rb ├── sounds.rb ├── sqlmap.rb ├── thread.rb ├── token_adduser.rb ├── token_hunter.rb ├── wiki.rb └── wmap.rb ├── script └── rails ├── scripts ├── meterpreter │ ├── arp_scanner.rb │ ├── autoroute.rb │ ├── checkvm.rb │ ├── credcollect.rb │ ├── domain_list_gen.rb │ ├── dumplinks.rb │ ├── duplicate.rb │ ├── enum_chrome.rb │ ├── enum_firefox.rb │ ├── enum_logged_on_users.rb │ ├── enum_powershell_env.rb │ ├── enum_putty.rb │ ├── enum_shares.rb │ ├── enum_vmware.rb │ ├── event_manager.rb │ ├── file_collector.rb │ ├── get_application_list.rb │ ├── get_env.rb │ ├── get_filezilla_creds.rb │ ├── get_local_subnets.rb │ ├── get_pidgin_creds.rb │ ├── get_valid_community.rb │ ├── getcountermeasure.rb │ ├── getgui.rb │ ├── gettelnet.rb │ ├── getvncpw.rb │ ├── hashdump.rb │ ├── hostsedit.rb │ ├── keylogrecorder.rb │ ├── killav.rb │ ├── metsvc.rb │ ├── migrate.rb │ ├── multi_console_command.rb │ ├── multi_meter_inject.rb │ ├── multicommand.rb │ ├── multiscript.rb │ ├── netenum.rb │ ├── packetrecorder.rb │ ├── panda_2007_pavsrv51.rb │ ├── persistence.rb │ ├── pml_driver_config.rb │ ├── powerdump.rb │ ├── prefetchtool.rb │ ├── process_memdump.rb │ ├── remotewinenum.rb │ ├── scheduleme.rb │ ├── schelevator.rb │ ├── schtasksabuse.rb │ ├── scraper.rb │ ├── screen_unlock.rb │ ├── screenspy.rb │ ├── search_dwld.rb │ ├── service_manager.rb │ ├── service_permissions_escalate.rb │ ├── sound_recorder.rb │ ├── srt_webdrive_priv.rb │ ├── uploadexec.rb │ ├── virtualbox_sysenter_dos.rb │ ├── virusscan_bypass.rb │ ├── vnc.rb │ ├── webcam.rb │ ├── winbf.rb │ ├── winenum.rb │ └── wmic.rb ├── ps │ └── msflag.ps1 ├── resource │ ├── .keep │ ├── auto_brute.rc │ ├── auto_cred_checker.rc │ ├── auto_pass_the_hash.rc │ ├── auto_win32_multihandler.rc │ ├── autocrawler.rc │ ├── autoexploit.rc │ ├── bap_all.rc │ ├── bap_dryrun_only.rc │ ├── bap_firefox_only.rc │ ├── bap_flash_only.rc │ ├── bap_ie_only.rc │ ├── basic_discovery.rc │ ├── dev_checks.rc │ ├── fileformat_generator.rc │ ├── mssql_brute.rc │ ├── multi_post.rc │ ├── nessus_vulns_cleaner.rc │ ├── oracle_login.rc │ ├── oracle_sids.rc │ ├── oracle_tns.rc │ ├── port_cleaner.rc │ ├── portscan.rc │ ├── run_all_post.rc │ ├── smb_checks.rc │ ├── smb_validate.rc │ └── wmap_autotest.rc └── shell │ └── migrate.rb ├── spec ├── factories │ └── mdm │ │ ├── exported_web_vulns.rb │ │ └── module_details.rb ├── file_fixtures │ ├── fake_common_roots.txt │ ├── fake_default_wordlist.txt │ ├── modules │ │ ├── auxiliary │ │ │ ├── auxiliary_tidy.rb │ │ │ └── auxiliary_untidy.rb │ │ ├── exploits │ │ │ ├── auto_target_linux.rb │ │ │ ├── auto_target_windows.rb │ │ │ ├── existing_auto_target.rb │ │ │ └── single_target_exploit.rb │ │ └── payloads │ │ │ └── payload_tidy.rb │ ├── nop_shellcode.bin │ ├── short_address_list.txt │ └── string_list.txt ├── lib │ ├── active_record │ │ └── connection_adapters │ │ │ └── abstract_adapter │ │ │ └── connection_pool_spec.rb │ ├── metasploit │ │ └── framework │ │ │ ├── afp │ │ │ └── client_spec.rb │ │ │ ├── aws │ │ │ └── client_spec.rb │ │ │ ├── compiler │ │ │ ├── utils_spec.rb │ │ │ └── windows_spec.rb │ │ │ ├── credential_collection_spec.rb │ │ │ ├── credential_spec.rb │ │ │ ├── database_spec.rb │ │ │ ├── jtr │ │ │ ├── cracker_spec.rb │ │ │ ├── invalid_wordlist_spec.rb │ │ │ └── wordlist_spec.rb │ │ │ ├── login_scanner │ │ │ ├── advantech_webaccess_spec.rb │ │ │ ├── afp_spec.rb │ │ │ ├── axis2_spec.rb │ │ │ ├── base_spec.rb │ │ │ ├── bavision_cameras_spec.rb │ │ │ ├── buffalo_spec.rb │ │ │ ├── caidao_spec.rb │ │ │ ├── chef_webui_spec.rb │ │ │ ├── cisco_firepower_spec.rb │ │ │ ├── db2_spec.rb │ │ │ ├── ftp_spec.rb │ │ │ ├── gitlab_spec.rb │ │ │ ├── glassfish_spec.rb │ │ │ ├── http_spec.rb │ │ │ ├── invalid_spec.rb │ │ │ ├── ipboard_spec.rb │ │ │ ├── jenkins_spec.rb │ │ │ ├── manageengine_desktop_central_spec.rb │ │ │ ├── mssql_spec.rb │ │ │ ├── mybook_live_spec.rb │ │ │ ├── mysql_spec.rb │ │ │ ├── nessus_spec.rb │ │ │ ├── octopusdeploy_spec.rb │ │ │ ├── phpmyadmin_spec.rb │ │ │ ├── pop3_spec.rb │ │ │ ├── postgres_spec.rb │ │ │ ├── redis_spec.rb │ │ │ ├── result_spec.rb │ │ │ ├── smb_spec.rb │ │ │ ├── smh_spec.rb │ │ │ ├── snmp_spec.rb │ │ │ ├── ssh_spec.rb │ │ │ ├── symantec_web_gateway_spec.rb │ │ │ ├── telnet_spec.rb │ │ │ ├── tomcat_spec.rb │ │ │ ├── vmauthd_spec.rb │ │ │ ├── vnc_spec.rb │ │ │ ├── winrm_spec.rb │ │ │ ├── wordpress_multicall_spec.rb │ │ │ ├── wordpress_rpc_spec.rb │ │ │ └── zabbix_spec.rb │ │ │ ├── login_scanner_spec.rb │ │ │ └── obfuscation │ │ │ └── crandomizer │ │ │ ├── code_factory │ │ │ ├── base_spec.rb │ │ │ ├── fake_function_collection_spec.rb │ │ │ ├── fake_function_spec.rb │ │ │ ├── gettickcount_spec.rb │ │ │ ├── if_spec.rb │ │ │ ├── int_assignments_spec.rb │ │ │ ├── malloc_spec.rb │ │ │ ├── outputdebugstring_spec.rb │ │ │ ├── printf_spec.rb │ │ │ ├── string_assignments_spec.rb │ │ │ ├── switch_spec.rb │ │ │ └── uninit_variables_spec.rb │ │ │ ├── modifier_spec.rb │ │ │ ├── parser_spec.rb │ │ │ ├── random_statements_spec.rb │ │ │ └── utility_spec.rb │ ├── msf │ │ ├── base │ │ │ ├── sessions │ │ │ │ ├── mainframe_shell_spec.rb │ │ │ │ └── meterpreter_spec.rb │ │ │ └── simple │ │ │ │ └── framework_spec.rb │ │ ├── core │ │ │ ├── author_spec.rb │ │ │ ├── auxiliary │ │ │ │ ├── cisco_spec.rb │ │ │ │ ├── drdos_spec.rb │ │ │ │ └── kademlia_spec.rb │ │ │ ├── data_store_spec.rb │ │ │ ├── encoded_payload_spec.rb │ │ │ ├── exe │ │ │ │ ├── segment_appender_spec.rb │ │ │ │ └── segment_injector_spec.rb │ │ │ ├── exploit │ │ │ │ ├── auto_target_spec.rb │ │ │ │ ├── browser_autopwn2_spec.rb │ │ │ │ ├── capture_spec.rb │ │ │ │ ├── cmdstager_spec.rb │ │ │ │ ├── http │ │ │ │ │ ├── client_spec.rb │ │ │ │ │ ├── jboss │ │ │ │ │ │ ├── base_spec.rb │ │ │ │ │ │ ├── bean_shell_scripts_spec.rb │ │ │ │ │ │ ├── bean_shell_spec.rb │ │ │ │ │ │ ├── deployment_file_repository_scripts_spec.rb │ │ │ │ │ │ └── deployment_file_repository_spec.rb │ │ │ │ │ ├── joomla │ │ │ │ │ │ ├── base_spec.rb │ │ │ │ │ │ └── version_spec.rb │ │ │ │ │ ├── server_spec.rb │ │ │ │ │ ├── typo3_spec.rb │ │ │ │ │ └── wordpress │ │ │ │ │ │ ├── base_spec.rb │ │ │ │ │ │ ├── login_spec.rb │ │ │ │ │ │ └── version_spec.rb │ │ │ │ ├── kerberos │ │ │ │ │ └── client │ │ │ │ │ │ ├── as_request_spec.rb │ │ │ │ │ │ ├── as_response_spec.rb │ │ │ │ │ │ ├── base_spec.rb │ │ │ │ │ │ ├── cache_credential_spec.rb │ │ │ │ │ │ ├── pac_spec.rb │ │ │ │ │ │ ├── tgs_request_spec.rb │ │ │ │ │ │ └── tgs_response_spec.rb │ │ │ │ ├── powershell_spec.rb │ │ │ │ ├── remote │ │ │ │ │ ├── browser_exploit_server_spec.rb │ │ │ │ │ ├── browser_profile_manager_spec.rb │ │ │ │ │ ├── firefox_addon_generator_spec.rb │ │ │ │ │ ├── firefox_privilege_escalation_spec.rb │ │ │ │ │ └── java │ │ │ │ │ │ └── rmi │ │ │ │ │ │ ├── builder_spec.rb │ │ │ │ │ │ ├── client │ │ │ │ │ │ ├── jmx │ │ │ │ │ │ │ ├── connection │ │ │ │ │ │ │ │ └── builder_spec.rb │ │ │ │ │ │ │ ├── connection_spec.rb │ │ │ │ │ │ │ ├── server │ │ │ │ │ │ │ │ ├── builder_spec.rb │ │ │ │ │ │ │ │ └── parser_spec.rb │ │ │ │ │ │ │ └── server_spec.rb │ │ │ │ │ │ ├── registry │ │ │ │ │ │ │ ├── builder_spec.rb │ │ │ │ │ │ │ └── parser_spec.rb │ │ │ │ │ │ └── registry_spec.rb │ │ │ │ │ │ ├── client_spec.rb │ │ │ │ │ │ └── util_spec.rb │ │ │ │ └── smb │ │ │ │ │ ├── client │ │ │ │ │ ├── local_paths_spec.rb │ │ │ │ │ └── remote_paths_spec.rb │ │ │ │ │ └── server │ │ │ │ │ └── share │ │ │ │ │ ├── command │ │ │ │ │ ├── close_spec.rb │ │ │ │ │ ├── negotiate_spec.rb │ │ │ │ │ ├── nt_create_andx_spec.rb │ │ │ │ │ ├── read_andx_spec.rb │ │ │ │ │ ├── session_setup_andx_spec.rb │ │ │ │ │ ├── trans2 │ │ │ │ │ │ ├── find_first2_spec.rb │ │ │ │ │ │ ├── query_file_information_spec.rb │ │ │ │ │ │ └── query_path_information_spec.rb │ │ │ │ │ └── trans2_spec.rb │ │ │ │ │ └── information_level │ │ │ │ │ ├── find_spec.rb │ │ │ │ │ └── query_spec.rb │ │ │ ├── framework_spec.rb │ │ │ ├── handler │ │ │ │ └── reverse_http_spec.rb │ │ │ ├── module │ │ │ │ └── failure_spec.rb │ │ │ ├── module_manager_spec.rb │ │ │ ├── module_set_spec.rb │ │ │ ├── module_spec.rb │ │ │ ├── modules │ │ │ │ ├── error_spec.rb │ │ │ │ └── loader │ │ │ │ │ ├── base_spec.rb │ │ │ │ │ └── directory_spec.rb │ │ │ ├── opt_address_local_spec.rb │ │ │ ├── opt_address_range_spec.rb │ │ │ ├── opt_address_spec.rb │ │ │ ├── opt_bool_spec.rb │ │ │ ├── opt_enum_spec.rb │ │ │ ├── opt_float_spec.rb │ │ │ ├── opt_int_spec.rb │ │ │ ├── opt_path_spec.rb │ │ │ ├── opt_port_spec.rb │ │ │ ├── opt_raw_spec.rb │ │ │ ├── opt_regexp_spec.rb │ │ │ ├── opt_spec.rb │ │ │ ├── option_container_spec.rb │ │ │ ├── payload_generator_spec.rb │ │ │ ├── platform_spec.rb │ │ │ ├── post │ │ │ │ ├── android │ │ │ │ │ ├── priv_spec.rb │ │ │ │ │ └── system_spec.rb │ │ │ │ ├── linux │ │ │ │ │ └── busy_box_spec.rb │ │ │ │ └── windows │ │ │ │ │ ├── mssql_spec.rb │ │ │ │ │ ├── priv_spec.rb │ │ │ │ │ └── runas_spec.rb │ │ │ ├── reference_spec.rb │ │ │ ├── rpc │ │ │ │ ├── json │ │ │ │ │ └── dispatcher_spec.rb │ │ │ │ └── v10 │ │ │ │ │ └── rpc_core_spec.rb │ │ │ ├── site_reference_spec.rb │ │ │ └── target_spec.rb │ │ ├── database_event_spec.rb │ │ ├── db_import_error_spec.rb │ │ ├── db_manager │ │ │ └── export_spec.rb │ │ ├── db_manager_spec.rb │ │ ├── host_state_spec.rb │ │ ├── service_state_spec.rb │ │ ├── ui │ │ │ └── console │ │ │ │ └── command_dispatcher │ │ │ │ ├── auxiliary_spec.rb │ │ │ │ ├── core_spec.rb │ │ │ │ ├── creds_spec.rb │ │ │ │ ├── db_spec.rb │ │ │ │ └── exploit_spec.rb │ │ └── util │ │ │ ├── document_generator │ │ │ ├── normalizer_spec.rb │ │ │ └── pull_request_finder_spec.rb │ │ │ └── java_deserialization_spec.rb │ ├── net │ │ └── dns │ │ │ ├── names │ │ │ └── names_spec.rb │ │ │ └── rr │ │ │ ├── classes_spec.rb │ │ │ └── types_spec.rb │ └── rex │ │ ├── crypto │ │ ├── aes256_spec.rb │ │ └── rc4_spec.rb │ │ ├── image_source │ │ ├── disk_spec.rb │ │ └── memory_spec.rb │ │ ├── mac_oui_spec.rb │ │ ├── parser │ │ ├── fs │ │ │ └── bitlocker_spec.rb │ │ ├── group_policy_preferences_spec.rb │ │ ├── ini_spec.rb │ │ ├── nmap_xml_spec.rb │ │ ├── unattend_spec.rb │ │ └── winscp_spec.rb │ │ ├── payloads │ │ └── meterpreter │ │ │ └── uri_checksum_spec.rb │ │ ├── post │ │ ├── meterpreter │ │ │ ├── client_core_spec.rb │ │ │ ├── extensions │ │ │ │ ├── priv │ │ │ │ │ └── priv_spec.rb │ │ │ │ └── stdapi │ │ │ │ │ ├── sys │ │ │ │ │ └── registry_spec.rb │ │ │ │ │ └── ui_spec.rb │ │ │ ├── packet_parser_spec.rb │ │ │ ├── packet_spec.rb │ │ │ └── ui │ │ │ │ └── console.rb │ │ └── meterpreter_spec.rb │ │ ├── proto │ │ ├── acpp │ │ │ ├── message_spec.rb │ │ │ └── retrieve_public.bin │ │ ├── http │ │ │ ├── client_request_spec.rb │ │ │ ├── client_spec.rb │ │ │ ├── packet │ │ │ │ └── header_spec.rb │ │ │ ├── packet_spec.rb │ │ │ └── response_spec.rb │ │ ├── kademlia │ │ │ ├── bootstrap_request_spec.rb │ │ │ ├── bootstrap_response_spec.rb │ │ │ ├── kademlia_bootstrap_res.bin │ │ │ ├── message_spec.rb │ │ │ ├── ping_spec.rb │ │ │ ├── pong_spec.rb │ │ │ └── util_spec.rb │ │ ├── kerberos │ │ │ ├── client_spec.rb │ │ │ ├── credential_cache │ │ │ │ ├── cache_spec.rb │ │ │ │ ├── credential_spec.rb │ │ │ │ ├── key_block.rb │ │ │ │ ├── principal_spec.rb │ │ │ │ └── time_spec.rb │ │ │ ├── model │ │ │ │ ├── ap_req_spec.rb │ │ │ │ ├── authenticator_spec.rb │ │ │ │ ├── authorization_data_spec.rb │ │ │ │ ├── checksum_spec.rb │ │ │ │ ├── enc_kdc_response_spec.rb │ │ │ │ ├── encrypted_data_spec.rb │ │ │ │ ├── kdc_request_body_spec.rb │ │ │ │ ├── kdc_request_spec.rb │ │ │ │ ├── kdc_response_spec.rb │ │ │ │ ├── krb_error_spec.rb │ │ │ │ ├── pre_auth_data_spec.rb │ │ │ │ ├── pre_auth_enc_time_stamp_spec.rb │ │ │ │ ├── pre_auth_pac_request_spec.rb │ │ │ │ ├── principal_name_spec.rb │ │ │ │ └── ticket_spec.rb │ │ │ └── pac │ │ │ │ ├── client_info_spec.rb │ │ │ │ ├── logon_info_spec.rb │ │ │ │ ├── priv_srv_checksum_spec.rb │ │ │ │ ├── server_checksum_spec.rb │ │ │ │ └── type_spec.rb │ │ ├── mms │ │ │ ├── client_spec.rb │ │ │ └── model │ │ │ │ ├── message_spec.rb │ │ │ │ └── smtp_spec.rb │ │ ├── natpmp │ │ │ └── packet_spec.rb │ │ ├── ntp │ │ │ └── modes_spec.rb │ │ ├── pjl │ │ │ └── client_spec.rb │ │ ├── proxy │ │ │ └── socks5 │ │ │ │ ├── packet_spec.rb │ │ │ │ └── server_spec.rb │ │ ├── quake │ │ │ ├── info_response.bin │ │ │ ├── message_spec.rb │ │ │ └── status_response.bin │ │ ├── rmi │ │ │ └── model │ │ │ │ ├── call_data_spec.rb │ │ │ │ ├── call_spec.rb │ │ │ │ ├── continuation_spec.rb │ │ │ │ ├── dgc_ack_spec.rb │ │ │ │ ├── output_header_spec.rb │ │ │ │ ├── ping_ack_spec.rb │ │ │ │ ├── ping_spec.rb │ │ │ │ ├── protocol_ack_spec.rb │ │ │ │ ├── return_data_spec.rb │ │ │ │ ├── return_value_spec.rb │ │ │ │ └── unique_identifier_spec.rb │ │ ├── sip │ │ │ └── response_spec.rb │ │ ├── sms │ │ │ ├── client_spec.rb │ │ │ └── model │ │ │ │ ├── message_spec.rb │ │ │ │ └── smtp_spec.rb │ │ └── steam │ │ │ ├── message_spec.rb │ │ │ └── steam_info.bin │ │ └── time_spec.rb ├── models │ ├── mdm │ │ └── workspace_spec.rb │ └── metasploit │ │ └── credential │ │ └── core_spec.rb ├── modules │ └── payloads_spec.rb ├── modules_spec.rb ├── msfupdate_spec.rb ├── spec_helper.rb ├── support │ ├── matchers │ │ ├── query_the_database.rb │ │ └── respond_to_protected.rb │ └── shared │ │ ├── contexts │ │ ├── metasploit │ │ │ └── framework │ │ │ │ └── spec │ │ │ │ └── constants │ │ │ │ └── cleaner.rb │ │ ├── msf │ │ │ ├── db_manager.rb │ │ │ ├── framework │ │ │ │ └── threads │ │ │ │ │ └── cleaner.rb │ │ │ ├── modules │ │ │ │ ├── error_attributes.rb │ │ │ │ └── loader_base.rb │ │ │ ├── simple │ │ │ │ ├── framework.rb │ │ │ │ └── framework │ │ │ │ │ └── modules │ │ │ │ │ └── loading.rb │ │ │ ├── string_io.rb │ │ │ └── ui_driver.rb │ │ └── untested_payloads.rb │ │ └── examples │ │ ├── all_modules_with_module_type_can_be_instantiated.rb │ │ ├── an_option.rb │ │ ├── credential │ │ └── core │ │ │ └── to_credential.rb │ │ ├── hash_with_insensitive_access.rb │ │ ├── mdm │ │ └── workspace │ │ │ └── boundary.rb │ │ ├── metasploit │ │ └── framework │ │ │ ├── login_scanner │ │ │ ├── http.rb │ │ │ ├── login_scanner_base.rb │ │ │ ├── ntlm.rb │ │ │ └── rex_socket.rb │ │ │ └── tcp │ │ │ └── client.rb │ │ ├── msf │ │ ├── core │ │ │ └── exploit │ │ │ │ └── jsobfu.rb │ │ ├── db_manager │ │ │ ├── adapter.rb │ │ │ ├── client.rb │ │ │ ├── connection.rb │ │ │ ├── cred.rb │ │ │ ├── event.rb │ │ │ ├── exploit_attempt.rb │ │ │ ├── exploited_host.rb │ │ │ ├── export │ │ │ │ └── extract_module_detail_info_module_detail_child.rb │ │ │ ├── host.rb │ │ │ ├── host_detail.rb │ │ │ ├── host_tag.rb │ │ │ ├── import.rb │ │ │ ├── import │ │ │ │ ├── acunetix.rb │ │ │ │ ├── amap.rb │ │ │ │ ├── appscan.rb │ │ │ │ ├── burp.rb │ │ │ │ ├── ci.rb │ │ │ │ ├── foundstone.rb │ │ │ │ ├── fusion_vm.rb │ │ │ │ ├── gpp.rb │ │ │ │ ├── ip360.rb │ │ │ │ ├── ip360 │ │ │ │ │ ├── aspl.rb │ │ │ │ │ └── v3.rb │ │ │ │ ├── ip_list.rb │ │ │ │ ├── libpcap.rb │ │ │ │ ├── mbsa.rb │ │ │ │ ├── metasploit_framework.rb │ │ │ │ ├── metasploit_framework │ │ │ │ │ ├── credential.rb │ │ │ │ │ ├── xml.rb │ │ │ │ │ ├── xml │ │ │ │ │ │ ├── check_msf_xml_version_with_root_tag.rb │ │ │ │ │ │ └── import_msf_web_element_specialization.rb │ │ │ │ │ └── zip.rb │ │ │ │ ├── nessus.rb │ │ │ │ ├── nessus │ │ │ │ │ ├── nbe.rb │ │ │ │ │ ├── xml.rb │ │ │ │ │ └── xml │ │ │ │ │ │ ├── v1.rb │ │ │ │ │ │ └── v2.rb │ │ │ │ ├── netsparker.rb │ │ │ │ ├── nexpose.rb │ │ │ │ ├── nexpose │ │ │ │ │ ├── raw.rb │ │ │ │ │ └── simple.rb │ │ │ │ ├── nikto.rb │ │ │ │ ├── nmap.rb │ │ │ │ ├── open_vas.rb │ │ │ │ ├── outpost24.rb │ │ │ │ ├── qualys.rb │ │ │ │ ├── qualys │ │ │ │ │ ├── asset.rb │ │ │ │ │ └── scan.rb │ │ │ │ ├── report.rb │ │ │ │ ├── retina.rb │ │ │ │ ├── spiceworks.rb │ │ │ │ └── wapiti.rb │ │ │ ├── ip_address.rb │ │ │ ├── loot.rb │ │ │ ├── migration.rb │ │ │ ├── module_cache.rb │ │ │ ├── note.rb │ │ │ ├── ref.rb │ │ │ ├── report.rb │ │ │ ├── route.rb │ │ │ ├── search_modules │ │ │ │ ├── mdm_module_platform_name_or_mdm_module_target_name_keyword.rb │ │ │ │ └── mdm_module_ref_name_keyword.rb │ │ │ ├── service.rb │ │ │ ├── session.rb │ │ │ ├── session_event.rb │ │ │ ├── task.rb │ │ │ ├── update_all_module_details_refresh.rb │ │ │ ├── update_module_details_with_module_type.rb │ │ │ ├── vuln.rb │ │ │ ├── vuln_attempt.rb │ │ │ ├── vuln_detail.rb │ │ │ ├── web.rb │ │ │ ├── wmap.rb │ │ │ └── workspace.rb │ │ ├── module │ │ │ ├── arch.rb │ │ │ ├── author.rb │ │ │ ├── compatibility.rb │ │ │ ├── data_store.rb │ │ │ ├── full_name.rb │ │ │ ├── module_info.rb │ │ │ ├── module_store.rb │ │ │ ├── network.rb │ │ │ ├── options.rb │ │ │ ├── privileged.rb │ │ │ ├── ranking.rb │ │ │ ├── search.rb │ │ │ ├── type.rb │ │ │ ├── ui.rb │ │ │ ├── ui │ │ │ │ ├── line.rb │ │ │ │ ├── line │ │ │ │ │ └── verbose.rb │ │ │ │ ├── message.rb │ │ │ │ └── message │ │ │ │ │ └── verbose.rb │ │ │ └── uuid.rb │ │ ├── module_manager │ │ │ ├── cache.rb │ │ │ ├── loading.rb │ │ │ └── module_paths.rb │ │ ├── modules │ │ │ ├── error_subclass_initialize.rb │ │ │ └── version_compatibility_error.rb │ │ └── simple │ │ │ └── framework │ │ │ └── module_paths.rb │ │ ├── payload_cached_size_is_consistent.rb │ │ ├── rex │ │ └── image_source │ │ │ └── image_source.rb │ │ └── typed_path.rb └── tools │ ├── cpassword_decrypt_spec.rb │ ├── dev │ └── msftidy_spec.rb │ ├── egghunter_spec.rb │ ├── java_deserializer_spec.rb │ ├── jsobfu_spec.rb │ ├── md5_lookup_spec.rb │ └── virustotal_spec.rb ├── test ├── functional │ ├── framework │ │ ├── msfconsole_spec.rb │ │ └── msftest │ │ │ ├── 100_continue.msftest │ │ │ ├── db_connect_unconnected.msftest │ │ │ ├── psexec.msftest │ │ │ └── resource │ │ │ ├── exit.rc │ │ │ └── help.rc │ └── meterpreter │ │ ├── java_meterpreter_specs.rb │ │ ├── meterpreter_java_spec.rb │ │ ├── meterpreter_php_spec.rb │ │ ├── meterpreter_spec_helper.rb │ │ ├── meterpreter_specs.rb │ │ ├── meterpreter_win32_spec.rb │ │ └── windows_meterpreter_specs.rb ├── hooks │ ├── array_to_s.rb │ └── string_idx.rb ├── lib │ ├── module_test.rb │ ├── msf_matchers.rb │ └── regexr.rb ├── modules │ ├── auxiliary │ │ ├── scanner │ │ │ └── smb │ │ │ │ ├── smb_enumshares.json │ │ │ │ ├── smb_enumusers.json │ │ │ │ ├── smb_login.json │ │ │ │ └── smb_ms17_010_pass.json │ │ └── test │ │ │ ├── capture.rb │ │ │ ├── check.rb │ │ │ ├── eth_spoof.rb │ │ │ ├── ftp_data.rb │ │ │ ├── heaplib2.rb │ │ │ ├── httpserver.rb │ │ │ ├── ip_spoof.rb │ │ │ ├── recon_passive.rb │ │ │ ├── report_auth_info.rb │ │ │ ├── scanner_batch.rb │ │ │ ├── scanner_host.rb │ │ │ └── space_check.rb │ ├── exploits │ │ ├── test │ │ │ ├── aggressive.rb │ │ │ ├── browserexploitserver.rb │ │ │ ├── check.rb │ │ │ ├── cmdweb.rb │ │ │ ├── dialup.rb │ │ │ ├── egghunter.rb │ │ │ ├── explib2_ie11_drop_exec_test_case.rb │ │ │ ├── explib2_ie11_exec_test_case.rb │ │ │ ├── exploitme.rb │ │ │ ├── java_tester.rb │ │ │ ├── js_tester.rb │ │ │ ├── kernel.rb │ │ │ └── shell.rb │ │ └── windows │ │ │ └── smb │ │ │ ├── ms17_010_eternalblue.json │ │ │ ├── ms17_010_psexec.json │ │ │ └── psexec.json │ └── post │ │ └── test │ │ ├── cmd_exec.rb │ │ ├── extapi.rb │ │ ├── file.rb │ │ ├── get_env.rb │ │ ├── meterpreter.rb │ │ ├── railgun.rb │ │ ├── railgun_reverse_lookups.rb │ │ ├── registry.rb │ │ ├── services.rb │ │ └── unix.rb ├── scripts │ ├── test-check.rc │ └── test-sessions.rc └── tests │ ├── 00_create_all_modules_test.rb │ ├── 01_all_exploits_have_payloads_test.rb │ ├── rakefile │ ├── test_encoders.rb │ └── testbase.rb └── tools ├── context ├── Makefile ├── cpuid-key.c ├── stat-key.c └── time-key.c ├── dev ├── add_pr_fetch.rb ├── find_release_notes.rb ├── import-dev-keys.sh ├── msfdb_ws ├── msftidy.rb ├── pre-commit-hook.rb ├── set_binary_encoding.rb ├── sign-dev-keys.sh └── update_gem_licenses.sh ├── exploit ├── egghunter.rb ├── exe2vba.rb ├── exe2vbs.rb ├── extract_msu.bat ├── find_badchars.rb ├── install_msf_apk.sh ├── java_deserializer.rb ├── jsobfu.rb ├── metasm_shell.rb ├── msf_irb_shell.rb ├── msu_finder.rb ├── nasm_shell.rb ├── pattern_create.rb ├── pattern_offset.rb ├── pdf2xdp.rb ├── psexec.rb ├── random_compile_c.rb ├── reg.rb └── virustotal.rb ├── hardware ├── README.md ├── elm327_relay.rb └── killerbee_msfrelay.py ├── memdump ├── README.memdump ├── memdump.c └── memdump.exe ├── modules ├── aws-aggregator-userdata.sh ├── committer_count.rb ├── cve_xref.rb ├── file_pull_requests.rb ├── generate_mettle_payloads.rb ├── meterpreter_reverse.erb ├── missing_payload_tests.rb ├── module_author.rb ├── module_commits.rb ├── module_count.rb ├── module_description.rb ├── module_disclodate.rb ├── module_license.rb ├── module_missing_reference.rb ├── module_mixins.rb ├── module_payloads.rb ├── module_ports.rb ├── module_rank.rb ├── module_reference.rb ├── module_targets.rb ├── payload_lengths.rb ├── profile.sh ├── solo.rb ├── update_payload_cached_sizes.rb └── verify_datastore.rb ├── password ├── cpassword_decrypt.rb ├── halflm_second.rb ├── hmac_sha1_crack.rb ├── lm2ntcrack.rb ├── md5_lookup.rb ├── vxdigger.rb ├── vxencrypt.rb ├── vxmaster.rb └── winscp_decrypt.rb ├── payloads └── ysoserial │ ├── Dockerfile │ ├── find_ysoserial_offsets.rb │ └── runme.sh └── recon ├── google_geolocate_bssid.rb └── makeiplist.rb /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/.mailmap -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | metasploit-framework 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.6.2 2 | -------------------------------------------------------------------------------- /.simplecov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/.simplecov -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/.yardopts -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/COPYING -------------------------------------------------------------------------------- /CURRENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/CURRENT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/Gemfile.local.example -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_GEMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/LICENSE_GEMS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app/validators/metasploit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/app/validators/metasploit.rb -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/config/cucumber.yml -------------------------------------------------------------------------------- /config/database.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/config/database.yml.example -------------------------------------------------------------------------------- /config/database.yml.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/config/database.yml.travis -------------------------------------------------------------------------------- /config/database.yml.vagrant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/config/database.yml.vagrant -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/config/environment.rb -------------------------------------------------------------------------------- /data/eicar.com: -------------------------------------------------------------------------------- 1 | X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H* -------------------------------------------------------------------------------- /data/eicar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/eicar.txt -------------------------------------------------------------------------------- /data/emailer_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/emailer_config.yaml -------------------------------------------------------------------------------- /data/exploits/CVE-2007-3314.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2007-3314.dat -------------------------------------------------------------------------------- /data/exploits/CVE-2008-0320.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2008-0320.doc -------------------------------------------------------------------------------- /data/exploits/CVE-2008-5353.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2008-5353.jar -------------------------------------------------------------------------------- /data/exploits/CVE-2008-5499.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2008-5499.swf -------------------------------------------------------------------------------- /data/exploits/CVE-2009-3867.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2009-3867.jar -------------------------------------------------------------------------------- /data/exploits/CVE-2009-3869.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2009-3869.jar -------------------------------------------------------------------------------- /data/exploits/CVE-2010-0480.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2010-0480.avi -------------------------------------------------------------------------------- /data/exploits/CVE-2010-0822.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2010-0822.xls -------------------------------------------------------------------------------- /data/exploits/CVE-2010-0842/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Created-By: 1.6.0_18 (Sun Microsystems Inc.) 3 | 4 | -------------------------------------------------------------------------------- /data/exploits/CVE-2010-1297.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2010-1297.swf -------------------------------------------------------------------------------- /data/exploits/CVE-2010-3275.amv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2010-3275.amv -------------------------------------------------------------------------------- /data/exploits/CVE-2010-3654.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2010-3654.swf -------------------------------------------------------------------------------- /data/exploits/CVE-2011-0105.xlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2011-0105.xlb -------------------------------------------------------------------------------- /data/exploits/CVE-2011-0257.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2011-0257.mov -------------------------------------------------------------------------------- /data/exploits/CVE-2011-0609.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2011-0609.swf -------------------------------------------------------------------------------- /data/exploits/CVE-2011-0611.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2011-0611.swf -------------------------------------------------------------------------------- /data/exploits/CVE-2011-2110.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2011-2110.swf -------------------------------------------------------------------------------- /data/exploits/CVE-2012-0507.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2012-0507.jar -------------------------------------------------------------------------------- /data/exploits/CVE-2012-0754.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2012-0754.swf -------------------------------------------------------------------------------- /data/exploits/CVE-2012-0779.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2012-0779.swf -------------------------------------------------------------------------------- /data/exploits/CVE-2012-1723.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2012-1723.jar -------------------------------------------------------------------------------- /data/exploits/CVE-2013-2171.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2013-2171.bin -------------------------------------------------------------------------------- /data/exploits/CVE-2013-6282.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2013-6282.so -------------------------------------------------------------------------------- /data/exploits/CVE-2014-0980.pui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2014-0980.pui -------------------------------------------------------------------------------- /data/exploits/CVE-2014-3153.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2014-3153.so -------------------------------------------------------------------------------- /data/exploits/CVE-2015-1328/1328: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2015-1328/1328 -------------------------------------------------------------------------------- /data/exploits/CVE-2015-8103/serialized_jenkins_header: -------------------------------------------------------------------------------- 1 | Protocol:CLI-connect -------------------------------------------------------------------------------- /data/exploits/CVE-2015-8103/serialized_payload_header: -------------------------------------------------------------------------------- 1 | <===[JENKINS REMOTING CAPACITY]===> -------------------------------------------------------------------------------- /data/exploits/CVE-2015-8660/8660: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/CVE-2015-8660/8660 -------------------------------------------------------------------------------- /data/exploits/badodt/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/badodt/content.xml -------------------------------------------------------------------------------- /data/exploits/badodt/meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/badodt/meta.xml -------------------------------------------------------------------------------- /data/exploits/badodt/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/badodt/styles.xml -------------------------------------------------------------------------------- /data/exploits/batik_svg/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | SVG-Handler-Class: Exploit 3 | 4 | -------------------------------------------------------------------------------- /data/exploits/capture/http/forms/mop.com.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/exploits/cve-2010-2883.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/cve-2010-2883.ttf -------------------------------------------------------------------------------- /data/exploits/cve-2013-0758.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/cve-2013-0758.swf -------------------------------------------------------------------------------- /data/exploits/cve-2014-1610/readme.md: -------------------------------------------------------------------------------- 1 | Any DjVu file can be used this is just a snazzy Metasploit one 2 | -------------------------------------------------------------------------------- /data/exploits/cve-2014-1761.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/cve-2014-1761.rtf -------------------------------------------------------------------------------- /data/exploits/cve-2017-0199.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/cve-2017-0199.rtf -------------------------------------------------------------------------------- /data/exploits/docx/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/docx/_rels/.rels -------------------------------------------------------------------------------- /data/exploits/exec_payload.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/exec_payload.msi -------------------------------------------------------------------------------- /data/exploits/ghostscript/msf.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/ghostscript/msf.ps -------------------------------------------------------------------------------- /data/exploits/hta_evasion.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/hta_evasion.hta -------------------------------------------------------------------------------- /data/exploits/iphone_libtiff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/iphone_libtiff.bin -------------------------------------------------------------------------------- /data/exploits/modicon_ladder.apx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/modicon_ladder.apx -------------------------------------------------------------------------------- /data/exploits/mp4player.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/mp4player.as -------------------------------------------------------------------------------- /data/exploits/mp4player.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/mp4player.fla -------------------------------------------------------------------------------- /data/exploits/mp4player.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/mp4player.swf -------------------------------------------------------------------------------- /data/exploits/msfJavaToolkit.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/msfJavaToolkit.jar -------------------------------------------------------------------------------- /data/exploits/mssql/h2b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/mssql/h2b -------------------------------------------------------------------------------- /data/exploits/openoffice_document_macro/Configurations2/accelerator/current.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/exploits/openoffice_document_macro/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /data/exploits/php/README: -------------------------------------------------------------------------------- 1 | rsnake's RFI database: http://ha.ckers.org/weird/rfi-locations.dat 2 | -------------------------------------------------------------------------------- /data/exploits/pricedown.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/pricedown.eot -------------------------------------------------------------------------------- /data/exploits/psnuffle/ftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/psnuffle/ftp.rb -------------------------------------------------------------------------------- /data/exploits/psnuffle/imap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/psnuffle/imap.rb -------------------------------------------------------------------------------- /data/exploits/psnuffle/pop3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/psnuffle/pop3.rb -------------------------------------------------------------------------------- /data/exploits/psnuffle/smb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/psnuffle/smb.rb -------------------------------------------------------------------------------- /data/exploits/psnuffle/url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/psnuffle/url.rb -------------------------------------------------------------------------------- /data/exploits/pxexploit/update0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/pxexploit/update0 -------------------------------------------------------------------------------- /data/exploits/pxexploit/update1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/pxexploit/update1 -------------------------------------------------------------------------------- /data/exploits/pxexploit/update2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/pxexploit/update2 -------------------------------------------------------------------------------- /data/exploits/pxexploit/update3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/pxexploit/update3 -------------------------------------------------------------------------------- /data/exploits/pxexploit/update4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/pxexploit/update4 -------------------------------------------------------------------------------- /data/exploits/runcalc.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/runcalc.hlp -------------------------------------------------------------------------------- /data/exploits/shockwave_rcsl.dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/shockwave_rcsl.dir -------------------------------------------------------------------------------- /data/exploits/tpwn/tpwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/tpwn/tpwn -------------------------------------------------------------------------------- /data/exploits/uxss/steal_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/exploits/uxss/steal_form.js -------------------------------------------------------------------------------- /data/exploits/wifi/dnspwn/dnslist.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/headers/windows/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/headers/windows/String.h -------------------------------------------------------------------------------- /data/headers/windows/Windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/headers/windows/Windows.h -------------------------------------------------------------------------------- /data/headers/windows/Winsock2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/headers/windows/Winsock2.h -------------------------------------------------------------------------------- /data/headers/windows/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/headers/windows/base64.h -------------------------------------------------------------------------------- /data/headers/windows/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/headers/windows/rc4.h -------------------------------------------------------------------------------- /data/headers/windows/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/headers/windows/stddef.h -------------------------------------------------------------------------------- /data/headers/windows/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/headers/windows/stdio.h -------------------------------------------------------------------------------- /data/headers/windows/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/headers/windows/stdlib.h -------------------------------------------------------------------------------- /data/headers/windows/xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/headers/windows/xor.h -------------------------------------------------------------------------------- /data/ipwn/ipwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/ipwn/ipwn -------------------------------------------------------------------------------- /data/isight.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/isight.bundle -------------------------------------------------------------------------------- /data/jtr/alnum.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/alnum.chr -------------------------------------------------------------------------------- /data/jtr/alnumspace.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/alnumspace.chr -------------------------------------------------------------------------------- /data/jtr/alpha.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/alpha.chr -------------------------------------------------------------------------------- /data/jtr/ascii.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/ascii.chr -------------------------------------------------------------------------------- /data/jtr/digits.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/digits.chr -------------------------------------------------------------------------------- /data/jtr/dumb16.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/dumb16.conf -------------------------------------------------------------------------------- /data/jtr/dumb32.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/dumb32.conf -------------------------------------------------------------------------------- /data/jtr/dynamic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/dynamic.conf -------------------------------------------------------------------------------- /data/jtr/dynamic_disabled.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/dynamic_disabled.conf -------------------------------------------------------------------------------- /data/jtr/hybrid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/hybrid.conf -------------------------------------------------------------------------------- /data/jtr/john.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/john.conf -------------------------------------------------------------------------------- /data/jtr/korelogic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/korelogic.conf -------------------------------------------------------------------------------- /data/jtr/lanman.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/lanman.chr -------------------------------------------------------------------------------- /data/jtr/latin1.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/latin1.chr -------------------------------------------------------------------------------- /data/jtr/lm_ascii.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/lm_ascii.chr -------------------------------------------------------------------------------- /data/jtr/lower.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/lower.chr -------------------------------------------------------------------------------- /data/jtr/lowernum.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/lowernum.chr -------------------------------------------------------------------------------- /data/jtr/lowerspace.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/lowerspace.chr -------------------------------------------------------------------------------- /data/jtr/regex_alphabets.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/regex_alphabets.conf -------------------------------------------------------------------------------- /data/jtr/repeats16.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/repeats16.conf -------------------------------------------------------------------------------- /data/jtr/repeats32.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/repeats32.conf -------------------------------------------------------------------------------- /data/jtr/upper.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/upper.chr -------------------------------------------------------------------------------- /data/jtr/uppernum.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/uppernum.chr -------------------------------------------------------------------------------- /data/jtr/utf8.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/jtr/utf8.chr -------------------------------------------------------------------------------- /data/lab/test_lab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/lab/test_lab.yml -------------------------------------------------------------------------------- /data/lab/test_targets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/lab/test_targets.yml -------------------------------------------------------------------------------- /data/logos/3kom-superhack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/3kom-superhack.txt -------------------------------------------------------------------------------- /data/logos/cow-head.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/cow-head.txt -------------------------------------------------------------------------------- /data/logos/cowsay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/cowsay.txt -------------------------------------------------------------------------------- /data/logos/figlet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/figlet.txt -------------------------------------------------------------------------------- /data/logos/gargoyle.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/gargoyle.hwtxt -------------------------------------------------------------------------------- /data/logos/ghost01.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/ghost01.hwtxt -------------------------------------------------------------------------------- /data/logos/i-heart-shells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/i-heart-shells.txt -------------------------------------------------------------------------------- /data/logos/json01.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/json01.hwtxt -------------------------------------------------------------------------------- /data/logos/metasploit-park.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/metasploit-park.txt -------------------------------------------------------------------------------- /data/logos/metasploit-shield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/metasploit-shield.txt -------------------------------------------------------------------------------- /data/logos/metasploit-trail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/metasploit-trail.txt -------------------------------------------------------------------------------- /data/logos/metasploit-v5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/metasploit-v5.txt -------------------------------------------------------------------------------- /data/logos/missile-command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/missile-command.txt -------------------------------------------------------------------------------- /data/logos/mummy.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/mummy.hwtxt -------------------------------------------------------------------------------- /data/logos/ninja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/ninja.txt -------------------------------------------------------------------------------- /data/logos/pentagram01.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/pentagram01.hwtxt -------------------------------------------------------------------------------- /data/logos/pony-01.aftxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/pony-01.aftxt -------------------------------------------------------------------------------- /data/logos/pony-02.aftxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/pony-02.aftxt -------------------------------------------------------------------------------- /data/logos/pony-03.aftxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/pony-03.aftxt -------------------------------------------------------------------------------- /data/logos/pony-04.aftxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/pony-04.aftxt -------------------------------------------------------------------------------- /data/logos/pony-05.aftxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/pony-05.aftxt -------------------------------------------------------------------------------- /data/logos/pumpkin01.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/pumpkin01.hwtxt -------------------------------------------------------------------------------- /data/logos/pumpkin02.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/pumpkin02.hwtxt -------------------------------------------------------------------------------- /data/logos/pumpkin03.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/pumpkin03.hwtxt -------------------------------------------------------------------------------- /data/logos/pumpkin04.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/pumpkin04.hwtxt -------------------------------------------------------------------------------- /data/logos/r7-metasploit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/r7-metasploit.txt -------------------------------------------------------------------------------- /data/logos/tricks01.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/tricks01.hwtxt -------------------------------------------------------------------------------- /data/logos/wake-up-neo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/wake-up-neo.txt -------------------------------------------------------------------------------- /data/logos/workflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/workflow.txt -------------------------------------------------------------------------------- /data/logos/zsploit-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/zsploit-1.txt -------------------------------------------------------------------------------- /data/logos/zsploit-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/zsploit-2.txt -------------------------------------------------------------------------------- /data/logos/zsploit-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/logos/zsploit-3.txt -------------------------------------------------------------------------------- /data/markdown_doc/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/markdown_doc/markdown.css -------------------------------------------------------------------------------- /data/meterpreter/metsvc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/meterpreter/metsvc.exe -------------------------------------------------------------------------------- /data/meterpreter/x64_osx_stage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/meterpreter/x64_osx_stage -------------------------------------------------------------------------------- /data/mime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/mime.yml -------------------------------------------------------------------------------- /data/msfcrawler/basic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/msfcrawler/basic.rb -------------------------------------------------------------------------------- /data/msfcrawler/comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/msfcrawler/comments.rb -------------------------------------------------------------------------------- /data/msfcrawler/forms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/msfcrawler/forms.rb -------------------------------------------------------------------------------- /data/msfcrawler/frames.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/msfcrawler/frames.rb -------------------------------------------------------------------------------- /data/msfcrawler/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/msfcrawler/image.rb -------------------------------------------------------------------------------- /data/msfcrawler/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/msfcrawler/link.rb -------------------------------------------------------------------------------- /data/msfcrawler/objects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/msfcrawler/objects.rb -------------------------------------------------------------------------------- /data/msfcrawler/scripts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/msfcrawler/scripts.rb -------------------------------------------------------------------------------- /data/passivex/passivex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/passivex/passivex.dll -------------------------------------------------------------------------------- /data/php/hop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/php/hop.php -------------------------------------------------------------------------------- /data/post/bypassuac-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/post/bypassuac-x64.dll -------------------------------------------------------------------------------- /data/post/bypassuac-x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/post/bypassuac-x64.exe -------------------------------------------------------------------------------- /data/post/bypassuac-x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/post/bypassuac-x86.dll -------------------------------------------------------------------------------- /data/post/bypassuac-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/post/bypassuac-x86.exe -------------------------------------------------------------------------------- /data/post/powershell/outlook.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/post/powershell/outlook.ps1 -------------------------------------------------------------------------------- /data/post/zip/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/post/zip/zip.js -------------------------------------------------------------------------------- /data/snmp/mibs/ADSL-TC-MIB.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | adsltcmib: 1.3.6.1.2.1.10.94.2 3 | -------------------------------------------------------------------------------- /data/snmp/mibs/AGENTX-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/AGENTX-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/APM-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/APM-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/APPC-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/APPC-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/APPN-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/APPN-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/APS-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/APS-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/ATM-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/ATM-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/ATM-TC-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/ATM-TC-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/ATM2-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/ATM2-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/BGP4-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/BGP4-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/BRIDGE-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/BRIDGE-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/CLNS-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/CLNS-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DIFFSERV-DSCP-TC.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | diffServDSCPTC: 1.3.6.1.2.1.96 3 | -------------------------------------------------------------------------------- /data/snmp/mibs/DIFFSERV-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/DIFFSERV-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DLSW-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/DLSW-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DOCS-BPI-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/DOCS-BPI-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DOCS-IF-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/DOCS-IF-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DOT12-IF-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/DOT12-IF-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DS0-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/DS0-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DS1-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/DS1-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DS3-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/DS3-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DSA-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/DSA-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DSMON-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/DSMON-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/EBN-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/EBN-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/ENTITY-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/ENTITY-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/ETHER-WIS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/ETHER-WIS.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/FR-MFR-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/FR-MFR-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/FRSLD-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/FRSLD-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/Finisher-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/Finisher-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/GSMP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/GSMP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/HC-ALARM-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/HC-ALARM-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/HC-PerfHist-TC-MIB.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | hcPerfHistTCMIB: 1.3.6.1.2.1.107 3 | -------------------------------------------------------------------------------- /data/snmp/mibs/HC-RMON-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/HC-RMON-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/HCNUM-TC.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | hcnumTC: 1.3.6.1.2.1.78 3 | -------------------------------------------------------------------------------- /data/snmp/mibs/HPR-IP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/HPR-IP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/HPR-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/HPR-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/IF-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/IF-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/IGMP-STD-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/IGMP-STD-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/INET-ADDRESS-MIB.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | inetAddressMIB: 1.3.6.1.2.1.76 3 | -------------------------------------------------------------------------------- /data/snmp/mibs/IP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/IP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/IPOA-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/IPOA-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/IPV6-FLOW-LABEL-MIB.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | ipv6FlowLabelMIB: 1.3.6.1.2.1.103 3 | -------------------------------------------------------------------------------- /data/snmp/mibs/IPV6-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/IPV6-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/IPV6-MLD-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/IPV6-MLD-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/IPV6-TCP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/IPV6-TCP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/IPV6-UDP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/IPV6-UDP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/ISDN-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/ISDN-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/L2TP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/L2TP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/MALLOC-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/MALLOC-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/MAU-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/MAU-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/MIOX25-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/MIOX25-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/MIP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/MIP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/MTA-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/MTA-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/Modem-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/Modem-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/NHRP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/NHRP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/OPT-IF-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/OPT-IF-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/OSPF-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/OSPF-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/P-BRIDGE-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/P-BRIDGE-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/PARALLEL-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/PARALLEL-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/PIM-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/PIM-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/PINT-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/PINT-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/PPP-LCP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/PPP-LCP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/PPP-SEC-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/PPP-SEC-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/PTOPO-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/PTOPO-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/PerfHist-TC-MIB.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | perfHistTCMIB: 1.3.6.1.2.1.58 3 | -------------------------------------------------------------------------------- /data/snmp/mibs/Printer-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/Printer-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/Q-BRIDGE-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/Q-BRIDGE-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/RDBMS-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/RDBMS-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/RFC1065-SMI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/RFC1065-SMI.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/RFC1155-SMI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/RFC1155-SMI.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/RIPv2-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/RIPv2-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/RMON-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/RMON-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/RMON2-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/RMON2-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/ROHC-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/ROHC-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/RSVP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/RSVP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/RTP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/RTP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/SFLOW-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/SFLOW-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/SIP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/SIP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/SLAPM-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/SLAPM-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/SMON-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/SMON-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/SNMPv2-TM.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/SNMPv2-TM.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/SONET-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/SONET-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/TCP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/TCP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/UDP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/UDP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/UPS-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/UPS-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/VRRP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/VRRP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/WWW-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/snmp/mibs/WWW-MIB.yaml -------------------------------------------------------------------------------- /data/sounds/aiff2wav.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/sounds/aiff2wav.rb -------------------------------------------------------------------------------- /data/sounds/gensounds_mac.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/sounds/gensounds_mac.rb -------------------------------------------------------------------------------- /data/templates/dotnetmem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/templates/dotnetmem.dll -------------------------------------------------------------------------------- /data/templates/src/msi/buffer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/templates/src/msi/buffer -------------------------------------------------------------------------------- /data/templates/src/pe/dll/template.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | DllMain@12 3 | 4 | -------------------------------------------------------------------------------- /data/templates/src/pe/dll_gdiplus/template.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | DllMain@12 3 | 4 | -------------------------------------------------------------------------------- /data/vncdll.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/vncdll.x64.dll -------------------------------------------------------------------------------- /data/vncdll.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/vncdll.x86.dll -------------------------------------------------------------------------------- /data/webcam/answerer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/webcam/answerer.html -------------------------------------------------------------------------------- /data/webcam/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/webcam/api.js -------------------------------------------------------------------------------- /data/webcam/offerer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/webcam/offerer.html -------------------------------------------------------------------------------- /data/wmap/whaler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/wmap/whaler.txt -------------------------------------------------------------------------------- /data/wmap/wmap_404s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/wmap/wmap_404s.txt -------------------------------------------------------------------------------- /data/wmap/wmap_dirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/wmap/wmap_dirs.txt -------------------------------------------------------------------------------- /data/wmap/wmap_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/wmap/wmap_files.txt -------------------------------------------------------------------------------- /data/wordlists/idrac_default_pass.txt: -------------------------------------------------------------------------------- 1 | calvin 2 | 123456 3 | password 4 | -------------------------------------------------------------------------------- /data/wordlists/idrac_default_user.txt: -------------------------------------------------------------------------------- 1 | root 2 | user1 3 | admin 4 | -------------------------------------------------------------------------------- /data/wordlists/ipmi_users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/wordlists/ipmi_users.txt -------------------------------------------------------------------------------- /data/wordlists/joomla.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/wordlists/joomla.txt -------------------------------------------------------------------------------- /data/wordlists/mirai_pass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/wordlists/mirai_pass.txt -------------------------------------------------------------------------------- /data/wordlists/mirai_user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/wordlists/mirai_user.txt -------------------------------------------------------------------------------- /data/wordlists/multi_vendor_cctv_dvr_users.txt: -------------------------------------------------------------------------------- 1 | admin 2 | user 3 | -------------------------------------------------------------------------------- /data/wordlists/namelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/wordlists/namelist.txt -------------------------------------------------------------------------------- /data/wordlists/password.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/wordlists/password.lst -------------------------------------------------------------------------------- /data/wordlists/postgres_default_pass.txt: -------------------------------------------------------------------------------- 1 | 2 | tiger 3 | postgres 4 | password 5 | admin 6 | -------------------------------------------------------------------------------- /data/wordlists/postgres_default_user.txt: -------------------------------------------------------------------------------- 1 | 2 | postgres 3 | scott 4 | admin 5 | -------------------------------------------------------------------------------- /data/wordlists/rpc_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/wordlists/rpc_names.txt -------------------------------------------------------------------------------- /data/wordlists/rservices_from_users.txt: -------------------------------------------------------------------------------- 1 | root 2 | daemon 3 | bin 4 | nobody 5 | + 6 | guest 7 | mail 8 | -------------------------------------------------------------------------------- /data/wordlists/sap_common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/wordlists/sap_common.txt -------------------------------------------------------------------------------- /data/wordlists/sid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/wordlists/sid.txt -------------------------------------------------------------------------------- /data/wordlists/tftp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/wordlists/tftp.txt -------------------------------------------------------------------------------- /data/wordlists/tomcat_mgr_default_pass.txt: -------------------------------------------------------------------------------- 1 | admin 2 | manager 3 | role1 4 | root 5 | tomcat 6 | s3cret 7 | vagrant 8 | -------------------------------------------------------------------------------- /data/wordlists/tomcat_mgr_default_users.txt: -------------------------------------------------------------------------------- 1 | admin 2 | manager 3 | role1 4 | root 5 | tomcat 6 | both 7 | -------------------------------------------------------------------------------- /data/wordlists/unix_users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/wordlists/unix_users.txt -------------------------------------------------------------------------------- /data/wordlists/vnc_passwords.txt: -------------------------------------------------------------------------------- 1 | password 2 | -------------------------------------------------------------------------------- /data/ysoserial_payloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/data/ysoserial_payloads.json -------------------------------------------------------------------------------- /db/migrate/.git-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/modules_metadata_base.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/db/schema.rb -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/bin/msfconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/docker/bin/msfconsole -------------------------------------------------------------------------------- /docker/bin/msfvenom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/docker/bin/msfvenom -------------------------------------------------------------------------------- /docker/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/docker/database.yml -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /docker/msfconsole.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/docker/msfconsole.rc -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/modules/auxiliary/admin/http/zabbix_ldap_password_extractor.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/serialport/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/external/serialport/CHANGELOG -------------------------------------------------------------------------------- /external/serialport/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/external/serialport/MANIFEST -------------------------------------------------------------------------------- /external/source/SqlClrPayload/AssemblyAttributes-v2.0.cs: -------------------------------------------------------------------------------- 1 | // Deliberately blank 2 | -------------------------------------------------------------------------------- /external/source/SqlClrPayload/AssemblyAttributes-v3.5.cs: -------------------------------------------------------------------------------- 1 | // Deliberately blank 2 | -------------------------------------------------------------------------------- /external/source/byakugan/include/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/source/byakugan/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/source/exploits/bypassuac/source.rb/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/source/exploits/cve-2017-8464/template.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | DllMain@12 3 | 4 | -------------------------------------------------------------------------------- /external/source/exploits/splunk/upload_app_exec/metadata/default.meta: -------------------------------------------------------------------------------- 1 | [commands] 2 | export = system 3 | -------------------------------------------------------------------------------- /external/source/ipwn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/external/source/ipwn/Makefile -------------------------------------------------------------------------------- /external/source/ipwn/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/external/source/ipwn/README -------------------------------------------------------------------------------- /external/source/ipwn/auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/external/source/ipwn/auto.h -------------------------------------------------------------------------------- /external/source/ipwn/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/external/source/ipwn/cmd.h -------------------------------------------------------------------------------- /external/source/ipwn/cmd_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/external/source/ipwn/cmd_fd.c -------------------------------------------------------------------------------- /external/source/ipwn/cmd_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/external/source/ipwn/cmd_fs.c -------------------------------------------------------------------------------- /external/source/ipwn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/external/source/ipwn/main.c -------------------------------------------------------------------------------- /external/source/ipwn/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/external/source/ipwn/misc.c -------------------------------------------------------------------------------- /external/source/metsvc/VERSION: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /external/source/msfJavaToolkit/testoutdir/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/source/osx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/external/source/osx/README -------------------------------------------------------------------------------- /external/source/osx/x86/src/stage_bundleinject.s: -------------------------------------------------------------------------------- 1 | BITS 32 2 | 3 | %include "_inject_bundle.s" 4 | -------------------------------------------------------------------------------- /external/source/pxesploit/autoinf/Release/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/source/pxesploit/customPayload/Release/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/source/pxesploit/customPayload/autoinf/Release/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/source/shellcode/windows/x64/bin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/source/shellcode/windows/x86/bin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/zsh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/external/zsh/README.md -------------------------------------------------------------------------------- /external/zsh/_msfconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/external/zsh/_msfconsole -------------------------------------------------------------------------------- /external/zsh/_msfvenom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/external/zsh/_msfvenom -------------------------------------------------------------------------------- /lib/anemone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone.rb -------------------------------------------------------------------------------- /lib/anemone/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/cli.rb -------------------------------------------------------------------------------- /lib/anemone/cli/count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/cli/count.rb -------------------------------------------------------------------------------- /lib/anemone/cli/cron.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/cli/cron.rb -------------------------------------------------------------------------------- /lib/anemone/cli/pagedepth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/cli/pagedepth.rb -------------------------------------------------------------------------------- /lib/anemone/cli/serialize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/cli/serialize.rb -------------------------------------------------------------------------------- /lib/anemone/cli/url_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/cli/url_list.rb -------------------------------------------------------------------------------- /lib/anemone/cookie_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/cookie_store.rb -------------------------------------------------------------------------------- /lib/anemone/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/core.rb -------------------------------------------------------------------------------- /lib/anemone/docs/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/docs/CONTRIBUTORS -------------------------------------------------------------------------------- /lib/anemone/docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/docs/LICENSE.txt -------------------------------------------------------------------------------- /lib/anemone/docs/MODIFIED.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/docs/MODIFIED.txt -------------------------------------------------------------------------------- /lib/anemone/docs/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/docs/README.rdoc -------------------------------------------------------------------------------- /lib/anemone/docs/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/docs/Rakefile -------------------------------------------------------------------------------- /lib/anemone/docs/VERSION: -------------------------------------------------------------------------------- 1 | 0.5.0 2 | -------------------------------------------------------------------------------- /lib/anemone/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/exceptions.rb -------------------------------------------------------------------------------- /lib/anemone/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/http.rb -------------------------------------------------------------------------------- /lib/anemone/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/page.rb -------------------------------------------------------------------------------- /lib/anemone/page_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/page_store.rb -------------------------------------------------------------------------------- /lib/anemone/rex_http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/rex_http.rb -------------------------------------------------------------------------------- /lib/anemone/storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/storage.rb -------------------------------------------------------------------------------- /lib/anemone/storage/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/storage/base.rb -------------------------------------------------------------------------------- /lib/anemone/storage/pstore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/storage/pstore.rb -------------------------------------------------------------------------------- /lib/anemone/storage/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/storage/redis.rb -------------------------------------------------------------------------------- /lib/anemone/tentacle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/anemone/tentacle.rb -------------------------------------------------------------------------------- /lib/enumerable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/enumerable.rb -------------------------------------------------------------------------------- /lib/metasploit/framework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/metasploit/framework.rb -------------------------------------------------------------------------------- /lib/msf/LICENSE: -------------------------------------------------------------------------------- 1 | This code is provided under the Metasploit Framework License. 2 | -------------------------------------------------------------------------------- /lib/msf/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/base.rb -------------------------------------------------------------------------------- /lib/msf/base/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/base/config.rb -------------------------------------------------------------------------------- /lib/msf/base/logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/base/logging.rb -------------------------------------------------------------------------------- /lib/msf/base/sessions/tty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/base/sessions/tty.rb -------------------------------------------------------------------------------- /lib/msf/base/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/base/simple.rb -------------------------------------------------------------------------------- /lib/msf/base/simple/buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/base/simple/buffer.rb -------------------------------------------------------------------------------- /lib/msf/base/simple/module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/base/simple/module.rb -------------------------------------------------------------------------------- /lib/msf/base/simple/nop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/base/simple/nop.rb -------------------------------------------------------------------------------- /lib/msf/base/simple/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/base/simple/post.rb -------------------------------------------------------------------------------- /lib/msf/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core.rb -------------------------------------------------------------------------------- /lib/msf/core/analyze.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/analyze.rb -------------------------------------------------------------------------------- /lib/msf/core/author.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/author.rb -------------------------------------------------------------------------------- /lib/msf/core/auxiliary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/auxiliary.rb -------------------------------------------------------------------------------- /lib/msf/core/auxiliary/dos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/auxiliary/dos.rb -------------------------------------------------------------------------------- /lib/msf/core/auxiliary/jtr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/auxiliary/jtr.rb -------------------------------------------------------------------------------- /lib/msf/core/auxiliary/mms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/auxiliary/mms.rb -------------------------------------------------------------------------------- /lib/msf/core/auxiliary/ntp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/auxiliary/ntp.rb -------------------------------------------------------------------------------- /lib/msf/core/auxiliary/pii.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/auxiliary/pii.rb -------------------------------------------------------------------------------- /lib/msf/core/auxiliary/sms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/auxiliary/sms.rb -------------------------------------------------------------------------------- /lib/msf/core/auxiliary/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/auxiliary/web.rb -------------------------------------------------------------------------------- /lib/msf/core/cert_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/cert_provider.rb -------------------------------------------------------------------------------- /lib/msf/core/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/constants.rb -------------------------------------------------------------------------------- /lib/msf/core/data_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/data_store.rb -------------------------------------------------------------------------------- /lib/msf/core/db_export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/db_export.rb -------------------------------------------------------------------------------- /lib/msf/core/db_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/db_manager.rb -------------------------------------------------------------------------------- /lib/msf/core/encoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/encoder.rb -------------------------------------------------------------------------------- /lib/msf/core/encoder/xor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/encoder/xor.rb -------------------------------------------------------------------------------- /lib/msf/core/encoding/xor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/encoding/xor.rb -------------------------------------------------------------------------------- /lib/msf/core/evasion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/evasion.rb -------------------------------------------------------------------------------- /lib/msf/core/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exceptions.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/afp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/afp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/brute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/brute.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/db2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/db2.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/dhcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/dhcp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/dns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/dns.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/exe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/exe.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/ftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/ftp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/gdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/gdb.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/git.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/imap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/imap.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/ip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/ip.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/ipv6.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/ipv6.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/java.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/java.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/local.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/local.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/mssql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/mssql.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/mysql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/mysql.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/ndmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/ndmp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/ntlm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/ntlm.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/pdf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/pdf.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/pop2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/pop2.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/riff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/riff.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/ropdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/ropdb.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/seh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/seh.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/sip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/sip.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/smtp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/smtp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/snmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/snmp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/ssh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/ssh.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/tcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/tcp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/tftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/tftp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/tincd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/tincd.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/tns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/tns.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/udp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/udp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/web.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/winrm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/exploit/winrm.rb -------------------------------------------------------------------------------- /lib/msf/core/framework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/framework.rb -------------------------------------------------------------------------------- /lib/msf/core/handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/handler.rb -------------------------------------------------------------------------------- /lib/msf/core/handler/none.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/handler/none.rb -------------------------------------------------------------------------------- /lib/msf/core/host_state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/host_state.rb -------------------------------------------------------------------------------- /lib/msf/core/module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/module.rb -------------------------------------------------------------------------------- /lib/msf/core/module/arch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/module/arch.rb -------------------------------------------------------------------------------- /lib/msf/core/module/auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/module/auth.rb -------------------------------------------------------------------------------- /lib/msf/core/module/author.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/module/author.rb -------------------------------------------------------------------------------- /lib/msf/core/module/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/module/search.rb -------------------------------------------------------------------------------- /lib/msf/core/module/target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/module/target.rb -------------------------------------------------------------------------------- /lib/msf/core/module/type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/module/type.rb -------------------------------------------------------------------------------- /lib/msf/core/module/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/module/ui.rb -------------------------------------------------------------------------------- /lib/msf/core/module/uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/module/uuid.rb -------------------------------------------------------------------------------- /lib/msf/core/module_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/module_set.rb -------------------------------------------------------------------------------- /lib/msf/core/modules.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/modules.rb -------------------------------------------------------------------------------- /lib/msf/core/modules/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/modules/error.rb -------------------------------------------------------------------------------- /lib/msf/core/modules/external/python/metasploit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/msf/core/nop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/nop.rb -------------------------------------------------------------------------------- /lib/msf/core/opt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/opt.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/opt_address.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/opt_base.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_bool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/opt_bool.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/opt_enum.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_float.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/opt_float.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_int.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/opt_int.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/opt_path.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_port.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/opt_port.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_raw.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/opt_raw.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_regexp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/opt_regexp.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/opt_string.rb -------------------------------------------------------------------------------- /lib/msf/core/payload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/payload.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/aix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/payload/aix.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/apk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/payload/apk.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/bsd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/payload/bsd.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/java.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/payload/java.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/jsp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/payload/jsp.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/linux.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/payload/linux.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/macho.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/payload/macho.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/multi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/payload/multi.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/osx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/payload/osx.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/php.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/payload/php.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/r.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/payload/r.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/payload/ruby.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/payload/uuid.rb -------------------------------------------------------------------------------- /lib/msf/core/payload_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/payload_set.rb -------------------------------------------------------------------------------- /lib/msf/core/platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/platform.rb -------------------------------------------------------------------------------- /lib/msf/core/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/plugin.rb -------------------------------------------------------------------------------- /lib/msf/core/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/post.rb -------------------------------------------------------------------------------- /lib/msf/core/post/android.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/post/android.rb -------------------------------------------------------------------------------- /lib/msf/core/post/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/post/common.rb -------------------------------------------------------------------------------- /lib/msf/core/post/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/post/file.rb -------------------------------------------------------------------------------- /lib/msf/core/post/hardware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/post/hardware.rb -------------------------------------------------------------------------------- /lib/msf/core/post/linux.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/post/linux.rb -------------------------------------------------------------------------------- /lib/msf/core/post/osx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/post/osx.rb -------------------------------------------------------------------------------- /lib/msf/core/post/osx/priv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/post/osx/priv.rb -------------------------------------------------------------------------------- /lib/msf/core/post/solaris.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/post/solaris.rb -------------------------------------------------------------------------------- /lib/msf/core/post/unix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/post/unix.rb -------------------------------------------------------------------------------- /lib/msf/core/post/webrtc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/post/webrtc.rb -------------------------------------------------------------------------------- /lib/msf/core/post/windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/post/windows.rb -------------------------------------------------------------------------------- /lib/msf/core/post_mixin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/post_mixin.rb -------------------------------------------------------------------------------- /lib/msf/core/reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/reference.rb -------------------------------------------------------------------------------- /lib/msf/core/rpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/rpc.rb -------------------------------------------------------------------------------- /lib/msf/core/service_state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/service_state.rb -------------------------------------------------------------------------------- /lib/msf/core/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/session.rb -------------------------------------------------------------------------------- /lib/msf/core/session/basic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/session/basic.rb -------------------------------------------------------------------------------- /lib/msf/core/session/comm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/session/comm.rb -------------------------------------------------------------------------------- /lib/msf/core/target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/target.rb -------------------------------------------------------------------------------- /lib/msf/core/web_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/core/web_services.rb -------------------------------------------------------------------------------- /lib/msf/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/events.rb -------------------------------------------------------------------------------- /lib/msf/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/ui.rb -------------------------------------------------------------------------------- /lib/msf/ui/banner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/ui/banner.rb -------------------------------------------------------------------------------- /lib/msf/ui/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/ui/common.rb -------------------------------------------------------------------------------- /lib/msf/ui/console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/ui/console.rb -------------------------------------------------------------------------------- /lib/msf/ui/console/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/ui/console/driver.rb -------------------------------------------------------------------------------- /lib/msf/ui/console/table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/ui/console/table.rb -------------------------------------------------------------------------------- /lib/msf/ui/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/ui/driver.rb -------------------------------------------------------------------------------- /lib/msf/ui/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/ui/web.rb -------------------------------------------------------------------------------- /lib/msf/ui/web/comm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/ui/web/comm.rb -------------------------------------------------------------------------------- /lib/msf/ui/web/console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/ui/web/console.rb -------------------------------------------------------------------------------- /lib/msf/ui/web/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/ui/web/driver.rb -------------------------------------------------------------------------------- /lib/msf/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/util.rb -------------------------------------------------------------------------------- /lib/msf/util/db_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/util/db_manager.rb -------------------------------------------------------------------------------- /lib/msf/util/exe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/util/exe.rb -------------------------------------------------------------------------------- /lib/msf/util/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/util/helper.rb -------------------------------------------------------------------------------- /lib/msf/util/host.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/util/host.rb -------------------------------------------------------------------------------- /lib/msf/windows_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msf/windows_error.rb -------------------------------------------------------------------------------- /lib/msfenv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/msfenv.rb -------------------------------------------------------------------------------- /lib/net/dns.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | require "net/dns/resolver" 3 | -------------------------------------------------------------------------------- /lib/net/dns/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/README -------------------------------------------------------------------------------- /lib/net/dns/dns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/dns.rb -------------------------------------------------------------------------------- /lib/net/dns/header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/header.rb -------------------------------------------------------------------------------- /lib/net/dns/names/names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/names/names.rb -------------------------------------------------------------------------------- /lib/net/dns/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/packet.rb -------------------------------------------------------------------------------- /lib/net/dns/question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/question.rb -------------------------------------------------------------------------------- /lib/net/dns/resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/resolver.rb -------------------------------------------------------------------------------- /lib/net/dns/resolver/socks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/resolver/socks.rb -------------------------------------------------------------------------------- /lib/net/dns/rr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/rr.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/a.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/rr/a.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/aaaa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/rr/aaaa.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/classes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/rr/classes.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/cname.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/rr/cname.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/hinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/rr/hinfo.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/mr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/rr/mr.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/mx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/rr/mx.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/ns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/rr/ns.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/null.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/rr/null.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/ptr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/rr/ptr.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/soa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/rr/soa.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/srv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/rr/srv.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/txt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/rr/txt.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/dns/rr/types.rb -------------------------------------------------------------------------------- /lib/net/ssh/command_stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/net/ssh/command_stream.rb -------------------------------------------------------------------------------- /lib/postgres/binary_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/postgres/binary_reader.rb -------------------------------------------------------------------------------- /lib/postgres/binary_writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/postgres/binary_writer.rb -------------------------------------------------------------------------------- /lib/postgres/buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/postgres/buffer.rb -------------------------------------------------------------------------------- /lib/postgres/byteorder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/postgres/byteorder.rb -------------------------------------------------------------------------------- /lib/postgres_msf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/postgres_msf.rb -------------------------------------------------------------------------------- /lib/rabal/tree.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rabal/tree.rb -------------------------------------------------------------------------------- /lib/rbmysql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rbmysql.rb -------------------------------------------------------------------------------- /lib/rbmysql/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rbmysql/README -------------------------------------------------------------------------------- /lib/rbmysql/charset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rbmysql/charset.rb -------------------------------------------------------------------------------- /lib/rbmysql/compat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rbmysql/compat.rb -------------------------------------------------------------------------------- /lib/rbmysql/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rbmysql/constants.rb -------------------------------------------------------------------------------- /lib/rbmysql/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rbmysql/error.rb -------------------------------------------------------------------------------- /lib/rbmysql/protocol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rbmysql/protocol.rb -------------------------------------------------------------------------------- /lib/rex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex.rb -------------------------------------------------------------------------------- /lib/rex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/LICENSE -------------------------------------------------------------------------------- /lib/rex/crypto/aes256.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/crypto/aes256.rb -------------------------------------------------------------------------------- /lib/rex/crypto/rc4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/crypto/rc4.rb -------------------------------------------------------------------------------- /lib/rex/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/exceptions.rb -------------------------------------------------------------------------------- /lib/rex/google/geolocation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/google/geolocation.rb -------------------------------------------------------------------------------- /lib/rex/io/gram_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/io/gram_server.rb -------------------------------------------------------------------------------- /lib/rex/job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/job.rb -------------------------------------------------------------------------------- /lib/rex/job_container.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/job_container.rb -------------------------------------------------------------------------------- /lib/rex/json_hash_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/json_hash_file.rb -------------------------------------------------------------------------------- /lib/rex/logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/logging.rb -------------------------------------------------------------------------------- /lib/rex/logging/log_sink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/logging/log_sink.rb -------------------------------------------------------------------------------- /lib/rex/mac_oui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/mac_oui.rb -------------------------------------------------------------------------------- /lib/rex/parser/arguments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/parser/arguments.rb -------------------------------------------------------------------------------- /lib/rex/parser/ci_nokogiri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/parser/ci_nokogiri.rb -------------------------------------------------------------------------------- /lib/rex/parser/fs/ntfs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/parser/fs/ntfs.rb -------------------------------------------------------------------------------- /lib/rex/parser/ini.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/parser/ini.rb -------------------------------------------------------------------------------- /lib/rex/parser/ip360_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/parser/ip360_xml.rb -------------------------------------------------------------------------------- /lib/rex/parser/nessus_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/parser/nessus_xml.rb -------------------------------------------------------------------------------- /lib/rex/parser/nexpose_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/parser/nexpose_xml.rb -------------------------------------------------------------------------------- /lib/rex/parser/nmap_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/parser/nmap_xml.rb -------------------------------------------------------------------------------- /lib/rex/parser/retina_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/parser/retina_xml.rb -------------------------------------------------------------------------------- /lib/rex/parser/unattend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/parser/unattend.rb -------------------------------------------------------------------------------- /lib/rex/parser/winscp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/parser/winscp.rb -------------------------------------------------------------------------------- /lib/rex/payloads.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | require 'rex/payloads/win32' 3 | -------------------------------------------------------------------------------- /lib/rex/payloads/win32.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/payloads/win32.rb -------------------------------------------------------------------------------- /lib/rex/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/post.rb -------------------------------------------------------------------------------- /lib/rex/post/dir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/post/dir.rb -------------------------------------------------------------------------------- /lib/rex/post/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/post/file.rb -------------------------------------------------------------------------------- /lib/rex/post/file_stat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/post/file_stat.rb -------------------------------------------------------------------------------- /lib/rex/post/hwbridge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/post/hwbridge.rb -------------------------------------------------------------------------------- /lib/rex/post/io.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/post/io.rb -------------------------------------------------------------------------------- /lib/rex/post/meterpreter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/post/meterpreter.rb -------------------------------------------------------------------------------- /lib/rex/post/meterpreter/channels/streams/.cvskeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/rex/post/meterpreter/dependencies.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | 3 | require 'rex/post/permission' 4 | -------------------------------------------------------------------------------- /lib/rex/post/permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/post/permission.rb -------------------------------------------------------------------------------- /lib/rex/post/process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/post/process.rb -------------------------------------------------------------------------------- /lib/rex/post/thread.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/post/thread.rb -------------------------------------------------------------------------------- /lib/rex/post/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/post/ui.rb -------------------------------------------------------------------------------- /lib/rex/proto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto.rb -------------------------------------------------------------------------------- /lib/rex/proto/acpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/acpp.rb -------------------------------------------------------------------------------- /lib/rex/proto/acpp/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/acpp/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/acpp/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/acpp/message.rb -------------------------------------------------------------------------------- /lib/rex/proto/adb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/adb.rb -------------------------------------------------------------------------------- /lib/rex/proto/adb/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/adb/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/adb/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/adb/message.rb -------------------------------------------------------------------------------- /lib/rex/proto/addp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/addp.rb -------------------------------------------------------------------------------- /lib/rex/proto/dcerpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/dcerpc.rb -------------------------------------------------------------------------------- /lib/rex/proto/dcerpc/ndr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/dcerpc/ndr.rb -------------------------------------------------------------------------------- /lib/rex/proto/dcerpc/svcctl.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | require 'rex/proto/dcerpc/svcctl/packet' 3 | -------------------------------------------------------------------------------- /lib/rex/proto/dcerpc/uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/dcerpc/uuid.rb -------------------------------------------------------------------------------- /lib/rex/proto/dcerpc/wdscp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/dcerpc/wdscp.rb -------------------------------------------------------------------------------- /lib/rex/proto/dhcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/dhcp.rb -------------------------------------------------------------------------------- /lib/rex/proto/dhcp/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/dhcp/server.rb -------------------------------------------------------------------------------- /lib/rex/proto/dns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/dns.rb -------------------------------------------------------------------------------- /lib/rex/proto/dns/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/dns/packet.rb -------------------------------------------------------------------------------- /lib/rex/proto/dns/resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/dns/resolver.rb -------------------------------------------------------------------------------- /lib/rex/proto/dns/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/dns/server.rb -------------------------------------------------------------------------------- /lib/rex/proto/drda.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/drda.rb -------------------------------------------------------------------------------- /lib/rex/proto/drda/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/drda/packet.rb -------------------------------------------------------------------------------- /lib/rex/proto/drda/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/drda/utils.rb -------------------------------------------------------------------------------- /lib/rex/proto/ftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/ftp.rb -------------------------------------------------------------------------------- /lib/rex/proto/ftp/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/ftp/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/http.rb -------------------------------------------------------------------------------- /lib/rex/proto/http/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/http/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/http/handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/http/handler.rb -------------------------------------------------------------------------------- /lib/rex/proto/http/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/http/packet.rb -------------------------------------------------------------------------------- /lib/rex/proto/http/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/http/request.rb -------------------------------------------------------------------------------- /lib/rex/proto/http/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/http/server.rb -------------------------------------------------------------------------------- /lib/rex/proto/iax2.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | require 'rex/proto/iax2/client' 3 | -------------------------------------------------------------------------------- /lib/rex/proto/iax2/call.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/iax2/call.rb -------------------------------------------------------------------------------- /lib/rex/proto/iax2/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/iax2/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/iax2/codecs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/iax2/codecs.rb -------------------------------------------------------------------------------- /lib/rex/proto/ipmi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/ipmi.rb -------------------------------------------------------------------------------- /lib/rex/proto/ipmi/rakp2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/ipmi/rakp2.rb -------------------------------------------------------------------------------- /lib/rex/proto/ipmi/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/ipmi/utils.rb -------------------------------------------------------------------------------- /lib/rex/proto/kademlia.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/kademlia.rb -------------------------------------------------------------------------------- /lib/rex/proto/kerberos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/kerberos.rb -------------------------------------------------------------------------------- /lib/rex/proto/kerberos/pac.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/kerberos/pac.rb -------------------------------------------------------------------------------- /lib/rex/proto/mms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/mms.rb -------------------------------------------------------------------------------- /lib/rex/proto/mms/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/mms/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/mms/model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/mms/model.rb -------------------------------------------------------------------------------- /lib/rex/proto/mqtt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/mqtt.rb -------------------------------------------------------------------------------- /lib/rex/proto/mqtt/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/mqtt/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/natpmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/natpmp.rb -------------------------------------------------------------------------------- /lib/rex/proto/ntlm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/ntlm.rb -------------------------------------------------------------------------------- /lib/rex/proto/ntlm/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/ntlm/base.rb -------------------------------------------------------------------------------- /lib/rex/proto/ntlm/crypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/ntlm/crypt.rb -------------------------------------------------------------------------------- /lib/rex/proto/ntlm/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/ntlm/message.rb -------------------------------------------------------------------------------- /lib/rex/proto/ntlm/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/ntlm/utils.rb -------------------------------------------------------------------------------- /lib/rex/proto/ntp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/ntp.rb -------------------------------------------------------------------------------- /lib/rex/proto/ntp/modes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/ntp/modes.rb -------------------------------------------------------------------------------- /lib/rex/proto/pjl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/pjl.rb -------------------------------------------------------------------------------- /lib/rex/proto/pjl/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/pjl/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/proxy/socks5.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/proxy/socks5.rb -------------------------------------------------------------------------------- /lib/rex/proto/quake.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | 3 | require 'rex/proto/quake/message' 4 | -------------------------------------------------------------------------------- /lib/rex/proto/rfb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/rfb.rb -------------------------------------------------------------------------------- /lib/rex/proto/rfb/cipher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/rfb/cipher.rb -------------------------------------------------------------------------------- /lib/rex/proto/rfb/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/rfb/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/rmi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/rmi.rb -------------------------------------------------------------------------------- /lib/rex/proto/rmi/model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/rmi/model.rb -------------------------------------------------------------------------------- /lib/rex/proto/sip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/sip.rb -------------------------------------------------------------------------------- /lib/rex/proto/sip/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/sip/response.rb -------------------------------------------------------------------------------- /lib/rex/proto/smb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/smb.rb -------------------------------------------------------------------------------- /lib/rex/proto/smb/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/smb/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/smb/crypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/smb/crypt.rb -------------------------------------------------------------------------------- /lib/rex/proto/smb/evasions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/smb/evasions.rb -------------------------------------------------------------------------------- /lib/rex/proto/smb/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/smb/utils.rb -------------------------------------------------------------------------------- /lib/rex/proto/sms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/sms.rb -------------------------------------------------------------------------------- /lib/rex/proto/sms/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/sms/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/sms/model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/sms/model.rb -------------------------------------------------------------------------------- /lib/rex/proto/steam.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | 3 | require 'rex/proto/steam/message' 4 | -------------------------------------------------------------------------------- /lib/rex/proto/sunrpc.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | require 'rex/proto/sunrpc/client' 3 | -------------------------------------------------------------------------------- /lib/rex/proto/tftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/tftp.rb -------------------------------------------------------------------------------- /lib/rex/proto/tftp/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/tftp/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/tftp/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/proto/tftp/server.rb -------------------------------------------------------------------------------- /lib/rex/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/script.rb -------------------------------------------------------------------------------- /lib/rex/script/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/script/base.rb -------------------------------------------------------------------------------- /lib/rex/script/meterpreter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/script/meterpreter.rb -------------------------------------------------------------------------------- /lib/rex/script/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/script/shell.rb -------------------------------------------------------------------------------- /lib/rex/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/service.rb -------------------------------------------------------------------------------- /lib/rex/service_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/service_manager.rb -------------------------------------------------------------------------------- /lib/rex/tar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/tar.rb -------------------------------------------------------------------------------- /lib/rex/thread_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/thread_factory.rb -------------------------------------------------------------------------------- /lib/rex/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/time.rb -------------------------------------------------------------------------------- /lib/rex/transformer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/transformer.rb -------------------------------------------------------------------------------- /lib/rex/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/ui.rb -------------------------------------------------------------------------------- /lib/rex/ui/interactive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/ui/interactive.rb -------------------------------------------------------------------------------- /lib/rex/ui/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/ui/output.rb -------------------------------------------------------------------------------- /lib/rex/ui/output/none.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/ui/output/none.rb -------------------------------------------------------------------------------- /lib/rex/ui/subscriber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/ui/subscriber.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/ui/text/input.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/irb_shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/ui/text/irb_shell.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/ui/text/output.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/output/tee.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/ui/text/output/tee.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/ui/text/resource.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/ui/text/shell.rb -------------------------------------------------------------------------------- /lib/rex/user_agent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/rex/user_agent.rb -------------------------------------------------------------------------------- /lib/robots.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/robots.rb -------------------------------------------------------------------------------- /lib/snmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/snmp.rb -------------------------------------------------------------------------------- /lib/snmp/agent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/snmp/agent.rb -------------------------------------------------------------------------------- /lib/snmp/ber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/snmp/ber.rb -------------------------------------------------------------------------------- /lib/snmp/manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/snmp/manager.rb -------------------------------------------------------------------------------- /lib/snmp/mib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/snmp/mib.rb -------------------------------------------------------------------------------- /lib/snmp/pdu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/snmp/pdu.rb -------------------------------------------------------------------------------- /lib/snmp/varbind.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/snmp/varbind.rb -------------------------------------------------------------------------------- /lib/sqlmap/sqlmap_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/sqlmap/sqlmap_manager.rb -------------------------------------------------------------------------------- /lib/sqlmap/sqlmap_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/sqlmap/sqlmap_session.rb -------------------------------------------------------------------------------- /lib/tasks/databases.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/tasks/databases.rake -------------------------------------------------------------------------------- /lib/telephony.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/telephony.rb -------------------------------------------------------------------------------- /lib/telephony/modem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/lib/telephony/modem.rb -------------------------------------------------------------------------------- /metasploit-framework.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/metasploit-framework.gemspec -------------------------------------------------------------------------------- /modules/auxiliary/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/modules/auxiliary/example.rb -------------------------------------------------------------------------------- /modules/auxiliary/vsploit/exploit/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/encoders/cmd/brace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/modules/encoders/cmd/brace.rb -------------------------------------------------------------------------------- /modules/encoders/cmd/echo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/modules/encoders/cmd/echo.rb -------------------------------------------------------------------------------- /modules/encoders/cmd/ifs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/modules/encoders/cmd/ifs.rb -------------------------------------------------------------------------------- /modules/encoders/cmd/perl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/modules/encoders/cmd/perl.rb -------------------------------------------------------------------------------- /modules/encoders/x64/xor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/modules/encoders/x64/xor.rb -------------------------------------------------------------------------------- /modules/exploits/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/modules/exploits/example.rb -------------------------------------------------------------------------------- /modules/exploits/multi/vnc/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/nops/armle/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/modules/nops/armle/simple.rb -------------------------------------------------------------------------------- /modules/nops/mipsbe/better.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/modules/nops/mipsbe/better.rb -------------------------------------------------------------------------------- /modules/nops/php/generic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/modules/nops/php/generic.rb -------------------------------------------------------------------------------- /modules/nops/ppc/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/modules/nops/ppc/simple.rb -------------------------------------------------------------------------------- /modules/nops/sparc/random.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/modules/nops/sparc/random.rb -------------------------------------------------------------------------------- /modules/nops/tty/generic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/modules/nops/tty/generic.rb -------------------------------------------------------------------------------- /modules/nops/x64/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/modules/nops/x64/simple.rb -------------------------------------------------------------------------------- /modules/nops/x86/opty2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/modules/nops/x86/opty2.rb -------------------------------------------------------------------------------- /modules/post/aix/hashdump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/modules/post/aix/hashdump.rb -------------------------------------------------------------------------------- /modules/post/osx/admin/say.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/modules/post/osx/admin/say.rb -------------------------------------------------------------------------------- /msf-json-rpc.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/msf-json-rpc.ru -------------------------------------------------------------------------------- /msf-ws.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/msf-ws.ru -------------------------------------------------------------------------------- /msfconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/msfconsole -------------------------------------------------------------------------------- /msfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/msfd -------------------------------------------------------------------------------- /msfdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/msfdb -------------------------------------------------------------------------------- /msfrpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/msfrpc -------------------------------------------------------------------------------- /msfrpcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/msfrpcd -------------------------------------------------------------------------------- /msfupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/msfupdate -------------------------------------------------------------------------------- /msfvenom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/msfvenom -------------------------------------------------------------------------------- /plugins/aggregator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/aggregator.rb -------------------------------------------------------------------------------- /plugins/alias.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/alias.rb -------------------------------------------------------------------------------- /plugins/auto_add_route.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/auto_add_route.rb -------------------------------------------------------------------------------- /plugins/beholder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/beholder.rb -------------------------------------------------------------------------------- /plugins/db_credcollect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/db_credcollect.rb -------------------------------------------------------------------------------- /plugins/db_tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/db_tracker.rb -------------------------------------------------------------------------------- /plugins/event_tester.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/event_tester.rb -------------------------------------------------------------------------------- /plugins/ffautoregen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/ffautoregen.rb -------------------------------------------------------------------------------- /plugins/ips_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/ips_filter.rb -------------------------------------------------------------------------------- /plugins/komand.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/komand.rb -------------------------------------------------------------------------------- /plugins/lab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/lab.rb -------------------------------------------------------------------------------- /plugins/libnotify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/libnotify.rb -------------------------------------------------------------------------------- /plugins/msfd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/msfd.rb -------------------------------------------------------------------------------- /plugins/msgrpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/msgrpc.rb -------------------------------------------------------------------------------- /plugins/nessus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/nessus.rb -------------------------------------------------------------------------------- /plugins/nexpose.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/nexpose.rb -------------------------------------------------------------------------------- /plugins/openvas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/openvas.rb -------------------------------------------------------------------------------- /plugins/pcap_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/pcap_log.rb -------------------------------------------------------------------------------- /plugins/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/request.rb -------------------------------------------------------------------------------- /plugins/rssfeed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/rssfeed.rb -------------------------------------------------------------------------------- /plugins/sample.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/sample.rb -------------------------------------------------------------------------------- /plugins/session_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/session_notifier.rb -------------------------------------------------------------------------------- /plugins/session_tagger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/session_tagger.rb -------------------------------------------------------------------------------- /plugins/socket_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/socket_logger.rb -------------------------------------------------------------------------------- /plugins/sounds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/sounds.rb -------------------------------------------------------------------------------- /plugins/sqlmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/sqlmap.rb -------------------------------------------------------------------------------- /plugins/thread.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/thread.rb -------------------------------------------------------------------------------- /plugins/token_adduser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/token_adduser.rb -------------------------------------------------------------------------------- /plugins/token_hunter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/token_hunter.rb -------------------------------------------------------------------------------- /plugins/wiki.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/wiki.rb -------------------------------------------------------------------------------- /plugins/wmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/plugins/wmap.rb -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/script/rails -------------------------------------------------------------------------------- /scripts/meterpreter/getgui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/scripts/meterpreter/getgui.rb -------------------------------------------------------------------------------- /scripts/meterpreter/killav.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/scripts/meterpreter/killav.rb -------------------------------------------------------------------------------- /scripts/meterpreter/metsvc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/scripts/meterpreter/metsvc.rb -------------------------------------------------------------------------------- /scripts/meterpreter/vnc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/scripts/meterpreter/vnc.rb -------------------------------------------------------------------------------- /scripts/meterpreter/webcam.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/scripts/meterpreter/webcam.rb -------------------------------------------------------------------------------- /scripts/meterpreter/winbf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/scripts/meterpreter/winbf.rb -------------------------------------------------------------------------------- /scripts/meterpreter/wmic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/scripts/meterpreter/wmic.rb -------------------------------------------------------------------------------- /scripts/ps/msflag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/scripts/ps/msflag.ps1 -------------------------------------------------------------------------------- /scripts/resource/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/resource/bap_all.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/scripts/resource/bap_all.rc -------------------------------------------------------------------------------- /scripts/resource/portscan.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/scripts/resource/portscan.rc -------------------------------------------------------------------------------- /scripts/shell/migrate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/scripts/shell/migrate.rb -------------------------------------------------------------------------------- /spec/file_fixtures/fake_common_roots.txt: -------------------------------------------------------------------------------- 1 | password 2 | root 3 | toor -------------------------------------------------------------------------------- /spec/file_fixtures/fake_default_wordlist.txt: -------------------------------------------------------------------------------- 1 | changeme 2 | summer123 3 | admin -------------------------------------------------------------------------------- /spec/file_fixtures/string_list.txt: -------------------------------------------------------------------------------- 1 | foo 2 | bar 3 | baz -------------------------------------------------------------------------------- /spec/lib/metasploit/framework/afp/client_spec.rb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec/lib/msf/core/opt_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/spec/lib/msf/core/opt_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/mac_oui_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/spec/lib/rex/mac_oui_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/time_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/spec/lib/rex/time_spec.rb -------------------------------------------------------------------------------- /spec/modules/payloads_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/spec/modules/payloads_spec.rb -------------------------------------------------------------------------------- /spec/modules_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/spec/modules_spec.rb -------------------------------------------------------------------------------- /spec/msfupdate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/spec/msfupdate_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/tools/egghunter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/spec/tools/egghunter_spec.rb -------------------------------------------------------------------------------- /spec/tools/jsobfu_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/spec/tools/jsobfu_spec.rb -------------------------------------------------------------------------------- /spec/tools/md5_lookup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/spec/tools/md5_lookup_spec.rb -------------------------------------------------------------------------------- /spec/tools/virustotal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/spec/tools/virustotal_spec.rb -------------------------------------------------------------------------------- /test/functional/framework/msftest/resource/exit.rc: -------------------------------------------------------------------------------- 1 | exit 2 | exit 3 | -------------------------------------------------------------------------------- /test/functional/framework/msftest/resource/help.rc: -------------------------------------------------------------------------------- 1 | help 2 | exit 3 | -------------------------------------------------------------------------------- /test/hooks/array_to_s.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/test/hooks/array_to_s.rb -------------------------------------------------------------------------------- /test/hooks/string_idx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/test/hooks/string_idx.rb -------------------------------------------------------------------------------- /test/lib/module_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/test/lib/module_test.rb -------------------------------------------------------------------------------- /test/lib/msf_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/test/lib/msf_matchers.rb -------------------------------------------------------------------------------- /test/lib/regexr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/test/lib/regexr.rb -------------------------------------------------------------------------------- /test/scripts/test-check.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/test/scripts/test-check.rc -------------------------------------------------------------------------------- /test/scripts/test-sessions.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/test/scripts/test-sessions.rc -------------------------------------------------------------------------------- /test/tests/rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/test/tests/rakefile -------------------------------------------------------------------------------- /test/tests/test_encoders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/test/tests/test_encoders.rb -------------------------------------------------------------------------------- /test/tests/testbase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/test/tests/testbase.rb -------------------------------------------------------------------------------- /tools/context/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/context/Makefile -------------------------------------------------------------------------------- /tools/context/cpuid-key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/context/cpuid-key.c -------------------------------------------------------------------------------- /tools/context/stat-key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/context/stat-key.c -------------------------------------------------------------------------------- /tools/context/time-key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/context/time-key.c -------------------------------------------------------------------------------- /tools/dev/add_pr_fetch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/dev/add_pr_fetch.rb -------------------------------------------------------------------------------- /tools/dev/import-dev-keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/dev/import-dev-keys.sh -------------------------------------------------------------------------------- /tools/dev/msfdb_ws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/dev/msfdb_ws -------------------------------------------------------------------------------- /tools/dev/msftidy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/dev/msftidy.rb -------------------------------------------------------------------------------- /tools/dev/pre-commit-hook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/dev/pre-commit-hook.rb -------------------------------------------------------------------------------- /tools/dev/sign-dev-keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/dev/sign-dev-keys.sh -------------------------------------------------------------------------------- /tools/exploit/egghunter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/exploit/egghunter.rb -------------------------------------------------------------------------------- /tools/exploit/exe2vba.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/exploit/exe2vba.rb -------------------------------------------------------------------------------- /tools/exploit/exe2vbs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/exploit/exe2vbs.rb -------------------------------------------------------------------------------- /tools/exploit/extract_msu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/exploit/extract_msu.bat -------------------------------------------------------------------------------- /tools/exploit/jsobfu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/exploit/jsobfu.rb -------------------------------------------------------------------------------- /tools/exploit/metasm_shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/exploit/metasm_shell.rb -------------------------------------------------------------------------------- /tools/exploit/msu_finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/exploit/msu_finder.rb -------------------------------------------------------------------------------- /tools/exploit/nasm_shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/exploit/nasm_shell.rb -------------------------------------------------------------------------------- /tools/exploit/pdf2xdp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/exploit/pdf2xdp.rb -------------------------------------------------------------------------------- /tools/exploit/psexec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/exploit/psexec.rb -------------------------------------------------------------------------------- /tools/exploit/reg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/exploit/reg.rb -------------------------------------------------------------------------------- /tools/exploit/virustotal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/exploit/virustotal.rb -------------------------------------------------------------------------------- /tools/hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/hardware/README.md -------------------------------------------------------------------------------- /tools/memdump/README.memdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/memdump/README.memdump -------------------------------------------------------------------------------- /tools/memdump/memdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/memdump/memdump.c -------------------------------------------------------------------------------- /tools/memdump/memdump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/memdump/memdump.exe -------------------------------------------------------------------------------- /tools/modules/cve_xref.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/modules/cve_xref.rb -------------------------------------------------------------------------------- /tools/modules/module_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/modules/module_count.rb -------------------------------------------------------------------------------- /tools/modules/module_ports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/modules/module_ports.rb -------------------------------------------------------------------------------- /tools/modules/module_rank.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/modules/module_rank.rb -------------------------------------------------------------------------------- /tools/modules/profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/modules/profile.sh -------------------------------------------------------------------------------- /tools/modules/solo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/modules/solo.rb -------------------------------------------------------------------------------- /tools/password/lm2ntcrack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/password/lm2ntcrack.rb -------------------------------------------------------------------------------- /tools/password/md5_lookup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/password/md5_lookup.rb -------------------------------------------------------------------------------- /tools/password/vxdigger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/password/vxdigger.rb -------------------------------------------------------------------------------- /tools/password/vxencrypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/password/vxencrypt.rb -------------------------------------------------------------------------------- /tools/password/vxmaster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/password/vxmaster.rb -------------------------------------------------------------------------------- /tools/recon/makeiplist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanMcInerney/metasploit-framework/HEAD/tools/recon/makeiplist.rb --------------------------------------------------------------------------------