├── .gitignore ├── .gitmodules ├── .mailmap ├── .rspec ├── .rubocop.yml ├── .ruby-gemset ├── .ruby-version ├── .simplecov ├── .travis.yml ├── .yardopts ├── CONTRIBUTING.md ├── COPYING ├── Gemfile ├── Gemfile.local.example ├── Gemfile.lock ├── HACKING ├── LICENSE ├── README.md ├── Rakefile ├── app ├── concerns │ └── 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 └── environment.rb ├── data ├── cpuinfo │ ├── build.sh │ ├── cpuinfo.c │ ├── cpuinfo.exe │ ├── cpuinfo.ia32.bin │ └── cpuinfo.ia64.bin ├── 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-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-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.elf │ ├── 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-1701 │ │ ├── cve-2015-1701.x64.dll │ │ └── cve-2015-1701.x86.dll │ ├── CVE-2015-3090 │ │ └── msf.swf │ ├── CVE-2015-3105 │ │ └── msf.swf │ ├── QTJavaExploit.class │ ├── batik_svg │ │ ├── Exploit$1.class │ │ ├── Exploit.class │ │ └── META-INF │ │ │ └── MANIFEST.MF │ ├── 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 │ ├── cmdstager │ │ ├── debug_asm │ │ ├── debug_write │ │ ├── vbs_b64 │ │ ├── vbs_b64_adodb │ │ ├── vbs_b64_noquot │ │ └── vbs_b64_sleep │ ├── 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-4452 │ │ └── AppletX.class │ ├── cve-2011-3544 │ │ └── Exploit.class │ ├── 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 │ ├── 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 │ ├── exec_payload.msi │ ├── google_proxystylesheet.xml │ ├── iceweasel_macosx.icns │ ├── iphone_libtiff.bin │ ├── java_signed_applet │ │ └── SiteLoader.class │ ├── jre7u17 │ │ ├── Exploit.class │ │ ├── SystemClass.class │ │ ├── Union1.class │ │ └── Union2.class │ ├── modicon_ladder.apx │ ├── mp4player.as │ ├── mp4player.fla │ ├── mp4player.swf │ ├── msfJavaToolkit.jar │ ├── mssql │ │ └── h2b │ ├── mysql │ │ ├── lib_mysqludf_sys_32.dll │ │ └── lib_mysqludf_sys_64.dll │ ├── ntapphelpcachecontrol │ │ └── exploit.dll │ ├── osx │ │ └── nfs_mount_priv_escalation.bin │ ├── php │ │ ├── README │ │ └── rfi-locations.dat │ ├── 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 │ ├── runcalc.hlp │ ├── s4u_persistence.xml │ ├── shockwave_rcsl.dir │ ├── splunk │ │ └── upload_app_exec.tgz │ ├── uxss │ │ ├── steal_form.js │ │ ├── steal_headers.js │ │ └── submit_form.js │ └── wifi │ │ ├── airpwn │ │ └── sitelist.yml │ │ └── dnspwn │ │ └── dnslist.yml ├── gui │ └── lib │ │ ├── appframework-1.0.3.jar │ │ ├── msgpack-0.5.1-devel.jar │ │ └── swing-worker-1.1.jar ├── ipwn │ └── ipwn ├── isight.bundle ├── john │ ├── README │ ├── README-jumbo │ ├── README.Rapid7.txt │ ├── confs │ │ └── john.conf │ ├── doc │ │ ├── CHANGES │ │ ├── CONFIG │ │ ├── CONTACT │ │ ├── CREDITS │ │ ├── EPi.patch.README │ │ ├── EXAMPLES │ │ ├── EXTERNAL │ │ ├── FAQ │ │ ├── HDAA_README │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── LICENSE.mpi │ │ ├── MARKOV │ │ ├── MD5_GENERIC │ │ ├── MD5_GENERIC_SCRIPTING │ │ ├── MODES │ │ ├── NETNTLM_README │ │ ├── OPTIONS │ │ ├── README │ │ ├── README.mpi │ │ ├── RULES │ │ ├── UTF8 │ │ ├── UTF8-DEVEL.txt │ │ ├── pdfcrack_README │ │ └── pdfcrack_TODO │ ├── run.linux.x64.mmx │ │ ├── all.chr │ │ ├── alnum.chr │ │ ├── alpha.chr │ │ ├── calc_stat │ │ ├── digits.chr │ │ ├── genincstats.rb │ │ ├── genmkvpwd │ │ ├── john │ │ ├── lanman.chr │ │ ├── ldif2pw.pl │ │ ├── mailer │ │ ├── mkvcalcproba │ │ ├── netntlm.pl │ │ ├── netscreen.py │ │ ├── pdf2john │ │ ├── rar2john │ │ ├── sap_prepare.pl │ │ ├── sha-dump.pl │ │ ├── sha-test.pl │ │ ├── ssh2john │ │ ├── stats │ │ ├── tgtsnarf │ │ ├── unafs │ │ ├── undrop │ │ ├── unique │ │ ├── unshadow │ │ └── zip2john │ ├── run.linux.x86.any │ │ ├── all.chr │ │ ├── alnum.chr │ │ ├── alpha.chr │ │ ├── calc_stat │ │ ├── digits.chr │ │ ├── genincstats.rb │ │ ├── genmkvpwd │ │ ├── john │ │ ├── lanman.chr │ │ ├── ldif2pw.pl │ │ ├── mailer │ │ ├── mkvcalcproba │ │ ├── netntlm.pl │ │ ├── netscreen.py │ │ ├── pdf2john │ │ ├── rar2john │ │ ├── sap_prepare.pl │ │ ├── sha-dump.pl │ │ ├── sha-test.pl │ │ ├── ssh2john │ │ ├── stats │ │ ├── tgtsnarf │ │ ├── unafs │ │ ├── undrop │ │ ├── unique │ │ ├── unshadow │ │ └── zip2john │ ├── run.linux.x86.mmx │ │ ├── all.chr │ │ ├── alnum.chr │ │ ├── alpha.chr │ │ ├── calc_stat │ │ ├── digits.chr │ │ ├── genincstats.rb │ │ ├── genmkvpwd │ │ ├── john │ │ ├── lanman.chr │ │ ├── ldif2pw.pl │ │ ├── mailer │ │ ├── mkvcalcproba │ │ ├── netntlm.pl │ │ ├── netscreen.py │ │ ├── pdf2john │ │ ├── rar2john │ │ ├── sap_prepare.pl │ │ ├── sha-dump.pl │ │ ├── sha-test.pl │ │ ├── ssh2john │ │ ├── stats │ │ ├── tgtsnarf │ │ ├── unafs │ │ ├── undrop │ │ ├── unique │ │ ├── unshadow │ │ └── zip2john │ ├── run.linux.x86.sse2 │ │ ├── all.chr │ │ ├── alnum.chr │ │ ├── alpha.chr │ │ ├── calc_stat │ │ ├── digits.chr │ │ ├── genincstats.rb │ │ ├── genmkvpwd │ │ ├── john │ │ ├── lanman.chr │ │ ├── ldif2pw.pl │ │ ├── mailer │ │ ├── mkvcalcproba │ │ ├── netntlm.pl │ │ ├── netscreen.py │ │ ├── pdf2john │ │ ├── rar2john │ │ ├── sap_prepare.pl │ │ ├── sha-dump.pl │ │ ├── sha-test.pl │ │ ├── ssh2john │ │ ├── stats │ │ ├── tgtsnarf │ │ ├── unafs │ │ ├── undrop │ │ ├── unique │ │ ├── unshadow │ │ └── zip2john │ ├── run.win32.any │ │ ├── README.MSYS │ │ ├── all.chr │ │ ├── alnum.chr │ │ ├── alpha.chr │ │ ├── calc_stat.exe │ │ ├── digits.chr │ │ ├── genincstats.rb │ │ ├── genmkvpwd.exe │ │ ├── john-mingw.exe │ │ ├── john.exe │ │ ├── lanman.chr │ │ ├── ldif2pw.pl │ │ ├── mailer │ │ ├── mkvcalcproba.exe │ │ ├── msys-1.0.dll │ │ ├── msys-crypto-1.0.0.dll │ │ ├── msys-ssl-1.0.0.dll │ │ ├── netntlm.pl │ │ ├── netscreen.py │ │ ├── pdf2john.exe │ │ ├── rar2john.exe │ │ ├── sap_prepare.pl │ │ ├── sha-dump.pl │ │ ├── sha-test.pl │ │ ├── ssh2john.exe │ │ ├── stats │ │ ├── unafs.exe │ │ ├── undrop.exe │ │ ├── unique.exe │ │ ├── unshadow.exe │ │ └── zip2john.exe │ ├── run.win32.mmx │ │ ├── README.MSYS │ │ ├── all.chr │ │ ├── alnum.chr │ │ ├── alpha.chr │ │ ├── calc_stat.exe │ │ ├── digits.chr │ │ ├── genincstats.rb │ │ ├── genmkvpwd.exe │ │ ├── john-mingw.exe │ │ ├── john.exe │ │ ├── lanman.chr │ │ ├── ldif2pw.pl │ │ ├── mailer │ │ ├── mkvcalcproba.exe │ │ ├── msys-1.0.dll │ │ ├── msys-crypto-1.0.0.dll │ │ ├── msys-ssl-1.0.0.dll │ │ ├── netntlm.pl │ │ ├── netscreen.py │ │ ├── pdf2john.exe │ │ ├── rar2john.exe │ │ ├── sap_prepare.pl │ │ ├── sha-dump.pl │ │ ├── sha-test.pl │ │ ├── ssh2john.exe │ │ ├── stats │ │ ├── unafs.exe │ │ ├── undrop.exe │ │ ├── unique.exe │ │ ├── unshadow.exe │ │ └── zip2john.exe │ ├── run.win32.sse2 │ │ ├── README.MSYS │ │ ├── all.chr │ │ ├── alnum.chr │ │ ├── alpha.chr │ │ ├── calc_stat.exe │ │ ├── digits.chr │ │ ├── genincstats.rb │ │ ├── genmkvpwd.exe │ │ ├── john-mingw.exe │ │ ├── john.exe │ │ ├── lanman.chr │ │ ├── ldif2pw.pl │ │ ├── mailer │ │ ├── mkvcalcproba.exe │ │ ├── msys-1.0.dll │ │ ├── msys-crypto-1.0.0.dll │ │ ├── msys-ssl-1.0.0.dll │ │ ├── netntlm.pl │ │ ├── netscreen.py │ │ ├── pdf2john.exe │ │ ├── rar2john.exe │ │ ├── sap_prepare.pl │ │ ├── sha-dump.pl │ │ ├── sha-test.pl │ │ ├── ssh2john.exe │ │ ├── stats │ │ ├── unafs.exe │ │ ├── undrop.exe │ │ ├── unique.exe │ │ ├── unshadow.exe │ │ └── zip2john.exe │ ├── src.tar.bz2 │ └── wordlists │ │ ├── common_roots.txt │ │ └── password.lst ├── js │ ├── detect │ │ ├── ie_addons.js │ │ ├── misc_addons.js │ │ └── os.js │ ├── memory │ │ ├── explib2 │ │ │ ├── lib │ │ │ │ └── explib2.js │ │ │ └── payload │ │ │ │ ├── drop_exec.js │ │ │ │ └── exec.js │ │ ├── heap_spray.js │ │ ├── heaplib2.js │ │ ├── mstime_malloc.js │ │ └── property_spray.js │ ├── network │ │ ├── ajax_download.js │ │ ├── ajax_post.js │ │ └── xhr_shim.js │ └── utils │ │ └── base64.js ├── 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-park.txt │ ├── metasploit-shield.txt │ ├── metasploit-trail.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 ├── meterpreter │ ├── ext_server_android.jar │ ├── ext_server_stdapi.php │ ├── ext_server_stdapi.py │ ├── meterpreter.php │ ├── meterpreter.py │ ├── metsvc-server.exe │ └── metsvc.exe ├── mime.yml ├── msfcrawler │ ├── basic.rb │ ├── forms.rb │ ├── frames.rb │ ├── image.rb │ ├── link.rb │ ├── objects.rb │ └── scripts.rb ├── msfpescan │ └── identify.txt ├── 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 │ │ └── outlook.ps1 ├── ropdb │ ├── flash.xml │ ├── hxds.xml │ ├── java.xml │ ├── msvcrt.xml │ ├── reader.xml │ └── samba.xml ├── 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 │ │ ├── address.wav │ │ ├── closed.wav │ │ ├── dot.wav │ │ ├── num0.wav │ │ ├── num1.wav │ │ ├── num2.wav │ │ ├── num3.wav │ │ ├── num4.wav │ │ ├── num5.wav │ │ ├── num6.wav │ │ ├── num7.wav │ │ ├── num8.wav │ │ ├── num9.wav │ │ ├── opened.wav │ │ ├── plugin_load.wav │ │ ├── plugin_unload.wav │ │ ├── port.wav │ │ ├── session.wav │ │ ├── session_open_meterpreter.wav │ │ ├── session_open_shell.wav │ │ └── session_open_vnc.wav │ └── gensounds_mac.rb ├── templates │ ├── dotnetmem.dll │ ├── scripts │ │ ├── to_exe.asp.template │ │ ├── to_exe.aspx.template │ │ ├── to_exe.vba.template │ │ ├── to_exe.vbs.template │ │ ├── to_exe_jsp.war.template │ │ ├── to_mem.aspx.template │ │ ├── to_mem.vba.template │ │ ├── to_mem_dotnet.ps1.template │ │ ├── to_mem_old.ps1.template │ │ ├── to_mem_pshreflection.ps1.template │ │ ├── to_powershell.hta.template │ │ └── to_powershell.vba.template │ ├── src │ │ ├── elf │ │ │ ├── dll │ │ │ │ └── elf_dll_x64_template.s │ │ │ └── exe │ │ │ │ ├── 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 │ │ │ └── exe │ │ │ ├── service │ │ │ ├── Service.sln │ │ │ ├── Service.vcproj │ │ │ └── service.c │ │ │ ├── template.c │ │ │ ├── template.s │ │ │ └── template_x64_windows.asm │ ├── template_armle_darwin.bin │ ├── template_armle_linux.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_svc.exe │ ├── template_x86_bsd.bin │ ├── template_x86_darwin.bin │ ├── template_x86_linux.bin │ ├── template_x86_solaris.bin │ ├── template_x86_windows.dll │ ├── template_x86_windows.exe │ ├── 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 │ ├── av-update-urls.txt │ ├── burnett_top_1024.txt │ ├── burnett_top_500.txt │ ├── cms400net_default_userpass.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 │ ├── malicious_urls.txt │ ├── multi_vendor_cctv_dvr_pass.txt │ ├── multi_vendor_cctv_dvr_users.txt │ ├── namelist.txt │ ├── oracle_default_hashes.txt │ ├── oracle_default_passwords.csv │ ├── oracle_default_userpass.txt │ ├── postgres_default_pass.txt │ ├── postgres_default_user.txt │ ├── postgres_default_userpass.txt │ ├── root_userpass.txt │ ├── rpc_names.txt │ ├── rservices_from_users.txt │ ├── sap_common.txt │ ├── sap_default.txt │ ├── sap_icm_paths.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 ├── db ├── migrate │ └── .git-keep └── schema.rb ├── documentation ├── README.md └── developers_guide.pdf ├── external ├── burp-proxy │ ├── readme.txt │ ├── wmap_plugin_v0.1-burp_v1.1.jar │ └── wmap_plugin_v0.1-burp_v1.2.jar ├── ruby-kissfft │ ├── Gemfile │ ├── LICENSE │ ├── Rakefile │ ├── ext │ │ └── kissfft │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── extconf.rb │ │ │ ├── kiss_fft.c │ │ │ ├── kiss_fft.h │ │ │ ├── kiss_fftr.c │ │ │ ├── kiss_fftr.h │ │ │ └── main.c │ ├── kissfft.gemspec │ └── tests │ │ ├── sample.data │ │ └── test_kissfft.rb ├── 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 │ ├── 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-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 │ │ │ └── exploit.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-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 │ │ ├── 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 │ │ ├── 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 │ │ │ ├── cve-2015-0016.sln │ │ │ └── cve-2015-0016 │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── cve-2015-0016.cpp │ │ │ │ ├── cve-2015-0016.vcxproj │ │ │ │ ├── cve-2015-0016.vcxproj.filters │ │ │ │ ├── dllmain.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── targetver.h │ │ ├── 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 │ │ ├── exec_payload_msi │ │ │ └── exec_payload.wxs │ │ ├── jre17u17 │ │ │ ├── Exploit.java │ │ │ └── Makefile │ │ ├── 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 │ │ └── splunk │ │ │ └── upload_app_exec │ │ │ ├── bin │ │ │ └── msf_exec.py │ │ │ ├── default │ │ │ ├── app.conf │ │ │ └── commands.conf │ │ │ └── metadata │ │ │ └── default.meta │ ├── 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 │ ├── 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 │ ├── 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 │ │ ├── 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 │ │ │ ├── armle │ │ │ │ ├── single_sock_bind.s │ │ │ │ ├── single_sock_reverse.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_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 │ │ ├── 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 │ │ │ └── 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 │ │ │ ├── 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 └── zsh │ ├── README.md │ ├── _msfconsole │ └── _msfvenom ├── features ├── commands │ └── help.feature ├── modules │ └── exploit │ │ └── smb │ │ └── ms08_067_netapi.feature ├── msfconsole │ └── database_yml.feature ├── step_definitions │ ├── environment_variables.rb │ ├── project.rb │ └── targets.rb └── support │ ├── bin │ └── stty │ ├── env.rb │ ├── hooks.rb │ ├── simplecov_setup.rb │ ├── stty.rb │ └── targets.yml.example ├── 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 ├── bit-struct.rb ├── bit-struct │ ├── README │ ├── bit-struct.rb │ ├── char-field.rb │ ├── fields.rb │ ├── float-field.rb │ ├── hex-octet-field.rb │ ├── nested-field.rb │ ├── octet-field.rb │ ├── pad-field.rb │ ├── signed-field.rb │ ├── text-field.rb │ ├── unsigned-field.rb │ ├── vector-field.rb │ ├── vector.rb │ └── yaml.rb ├── enumerable.rb ├── metasm.rb ├── metasm │ ├── .hgtags │ ├── BUGS │ ├── CREDITS │ ├── INSTALL │ ├── LICENCE │ ├── README │ ├── TODO │ ├── metasm.rb │ ├── metasm │ │ ├── compile_c.rb │ │ ├── cpu │ │ │ ├── arc.rb │ │ │ ├── arc │ │ │ │ ├── decode.rb │ │ │ │ ├── main.rb │ │ │ │ └── opcodes.rb │ │ │ ├── arm.rb │ │ │ ├── arm │ │ │ │ ├── debug.rb │ │ │ │ ├── decode.rb │ │ │ │ ├── encode.rb │ │ │ │ ├── main.rb │ │ │ │ ├── opcodes.rb │ │ │ │ ├── parse.rb │ │ │ │ └── render.rb │ │ │ ├── bpf.rb │ │ │ ├── bpf │ │ │ │ ├── decode.rb │ │ │ │ ├── main.rb │ │ │ │ ├── opcodes.rb │ │ │ │ └── render.rb │ │ │ ├── cy16.rb │ │ │ ├── cy16 │ │ │ │ ├── decode.rb │ │ │ │ ├── main.rb │ │ │ │ ├── opcodes.rb │ │ │ │ └── render.rb │ │ │ ├── dalvik.rb │ │ │ ├── dalvik │ │ │ │ ├── decode.rb │ │ │ │ ├── main.rb │ │ │ │ └── opcodes.rb │ │ │ ├── ia32.rb │ │ │ ├── ia32 │ │ │ │ ├── compile_c.rb │ │ │ │ ├── debug.rb │ │ │ │ ├── decode.rb │ │ │ │ ├── decompile.rb │ │ │ │ ├── encode.rb │ │ │ │ ├── main.rb │ │ │ │ ├── opcodes.rb │ │ │ │ ├── parse.rb │ │ │ │ └── render.rb │ │ │ ├── mips.rb │ │ │ ├── mips │ │ │ │ ├── compile_c.rb │ │ │ │ ├── debug.rb │ │ │ │ ├── decode.rb │ │ │ │ ├── encode.rb │ │ │ │ ├── main.rb │ │ │ │ ├── opcodes.rb │ │ │ │ ├── parse.rb │ │ │ │ └── render.rb │ │ │ ├── msp430.rb │ │ │ ├── msp430 │ │ │ │ ├── decode.rb │ │ │ │ ├── main.rb │ │ │ │ └── opcodes.rb │ │ │ ├── pic16c │ │ │ │ ├── decode.rb │ │ │ │ ├── main.rb │ │ │ │ └── opcodes.rb │ │ │ ├── ppc.rb │ │ │ ├── ppc │ │ │ │ ├── decode.rb │ │ │ │ ├── decompile.rb │ │ │ │ ├── encode.rb │ │ │ │ ├── main.rb │ │ │ │ ├── opcodes.rb │ │ │ │ └── parse.rb │ │ │ ├── python.rb │ │ │ ├── python │ │ │ │ ├── decode.rb │ │ │ │ ├── main.rb │ │ │ │ └── opcodes.rb │ │ │ ├── sh4.rb │ │ │ ├── sh4 │ │ │ │ ├── decode.rb │ │ │ │ ├── main.rb │ │ │ │ └── opcodes.rb │ │ │ ├── x86_64.rb │ │ │ ├── x86_64 │ │ │ │ ├── compile_c.rb │ │ │ │ ├── debug.rb │ │ │ │ ├── decode.rb │ │ │ │ ├── encode.rb │ │ │ │ ├── main.rb │ │ │ │ ├── opcodes.rb │ │ │ │ ├── parse.rb │ │ │ │ └── render.rb │ │ │ ├── z80.rb │ │ │ └── z80 │ │ │ │ ├── decode.rb │ │ │ │ ├── main.rb │ │ │ │ ├── opcodes.rb │ │ │ │ └── render.rb │ │ ├── debug.rb │ │ ├── decode.rb │ │ ├── decompile.rb │ │ ├── disassemble.rb │ │ ├── disassemble_api.rb │ │ ├── dynldr.rb │ │ ├── encode.rb │ │ ├── exe_format │ │ │ ├── a_out.rb │ │ │ ├── autoexe.rb │ │ │ ├── bflt.rb │ │ │ ├── coff.rb │ │ │ ├── coff_decode.rb │ │ │ ├── coff_encode.rb │ │ │ ├── dex.rb │ │ │ ├── dol.rb │ │ │ ├── elf.rb │ │ │ ├── elf_decode.rb │ │ │ ├── elf_encode.rb │ │ │ ├── gb.rb │ │ │ ├── javaclass.rb │ │ │ ├── macho.rb │ │ │ ├── main.rb │ │ │ ├── mz.rb │ │ │ ├── nds.rb │ │ │ ├── pe.rb │ │ │ ├── pyc.rb │ │ │ ├── serialstruct.rb │ │ │ ├── shellcode.rb │ │ │ ├── shellcode_rwx.rb │ │ │ ├── swf.rb │ │ │ ├── xcoff.rb │ │ │ └── zip.rb │ │ ├── gui.rb │ │ ├── gui │ │ │ ├── cstruct.rb │ │ │ ├── dasm_coverage.rb │ │ │ ├── dasm_decomp.rb │ │ │ ├── dasm_funcgraph.rb │ │ │ ├── dasm_graph.rb │ │ │ ├── dasm_hex.rb │ │ │ ├── dasm_listing.rb │ │ │ ├── dasm_main.rb │ │ │ ├── dasm_opcodes.rb │ │ │ ├── debug.rb │ │ │ ├── gtk.rb │ │ │ ├── qt.rb │ │ │ ├── win32.rb │ │ │ └── x11.rb │ │ ├── main.rb │ │ ├── os │ │ │ ├── gnu_exports.rb │ │ │ ├── linux.rb │ │ │ ├── main.rb │ │ │ ├── remote.rb │ │ │ ├── windows.rb │ │ │ └── windows_exports.rb │ │ ├── parse.rb │ │ ├── parse_c.rb │ │ ├── preprocessor.rb │ │ └── render.rb │ ├── misc │ │ ├── bottleneck.rb │ │ ├── cheader-findpppath.rb │ │ ├── hexdiff.rb │ │ ├── hexdump.rb │ │ ├── lint.rb │ │ ├── metasm-all.rb │ │ ├── objdiff.rb │ │ ├── objscan.rb │ │ ├── pdfparse.rb │ │ ├── ppc_pdf2oplist.rb │ │ ├── tcp_proxy_hex.rb │ │ └── txt2html.rb │ ├── samples │ │ ├── a.out.rb │ │ ├── asmsyntax.rb │ │ ├── bindiff.rb │ │ ├── compilation-steps.rb │ │ ├── cparser_makestackoffset.rb │ │ ├── dasm-backtrack.rb │ │ ├── dasm-plugins │ │ │ ├── bindiff.rb │ │ │ ├── bookmark.rb │ │ │ ├── c_constants.rb │ │ │ ├── colortheme_solarized.rb │ │ │ ├── cppobj_funcall.rb │ │ │ ├── dasm_all.rb │ │ │ ├── demangle_cpp.rb │ │ │ ├── deobfuscate.rb │ │ │ ├── dump_text.rb │ │ │ ├── export_graph_svg.rb │ │ │ ├── findgadget.rb │ │ │ ├── hl_opcode.rb │ │ │ ├── hotfix_gtk_dbg.rb │ │ │ ├── imm2off.rb │ │ │ ├── match_libsigs.rb │ │ │ ├── patch_file.rb │ │ │ ├── scanfuncstart.rb │ │ │ ├── scanxrefs.rb │ │ │ ├── selfmodify.rb │ │ │ └── stringsxrefs.rb │ │ ├── dasmnavig.rb │ │ ├── dbg-apihook.rb │ │ ├── dbg-plugins │ │ │ ├── heapscan.rb │ │ │ ├── heapscan │ │ │ │ ├── compiled_heapscan_lin.c │ │ │ │ ├── compiled_heapscan_win.c │ │ │ │ ├── graphheap.rb │ │ │ │ ├── heapscan.rb │ │ │ │ ├── winheap.h │ │ │ │ └── winheap7.h │ │ │ └── trace_func.rb │ │ ├── dbghelp.rb │ │ ├── disassemble-gui.rb │ │ ├── disassemble.rb │ │ ├── dump_upx.rb │ │ ├── dynamic_ruby.rb │ │ ├── elf_list_needed.rb │ │ ├── elf_listexports.rb │ │ ├── elfencode.rb │ │ ├── exeencode.rb │ │ ├── factorize-headers-elfimports.rb │ │ ├── factorize-headers-peimports.rb │ │ ├── factorize-headers.rb │ │ ├── generate_libsigs.rb │ │ ├── hotfix_gtk_dbg.rb │ │ ├── install_win_env.rb │ │ ├── lindebug.rb │ │ ├── linux_injectsyscall.rb │ │ ├── machoencode.rb │ │ ├── metasm-shell.rb │ │ ├── pe-hook.rb │ │ ├── pe-ia32-cpuid.rb │ │ ├── pe-mips.rb │ │ ├── pe-shutdown.rb │ │ ├── pe-testrelocs.rb │ │ ├── pe-testrsrc.rb │ │ ├── pe_listexports.rb │ │ ├── peencode.rb │ │ ├── peldr.rb │ │ ├── preprocess-flatten.rb │ │ ├── r0trace.rb │ │ ├── scan_pt_gnu_stack.rb │ │ ├── scanpeexports.rb │ │ ├── shellcode-c.rb │ │ ├── shellcode-dynlink.rb │ │ ├── source.asm │ │ ├── struct_offset.rb │ │ ├── testpe.rb │ │ ├── testraw.rb │ │ ├── win32genloader.rb │ │ ├── win32hooker-advanced.rb │ │ ├── win32hooker.rb │ │ ├── win32livedasm.rb │ │ ├── win32remotescan.rb │ │ └── wintrace.rb │ └── tests │ │ ├── all.rb │ │ ├── arc.rb │ │ ├── dasm.rb │ │ ├── dynldr.rb │ │ ├── encodeddata.rb │ │ ├── expression.rb │ │ ├── graph_layout.rb │ │ ├── ia32.rb │ │ ├── mips.rb │ │ ├── parse_c.rb │ │ ├── preprocessor.rb │ │ └── x86_64.rb ├── metasploit │ ├── framework.rb │ └── framework │ │ ├── afp │ │ └── client.rb │ │ ├── api.rb │ │ ├── api │ │ └── version.rb │ │ ├── command.rb │ │ ├── command │ │ ├── base.rb │ │ └── console.rb │ │ ├── common_engine.rb │ │ ├── community_string_collection.rb │ │ ├── core.rb │ │ ├── core │ │ └── version.rb │ │ ├── credential.rb │ │ ├── credential_collection.rb │ │ ├── database.rb │ │ ├── database │ │ └── cucumber.rb │ │ ├── engine.rb │ │ ├── ftp │ │ └── client.rb │ │ ├── jtr │ │ ├── cracker.rb │ │ ├── invalid_wordlist.rb │ │ └── wordlist.rb │ │ ├── login_scanner.rb │ │ ├── login_scanner │ │ ├── acpp.rb │ │ ├── afp.rb │ │ ├── axis2.rb │ │ ├── base.rb │ │ ├── buffalo.rb │ │ ├── chef_webui.rb │ │ ├── db2.rb │ │ ├── ftp.rb │ │ ├── gitlab.rb │ │ ├── glassfish.rb │ │ ├── http.rb │ │ ├── invalid.rb │ │ ├── ipboard.rb │ │ ├── jenkins.rb │ │ ├── manageengine_desktop_central.rb │ │ ├── mssql.rb │ │ ├── mybook_live.rb │ │ ├── mysql.rb │ │ ├── nessus.rb │ │ ├── ntlm.rb │ │ ├── pop3.rb │ │ ├── postgres.rb │ │ ├── result.rb │ │ ├── rex_socket.rb │ │ ├── smb.rb │ │ ├── smh.rb │ │ ├── snmp.rb │ │ ├── ssh.rb │ │ ├── symantec_web_gateway.rb │ │ ├── telnet.rb │ │ ├── tomcat.rb │ │ ├── vmauthd.rb │ │ ├── vnc.rb │ │ ├── winrm.rb │ │ ├── wordpress_rpc.rb │ │ └── zabbix.rb │ │ ├── mssql │ │ └── client.rb │ │ ├── ntds │ │ ├── account.rb │ │ └── parser.rb │ │ ├── parsed_options.rb │ │ ├── parsed_options │ │ ├── base.rb │ │ └── console.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 │ │ └── version.rb ├── msf │ ├── LICENSE │ ├── base.rb │ ├── base │ │ ├── config.rb │ │ ├── logging.rb │ │ ├── persistent_storage.rb │ │ ├── persistent_storage │ │ │ └── flatfile.rb │ │ ├── serializer │ │ │ └── readable_text.rb │ │ ├── sessions │ │ │ ├── command_shell.rb │ │ │ ├── command_shell_options.rb │ │ │ ├── meterpreter.rb │ │ │ ├── meterpreter_android.rb │ │ │ ├── meterpreter_java.rb │ │ │ ├── meterpreter_options.rb │ │ │ ├── meterpreter_php.rb │ │ │ ├── meterpreter_python.rb │ │ │ ├── meterpreter_x64_win.rb │ │ │ ├── meterpreter_x86_bsd.rb │ │ │ ├── meterpreter_x86_linux.rb │ │ │ ├── meterpreter_x86_win.rb │ │ │ ├── powershell.rb │ │ │ ├── scriptable.rb │ │ │ ├── tty.rb │ │ │ ├── vncinject.rb │ │ │ └── vncinject_options.rb │ │ ├── simple.rb │ │ └── simple │ │ │ ├── auxiliary.rb │ │ │ ├── buffer.rb │ │ │ ├── encoder.rb │ │ │ ├── exploit.rb │ │ │ ├── framework.rb │ │ │ ├── framework │ │ │ └── module_paths.rb │ │ │ ├── module.rb │ │ │ ├── nop.rb │ │ │ ├── payload.rb │ │ │ ├── post.rb │ │ │ └── statistics.rb │ ├── core.rb │ ├── core │ │ ├── author.rb │ │ ├── auxiliary.rb │ │ ├── auxiliary │ │ │ ├── auth_brute.rb │ │ │ ├── cisco.rb │ │ │ ├── commandshell.rb │ │ │ ├── crawler.rb │ │ │ ├── dos.rb │ │ │ ├── drdos.rb │ │ │ ├── fuzzer.rb │ │ │ ├── iax2.rb │ │ │ ├── jtr.rb │ │ │ ├── kademlia.rb │ │ │ ├── login.rb │ │ │ ├── mime_types.rb │ │ │ ├── mixins.rb │ │ │ ├── natpmp.rb │ │ │ ├── nmap.rb │ │ │ ├── ntp.rb │ │ │ ├── pii.rb │ │ │ ├── report.rb │ │ │ ├── rservices.rb │ │ │ ├── scanner.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 │ │ ├── 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 │ │ │ ├── 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.rb │ │ │ │ ├── ci.rb │ │ │ │ ├── foundstone.rb │ │ │ │ ├── fusion_vm.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 │ │ │ ├── loot.rb │ │ │ ├── migration.rb │ │ │ ├── module_cache.rb │ │ │ ├── note.rb │ │ │ ├── ref.rb │ │ │ ├── report.rb │ │ │ ├── route.rb │ │ │ ├── service.rb │ │ │ ├── session.rb │ │ │ ├── session_event.rb │ │ │ ├── task.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 │ │ ├── encoding │ │ │ └── xor.rb │ │ ├── event_dispatcher.rb │ │ ├── exceptions.rb │ │ ├── exe │ │ │ ├── segment_appender.rb │ │ │ └── segment_injector.rb │ │ ├── exploit.rb │ │ ├── exploit │ │ │ ├── afp.rb │ │ │ ├── android.rb │ │ │ ├── arkeia.rb │ │ │ ├── browser_autopwn.rb │ │ │ ├── brute.rb │ │ │ ├── brutetargets.rb │ │ │ ├── capture.rb │ │ │ ├── cmdstager.rb │ │ │ ├── db2.rb │ │ │ ├── dcerpc.rb │ │ │ ├── dcerpc_epm.rb │ │ │ ├── dcerpc_lsa.rb │ │ │ ├── dcerpc_mgmt.rb │ │ │ ├── dect_coa.rb │ │ │ ├── dhcp.rb │ │ │ ├── dialup.rb │ │ │ ├── egghunter.rb │ │ │ ├── exe.rb │ │ │ ├── file_dropper.rb │ │ │ ├── fileformat.rb │ │ │ ├── fmtstr.rb │ │ │ ├── ftp.rb │ │ │ ├── ftpserver.rb │ │ │ ├── gdb.rb │ │ │ ├── http │ │ │ │ ├── client.rb │ │ │ │ ├── server.rb │ │ │ │ └── server │ │ │ │ │ ├── html.rb │ │ │ │ │ └── php_include.rb │ │ │ ├── imap.rb │ │ │ ├── ip.rb │ │ │ ├── ipv6.rb │ │ │ ├── java.rb │ │ │ ├── jsobfu.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 │ │ │ ├── ntlm.rb │ │ │ ├── omelet.rb │ │ │ ├── oracle.rb │ │ │ ├── pdf.rb │ │ │ ├── pdf_parse.rb │ │ │ ├── php_exe.rb │ │ │ ├── pop2.rb │ │ │ ├── postgres.rb │ │ │ ├── powershell.rb │ │ │ ├── realport.rb │ │ │ ├── remote │ │ │ │ ├── browser_exploit_server.rb │ │ │ │ ├── firefox_addon_generator.rb │ │ │ │ └── firefox_privilege_escalation.rb │ │ │ ├── riff.rb │ │ │ ├── ropdb.rb │ │ │ ├── seh.rb │ │ │ ├── sip.rb │ │ │ ├── smb │ │ │ │ ├── client.rb │ │ │ │ ├── client │ │ │ │ │ ├── authenticated.rb │ │ │ │ │ └── psexec.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 │ │ │ ├── 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 │ │ │ └── winrm.rb │ │ ├── exploit_driver.rb │ │ ├── framework.rb │ │ ├── handler.rb │ │ ├── handler │ │ │ ├── bind_tcp.rb │ │ │ ├── find_port.rb │ │ │ ├── find_shell.rb │ │ │ ├── find_tag.rb │ │ │ ├── find_tty.rb │ │ │ ├── none.rb │ │ │ ├── reverse_hop_http.rb │ │ │ ├── reverse_http.rb │ │ │ ├── reverse_https.rb │ │ │ ├── reverse_https_proxy.rb │ │ │ ├── reverse_tcp.rb │ │ │ ├── reverse_tcp_allports.rb │ │ │ ├── reverse_tcp_double.rb │ │ │ ├── reverse_tcp_double_ssl.rb │ │ │ └── reverse_tcp_ssl.rb │ │ ├── host_state.rb │ │ ├── module.rb │ │ ├── module │ │ │ ├── arch.rb │ │ │ ├── author.rb │ │ │ ├── auxiliary_action.rb │ │ │ ├── compatibility.rb │ │ │ ├── data_store.rb │ │ │ ├── deprecated.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 │ │ │ ├── search.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 │ │ │ ├── loader.rb │ │ │ ├── loader │ │ │ │ ├── base.rb │ │ │ │ └── directory.rb │ │ │ ├── metasploit_class_compatibility_error.rb │ │ │ ├── namespace.rb │ │ │ └── version_compatibility_error.rb │ │ ├── nop.rb │ │ ├── opt.rb │ │ ├── opt_address.rb │ │ ├── opt_address_range.rb │ │ ├── opt_base.rb │ │ ├── opt_bool.rb │ │ ├── opt_enum.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 │ │ │ ├── bsd.rb │ │ │ ├── bsd │ │ │ │ └── x86.rb │ │ │ ├── dalvik.rb │ │ │ ├── firefox.rb │ │ │ ├── generic.rb │ │ │ ├── java.rb │ │ │ ├── jsp.rb │ │ │ ├── linux.rb │ │ │ ├── linux │ │ │ │ ├── bind_tcp.rb │ │ │ │ ├── reverse_tcp.rb │ │ │ │ └── send_uuid.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 │ │ │ │ ├── reverse_tcp.rb │ │ │ │ └── send_uuid.rb │ │ │ ├── ruby.rb │ │ │ ├── single.rb │ │ │ ├── solaris.rb │ │ │ ├── stager.rb │ │ │ ├── transport_config.rb │ │ │ ├── uuid.rb │ │ │ ├── uuid │ │ │ │ └── options.rb │ │ │ ├── windows.rb │ │ │ └── windows │ │ │ │ ├── bind_tcp.rb │ │ │ │ ├── block_api.rb │ │ │ │ ├── dllinject.rb │ │ │ │ ├── exec.rb │ │ │ │ ├── exec_x64.rb │ │ │ │ ├── exitfunk.rb │ │ │ │ ├── loadlibrary.rb │ │ │ │ ├── meterpreter_loader.rb │ │ │ │ ├── powershell.rb │ │ │ │ ├── prepend_migrate.rb │ │ │ │ ├── reflectivedllinject.rb │ │ │ │ ├── reverse_http.rb │ │ │ │ ├── reverse_https.rb │ │ │ │ ├── reverse_tcp.rb │ │ │ │ ├── reverse_winhttp.rb │ │ │ │ ├── reverse_winhttps.rb │ │ │ │ ├── send_uuid.rb │ │ │ │ ├── verify_ssl.rb │ │ │ │ └── x64 │ │ │ │ ├── bind_tcp.rb │ │ │ │ ├── block_api.rb │ │ │ │ ├── exitfunk.rb │ │ │ │ ├── meterpreter_loader.rb │ │ │ │ ├── reflectivedllinject.rb │ │ │ │ ├── reverse_http.rb │ │ │ │ ├── reverse_https.rb │ │ │ │ ├── reverse_tcp.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 │ │ │ ├── common.rb │ │ │ ├── file.rb │ │ │ ├── linux.rb │ │ │ ├── linux │ │ │ │ ├── priv.rb │ │ │ │ └── system.rb │ │ │ ├── osx.rb │ │ │ ├── osx │ │ │ │ ├── ruby_dl.rb │ │ │ │ └── system.rb │ │ │ ├── solaris.rb │ │ │ ├── solaris │ │ │ │ ├── priv.rb │ │ │ │ └── system.rb │ │ │ ├── unix.rb │ │ │ ├── webrtc.rb │ │ │ ├── windows.rb │ │ │ └── windows │ │ │ │ ├── accounts.rb │ │ │ │ ├── cli_parse.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 │ │ │ └── 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 │ ├── events.rb │ ├── http │ │ ├── jboss.rb │ │ ├── jboss │ │ │ ├── base.rb │ │ │ ├── bean_shell.rb │ │ │ ├── bean_shell_scripts.rb │ │ │ ├── deployment_file_repository.rb │ │ │ └── deployment_file_repository_scripts.rb │ │ ├── typo3.rb │ │ ├── typo3 │ │ │ ├── login.rb │ │ │ └── uris.rb │ │ ├── wordpress.rb │ │ └── wordpress │ │ │ ├── admin.rb │ │ │ ├── base.rb │ │ │ ├── helpers.rb │ │ │ ├── login.rb │ │ │ ├── posts.rb │ │ │ ├── uris.rb │ │ │ ├── users.rb │ │ │ ├── version.rb │ │ │ └── xml_rpc.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 │ ├── kerberos │ │ ├── client.rb │ │ └── client │ │ │ ├── as_request.rb │ │ │ ├── as_response.rb │ │ │ ├── base.rb │ │ │ ├── cache_credential.rb │ │ │ ├── pac.rb │ │ │ ├── tgs_request.rb │ │ │ └── tgs_response.rb │ ├── sanity.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 │ │ │ │ ├── core.rb │ │ │ │ ├── db.rb │ │ │ │ ├── encoder.rb │ │ │ │ ├── exploit.rb │ │ │ │ ├── nop.rb │ │ │ │ ├── payload.rb │ │ │ │ └── post.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 │ │ ├── exe.rb │ │ ├── payload_cached_size.rb │ │ └── svn.rb │ └── windows_error.rb ├── msfenv.rb ├── nessus │ ├── README │ ├── TODO │ ├── nessus-cli.rb │ └── nessus-xmlrpc.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.rb │ └── ssh │ │ ├── CHANGELOG.rdoc │ │ ├── README.rdoc │ │ ├── THANKS.rdoc │ │ ├── authentication │ │ ├── agent.rb │ │ ├── constants.rb │ │ ├── key_manager.rb │ │ ├── methods │ │ │ ├── abstract.rb │ │ │ ├── hostbased.rb │ │ │ ├── keyboard_interactive.rb │ │ │ ├── password.rb │ │ │ └── publickey.rb │ │ ├── pageant.rb │ │ └── session.rb │ │ ├── buffer.rb │ │ ├── buffered_io.rb │ │ ├── command_stream.rb │ │ ├── config.rb │ │ ├── connection │ │ ├── channel.rb │ │ ├── constants.rb │ │ ├── session.rb │ │ └── term.rb │ │ ├── errors.rb │ │ ├── key_factory.rb │ │ ├── known_hosts.rb │ │ ├── loggable.rb │ │ ├── packet.rb │ │ ├── prompt.rb │ │ ├── proxy │ │ ├── errors.rb │ │ ├── http.rb │ │ ├── socks4.rb │ │ └── socks5.rb │ │ ├── ruby_compat.rb │ │ ├── service │ │ └── forward.rb │ │ ├── test.rb │ │ ├── test │ │ ├── channel.rb │ │ ├── extensions.rb │ │ ├── kex.rb │ │ ├── local_packet.rb │ │ ├── packet.rb │ │ ├── remote_packet.rb │ │ ├── script.rb │ │ └── socket.rb │ │ ├── transport │ │ ├── algorithms.rb │ │ ├── cipher_factory.rb │ │ ├── constants.rb │ │ ├── hmac.rb │ │ ├── hmac │ │ │ ├── abstract.rb │ │ │ ├── md5.rb │ │ │ ├── md5_96.rb │ │ │ ├── none.rb │ │ │ ├── sha1.rb │ │ │ └── sha1_96.rb │ │ ├── identity_cipher.rb │ │ ├── kex.rb │ │ ├── kex │ │ │ ├── diffie_hellman_group1_sha1.rb │ │ │ └── diffie_hellman_group_exchange_sha1.rb │ │ ├── openssl.rb │ │ ├── packet_stream.rb │ │ ├── server_version.rb │ │ ├── session.rb │ │ └── state.rb │ │ ├── utils.rb │ │ ├── verifiers │ │ ├── lenient.rb │ │ ├── null.rb │ │ └── strict.rb │ │ └── version.rb ├── openvas │ └── openvas-omp.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 ├── rapid7 │ └── nexpose.rb ├── rbmysql.rb ├── rbmysql │ ├── README │ ├── charset.rb │ ├── compat.rb │ ├── constants.rb │ ├── error.rb │ └── protocol.rb ├── rex.rb ├── rex │ ├── LICENSE │ ├── arch.rb │ ├── arch │ │ ├── sparc.rb │ │ └── x86.rb │ ├── assembly │ │ └── nasm.rb │ ├── codepage.map │ ├── compat.rb │ ├── constants.rb │ ├── constants │ │ └── windows.rb │ ├── elfparsey.rb │ ├── elfparsey │ │ ├── elf.rb │ │ ├── elfbase.rb │ │ └── exceptions.rb │ ├── elfscan.rb │ ├── elfscan │ │ ├── scanner.rb │ │ └── search.rb │ ├── encoder │ │ ├── alpha2.rb │ │ ├── alpha2 │ │ │ ├── alpha_mixed.rb │ │ │ ├── alpha_upper.rb │ │ │ ├── generic.rb │ │ │ ├── unicode_mixed.rb │ │ │ └── unicode_upper.rb │ │ ├── bloxor │ │ │ └── bloxor.rb │ │ ├── ndr.rb │ │ ├── nonalpha.rb │ │ ├── nonupper.rb │ │ ├── xdr.rb │ │ ├── xor.rb │ │ └── xor │ │ │ ├── dword.rb │ │ │ └── dword_additive.rb │ ├── encoders │ │ ├── xor_dword.rb │ │ └── xor_dword_additive.rb │ ├── encoding │ │ ├── xor.rb │ │ └── xor │ │ │ ├── byte.rb │ │ │ ├── dword.rb │ │ │ ├── dword_additive.rb │ │ │ ├── exceptions.rb │ │ │ ├── generic.rb │ │ │ ├── qword.rb │ │ │ └── word.rb │ ├── exceptions.rb │ ├── exploitation │ │ ├── cmdstager.rb │ │ ├── cmdstager │ │ │ ├── base.rb │ │ │ ├── bourne.rb │ │ │ ├── debug_asm.rb │ │ │ ├── debug_write.rb │ │ │ ├── echo.rb │ │ │ ├── printf.rb │ │ │ ├── tftp.rb │ │ │ └── vbs.rb │ │ ├── egghunter.rb │ │ ├── encryptjs.rb │ │ ├── heaplib.js.b64 │ │ ├── heaplib.rb │ │ ├── js.rb │ │ ├── js │ │ │ ├── detect.rb │ │ │ ├── memory.rb │ │ │ ├── network.rb │ │ │ └── utils.rb │ │ ├── jsobfu.rb │ │ ├── obfuscatejs.rb │ │ ├── omelet.rb │ │ ├── opcodedb.rb │ │ ├── ropdb.rb │ │ └── seh.rb │ ├── file.rb │ ├── image_source.rb │ ├── image_source │ │ ├── disk.rb │ │ ├── image_source.rb │ │ └── memory.rb │ ├── io │ │ ├── bidirectional_pipe.rb │ │ ├── datagram_abstraction.rb │ │ ├── ring_buffer.rb │ │ ├── stream.rb │ │ ├── stream_abstraction.rb │ │ └── stream_server.rb │ ├── java.rb │ ├── java │ │ ├── serialization.rb │ │ └── serialization │ │ │ ├── builder.rb │ │ │ ├── decode_error.rb │ │ │ ├── encode_error.rb │ │ │ ├── model.rb │ │ │ └── model │ │ │ ├── annotation.rb │ │ │ ├── block_data.rb │ │ │ ├── block_data_long.rb │ │ │ ├── class_desc.rb │ │ │ ├── contents.rb │ │ │ ├── element.rb │ │ │ ├── end_block_data.rb │ │ │ ├── field.rb │ │ │ ├── long_utf.rb │ │ │ ├── new_array.rb │ │ │ ├── new_class_desc.rb │ │ │ ├── new_enum.rb │ │ │ ├── new_object.rb │ │ │ ├── null_reference.rb │ │ │ ├── proxy_class_desc.rb │ │ │ ├── reference.rb │ │ │ ├── reset.rb │ │ │ ├── stream.rb │ │ │ └── utf.rb │ ├── job_container.rb │ ├── json_hash_file.rb │ ├── logging.rb │ ├── logging │ │ ├── log_dispatcher.rb │ │ ├── log_sink.rb │ │ └── sinks │ │ │ ├── flatfile.rb │ │ │ └── stderr.rb │ ├── mac_oui.rb │ ├── machparsey.rb │ ├── machparsey │ │ ├── exceptions.rb │ │ ├── mach.rb │ │ └── machbase.rb │ ├── machscan.rb │ ├── machscan │ │ └── scanner.rb │ ├── mime.rb │ ├── mime │ │ ├── encoding.rb │ │ ├── header.rb │ │ ├── message.rb │ │ └── part.rb │ ├── nop │ │ ├── opty2.rb │ │ └── opty2_tables.rb │ ├── ole.rb │ ├── ole │ │ ├── clsid.rb │ │ ├── difat.rb │ │ ├── directory.rb │ │ ├── direntry.rb │ │ ├── docs │ │ │ ├── dependencies.txt │ │ │ └── references.txt │ │ ├── fat.rb │ │ ├── header.rb │ │ ├── minifat.rb │ │ ├── propset.rb │ │ ├── samples │ │ │ ├── create_ole.rb │ │ │ ├── dir.rb │ │ │ ├── dump_stream.rb │ │ │ └── ole_info.rb │ │ ├── storage.rb │ │ ├── stream.rb │ │ ├── substorage.rb │ │ └── util.rb │ ├── parser │ │ ├── acunetix_nokogiri.rb │ │ ├── apple_backup_manifestdb.rb │ │ ├── appscan_nokogiri.rb │ │ ├── arguments.rb │ │ ├── burp_session_nokogiri.rb │ │ ├── ci_nokogiri.rb │ │ ├── foundstone_nokogiri.rb │ │ ├── fs │ │ │ └── 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 │ │ └── x509_certificate.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 │ ├── peparsey.rb │ ├── peparsey │ │ ├── exceptions.rb │ │ ├── pe.rb │ │ ├── pe_memdump.rb │ │ ├── pebase.rb │ │ └── section.rb │ ├── pescan.rb │ ├── pescan │ │ ├── analyze.rb │ │ ├── scanner.rb │ │ └── search.rb │ ├── platforms.rb │ ├── platforms │ │ └── windows.rb │ ├── poly.rb │ ├── poly │ │ ├── block.rb │ │ ├── machine.rb │ │ ├── machine │ │ │ ├── machine.rb │ │ │ └── x86.rb │ │ ├── register.rb │ │ └── register │ │ │ └── x86.rb │ ├── post.rb │ ├── post │ │ ├── dir.rb │ │ ├── file.rb │ │ ├── file_stat.rb │ │ ├── gen.pl │ │ ├── io.rb │ │ ├── meterpreter.rb │ │ ├── meterpreter │ │ │ ├── channel.rb │ │ │ ├── channel_container.rb │ │ │ ├── channels │ │ │ │ ├── pool.rb │ │ │ │ ├── pools │ │ │ │ │ ├── file.rb │ │ │ │ │ └── stream_pool.rb │ │ │ │ ├── stream.rb │ │ │ │ └── streams │ │ │ │ │ └── .cvskeep │ │ │ ├── client.rb │ │ │ ├── client_core.rb │ │ │ ├── dependencies.rb │ │ │ ├── extension.rb │ │ │ ├── extensions │ │ │ │ ├── android │ │ │ │ │ ├── android.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── espia │ │ │ │ │ ├── espia.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── extapi │ │ │ │ │ ├── adsi │ │ │ │ │ │ └── adsi.rb │ │ │ │ │ ├── clipboard │ │ │ │ │ │ └── clipboard.rb │ │ │ │ │ ├── extapi.rb │ │ │ │ │ ├── ntds │ │ │ │ │ │ └── ntds.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 │ │ │ │ ├── priv │ │ │ │ │ ├── fs.rb │ │ │ │ │ ├── passwd.rb │ │ │ │ │ ├── priv.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── sniffer │ │ │ │ │ ├── sniffer.rb │ │ │ │ │ └── tlv.rb │ │ │ │ └── stdapi │ │ │ │ │ ├── constants.rb │ │ │ │ │ ├── fs │ │ │ │ │ ├── dir.rb │ │ │ │ │ ├── file.rb │ │ │ │ │ ├── file_stat.rb │ │ │ │ │ └── io.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 │ │ │ │ │ ├── api_constants.rb │ │ │ │ │ ├── buffer_item.rb │ │ │ │ │ ├── def │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── dll.rb │ │ │ │ │ ├── dll_function.rb │ │ │ │ │ ├── dll_helper.rb │ │ │ │ │ ├── dll_wrapper.rb │ │ │ │ │ ├── mock_magic.rb │ │ │ │ │ ├── multicall.rb │ │ │ │ │ ├── platform_util.rb │ │ │ │ │ ├── railgun.rb │ │ │ │ │ ├── tlv.rb │ │ │ │ │ ├── type │ │ │ │ │ │ └── pointer_util.rb │ │ │ │ │ ├── util.rb │ │ │ │ │ └── win_const_manager.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 │ │ │ ├── inbound_packet_handler.rb │ │ │ ├── object_aliases.rb │ │ │ ├── packet.rb │ │ │ ├── packet_dispatcher.rb │ │ │ ├── packet_parser.rb │ │ │ ├── packet_response_waiter.rb │ │ │ └── ui │ │ │ │ ├── console.rb │ │ │ │ └── console │ │ │ │ ├── command_dispatcher.rb │ │ │ │ ├── command_dispatcher │ │ │ │ ├── android.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 │ │ │ │ ├── priv.rb │ │ │ │ ├── priv │ │ │ │ │ ├── elevate.rb │ │ │ │ │ ├── passwd.rb │ │ │ │ │ └── timestomp.rb │ │ │ │ ├── sniffer.rb │ │ │ │ ├── stdapi.rb │ │ │ │ └── stdapi │ │ │ │ │ ├── fs.rb │ │ │ │ │ ├── net.rb │ │ │ │ │ ├── sys.rb │ │ │ │ │ ├── ui.rb │ │ │ │ │ └── webcam.rb │ │ │ │ └── interactive_channel.rb │ │ ├── permission.rb │ │ ├── process.rb │ │ ├── thread.rb │ │ └── ui.rb │ ├── powershell.rb │ ├── powershell │ │ ├── command.rb │ │ ├── function.rb │ │ ├── obfu.rb │ │ ├── output.rb │ │ ├── param.rb │ │ ├── parser.rb │ │ ├── payload.rb │ │ ├── psh_methods.rb │ │ └── script.rb │ ├── proto.rb │ ├── proto │ │ ├── acpp.rb │ │ ├── acpp │ │ │ ├── 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 │ │ ├── drda.rb │ │ ├── drda │ │ │ ├── constants.rb │ │ │ ├── packet.rb │ │ │ └── utils.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── steam.rb │ │ ├── steam │ │ │ └── message.rb │ │ ├── sunrpc.rb │ │ ├── sunrpc │ │ │ └── client.rb │ │ ├── tftp.rb │ │ └── tftp │ │ │ ├── client.rb │ │ │ ├── constants.rb │ │ │ └── server.rb │ ├── random_identifier_generator.rb │ ├── registry.rb │ ├── registry │ │ ├── hive.rb │ │ ├── lfkey.rb │ │ ├── nodekey.rb │ │ ├── regf.rb │ │ ├── valuekey.rb │ │ └── valuelist.rb │ ├── ropbuilder.rb │ ├── ropbuilder │ │ └── rop.rb │ ├── script.rb │ ├── script │ │ ├── base.rb │ │ ├── meterpreter.rb │ │ └── shell.rb │ ├── service.rb │ ├── service_manager.rb │ ├── services │ │ └── local_relay.rb │ ├── socket.rb │ ├── socket │ │ ├── comm.rb │ │ ├── comm │ │ │ └── local.rb │ │ ├── ip.rb │ │ ├── parameters.rb │ │ ├── range_walker.rb │ │ ├── ssl_tcp.rb │ │ ├── ssl_tcp_server.rb │ │ ├── subnet_walker.rb │ │ ├── switch_board.rb │ │ ├── tcp.rb │ │ ├── tcp_server.rb │ │ └── udp.rb │ ├── sslscan │ │ ├── result.rb │ │ └── scanner.rb │ ├── struct2.rb │ ├── struct2 │ │ ├── c_struct.rb │ │ ├── c_struct_template.rb │ │ ├── constant.rb │ │ ├── element.rb │ │ ├── generic.rb │ │ ├── restraint.rb │ │ ├── s_string.rb │ │ └── s_struct.rb │ ├── sync.rb │ ├── sync │ │ ├── event.rb │ │ ├── read_write_lock.rb │ │ ├── ref.rb │ │ └── thread_safe.rb │ ├── text.rb │ ├── thread_factory.rb │ ├── time.rb │ ├── transformer.rb │ ├── ui.rb │ ├── ui │ │ ├── interactive.rb │ │ ├── output.rb │ │ ├── output │ │ │ └── none.rb │ │ ├── progress_tracker.rb │ │ ├── subscriber.rb │ │ └── text │ │ │ ├── color.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 │ │ │ ├── progress_tracker.rb │ │ │ ├── shell.rb │ │ │ └── table.rb │ ├── zip.rb │ └── zip │ │ ├── archive.rb │ │ ├── blocks.rb │ │ ├── entry.rb │ │ ├── jar.rb │ │ └── samples │ │ ├── comment.rb │ │ ├── mkwar.rb │ │ ├── mkzip.rb │ │ └── recursive.rb ├── snmp.rb ├── snmp │ ├── agent.rb │ ├── ber.rb │ ├── manager.rb │ ├── mib.rb │ ├── pdu.rb │ └── varbind.rb ├── sqlmap │ ├── sqlmap_manager.rb │ └── sqlmap_session.rb ├── sshkey.rb ├── sshkey │ ├── LICENSE │ ├── README.md │ └── lib │ │ ├── sshkey.rb │ │ └── sshkey │ │ └── version.rb ├── tasks │ ├── cucumber.rake │ ├── custom_cucumber.rake │ └── databases.rake ├── telephony.rb ├── telephony │ └── modem.rb └── windows_console_color_support.rb ├── metasploit-framework-db.gemspec ├── metasploit-framework-full.gemspec ├── metasploit-framework-pcap.gemspec ├── 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 │ │ ├── backupexec │ │ │ ├── dump.rb │ │ │ └── registry.rb │ │ ├── chromecast │ │ │ ├── chromecast_reset.rb │ │ │ └── chromecast_youtube.rb │ │ ├── cisco │ │ │ ├── cisco_secure_acs_bypass.rb │ │ │ └── vpn_3000_ftp_bypass.rb │ │ ├── db2 │ │ │ └── db2rcmd.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_imc_som_create_account.rb │ │ ├── http │ │ │ ├── arris_motorola_surfboard_backdoor_xss.rb │ │ │ ├── axigen_file_access.rb │ │ │ ├── cfme_manageiq_evm_pass_reset.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 │ │ │ ├── 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 │ │ │ ├── katello_satellite_priv_esc.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 │ │ │ ├── mutiny_frontend_read_delete.rb │ │ │ ├── netflow_file_download.rb │ │ │ ├── netgear_soap_password_extractor.rb │ │ │ ├── nexpose_xxe_file_read.rb │ │ │ ├── novell_file_reporter_filedelete.rb │ │ │ ├── openbravo_xxe.rb │ │ │ ├── rails_devise_pass_reset.rb │ │ │ ├── scrutinizer_add_user.rb │ │ │ ├── sophos_wpa_traversal.rb │ │ │ ├── tomcat_administration.rb │ │ │ ├── tomcat_utf8_traversal.rb │ │ │ ├── trendmicro_dlp_traversal.rb │ │ │ ├── typo3_sa_2009_001.rb │ │ │ ├── typo3_sa_2009_002.rb │ │ │ ├── typo3_sa_2010_020.rb │ │ │ ├── typo3_winstaller_default_enc_keys.rb │ │ │ ├── vbulletin_upgrade_admin.rb │ │ │ ├── wp_custom_contact_forms.rb │ │ │ ├── wp_easycart_privilege_escalation.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 │ │ ├── officescan │ │ │ └── tmlisten_traversal.rb │ │ ├── oracle │ │ │ ├── ora_ntlm_stealer.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 │ │ │ ├── multi_cip_command.rb │ │ │ └── yokogawa_bkbcopyd_client.rb │ │ ├── serverprotect │ │ │ └── file.rb │ │ ├── smb │ │ │ ├── check_dir_file.rb │ │ │ ├── delete_file.rb │ │ │ ├── download_file.rb │ │ │ ├── list_directory.rb │ │ │ ├── psexec_command.rb │ │ │ ├── psexec_ntdsgrab.rb │ │ │ ├── samba_symlink_traversal.rb │ │ │ └── upload_file.rb │ │ ├── sunrpc │ │ │ └── solaris_kcms_readfile.rb │ │ ├── tftp │ │ │ └── tftp_transfer_util.rb │ │ ├── tikiwiki │ │ │ └── tikidblib.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 │ │ └── zend │ │ │ └── java_bridge.rb │ ├── analyze │ │ ├── jtr_aix.rb │ │ ├── jtr_crack_fast.rb │ │ ├── jtr_linux.rb │ │ ├── jtr_mssql_fast.rb │ │ ├── jtr_mysql_fast.rb │ │ ├── jtr_oracle_fast.rb │ │ └── jtr_postgres_fast.rb │ ├── bnat │ │ ├── bnat_router.rb │ │ └── bnat_scan.rb │ ├── client │ │ └── smtp │ │ │ └── emailer.rb │ ├── crawler │ │ └── msfcrawler.rb │ ├── docx │ │ └── word_unc_injector.rb │ ├── dos │ │ ├── cisco │ │ │ └── ios_http_percentpercent.rb │ │ ├── dhcp │ │ │ └── isc_dhcpd_clientid.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 │ │ │ ├── canon_wireless_printer.rb │ │ │ ├── dell_openmanage_post.rb │ │ │ ├── f5_bigip_apm_max_sessions.rb │ │ │ ├── gzip_bomb_dos.rb │ │ │ ├── hashcollision_dos.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 │ │ │ ├── sonicwall_ssl_format.rb │ │ │ ├── webrick_regex.rb │ │ │ ├── wordpress_long_password_dos.rb │ │ │ └── wordpress_xmlrpc_dos.rb │ │ ├── mdns │ │ │ └── avahi_portzero.rb │ │ ├── misc │ │ │ ├── dopewars.rb │ │ │ ├── ibm_sametime_webplayer_dos.rb │ │ │ └── memcached.rb │ │ ├── ntp │ │ │ └── ntpd_reserved_dos.rb │ │ ├── pptp │ │ │ └── ms02_063_pptp_dos.rb │ │ ├── samba │ │ │ ├── lsa_addprivs_heap.rb │ │ │ ├── lsa_transnames_heap.rb │ │ │ └── read_nttrans_ea_list.rb │ │ ├── sap │ │ │ └── sap_soap_rfc_eps_delete_file.rb │ │ ├── scada │ │ │ ├── beckhoff_twincat.rb │ │ │ ├── d20_tftp_overflow.rb │ │ │ ├── igss9_dataserver.rb │ │ │ └── yokogawa_logsvr.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 │ │ │ ├── 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 │ ├── 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 │ │ ├── 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 │ │ ├── avtech744_dvr_accounts.rb │ │ ├── checkpoint_hostname.rb │ │ ├── chromecast_wifi.rb │ │ ├── citrix_published_applications.rb │ │ ├── citrix_published_bruteforce.rb │ │ ├── coldfusion_pwd_props.rb │ │ ├── corpwatch_lookup_id.rb │ │ ├── corpwatch_lookup_name.rb │ │ ├── d20pass.rb │ │ ├── dns_bruteforce.rb │ │ ├── dns_cache_scraper.rb │ │ ├── dns_info.rb │ │ ├── dns_reverse_lookup.rb │ │ ├── dns_srv_enum.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 │ │ ├── flash_rosetta_jsonp_url_disclosure.rb │ │ ├── hp_enum_perfd.rb │ │ ├── hp_snac_domain_creds.rb │ │ ├── huawei_wifi_info.rb │ │ ├── ibm_sametime_enumerate_users.rb │ │ ├── ibm_sametime_room_brute.rb │ │ ├── ibm_sametime_version.rb │ │ ├── ie_uxss_injection.rb │ │ ├── impersonate_ssl.rb │ │ ├── java_rmi_registry.rb │ │ ├── joomla_weblinks_sqli.rb │ │ ├── konica_minolta_pwd_extract.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 │ │ ├── opennms_xxe.rb │ │ ├── search_email_collector.rb │ │ ├── shodan_search.rb │ │ ├── solarwinds_orion_sqli.rb │ │ ├── ssllabs_scan.rb │ │ ├── trackit_sql_domain_creds.rb │ │ ├── vbulletin_vote_sqli.rb │ │ ├── windows_deployment_services_shares.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 │ ├── 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 │ │ ├── finger │ │ │ └── finger_users.rb │ │ ├── ftp │ │ │ ├── anonymous.rb │ │ │ ├── ftp_login.rb │ │ │ ├── ftp_version.rb │ │ │ └── titanftp_xcrc_traversal.rb │ │ ├── h323 │ │ │ └── h323_version.rb │ │ ├── http │ │ │ ├── a10networks_ax_directory_traversal.rb │ │ │ ├── adobe_xml_inject.rb │ │ │ ├── allegro_rompager_misfortune_cookie.rb │ │ │ ├── apache_activemq_source_disclosure.rb │ │ │ ├── apache_activemq_traversal.rb │ │ │ ├── apache_mod_cgi_bash_env.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 │ │ │ ├── bitweaver_overlay_type_traversal.rb │ │ │ ├── blind_sql_query.rb │ │ │ ├── bmc_trackit_passwd_reset.rb │ │ │ ├── brute_dirs.rb │ │ │ ├── buffalo_login.rb │ │ │ ├── canon_wireless.rb │ │ │ ├── cert.rb │ │ │ ├── chef_webui_login.rb │ │ │ ├── chromecast_webserver.rb │ │ │ ├── cisco_asa_asdm.rb │ │ │ ├── cisco_device_manager.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 │ │ │ ├── cold_fusion_version.rb │ │ │ ├── coldfusion_locale_traversal.rb │ │ │ ├── coldfusion_version.rb │ │ │ ├── concrete5_member_list.rb │ │ │ ├── copy_of_file.rb │ │ │ ├── crawler.rb │ │ │ ├── dell_idrac.rb │ │ │ ├── dir_listing.rb │ │ │ ├── dir_scanner.rb │ │ │ ├── dir_webdav_unicode_bypass.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 │ │ │ ├── dolibarr_login.rb │ │ │ ├── drupal_views_user_enum.rb │ │ │ ├── ektron_cms400net.rb │ │ │ ├── enum_wayback.rb │ │ │ ├── error_sql_injection.rb │ │ │ ├── etherpad_duo_login.rb │ │ │ ├── f5_bigip_virtual_server.rb │ │ │ ├── f5_mgmt_scanner.rb │ │ │ ├── file_same_name_dir.rb │ │ │ ├── files_dir.rb │ │ │ ├── frontpage_login.rb │ │ │ ├── gitlab_login.rb │ │ │ ├── gitlab_user_enum.rb │ │ │ ├── glassfish_login.rb │ │ │ ├── goahead_traversal.rb │ │ │ ├── groupwise_agents_http_traversal.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_traversal.rb │ │ │ ├── http_version.rb │ │ │ ├── httpbl_lookup.rb │ │ │ ├── iis_internal_ip.rb │ │ │ ├── influxdb_enum.rb │ │ │ ├── infovista_enum.rb │ │ │ ├── ipboard_login.rb │ │ │ ├── jboss_status.rb │ │ │ ├── jboss_vulnscan.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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_iis_internal_ip.rb │ │ │ ├── owa_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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── svn_scanner.rb │ │ │ ├── svn_wcdb_scanner.rb │ │ │ ├── sybase_easerver_traversal.rb │ │ │ ├── symantec_brightmail_logfile.rb │ │ │ ├── symantec_web_gateway_login.rb │ │ │ ├── titan_ftp_admin_pwd.rb │ │ │ ├── title.rb │ │ │ ├── tomcat_enum.rb │ │ │ ├── tomcat_mgr_login.rb │ │ │ ├── tplink_traversal_noauth.rb │ │ │ ├── trace.rb │ │ │ ├── trace_axd.rb │ │ │ ├── typo3_bruteforce.rb │ │ │ ├── vcms_login.rb │ │ │ ├── verb_auth_bypass.rb │ │ │ ├── vhost_scanner.rb │ │ │ ├── vmware_server_dir_trav.rb │ │ │ ├── vmware_update_manager_traversal.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_cp_calendar_sqli.rb │ │ │ ├── wordpress_ghost_scanner.rb │ │ │ ├── wordpress_login_enum.rb │ │ │ ├── wordpress_pingback_access.rb │ │ │ ├── wordpress_scanner.rb │ │ │ ├── wordpress_xmlrpc_login.rb │ │ │ ├── wp_contus_video_gallery_sqli.rb │ │ │ ├── wp_dukapress_file_read.rb │ │ │ ├── wp_gimedia_library_file_read.rb │ │ │ ├── wp_mobileedition_file_read.rb │ │ │ ├── wp_simple_backup_file_read.rb │ │ │ ├── xpath.rb │ │ │ ├── yaws_traversal.rb │ │ │ ├── zabbix_login.rb │ │ │ ├── zenworks_assetmanagement_fileaccess.rb │ │ │ └── zenworks_assetmanagement_getconfig.rb │ │ ├── imap │ │ │ └── imap_version.rb │ │ ├── ip │ │ │ └── ipidseq.rb │ │ ├── ipmi │ │ │ ├── ipmi_cipher_zero.rb │ │ │ ├── ipmi_dumphashes.rb │ │ │ └── ipmi_version.rb │ │ ├── kademlia │ │ │ └── server_info.rb │ │ ├── lotus │ │ │ ├── lotus_domino_hashes.rb │ │ │ ├── lotus_domino_login.rb │ │ │ └── lotus_domino_version.rb │ │ ├── misc │ │ │ ├── cctv_dvr_login.rb │ │ │ ├── dvr_config_disclosure.rb │ │ │ ├── ib_service_mgr_info.rb │ │ │ ├── java_rmi_server.rb │ │ │ ├── oki_scanner.rb │ │ │ ├── poisonivy_control_scanner.rb │ │ │ ├── raysharp_dvr_passwords.rb │ │ │ ├── redis_server.rb │ │ │ ├── rosewill_rxs3211_passwords.rb │ │ │ ├── sercomm_backdoor_scanner.rb │ │ │ ├── sunrpc_portmapper.rb │ │ │ └── zenworks_preboot_fileaccess.rb │ │ ├── mongodb │ │ │ └── mongodb_login.rb │ │ ├── motorola │ │ │ └── timbuktu_udp.rb │ │ ├── msf │ │ │ ├── msf_rpc_login.rb │ │ │ └── msf_web_login.rb │ │ ├── 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 │ │ ├── natpmp │ │ │ └── natpmp_portscan.rb │ │ ├── nessus │ │ │ ├── nessus_ntp_login.rb │ │ │ ├── nessus_rest_login.rb │ │ │ ├── nessus_xmlrpc_login.rb │ │ │ └── nessus_xmlrpc_ping.rb │ │ ├── netbios │ │ │ ├── nbname.rb │ │ │ └── nbname_probe.rb │ │ ├── nexpose │ │ │ └── nexpose_api_login.rb │ │ ├── nfs │ │ │ └── nfsmount.rb │ │ ├── ntp │ │ │ ├── ntp_monlist.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 │ │ ├── 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 │ │ │ ├── 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 │ │ ├── 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_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 │ │ │ └── sielco_winlog_fileaccess.rb │ │ ├── sip │ │ │ ├── enumerator.rb │ │ │ ├── enumerator_tcp.rb │ │ │ ├── options.rb │ │ │ ├── options_tcp.rb │ │ │ └── sipdroid_ext_enum.rb │ │ ├── smb │ │ │ ├── pipe_auditor.rb │ │ │ ├── pipe_dcerpc_auditor.rb │ │ │ ├── psexec_loggedin_users.rb │ │ │ ├── smb2.rb │ │ │ ├── smb_enumshares.rb │ │ │ ├── smb_enumusers.rb │ │ │ ├── smb_enumusers_domain.rb │ │ │ ├── smb_login.rb │ │ │ ├── smb_lookupsid.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 │ │ │ ├── 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 │ │ │ ├── cerberus_sftp_enumusers.rb │ │ │ ├── detect_kippo.rb │ │ │ ├── ssh_enumusers.rb │ │ │ ├── ssh_identify_pubkeys.rb │ │ │ ├── ssh_login.rb │ │ │ ├── ssh_login_pubkey.rb │ │ │ └── ssh_version.rb │ │ ├── ssl │ │ │ ├── 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 │ │ │ ├── telnet_encrypt_overflow.rb │ │ │ ├── telnet_login.rb │ │ │ ├── telnet_ruggedcom.rb │ │ │ └── telnet_version.rb │ │ ├── tftp │ │ │ ├── ipswitch_whatsupgold_tftp.rb │ │ │ ├── netdecision_tftp.rb │ │ │ └── tftpbrute.rb │ │ ├── udp_scanner_template.rb │ │ ├── upnp │ │ │ ├── ssdp_amp.rb │ │ │ └── ssdp_msearch.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 │ │ │ ├── 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 │ │ └── x11 │ │ │ └── open_x11.rb │ ├── server │ │ ├── browser_autopwn.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 │ │ │ └── spoofhelper.rb │ │ ├── fakedns.rb │ │ ├── ftp.rb │ │ ├── http_ntlmrelay.rb │ │ ├── icmp_exfil.rb │ │ ├── openssl_heartbeat_client_memory.rb │ │ ├── pxeexploit.rb │ │ ├── socks4a.rb │ │ ├── socks_unc.rb │ │ ├── tftp.rb │ │ ├── tnftp_savefile.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 │ │ ├── llmnr │ │ │ └── llmnr_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 │ └── vsploit │ │ ├── exploit │ │ └── .keep │ │ ├── malware │ │ └── dns │ │ │ ├── dns_mariposa.rb │ │ │ ├── dns_query.rb │ │ │ └── dns_zeus.rb │ │ └── pii │ │ ├── email_pii.rb │ │ └── web_pii.rb ├── encoders │ ├── cmd │ │ ├── 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 │ ├── sparc │ │ └── longxor_tag.rb │ ├── x64 │ │ └── xor.rb │ └── x86 │ │ ├── add_sub.rb │ │ ├── alpha_mixed.rb │ │ ├── alpha_upper.rb │ │ ├── avoid_underscore_tolower.rb │ │ ├── avoid_utf8_tolower.rb │ │ ├── bloxor.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 │ │ ├── shikata_ga_nai.rb │ │ ├── single_static_bit.rb │ │ ├── unicode_mixed.rb │ │ └── unicode_upper.rb ├── exploits │ ├── aix │ │ ├── local │ │ │ └── ibstat_path.rb │ │ ├── rpc_cmsd_opcode21.rb │ │ └── rpc_ttdbserverd_realpath.rb │ ├── android │ │ ├── browser │ │ │ ├── samsung_knox_smdm_url.rb │ │ │ └── webview_addjavascriptinterface.rb │ │ ├── fileformat │ │ │ └── adobe_reader_pdf_js_interface.rb │ │ └── local │ │ │ └── futex_requeue.rb │ ├── apple_ios │ │ ├── browser │ │ │ └── safari_libtiff.rb │ │ ├── email │ │ │ └── mobilemail_libtiff.rb │ │ └── ssh │ │ │ └── cydia_default_ssh.rb │ ├── bsdi │ │ └── softcart │ │ │ └── mercantec_softcart.rb │ ├── dialup │ │ └── multi │ │ │ └── login │ │ │ └── manyargs.rb │ ├── firefox │ │ └── local │ │ │ └── exec_shellcode.rb │ ├── freebsd │ │ ├── ftp │ │ │ └── proftp_telnet_iac.rb │ │ ├── local │ │ │ └── mmap.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 │ │ │ ├── airties_login_cgi_bof.rb │ │ │ ├── alcatel_omnipcx_mastercgi_exec.rb │ │ │ ├── alienvault_sqli_exec.rb │ │ │ ├── astium_sqli_upload.rb │ │ │ ├── belkin_login_bof.rb │ │ │ ├── centreon_sqli_exec.rb │ │ │ ├── cfme_manageiq_evm_upload_exec.rb │ │ │ ├── ddwrt_cgibin_exec.rb │ │ │ ├── dlink_authentication_cgi_bof.rb │ │ │ ├── dlink_command_php_exec_noauth.rb │ │ │ ├── dlink_diagnostic_exec_noauth.rb │ │ │ ├── dlink_dir300_exec_telnet.rb │ │ │ ├── dlink_dir605l_captcha_bof.rb │ │ │ ├── dlink_dir615_up_exec.rb │ │ │ ├── dlink_dspw215_info_cgi_bof.rb │ │ │ ├── dlink_hedwig_cgi_bof.rb │ │ │ ├── dlink_hnap_bof.rb │ │ │ ├── dlink_hnap_header_exec_noauth.rb │ │ │ ├── dlink_upnp_exec_noauth.rb │ │ │ ├── dolibarr_cmd_exec.rb │ │ │ ├── dreambox_openpli_shell.rb │ │ │ ├── esva_exec.rb │ │ │ ├── f5_icontrol_exec.rb │ │ │ ├── foreman_openstack_satellite_code_exec.rb │ │ │ ├── fritzbox_echo_exec.rb │ │ │ ├── gitlist_exec.rb │ │ │ ├── gpsd_format_string.rb │ │ │ ├── groundwork_monarch_cmd_exec.rb │ │ │ ├── hp_system_management.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 │ │ │ ├── multi_ncc_ping_exec.rb │ │ │ ├── mutiny_frontend_upload.rb │ │ │ ├── netgear_dgn1000b_setup_exec.rb │ │ │ ├── netgear_dgn2200b_pppoe_exec.rb │ │ │ ├── netgear_readynas_exec.rb │ │ │ ├── nginx_chunked_size.rb │ │ │ ├── openfiler_networkcard_exec.rb │ │ │ ├── pandora_fms_exec.rb │ │ │ ├── pandora_fms_sqli.rb │ │ │ ├── peercast_url.rb │ │ │ ├── pineapp_ldapsyncnow_exec.rb │ │ │ ├── pineapp_livelog_exec.rb │ │ │ ├── pineapp_test_li_conn_exec.rb │ │ │ ├── piranha_passwd_exec.rb │ │ │ ├── raidsonic_nas_ib5220_exec_noauth.rb │ │ │ ├── railo_cfml_rfi.rb │ │ │ ├── realtek_miniigd_upnp_exec_noauth.rb │ │ │ ├── seagate_nas_php_exec_noauth.rb │ │ │ ├── smt_ipmi_close_window_bof.rb │ │ │ ├── sophos_wpa_iface_exec.rb │ │ │ ├── sophos_wpa_sblistpack_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 │ │ │ ├── vap2500_tools_command_exec.rb │ │ │ ├── vcms_upload.rb │ │ │ ├── wanem_exec.rb │ │ │ ├── webcalendar_settings_exec.rb │ │ │ ├── webid_converter.rb │ │ │ ├── zabbix_sqli.rb │ │ │ ├── zen_load_balancer_exec.rb │ │ │ └── zenoss_showdaemonxmlconfig_exec.rb │ │ ├── ids │ │ │ ├── alienvault_centerd_soap_exec.rb │ │ │ └── snortbopre.rb │ │ ├── imap │ │ │ └── imap_uw_lsub.rb │ │ ├── local │ │ │ ├── desktop_privilege_escalation.rb │ │ │ ├── hp_smhstart.rb │ │ │ ├── kloxo_lxsuexec.rb │ │ │ ├── pkexec.rb │ │ │ ├── sock_sendpage.rb │ │ │ ├── sophos_wpa_clear_keys.rb │ │ │ ├── udev_netlink.rb │ │ │ ├── vmware_mount.rb │ │ │ └── zpanel_zsudo.rb │ │ ├── misc │ │ │ ├── accellion_fta_mpipe2.rb │ │ │ ├── drb_remote_codeexec.rb │ │ │ ├── gld_postfix.rb │ │ │ ├── hikvision_rtsp_bof.rb │ │ │ ├── hp_data_protector_cmd_exec.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 │ │ │ ├── lprng_format_string.rb │ │ │ ├── mongod_native_helper.rb │ │ │ ├── nagios_nrpe_arguments.rb │ │ │ ├── netsupport_manager_agent.rb │ │ │ ├── novell_edirectory_ncp_bof.rb │ │ │ ├── sercomm_exec.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 │ │ │ ├── lsa_transnames_heap.rb │ │ │ ├── setinfopolicy_heap.rb │ │ │ └── trans2open.rb │ │ ├── smtp │ │ │ ├── exim4_dovecot_exec.rb │ │ │ └── exim_gethostbyname_bof.rb │ │ ├── ssh │ │ │ ├── ceragon_fibeair_known_privkey.rb │ │ │ ├── f5_bigip_known_privkey.rb │ │ │ ├── loadbalancerorg_enterprise_known_privkey.rb │ │ │ ├── quantum_dxi_known_privkey.rb │ │ │ ├── quantum_vmpro_backdoor.rb │ │ │ └── symantec_smg_ssh.rb │ │ ├── telnet │ │ │ └── telnet_encrypt_keyid.rb │ │ └── upnp │ │ │ ├── dlink_upnp_msearch_exec.rb │ │ │ └── miniupnpd_soap_bof.rb │ ├── multi │ │ ├── browser │ │ │ ├── adobe_flash_net_connection_confusion.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_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 │ │ │ ├── opera_configoverwrite.rb │ │ │ ├── opera_historysearch.rb │ │ │ └── qtjava_pointer.rb │ │ ├── elasticsearch │ │ │ ├── script_mvel_rce.rb │ │ │ └── search_groovy_script.rb │ │ ├── fileformat │ │ │ ├── adobe_u3d_meshcont.rb │ │ │ ├── js_unpacker_eval_injection.rb │ │ │ ├── maple_maplet.rb │ │ │ ├── nodejs_js_yaml_load_code_exec.rb │ │ │ └── peazip_command_injection.rb │ │ ├── ftp │ │ │ ├── pureftpd_bash_env_exec.rb │ │ │ └── wuftpd_site_exec_format.rb │ │ ├── gdb │ │ │ └── gdb_server_exec.rb │ │ ├── handler.rb │ │ ├── http │ │ │ ├── activecollab_chat.rb │ │ │ ├── ajaxplorer_checkinstall_exec.rb │ │ │ ├── apache_mod_cgi_bash_env_exec.rb │ │ │ ├── apache_roller_ognl_injection.rb │ │ │ ├── apprain_upload_exec.rb │ │ │ ├── auxilium_upload_exec.rb │ │ │ ├── axis2_deployer.rb │ │ │ ├── cisco_dcnm_upload.rb │ │ │ ├── coldfusion_rds.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 │ │ │ ├── gitlab_shell_exec.rb │ │ │ ├── gitorious_graph.rb │ │ │ ├── glassfish_deployer.rb │ │ │ ├── glossword_upload_exec.rb │ │ │ ├── glpi_install_rce.rb │ │ │ ├── horde_href_backdoor.rb │ │ │ ├── hp_sitescope_issuesiebelcmd.rb │ │ │ ├── hp_sitescope_uploadfileshandler.rb │ │ │ ├── hp_sys_mgmt_exec.rb │ │ │ ├── hyperic_hq_script_console.rb │ │ │ ├── ispconfig_php_exec.rb │ │ │ ├── jboss_bshdeployer.rb │ │ │ ├── jboss_deploymentfilerepository.rb │ │ │ ├── jboss_invoke_deploy.rb │ │ │ ├── jboss_maindeployer.rb │ │ │ ├── jboss_seam_upload_exec.rb │ │ │ ├── jenkins_script_console.rb │ │ │ ├── kordil_edms_upload_exec.rb │ │ │ ├── lcms_php_exec.rb │ │ │ ├── log1cms_ajax_create_folder.rb │ │ │ ├── manage_engine_dc_pmp_sqli.rb │ │ │ ├── manageengine_auth_upload.rb │ │ │ ├── manageengine_search_sqli.rb │ │ │ ├── mantisbt_php_exec.rb │ │ │ ├── mediawiki_thumb.rb │ │ │ ├── mobilecartly_upload_exec.rb │ │ │ ├── moodle_cmd_exec.rb │ │ │ ├── movabletype_upgrade_exec.rb │ │ │ ├── mutiny_subnetmask_exec.rb │ │ │ ├── nas4free_php_exec.rb │ │ │ ├── netwin_surgeftp_exec.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_reports_rce.rb │ │ │ ├── pandora_upload_exec.rb │ │ │ ├── php_cgi_arg_injection.rb │ │ │ ├── php_volunteer_upload_exec.rb │ │ │ ├── phpldapadmin_query_engine.rb │ │ │ ├── phpmoadmin_exec.rb │ │ │ ├── phpmyadmin_3522_backdoor.rb │ │ │ ├── phpmyadmin_preg_replace.rb │ │ │ ├── phpscheduleit_start_date.rb │ │ │ ├── phptax_exec.rb │ │ │ ├── phpwiki_ploticus_exec.rb │ │ │ ├── plone_popen2.rb │ │ │ ├── pmwiki_pagelist.rb │ │ │ ├── polarcms_upload_exec.rb │ │ │ ├── processmaker_exec.rb │ │ │ ├── qdpm_upload_exec.rb │ │ │ ├── rails_json_yaml_code_exec.rb │ │ │ ├── rails_secret_deserialization.rb │ │ │ ├── rails_xml_yaml_code_exec.rb │ │ │ ├── rocket_servergraph_file_requestor_rce.rb │ │ │ ├── sflog_upload_exec.rb │ │ │ ├── sit_file_upload.rb │ │ │ ├── snortreport_exec.rb │ │ │ ├── solarwinds_store_manager_auth_filter.rb │ │ │ ├── sonicwall_gms_upload.rb │ │ │ ├── splunk_mappy_exec.rb │ │ │ ├── splunk_upload_app_exec.rb │ │ │ ├── spree_search_exec.rb │ │ │ ├── spree_searchlogic_exec.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_include_params.rb │ │ │ ├── stunshell_eval.rb │ │ │ ├── stunshell_exec.rb │ │ │ ├── sun_jsws_dav_options.rb │ │ │ ├── testlink_upload_exec.rb │ │ │ ├── tomcat_mgr_deploy.rb │ │ │ ├── tomcat_mgr_upload.rb │ │ │ ├── traq_plugin_exec.rb │ │ │ ├── uptime_file_upload.rb │ │ │ ├── v0pcr3w_exec.rb │ │ │ ├── vbseo_proc_deutf.rb │ │ │ ├── visual_mining_netcharts_upload.rb │ │ │ ├── vtiger_install_rce.rb │ │ │ ├── vtiger_php_exec.rb │ │ │ ├── vtiger_soap_upload.rb │ │ │ ├── webpagetest_upload_exec.rb │ │ │ ├── wikka_spam_exec.rb │ │ │ ├── x7chat2_php_exec.rb │ │ │ ├── zabbix_script_exec.rb │ │ │ ├── zenworks_configuration_management_upload.rb │ │ │ └── zenworks_control_center_upload.rb │ │ ├── ids │ │ │ └── snort_dce_rpc.rb │ │ ├── misc │ │ │ ├── batik_svg_java.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 │ │ │ ├── openview_omniback_exec.rb │ │ │ ├── pbot_exec.rb │ │ │ ├── persistent_hpca_radexec_exec.rb │ │ │ ├── ra1nx_pubcall_exec.rb │ │ │ ├── veritas_netbackup_cmdexec.rb │ │ │ ├── wireshark_lwres_getaddrbyname.rb │ │ │ ├── wireshark_lwres_getaddrbyname_loop.rb │ │ │ └── zend_java_bridge.rb │ │ ├── ntp │ │ │ └── ntp_overflow.rb │ │ ├── php │ │ │ └── php_unserialize_zval_cookie.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 │ │ ├── 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 │ │ │ ├── mozilla_mchannel.rb │ │ │ ├── safari_file_policy.rb │ │ │ ├── safari_metadata_archive.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 │ │ │ ├── iokit_keyboard_root.rb │ │ │ ├── nfs_mount_root.rb │ │ │ ├── persistence.rb │ │ │ ├── rootpipe.rb │ │ │ ├── setuid_tunnelblick.rb │ │ │ ├── setuid_viscosity.rb │ │ │ ├── sudo_password_bypass.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 │ ├── solaris │ │ ├── dtspcd │ │ │ └── heap_noir.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 │ │ ├── ftp │ │ │ ├── proftpd_133c_backdoor.rb │ │ │ ├── proftpd_modcopy_exec.rb │ │ │ └── vsftpd_234_backdoor.rb │ │ ├── http │ │ │ ├── contentkeeperweb_mimencode.rb │ │ │ ├── ctek_skyrouter.rb │ │ │ ├── freepbx_callmenum.rb │ │ │ ├── lifesize_room.rb │ │ │ ├── twiki_debug_plugins.rb │ │ │ └── vmturbo_vmtadmin_exec_noauth.rb │ │ ├── irc │ │ │ └── unreal_ircd_3281_backdoor.rb │ │ ├── local │ │ │ └── setuid_nmap.rb │ │ ├── misc │ │ │ ├── distcc_exec.rb │ │ │ ├── qnx_qconn_exec.rb │ │ │ ├── spamassassin_exec.rb │ │ │ ├── xerox_mfp.rb │ │ │ └── zabbix_agent_exec.rb │ │ ├── smtp │ │ │ ├── clamav_milter_blackhole.rb │ │ │ └── exim4_string_format.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 │ │ │ ├── egallery_upload_exec.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_comjce_imgmanager.rb │ │ │ ├── joomla_media_upload_exec.rb │ │ │ ├── joomla_tinybrowser.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_wordpress_foxypress.rb │ │ │ ├── php_wordpress_infusionsoft.rb │ │ │ ├── php_wordpress_lastpost.rb │ │ │ ├── php_wordpress_optimizepress.rb │ │ │ ├── php_wordpress_total_cache.rb │ │ │ ├── php_xmlrpc_eval.rb │ │ │ ├── phpbb_highlight.rb │ │ │ ├── phpmyadmin_config.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_unserialize_exec.rb │ │ │ ├── tikiwiki_graph_formula_exec.rb │ │ │ ├── tikiwiki_jhot_exec.rb │ │ │ ├── tikiwiki_unserialize_exec.rb │ │ │ ├── trixbox_langchoice.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 │ │ │ ├── webmin_show_cgi_exec.rb │ │ │ ├── webtester_exec.rb │ │ │ ├── wp_admin_shell_upload.rb │ │ │ ├── wp_advanced_custom_fields_exec.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_nmediawebsite_file_upload.rb │ │ │ ├── wp_optimizepress_upload.rb │ │ │ ├── wp_photo_gallery_unrestricted_file_upload.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 │ └── 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 │ │ ├── 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_net_connection_confusion.rb │ │ ├── adobe_flash_otf_font.rb │ │ ├── adobe_flash_pcre.rb │ │ ├── adobe_flash_pixel_bender_bof.rb │ │ ├── adobe_flash_regex_value.rb │ │ ├── adobe_flash_rtmp.rb │ │ ├── adobe_flash_sps.rb │ │ ├── adobe_flash_uncompress_zlib_uaf.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 │ │ ├── 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 │ │ ├── facebook_extractiptc.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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_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 │ │ ├── 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 │ │ ├── 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 │ │ ├── ms_visual_basic_vbp.rb │ │ ├── mswin_tiff_overflow.rb │ │ ├── msworks_wkspictureinterface.rb │ │ ├── mymp3player_m3u.rb │ │ ├── netop.rb │ │ ├── nuance_pdf_launch_overflow.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 │ │ ├── somplplayer_m3u.rb │ │ ├── subtitle_processor_m3u_bof.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 │ │ ├── videolan_tivo.rb │ │ ├── videospirit_visprj.rb │ │ ├── visio_dxf_bof.rb │ │ ├── visiwave_vwr_type.rb │ │ ├── vlc_modplug_s3m.rb │ │ ├── vlc_realtext.rb │ │ ├── vlc_smb_uri.rb │ │ ├── vlc_webm.rb │ │ ├── vuplayer_cue.rb │ │ ├── vuplayer_m3u.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 │ │ └── 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 │ │ ├── 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 │ │ ├── ftpsynch_list_reply.rb │ │ ├── gekkomgr_list_reply.rb │ │ ├── globalscapeftp_input.rb │ │ ├── goldenftp_pass_bof.rb │ │ ├── httpdx_tolog_format.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_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 │ │ ├── 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 │ │ ├── easyftp_list.rb │ │ ├── edirectory_host.rb │ │ ├── edirectory_imonitor.rb │ │ ├── efs_easychatserver_username.rb │ │ ├── efs_fmws_userid_bof.rb │ │ ├── ektron_xslt_exec.rb │ │ ├── ericom_access_now_bof.rb │ │ ├── ezserver_http.rb │ │ ├── fdm_auth_header.rb │ │ ├── generic_http_dll_injection.rb │ │ ├── hp_autopass_license_traversal.rb │ │ ├── hp_imc_bims_upload.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_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_uploadimage_file_upload.rb │ │ ├── kolibri_http.rb │ │ ├── landesk_thinkmanagement_upload_asp.rb │ │ ├── lexmark_markvision_gfd_upload.rb │ │ ├── mailenable_auth_header.rb │ │ ├── manageengine_apps_mngr.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 │ │ ├── novell_imanager_upload.rb │ │ ├── novell_mdm_lfi.rb │ │ ├── novell_messenger_acceptlang.rb │ │ ├── nowsms.rb │ │ ├── oracle9i_xdb_pass.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 │ │ ├── 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 │ │ ├── sysax_create_folder.rb │ │ ├── trackercam_phparg_overflow.rb │ │ ├── trackit_file_upload.rb │ │ ├── trendmicro_officescan.rb │ │ ├── ultraminihttp_bof.rb │ │ ├── umbraco_upload_aspx.rb │ │ ├── vmware_vcenter_chargeback_upload.rb │ │ ├── webster_http.rb │ │ ├── xampp_webdav_upload_php.rb │ │ ├── xitami_if_mod_since.rb │ │ ├── zenworks_assetmgmt_uploadservlet.rb │ │ └── zenworks_uploadservlet.rb │ │ ├── iis │ │ ├── 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.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 │ │ ├── always_install_elevated.rb │ │ ├── ask.rb │ │ ├── bthpan.rb │ │ ├── bypassuac.rb │ │ ├── bypassuac_injection.rb │ │ ├── current_user_psexec.rb │ │ ├── ikeext_service.rb │ │ ├── ipass_launch_app.rb │ │ ├── lenovo_systemupdate.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 │ │ ├── ms_ndproxy.rb │ │ ├── novell_client_nicm.rb │ │ ├── novell_client_nwfs.rb │ │ ├── ntapphelpcachecontrol.rb │ │ ├── nvidia_nvsvc.rb │ │ ├── payload_inject.rb │ │ ├── persistence.rb │ │ ├── powershell_cmd_upgrade.rb │ │ ├── powershell_remoting.rb │ │ ├── ppr_flatten_rec.rb │ │ ├── pxeexploit.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 │ │ └── wmi.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 │ │ ├── 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 │ │ ├── gimp_script_fu.rb │ │ ├── hp_dataprotector_cmd_exec.rb │ │ ├── hp_dataprotector_crs.rb │ │ ├── hp_dataprotector_dtbclslogin.rb │ │ ├── hp_dataprotector_exec_bar.rb │ │ ├── hp_dataprotector_new_folder.rb │ │ ├── hp_dataprotector_traversal.rb │ │ ├── hp_imc_uam.rb │ │ ├── hp_loadrunner_magentproc.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 │ │ ├── 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 │ │ ├── itunes_extm3u_bof.rb │ │ ├── landesk_aolnsrvr.rb │ │ ├── lianja_db_net.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 │ │ ├── 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 │ │ ├── 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_linkcrawler.rb │ │ ├── mssql_payload.rb │ │ └── mssql_payload_sqli.rb │ │ ├── mysql │ │ ├── mysql_mof.rb │ │ ├── mysql_payload.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 │ │ ├── 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 │ │ ├── citect_scada_odbc.rb │ │ ├── codesys_gateway_server_traversal.rb │ │ ├── codesys_web_server.rb │ │ ├── daq_factory_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 │ │ ├── netidentity_xtierrpcpipe.rb │ │ ├── psexec.rb │ │ ├── psexec_psh.rb │ │ ├── smb_relay.rb │ │ └── timbuktu_plughntcommand_bof.rb │ │ ├── smtp │ │ ├── mailcarrier_smtp_ehlo.rb │ │ ├── mercury_cram_md5.rb │ │ ├── ms03_046_exchange2000_xexch50.rb │ │ ├── njstar_smtp_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 │ ├── armle │ │ └── simple.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 │ │ ├── bsd │ │ │ ├── sparc │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ │ ├── x64 │ │ │ │ ├── exec.rb │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ └── shell_reverse_tcp.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 │ │ │ ├── unix │ │ │ │ ├── bind_awk.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_ruby.rb │ │ │ │ ├── bind_ruby_ipv6.rb │ │ │ │ ├── bind_zsh.rb │ │ │ │ ├── generic.rb │ │ │ │ ├── interact.rb │ │ │ │ ├── reverse.rb │ │ │ │ ├── reverse_awk.rb │ │ │ │ ├── reverse_bash.rb │ │ │ │ ├── reverse_bash_telnet_ssl.rb │ │ │ │ ├── reverse_lua.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_ruby.rb │ │ │ │ ├── reverse_ruby_ssl.rb │ │ │ │ ├── reverse_ssl_double_telnet.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 │ │ │ ├── armle │ │ │ │ ├── adduser.rb │ │ │ │ ├── exec.rb │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ │ ├── mipsbe │ │ │ │ ├── exec.rb │ │ │ │ ├── reboot.rb │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ │ ├── mipsle │ │ │ │ ├── exec.rb │ │ │ │ ├── reboot.rb │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ │ ├── ppc │ │ │ │ ├── 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 │ │ │ ├── x64 │ │ │ │ ├── exec.rb │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ ├── shell_bind_tcp_random_port.rb │ │ │ │ ├── shell_find_port.rb │ │ │ │ └── shell_reverse_tcp.rb │ │ │ └── x86 │ │ │ │ ├── adduser.rb │ │ │ │ ├── chmod.rb │ │ │ │ ├── exec.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_tcp2.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 │ │ │ │ ├── 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 │ │ │ ├── shell_reverse_tcp.rb │ │ │ └── shell_reverse_tcp_ssl.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_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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── 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_uuid.rb │ │ └── windows │ │ │ ├── bind_hidden_ipknock_tcp.rb │ │ │ ├── bind_hidden_tcp.rb │ │ │ ├── bind_ipv6_tcp.rb │ │ │ ├── bind_ipv6_tcp_uuid.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_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_winhttp.rb │ │ │ ├── reverse_winhttps.rb │ │ │ └── x64 │ │ │ ├── bind_ipv6_tcp.rb │ │ │ ├── bind_ipv6_tcp_uuid.rb │ │ │ ├── bind_tcp.rb │ │ │ ├── bind_tcp_uuid.rb │ │ │ ├── reverse_http.rb │ │ │ ├── reverse_https.rb │ │ │ ├── reverse_tcp.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 │ │ ├── armle │ │ │ └── shell.rb │ │ ├── mipsbe │ │ │ └── shell.rb │ │ ├── mipsle │ │ │ └── shell.rb │ │ ├── x64 │ │ │ └── shell.rb │ │ └── x86 │ │ │ ├── meterpreter.rb │ │ │ └── shell.rb │ │ ├── netware │ │ └── shell.rb │ │ ├── osx │ │ ├── armle │ │ │ ├── execute.rb │ │ │ └── shell.rb │ │ ├── ppc │ │ │ └── shell.rb │ │ ├── x64 │ │ │ └── dupandexecve.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 │ ├── cisco │ └── gather │ │ └── enum_cisco.rb │ ├── firefox │ ├── gather │ │ ├── cookies.rb │ │ ├── history.rb │ │ ├── passwords.rb │ │ └── xss.rb │ └── manage │ │ └── webcam_chat.rb │ ├── linux │ ├── gather │ │ ├── checkvm.rb │ │ ├── ecryptfs_creds.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 │ │ ├── hashdump.rb │ │ ├── mount_cifs_creds.rb │ │ └── pptpd_chap_secrets.rb │ └── manage │ │ └── download_exec.rb │ ├── multi │ ├── escalate │ │ ├── cups_root_file_read.rb │ │ └── metasploit_pcaplog.rb │ ├── gather │ │ ├── apple_ios_backup.rb │ │ ├── check_malware.rb │ │ ├── dbvis_enum.rb │ │ ├── dns_bruteforce.rb │ │ ├── dns_reverse_lookup.rb │ │ ├── dns_srv_lookup.rb │ │ ├── enum_vbox.rb │ │ ├── env.rb │ │ ├── fetchmailrc_creds.rb │ │ ├── filezilla_client_cred.rb │ │ ├── find_vmx.rb │ │ ├── firefox_creds.rb │ │ ├── gpg_creds.rb │ │ ├── lastpass_creds.rb │ │ ├── multi_command.rb │ │ ├── netrc_creds.rb │ │ ├── pgpass_creds.rb │ │ ├── pidgin_cred.rb │ │ ├── ping_sweep.rb │ │ ├── remmina_creds.rb │ │ ├── resolve_hosts.rb │ │ ├── rubygems_api_key.rb │ │ ├── run_console_rc_file.rb │ │ ├── skype_enum.rb │ │ ├── ssh_creds.rb │ │ ├── thunderbird_creds.rb │ │ └── wlan_geolocate.rb │ ├── general │ │ ├── close.rb │ │ └── execute.rb │ └── manage │ │ ├── dbvis_add_db_admin.rb │ │ ├── dbvis_query.rb │ │ ├── multi_post.rb │ │ ├── play_youtube.rb │ │ ├── record_mic.rb │ │ ├── shell_to_meterpreter.rb │ │ ├── sudo.rb │ │ └── system_session.rb │ ├── osx │ ├── admin │ │ └── say.rb │ ├── capture │ │ ├── keylog_recorder.rb │ │ └── screen.rb │ ├── gather │ │ ├── autologin_password.rb │ │ ├── enum_adium.rb │ │ ├── enum_airport.rb │ │ ├── enum_chicken_vnc_profile.rb │ │ ├── enum_colloquy.rb │ │ ├── enum_keychain.rb │ │ ├── enum_osx.rb │ │ ├── hashdump.rb │ │ ├── password_prompt_spoof.rb │ │ └── safari_lastsession.rb │ └── manage │ │ ├── mount_share.rb │ │ ├── record_mic.rb │ │ ├── vpn.rb │ │ └── webcam.rb │ ├── solaris │ └── 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 │ ├── gather │ ├── arp_scanner.rb │ ├── bitcoin_jacker.rb │ ├── cachedump.rb │ ├── checkvm.rb │ ├── credentials │ │ ├── bulletproof_ftp.rb │ │ ├── coreftp.rb │ │ ├── credential_collector.rb │ │ ├── domain_hashdump.rb │ │ ├── dyndns.rb │ │ ├── enum_cred_store.rb │ │ ├── enum_picasa_pwds.rb │ │ ├── epo_sql.rb │ │ ├── filezilla_server.rb │ │ ├── flashfxp.rb │ │ ├── ftpnavigator.rb │ │ ├── ftpx.rb │ │ ├── gpp.rb │ │ ├── idm.rb │ │ ├── imail.rb │ │ ├── imvu.rb │ │ ├── mcafee_vse_hashdump.rb │ │ ├── meebo.rb │ │ ├── mremote.rb │ │ ├── mssql_local_hashdump.rb │ │ ├── nimbuzz.rb │ │ ├── outlook.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_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_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_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_services.rb │ ├── enum_shares.rb │ ├── enum_snmp.rb │ ├── enum_termserv.rb │ ├── enum_tokens.rb │ ├── enum_tomcat.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 │ ├── memory_grep.rb │ ├── netlm_downgrade.rb │ ├── outlook.rb │ ├── phish_windows_credentials.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 │ ├── autoroute.rb │ ├── change_password.rb │ ├── clone_proxy_settings.rb │ ├── delete_user.rb │ ├── download_exec.rb │ ├── driver_loader.rb │ ├── enable_rdp.rb │ ├── enable_support_account.rb │ ├── ie_proxypac.rb │ ├── inject_ca.rb │ ├── inject_host.rb │ ├── migrate.rb │ ├── mssql_local_auth_bypass.rb │ ├── multi_meterpreter_inject.rb │ ├── nbd_server.rb │ ├── payload_inject.rb │ ├── portproxy.rb │ ├── powershell │ │ └── exec_powershell.rb │ ├── pptp_tunnel.rb │ ├── pxeexploit.rb │ ├── reflective_dll_inject.rb │ ├── remove_ca.rb │ ├── remove_host.rb │ ├── rpcapd_start.rb │ ├── run_as.rb │ ├── sdel.rb │ ├── smart_migrate.rb │ ├── vss_create.rb │ ├── vss_list.rb │ ├── vss_mount.rb │ ├── vss_set_storage.rb │ ├── vss_storage.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_profile.rb ├── msfbinscan ├── msfcli ├── msfconsole ├── msfd ├── msfelfscan ├── msfmachscan ├── msfpescan ├── msfrop ├── msfrpc ├── msfrpcd ├── msfupdate ├── msfvenom ├── plugins ├── alias.rb ├── auto_add_route.rb ├── db_credcollect.rb ├── db_tracker.rb ├── event_tester.rb ├── ffautoregen.rb ├── ips_filter.rb ├── lab.rb ├── msfd.rb ├── msgrpc.rb ├── nessus.rb ├── nexpose.rb ├── openvas.rb ├── pcap_log.rb ├── request.rb ├── sample.rb ├── session_tagger.rb ├── socket_logger.rb ├── sounds.rb ├── sqlmap.rb ├── thread.rb ├── token_adduser.rb ├── token_hunter.rb ├── wiki.rb └── wmap.rb ├── script ├── cucumber └── 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 │ ├── win32-sshclient.rb │ ├── win32-sshserver.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 │ ├── basic_discovery.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 │ └── 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 │ ├── 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 │ │ │ ├── credential_collection_spec.rb │ │ │ ├── credential_spec.rb │ │ │ ├── database_spec.rb │ │ │ ├── jtr │ │ │ ├── cracker_spec.rb │ │ │ ├── invalid_wordlist_spec.rb │ │ │ └── wordlist_spec.rb │ │ │ ├── login_scanner │ │ │ ├── afp_spec.rb │ │ │ ├── axis2_spec.rb │ │ │ ├── base_spec.rb │ │ │ ├── buffalo_spec.rb │ │ │ ├── chef_webui_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 │ │ │ ├── pop3_spec.rb │ │ │ ├── postgres_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_rpc_spec.rb │ │ │ └── zabbix_spec.rb │ │ │ └── login_scanner_spec.rb │ ├── msf │ │ ├── base │ │ │ ├── sessions │ │ │ │ └── meterpreter_spec.rb │ │ │ └── simple │ │ │ │ └── framework_spec.rb │ │ ├── core │ │ │ ├── author_spec.rb │ │ │ ├── auxiliary │ │ │ │ ├── drdos_spec.rb │ │ │ │ └── kademlia_spec.rb │ │ │ ├── data_store_spec.rb │ │ │ ├── encoded_payload_spec.rb │ │ │ ├── exe │ │ │ │ ├── segment_appender_spec.rb │ │ │ │ └── segment_injector_spec.rb │ │ │ ├── exploit │ │ │ │ ├── capture_spec.rb │ │ │ │ ├── cmdstager_spec.rb │ │ │ │ ├── http │ │ │ │ │ ├── client_spec.rb │ │ │ │ │ └── server_spec.rb │ │ │ │ ├── powershell_spec.rb │ │ │ │ ├── remote │ │ │ │ │ ├── browser_exploit_server_spec.rb │ │ │ │ │ ├── firefox_addon_generator_spec.rb │ │ │ │ │ └── firefox_privilege_escalation_spec.rb │ │ │ │ └── smb │ │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ │ ├── metasploit_class_compatibility_error_spec.rb │ │ │ │ ├── namespace_spec.rb │ │ │ │ └── version_compatibility_error_spec.rb │ │ │ ├── opt_address_range_spec.rb │ │ │ ├── opt_address_spec.rb │ │ │ ├── opt_bool_spec.rb │ │ │ ├── opt_enum_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 │ │ │ │ └── windows │ │ │ │ │ ├── mssql_spec.rb │ │ │ │ │ ├── priv_spec.rb │ │ │ │ │ └── runas_spec.rb │ │ │ ├── reference_spec.rb │ │ │ ├── rpc │ │ │ │ └── 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 │ │ ├── http │ │ │ ├── jboss │ │ │ │ ├── base_spec.rb │ │ │ │ ├── bean_shell_scripts_spec.rb │ │ │ │ ├── bean_shell_spec.rb │ │ │ │ ├── deployment_file_repository_scripts_spec.rb │ │ │ │ └── deployment_file_repository_spec.rb │ │ │ ├── typo3_spec.rb │ │ │ └── wordpress │ │ │ │ ├── base_spec.rb │ │ │ │ ├── login_spec.rb │ │ │ │ └── version_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 │ │ ├── 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 │ │ ├── service_state_spec.rb │ │ └── ui │ │ │ └── console │ │ │ └── command_dispatcher │ │ │ ├── auxiliary_spec.rb │ │ │ ├── core_spec.rb │ │ │ ├── db_spec.rb │ │ │ └── exploit_spec.rb │ └── rex │ │ ├── arch │ │ ├── sparc_spec.rb │ │ └── x86_spec.rb │ │ ├── arch_spec.rb │ │ ├── encoder │ │ ├── alpha2 │ │ │ ├── alpha_mixed_spec.rb │ │ │ ├── alpha_upper_spec.rb │ │ │ ├── generic_spec.rb │ │ │ ├── unicode_mixed_spec.rb │ │ │ └── unicode_upper_spec.rb │ │ ├── ndr_spec.rb │ │ ├── nonalpha_spec.rb │ │ └── xdr_spec.rb │ │ ├── encoding │ │ └── xor │ │ │ ├── byte_spec.rb │ │ │ ├── dword_spec.rb │ │ │ ├── qword_spec.rb │ │ │ └── word_spec.rb │ │ ├── exploitation │ │ ├── cmdstager │ │ │ ├── base_spec.rb │ │ │ ├── bourne_spec.rb │ │ │ ├── debug_asm_spec.rb │ │ │ ├── debug_write_spec.rb │ │ │ ├── echo_spec.rb │ │ │ ├── printf_spec.rb │ │ │ ├── tftp_spec.rb │ │ │ └── vbs_spec.rb │ │ ├── encryptjs_spec.rb │ │ ├── heaplib_spec.rb │ │ ├── js │ │ │ ├── detect_spec.rb │ │ │ ├── memory_spec.rb │ │ │ ├── network_spec.rb │ │ │ └── utils_spec.rb │ │ ├── jsobfu_spec.rb │ │ └── ropdb_spec.rb │ │ ├── file_utils_spec.rb │ │ ├── image_source │ │ ├── disk_spec.rb │ │ └── memory_spec.rb │ │ ├── java │ │ └── serialization │ │ │ ├── builder_spec.rb │ │ │ └── model │ │ │ ├── annotation_spec.rb │ │ │ ├── block_data_long_spec.rb │ │ │ ├── block_data_spec.rb │ │ │ ├── class_desc_spec.rb │ │ │ ├── field_spec.rb │ │ │ ├── long_utf_spec.rb │ │ │ ├── new_array_spec.rb │ │ │ ├── new_class_desc_spec.rb │ │ │ ├── new_enum_spec.rb │ │ │ ├── new_object_spec.rb │ │ │ ├── proxy_class_desc_spec.rb │ │ │ ├── stream_spec.rb │ │ │ └── utf_spec.rb │ │ ├── mac_oui_spec.rb │ │ ├── mime │ │ ├── encoding_spec.rb │ │ ├── header_spec.rb │ │ ├── message_spec.rb │ │ └── part_spec.rb │ │ ├── ole │ │ ├── clsid_spec.rb │ │ ├── difat_spec.rb │ │ ├── direntry_spec.rb │ │ ├── header_spec.rb │ │ ├── minifat_spec.rb │ │ └── util_spec.rb │ │ ├── parser │ │ ├── group_policy_preferences_spec.rb │ │ ├── nmap_xml_spec.rb │ │ └── unattend_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 │ │ ├── powershell │ │ ├── command_spec.rb │ │ ├── function_spec.rb │ │ ├── obfu_spec.rb │ │ ├── output_spec.rb │ │ ├── param_spec.rb │ │ ├── parser_spec.rb │ │ ├── psh_methods_spec.rb │ │ └── script_spec.rb │ │ ├── powershell_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 │ │ ├── natpmp │ │ │ └── packet_spec.rb │ │ ├── ntp │ │ │ └── modes_spec.rb │ │ ├── pjl │ │ │ └── client_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 │ │ └── steam │ │ │ ├── message_spec.rb │ │ │ └── steam_info.bin │ │ ├── random_identifier_generator_spec.rb │ │ ├── socket │ │ └── range_walker_spec.rb │ │ ├── socket_spec.rb │ │ ├── sslscan │ │ ├── result_spec.rb │ │ └── scanner_spec.rb │ │ ├── text_spec.rb │ │ └── time_spec.rb ├── models │ └── metasploit │ │ └── credential │ │ └── core_spec.rb ├── modules │ └── payloads_spec.rb ├── modules_spec.rb ├── msfcli_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 │ │ │ └── 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 │ │ ├── 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 │ │ │ │ ├── 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 │ │ ├── encoder │ │ │ ├── alpha2 │ │ │ │ └── generic.rb │ │ │ └── ndr │ │ │ │ ├── wstring.rb │ │ │ │ └── wstring_prebuild.rb │ │ └── image_source │ │ │ └── image_source.rb │ │ ├── typed_path.rb │ │ └── xor_encoder.rb └── tools │ ├── cpassword_decrypt_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 │ │ └── 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 │ │ │ ├── scanner_range.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 │ └── post │ │ └── test │ │ ├── extapi.rb │ │ ├── file.rb │ │ ├── get_env.rb │ │ ├── meterpreter.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 ├── committer_count.rb ├── context ├── Makefile ├── cpuid-key.c ├── stat-key.c └── time-key.c ├── cpassword_decrypt.rb ├── dev ├── add_pr_fetch.rb ├── import-dev-keys.sh ├── pre-commit-hook.rb └── set_binary_encoding.rb ├── egghunter.rb ├── exe2vba.rb ├── exe2vbs.rb ├── find_badchars.rb ├── halflm_second.rb ├── hmac_sha1_crack.rb ├── java_deserializer.rb ├── jsobfu.rb ├── list_interfaces.rb ├── lm2ntcrack.rb ├── makeiplist.rb ├── md5_lookup.rb ├── memdump ├── README.memdump ├── memdump.c └── memdump.exe ├── metasm_shell.rb ├── missing_payload_tests.rb ├── module_author.rb ├── module_commits.rb ├── module_count.rb ├── module_disclodate.rb ├── module_license.rb ├── module_mixins.rb ├── module_payloads.rb ├── module_ports.rb ├── module_rank.rb ├── module_reference.rb ├── module_targets.rb ├── msf_irb_shell.rb ├── msftidy.rb ├── nasm_shell.rb ├── pattern_create.rb ├── pattern_offset.rb ├── payload_lengths.rb ├── pdf2xdp.rb ├── profile.sh ├── psexec.rb ├── reg.rb ├── update_payload_cached_sizes.rb ├── verify_datastore.rb ├── virustotal.rb ├── vxdigger.rb ├── vxencrypt.rb └── vxmaster.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/.mailmap -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | metasploit-framework 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.1.6 2 | -------------------------------------------------------------------------------- /.simplecov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/.simplecov -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/.yardopts -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/COPYING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/Gemfile.local.example -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/HACKING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/Rakefile -------------------------------------------------------------------------------- /app/validators/metasploit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/app/validators/metasploit.rb -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/config/cucumber.yml -------------------------------------------------------------------------------- /config/database.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/config/database.yml.example -------------------------------------------------------------------------------- /config/database.yml.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/config/database.yml.travis -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/config/environment.rb -------------------------------------------------------------------------------- /data/cpuinfo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/cpuinfo/build.sh -------------------------------------------------------------------------------- /data/cpuinfo/cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/cpuinfo/cpuinfo.c -------------------------------------------------------------------------------- /data/cpuinfo/cpuinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/cpuinfo/cpuinfo.exe -------------------------------------------------------------------------------- /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/martinvigo/metasploit-framework/HEAD/data/eicar.txt -------------------------------------------------------------------------------- /data/emailer_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/emailer_config.yaml -------------------------------------------------------------------------------- /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-2014-1610/readme.md: -------------------------------------------------------------------------------- 1 | Any DjVu file can be used this is just a snazzy Metasploit one 2 | -------------------------------------------------------------------------------- /data/exploits/mp4player.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/exploits/mp4player.as -------------------------------------------------------------------------------- /data/exploits/mp4player.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/exploits/mp4player.fla -------------------------------------------------------------------------------- /data/exploits/mp4player.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/exploits/mp4player.swf -------------------------------------------------------------------------------- /data/exploits/mssql/h2b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/exploits/mssql/h2b -------------------------------------------------------------------------------- /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/martinvigo/metasploit-framework/HEAD/data/exploits/pricedown.eot -------------------------------------------------------------------------------- /data/exploits/runcalc.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/exploits/runcalc.hlp -------------------------------------------------------------------------------- /data/exploits/wifi/dnspwn/dnslist.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/ipwn/ipwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/ipwn/ipwn -------------------------------------------------------------------------------- /data/isight.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/isight.bundle -------------------------------------------------------------------------------- /data/john/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/README -------------------------------------------------------------------------------- /data/john/README-jumbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/README-jumbo -------------------------------------------------------------------------------- /data/john/README.Rapid7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/README.Rapid7.txt -------------------------------------------------------------------------------- /data/john/confs/john.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/confs/john.conf -------------------------------------------------------------------------------- /data/john/doc/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/CHANGES -------------------------------------------------------------------------------- /data/john/doc/CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/CONFIG -------------------------------------------------------------------------------- /data/john/doc/CONTACT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/CONTACT -------------------------------------------------------------------------------- /data/john/doc/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/CREDITS -------------------------------------------------------------------------------- /data/john/doc/EXAMPLES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/EXAMPLES -------------------------------------------------------------------------------- /data/john/doc/EXTERNAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/EXTERNAL -------------------------------------------------------------------------------- /data/john/doc/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/FAQ -------------------------------------------------------------------------------- /data/john/doc/HDAA_README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/HDAA_README -------------------------------------------------------------------------------- /data/john/doc/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/INSTALL -------------------------------------------------------------------------------- /data/john/doc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/LICENSE -------------------------------------------------------------------------------- /data/john/doc/LICENSE.mpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/LICENSE.mpi -------------------------------------------------------------------------------- /data/john/doc/MARKOV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/MARKOV -------------------------------------------------------------------------------- /data/john/doc/MD5_GENERIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/MD5_GENERIC -------------------------------------------------------------------------------- /data/john/doc/MODES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/MODES -------------------------------------------------------------------------------- /data/john/doc/NETNTLM_README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/NETNTLM_README -------------------------------------------------------------------------------- /data/john/doc/OPTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/OPTIONS -------------------------------------------------------------------------------- /data/john/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/README -------------------------------------------------------------------------------- /data/john/doc/README.mpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/README.mpi -------------------------------------------------------------------------------- /data/john/doc/RULES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/RULES -------------------------------------------------------------------------------- /data/john/doc/UTF8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/UTF8 -------------------------------------------------------------------------------- /data/john/doc/UTF8-DEVEL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/UTF8-DEVEL.txt -------------------------------------------------------------------------------- /data/john/doc/pdfcrack_TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/doc/pdfcrack_TODO -------------------------------------------------------------------------------- /data/john/run.linux.x64.mmx/pdf2john: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x64.mmx/rar2john: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x64.mmx/ssh2john: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x64.mmx/unafs: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x64.mmx/undrop: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x64.mmx/unique: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x64.mmx/unshadow: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x64.mmx/zip2john: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.any/pdf2john: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.any/rar2john: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.any/ssh2john: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.any/unafs: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.any/undrop: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.any/unique: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.any/unshadow: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.any/zip2john: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.mmx/pdf2john: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.mmx/rar2john: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.mmx/ssh2john: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.mmx/unafs: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.mmx/undrop: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.mmx/unique: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.mmx/unshadow: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.mmx/zip2john: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.sse2/pdf2john: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.sse2/rar2john: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.sse2/ssh2john: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.sse2/unafs: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.sse2/undrop: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.sse2/unique: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.sse2/unshadow: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/run.linux.x86.sse2/zip2john: -------------------------------------------------------------------------------- 1 | john -------------------------------------------------------------------------------- /data/john/src.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/john/src.tar.bz2 -------------------------------------------------------------------------------- /data/js/detect/ie_addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/js/detect/ie_addons.js -------------------------------------------------------------------------------- /data/js/detect/os.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/js/detect/os.js -------------------------------------------------------------------------------- /data/js/memory/heap_spray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/js/memory/heap_spray.js -------------------------------------------------------------------------------- /data/js/memory/heaplib2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/js/memory/heaplib2.js -------------------------------------------------------------------------------- /data/js/network/ajax_post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/js/network/ajax_post.js -------------------------------------------------------------------------------- /data/js/network/xhr_shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/js/network/xhr_shim.js -------------------------------------------------------------------------------- /data/js/utils/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/js/utils/base64.js -------------------------------------------------------------------------------- /data/lab/test_lab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/lab/test_lab.yml -------------------------------------------------------------------------------- /data/lab/test_targets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/lab/test_targets.yml -------------------------------------------------------------------------------- /data/logos/cow-head.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/cow-head.txt -------------------------------------------------------------------------------- /data/logos/cowsay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/cowsay.txt -------------------------------------------------------------------------------- /data/logos/figlet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/figlet.txt -------------------------------------------------------------------------------- /data/logos/gargoyle.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/gargoyle.hwtxt -------------------------------------------------------------------------------- /data/logos/ghost01.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/ghost01.hwtxt -------------------------------------------------------------------------------- /data/logos/json01.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/json01.hwtxt -------------------------------------------------------------------------------- /data/logos/mummy.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/mummy.hwtxt -------------------------------------------------------------------------------- /data/logos/ninja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/ninja.txt -------------------------------------------------------------------------------- /data/logos/pentagram01.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/pentagram01.hwtxt -------------------------------------------------------------------------------- /data/logos/pony-01.aftxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/pony-01.aftxt -------------------------------------------------------------------------------- /data/logos/pony-02.aftxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/pony-02.aftxt -------------------------------------------------------------------------------- /data/logos/pony-03.aftxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/pony-03.aftxt -------------------------------------------------------------------------------- /data/logos/pony-04.aftxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/pony-04.aftxt -------------------------------------------------------------------------------- /data/logos/pony-05.aftxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/pony-05.aftxt -------------------------------------------------------------------------------- /data/logos/pumpkin01.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/pumpkin01.hwtxt -------------------------------------------------------------------------------- /data/logos/pumpkin02.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/pumpkin02.hwtxt -------------------------------------------------------------------------------- /data/logos/pumpkin03.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/pumpkin03.hwtxt -------------------------------------------------------------------------------- /data/logos/pumpkin04.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/pumpkin04.hwtxt -------------------------------------------------------------------------------- /data/logos/r7-metasploit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/r7-metasploit.txt -------------------------------------------------------------------------------- /data/logos/tricks01.hwtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/tricks01.hwtxt -------------------------------------------------------------------------------- /data/logos/wake-up-neo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/wake-up-neo.txt -------------------------------------------------------------------------------- /data/logos/workflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/logos/workflow.txt -------------------------------------------------------------------------------- /data/meterpreter/ext_server_android.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/meterpreter/metsvc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/meterpreter/metsvc.exe -------------------------------------------------------------------------------- /data/mime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/mime.yml -------------------------------------------------------------------------------- /data/msfcrawler/basic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/msfcrawler/basic.rb -------------------------------------------------------------------------------- /data/msfcrawler/forms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/msfcrawler/forms.rb -------------------------------------------------------------------------------- /data/msfcrawler/frames.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/msfcrawler/frames.rb -------------------------------------------------------------------------------- /data/msfcrawler/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/msfcrawler/image.rb -------------------------------------------------------------------------------- /data/msfcrawler/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/msfcrawler/link.rb -------------------------------------------------------------------------------- /data/msfcrawler/objects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/msfcrawler/objects.rb -------------------------------------------------------------------------------- /data/msfcrawler/scripts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/msfcrawler/scripts.rb -------------------------------------------------------------------------------- /data/msfpescan/identify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/msfpescan/identify.txt -------------------------------------------------------------------------------- /data/passivex/passivex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/passivex/passivex.dll -------------------------------------------------------------------------------- /data/php/hop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/php/hop.php -------------------------------------------------------------------------------- /data/post/bypassuac-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/post/bypassuac-x64.dll -------------------------------------------------------------------------------- /data/post/bypassuac-x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/post/bypassuac-x64.exe -------------------------------------------------------------------------------- /data/post/bypassuac-x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/post/bypassuac-x86.dll -------------------------------------------------------------------------------- /data/post/bypassuac-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/post/bypassuac-x86.exe -------------------------------------------------------------------------------- /data/ropdb/flash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/ropdb/flash.xml -------------------------------------------------------------------------------- /data/ropdb/hxds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/ropdb/hxds.xml -------------------------------------------------------------------------------- /data/ropdb/java.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/ropdb/java.xml -------------------------------------------------------------------------------- /data/ropdb/msvcrt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/ropdb/msvcrt.xml -------------------------------------------------------------------------------- /data/ropdb/reader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/ropdb/reader.xml -------------------------------------------------------------------------------- /data/ropdb/samba.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/ropdb/samba.xml -------------------------------------------------------------------------------- /data/snmp/mibs/ADSL-TC-MIB.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | adsltcmib: 1.3.6.1.2.1.10.94.2 3 | -------------------------------------------------------------------------------- /data/snmp/mibs/APM-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/APM-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/APPC-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/APPC-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/APPN-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/APPN-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/APS-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/APS-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/ATM-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/ATM-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/ATM2-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/ATM2-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/BGP4-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/BGP4-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/CLNS-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/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/DLSW-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/DLSW-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DS0-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/DS0-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DS1-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/DS1-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DS3-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/DS3-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DSA-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/DSA-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/EBN-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/EBN-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/GSMP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/GSMP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/HC-PerfHist-TC-MIB.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | hcPerfHistTCMIB: 1.3.6.1.2.1.107 3 | -------------------------------------------------------------------------------- /data/snmp/mibs/HCNUM-TC.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | hcnumTC: 1.3.6.1.2.1.78 3 | -------------------------------------------------------------------------------- /data/snmp/mibs/HPR-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/HPR-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/IF-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/IF-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/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/IP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/IPOA-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/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/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/IPV6-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/ISDN-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/ISDN-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/L2TP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/L2TP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/MAU-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/MAU-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/MIP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/MIP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/MTA-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/MTA-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/NHRP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/NHRP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/OSPF-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/OSPF-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/PIM-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/PIM-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/PINT-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/PINT-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/PerfHist-TC-MIB.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | perfHistTCMIB: 1.3.6.1.2.1.58 3 | -------------------------------------------------------------------------------- /data/snmp/mibs/RMON-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/RMON-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/ROHC-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/ROHC-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/RSVP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/RSVP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/RTP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/RTP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/SIP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/SIP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/SMON-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/SMON-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/TCP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/TCP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/UDP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/UDP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/UPS-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/UPS-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/VRRP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/VRRP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/WWW-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/snmp/mibs/WWW-MIB.yaml -------------------------------------------------------------------------------- /data/sounds/aiff2wav.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/sounds/aiff2wav.rb -------------------------------------------------------------------------------- /data/sounds/default/dot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/sounds/default/dot.wav -------------------------------------------------------------------------------- /data/sounds/default/num0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/sounds/default/num0.wav -------------------------------------------------------------------------------- /data/sounds/default/num1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/sounds/default/num1.wav -------------------------------------------------------------------------------- /data/sounds/default/num2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/sounds/default/num2.wav -------------------------------------------------------------------------------- /data/sounds/default/num3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/sounds/default/num3.wav -------------------------------------------------------------------------------- /data/sounds/default/num4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/sounds/default/num4.wav -------------------------------------------------------------------------------- /data/sounds/default/num5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/sounds/default/num5.wav -------------------------------------------------------------------------------- /data/sounds/default/num6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/sounds/default/num6.wav -------------------------------------------------------------------------------- /data/sounds/default/num7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/sounds/default/num7.wav -------------------------------------------------------------------------------- /data/sounds/default/num8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/sounds/default/num8.wav -------------------------------------------------------------------------------- /data/sounds/default/num9.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/sounds/default/num9.wav -------------------------------------------------------------------------------- /data/sounds/default/port.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/sounds/default/port.wav -------------------------------------------------------------------------------- /data/sounds/gensounds_mac.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/sounds/gensounds_mac.rb -------------------------------------------------------------------------------- /data/templates/dotnetmem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/templates/dotnetmem.dll -------------------------------------------------------------------------------- /data/templates/src/pe/dll/template.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | DllMain@12 3 | 4 | -------------------------------------------------------------------------------- /data/vncdll.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/vncdll.x64.dll -------------------------------------------------------------------------------- /data/vncdll.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/vncdll.x86.dll -------------------------------------------------------------------------------- /data/webcam/answerer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/webcam/answerer.html -------------------------------------------------------------------------------- /data/webcam/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/webcam/api.js -------------------------------------------------------------------------------- /data/webcam/offerer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/webcam/offerer.html -------------------------------------------------------------------------------- /data/wmap/whaler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/wmap/whaler.txt -------------------------------------------------------------------------------- /data/wmap/wmap_404s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/wmap/wmap_404s.txt -------------------------------------------------------------------------------- /data/wmap/wmap_dirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/wmap/wmap_dirs.txt -------------------------------------------------------------------------------- /data/wmap/wmap_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/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/joomla.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/wordlists/joomla.txt -------------------------------------------------------------------------------- /data/wordlists/multi_vendor_cctv_dvr_users.txt: -------------------------------------------------------------------------------- 1 | admin 2 | user 3 | -------------------------------------------------------------------------------- /data/wordlists/namelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/wordlists/namelist.txt -------------------------------------------------------------------------------- /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/martinvigo/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/sid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/data/wordlists/sid.txt -------------------------------------------------------------------------------- /data/wordlists/tftp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/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 | -------------------------------------------------------------------------------- /data/wordlists/tomcat_mgr_default_users.txt: -------------------------------------------------------------------------------- 1 | admin 2 | manager 3 | role1 4 | root 5 | tomcat 6 | both 7 | -------------------------------------------------------------------------------- /data/wordlists/vnc_passwords.txt: -------------------------------------------------------------------------------- 1 | password 2 | -------------------------------------------------------------------------------- /db/migrate/.git-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/db/schema.rb -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/documentation/README.md -------------------------------------------------------------------------------- /external/ruby-kissfft/Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /external/serialport/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/external/serialport/MANIFEST -------------------------------------------------------------------------------- /external/source/byakugan/include/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/source/byakugan/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/source/exploits/bypassuac/source.rb/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/source/exploits/splunk/upload_app_exec/metadata/default.meta: -------------------------------------------------------------------------------- 1 | [commands] 2 | export = system 3 | -------------------------------------------------------------------------------- /external/source/ipwn/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/external/source/ipwn/README -------------------------------------------------------------------------------- /external/source/ipwn/auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/external/source/ipwn/auto.h -------------------------------------------------------------------------------- /external/source/ipwn/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/external/source/ipwn/cmd.h -------------------------------------------------------------------------------- /external/source/ipwn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/external/source/ipwn/main.c -------------------------------------------------------------------------------- /external/source/ipwn/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/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/martinvigo/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/martinvigo/metasploit-framework/HEAD/external/zsh/README.md -------------------------------------------------------------------------------- /external/zsh/_msfconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/external/zsh/_msfconsole -------------------------------------------------------------------------------- /external/zsh/_msfvenom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/external/zsh/_msfvenom -------------------------------------------------------------------------------- /features/support/bin/stty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/features/support/bin/stty -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/support/hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/features/support/hooks.rb -------------------------------------------------------------------------------- /features/support/stty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/features/support/stty.rb -------------------------------------------------------------------------------- /lib/anemone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone.rb -------------------------------------------------------------------------------- /lib/anemone/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/cli.rb -------------------------------------------------------------------------------- /lib/anemone/cli/count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/cli/count.rb -------------------------------------------------------------------------------- /lib/anemone/cli/cron.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/cli/cron.rb -------------------------------------------------------------------------------- /lib/anemone/cli/pagedepth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/cli/pagedepth.rb -------------------------------------------------------------------------------- /lib/anemone/cli/serialize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/cli/serialize.rb -------------------------------------------------------------------------------- /lib/anemone/cli/url_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/cli/url_list.rb -------------------------------------------------------------------------------- /lib/anemone/cookie_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/cookie_store.rb -------------------------------------------------------------------------------- /lib/anemone/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/core.rb -------------------------------------------------------------------------------- /lib/anemone/docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/docs/LICENSE.txt -------------------------------------------------------------------------------- /lib/anemone/docs/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/docs/README.rdoc -------------------------------------------------------------------------------- /lib/anemone/docs/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/docs/Rakefile -------------------------------------------------------------------------------- /lib/anemone/docs/VERSION: -------------------------------------------------------------------------------- 1 | 0.5.0 2 | -------------------------------------------------------------------------------- /lib/anemone/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/exceptions.rb -------------------------------------------------------------------------------- /lib/anemone/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/http.rb -------------------------------------------------------------------------------- /lib/anemone/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/page.rb -------------------------------------------------------------------------------- /lib/anemone/page_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/page_store.rb -------------------------------------------------------------------------------- /lib/anemone/rex_http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/rex_http.rb -------------------------------------------------------------------------------- /lib/anemone/storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/storage.rb -------------------------------------------------------------------------------- /lib/anemone/storage/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/storage/base.rb -------------------------------------------------------------------------------- /lib/anemone/storage/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/storage/redis.rb -------------------------------------------------------------------------------- /lib/anemone/tentacle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/anemone/tentacle.rb -------------------------------------------------------------------------------- /lib/bit-struct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/bit-struct.rb -------------------------------------------------------------------------------- /lib/bit-struct/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/bit-struct/README -------------------------------------------------------------------------------- /lib/bit-struct/bit-struct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/bit-struct/bit-struct.rb -------------------------------------------------------------------------------- /lib/bit-struct/char-field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/bit-struct/char-field.rb -------------------------------------------------------------------------------- /lib/bit-struct/fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/bit-struct/fields.rb -------------------------------------------------------------------------------- /lib/bit-struct/pad-field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/bit-struct/pad-field.rb -------------------------------------------------------------------------------- /lib/bit-struct/text-field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/bit-struct/text-field.rb -------------------------------------------------------------------------------- /lib/bit-struct/vector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/bit-struct/vector.rb -------------------------------------------------------------------------------- /lib/bit-struct/yaml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/bit-struct/yaml.rb -------------------------------------------------------------------------------- /lib/enumerable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/enumerable.rb -------------------------------------------------------------------------------- /lib/metasm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm.rb -------------------------------------------------------------------------------- /lib/metasm/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/.hgtags -------------------------------------------------------------------------------- /lib/metasm/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/BUGS -------------------------------------------------------------------------------- /lib/metasm/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/CREDITS -------------------------------------------------------------------------------- /lib/metasm/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/INSTALL -------------------------------------------------------------------------------- /lib/metasm/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/LICENCE -------------------------------------------------------------------------------- /lib/metasm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/README -------------------------------------------------------------------------------- /lib/metasm/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/TODO -------------------------------------------------------------------------------- /lib/metasm/metasm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/cpu/arc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/cpu/arc.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/cpu/arm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/cpu/arm.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/cpu/bpf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/cpu/bpf.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/cpu/ppc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/cpu/ppc.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/cpu/sh4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/cpu/sh4.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/cpu/z80.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/cpu/z80.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/debug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/debug.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/decode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/decode.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/dynldr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/dynldr.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/encode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/encode.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/gui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/gui.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/gui/gtk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/gui/gtk.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/gui/qt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/gui/qt.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/gui/x11.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/gui/x11.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/main.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/os/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/os/main.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/parse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/parse.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/parse_c.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/parse_c.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/render.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/metasm/render.rb -------------------------------------------------------------------------------- /lib/metasm/misc/hexdiff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/misc/hexdiff.rb -------------------------------------------------------------------------------- /lib/metasm/misc/hexdump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/misc/hexdump.rb -------------------------------------------------------------------------------- /lib/metasm/misc/lint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/misc/lint.rb -------------------------------------------------------------------------------- /lib/metasm/misc/objdiff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/misc/objdiff.rb -------------------------------------------------------------------------------- /lib/metasm/misc/objscan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/misc/objscan.rb -------------------------------------------------------------------------------- /lib/metasm/misc/pdfparse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/misc/pdfparse.rb -------------------------------------------------------------------------------- /lib/metasm/misc/txt2html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/misc/txt2html.rb -------------------------------------------------------------------------------- /lib/metasm/samples/a.out.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/samples/a.out.rb -------------------------------------------------------------------------------- /lib/metasm/samples/peldr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/samples/peldr.rb -------------------------------------------------------------------------------- /lib/metasm/samples/testpe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/samples/testpe.rb -------------------------------------------------------------------------------- /lib/metasm/tests/all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/tests/all.rb -------------------------------------------------------------------------------- /lib/metasm/tests/arc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/tests/arc.rb -------------------------------------------------------------------------------- /lib/metasm/tests/dasm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/tests/dasm.rb -------------------------------------------------------------------------------- /lib/metasm/tests/dynldr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/tests/dynldr.rb -------------------------------------------------------------------------------- /lib/metasm/tests/ia32.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/tests/ia32.rb -------------------------------------------------------------------------------- /lib/metasm/tests/mips.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/tests/mips.rb -------------------------------------------------------------------------------- /lib/metasm/tests/parse_c.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/tests/parse_c.rb -------------------------------------------------------------------------------- /lib/metasm/tests/x86_64.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/metasm/tests/x86_64.rb -------------------------------------------------------------------------------- /lib/metasploit/framework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/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/martinvigo/metasploit-framework/HEAD/lib/msf/base.rb -------------------------------------------------------------------------------- /lib/msf/base/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/base/config.rb -------------------------------------------------------------------------------- /lib/msf/base/logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/base/logging.rb -------------------------------------------------------------------------------- /lib/msf/base/sessions/tty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/base/sessions/tty.rb -------------------------------------------------------------------------------- /lib/msf/base/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/base/simple.rb -------------------------------------------------------------------------------- /lib/msf/base/simple/nop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/base/simple/nop.rb -------------------------------------------------------------------------------- /lib/msf/base/simple/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/base/simple/post.rb -------------------------------------------------------------------------------- /lib/msf/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core.rb -------------------------------------------------------------------------------- /lib/msf/core/author.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/author.rb -------------------------------------------------------------------------------- /lib/msf/core/auxiliary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/auxiliary.rb -------------------------------------------------------------------------------- /lib/msf/core/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/constants.rb -------------------------------------------------------------------------------- /lib/msf/core/data_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/data_store.rb -------------------------------------------------------------------------------- /lib/msf/core/db_export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/db_export.rb -------------------------------------------------------------------------------- /lib/msf/core/db_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/db_manager.rb -------------------------------------------------------------------------------- /lib/msf/core/encoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/encoder.rb -------------------------------------------------------------------------------- /lib/msf/core/encoder/xor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/encoder/xor.rb -------------------------------------------------------------------------------- /lib/msf/core/encoding/xor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/encoding/xor.rb -------------------------------------------------------------------------------- /lib/msf/core/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exceptions.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/afp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/afp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/db2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/db2.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/dhcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/dhcp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/exe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/exe.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/ftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/ftp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/gdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/gdb.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/imap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/imap.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/ip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/ip.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/ipv6.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/ipv6.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/java.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/java.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/ndmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/ndmp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/ntlm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/ntlm.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/pdf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/pdf.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/pop2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/pop2.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/riff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/riff.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/seh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/seh.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/sip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/sip.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/smtp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/smtp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/snmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/snmp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/tcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/tcp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/tftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/tftp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/tns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/tns.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/udp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/udp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/exploit/web.rb -------------------------------------------------------------------------------- /lib/msf/core/framework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/framework.rb -------------------------------------------------------------------------------- /lib/msf/core/handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/handler.rb -------------------------------------------------------------------------------- /lib/msf/core/handler/none.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/handler/none.rb -------------------------------------------------------------------------------- /lib/msf/core/host_state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/host_state.rb -------------------------------------------------------------------------------- /lib/msf/core/module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/module.rb -------------------------------------------------------------------------------- /lib/msf/core/module/arch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/module/arch.rb -------------------------------------------------------------------------------- /lib/msf/core/module/type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/module/type.rb -------------------------------------------------------------------------------- /lib/msf/core/module/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/module/ui.rb -------------------------------------------------------------------------------- /lib/msf/core/module/uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/module/uuid.rb -------------------------------------------------------------------------------- /lib/msf/core/module_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/module_set.rb -------------------------------------------------------------------------------- /lib/msf/core/modules.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/modules.rb -------------------------------------------------------------------------------- /lib/msf/core/nop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/nop.rb -------------------------------------------------------------------------------- /lib/msf/core/opt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/opt.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/opt_address.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/opt_base.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_bool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/opt_bool.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/opt_enum.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_int.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/opt_int.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/opt_path.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_port.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/opt_port.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_raw.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/opt_raw.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_regexp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/opt_regexp.rb -------------------------------------------------------------------------------- /lib/msf/core/opt_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/opt_string.rb -------------------------------------------------------------------------------- /lib/msf/core/payload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/payload.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/aix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/payload/aix.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/bsd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/payload/bsd.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/java.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/payload/java.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/jsp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/payload/jsp.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/osx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/payload/osx.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/php.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/payload/php.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/payload/ruby.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/payload/uuid.rb -------------------------------------------------------------------------------- /lib/msf/core/payload_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/payload_set.rb -------------------------------------------------------------------------------- /lib/msf/core/platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/platform.rb -------------------------------------------------------------------------------- /lib/msf/core/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/plugin.rb -------------------------------------------------------------------------------- /lib/msf/core/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/post.rb -------------------------------------------------------------------------------- /lib/msf/core/post/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/post/common.rb -------------------------------------------------------------------------------- /lib/msf/core/post/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/post/file.rb -------------------------------------------------------------------------------- /lib/msf/core/post/linux.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/post/linux.rb -------------------------------------------------------------------------------- /lib/msf/core/post/osx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/post/osx.rb -------------------------------------------------------------------------------- /lib/msf/core/post/solaris.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/post/solaris.rb -------------------------------------------------------------------------------- /lib/msf/core/post/unix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/post/unix.rb -------------------------------------------------------------------------------- /lib/msf/core/post/webrtc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/post/webrtc.rb -------------------------------------------------------------------------------- /lib/msf/core/post/windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/post/windows.rb -------------------------------------------------------------------------------- /lib/msf/core/post_mixin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/post_mixin.rb -------------------------------------------------------------------------------- /lib/msf/core/reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/reference.rb -------------------------------------------------------------------------------- /lib/msf/core/rpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/rpc.rb -------------------------------------------------------------------------------- /lib/msf/core/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/session.rb -------------------------------------------------------------------------------- /lib/msf/core/session/comm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/session/comm.rb -------------------------------------------------------------------------------- /lib/msf/core/target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/core/target.rb -------------------------------------------------------------------------------- /lib/msf/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/events.rb -------------------------------------------------------------------------------- /lib/msf/http/jboss.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/http/jboss.rb -------------------------------------------------------------------------------- /lib/msf/http/jboss/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/http/jboss/base.rb -------------------------------------------------------------------------------- /lib/msf/http/typo3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/http/typo3.rb -------------------------------------------------------------------------------- /lib/msf/http/typo3/login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/http/typo3/login.rb -------------------------------------------------------------------------------- /lib/msf/http/typo3/uris.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/http/typo3/uris.rb -------------------------------------------------------------------------------- /lib/msf/http/wordpress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/http/wordpress.rb -------------------------------------------------------------------------------- /lib/msf/java/rmi/builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/java/rmi/builder.rb -------------------------------------------------------------------------------- /lib/msf/java/rmi/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/java/rmi/client.rb -------------------------------------------------------------------------------- /lib/msf/java/rmi/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/java/rmi/util.rb -------------------------------------------------------------------------------- /lib/msf/kerberos/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/kerberos/client.rb -------------------------------------------------------------------------------- /lib/msf/sanity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/sanity.rb -------------------------------------------------------------------------------- /lib/msf/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/ui.rb -------------------------------------------------------------------------------- /lib/msf/ui/banner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/ui/banner.rb -------------------------------------------------------------------------------- /lib/msf/ui/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/ui/common.rb -------------------------------------------------------------------------------- /lib/msf/ui/console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/ui/console.rb -------------------------------------------------------------------------------- /lib/msf/ui/console/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/ui/console/driver.rb -------------------------------------------------------------------------------- /lib/msf/ui/console/table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/ui/console/table.rb -------------------------------------------------------------------------------- /lib/msf/ui/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/ui/driver.rb -------------------------------------------------------------------------------- /lib/msf/ui/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/ui/web.rb -------------------------------------------------------------------------------- /lib/msf/ui/web/comm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/ui/web/comm.rb -------------------------------------------------------------------------------- /lib/msf/ui/web/console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/ui/web/console.rb -------------------------------------------------------------------------------- /lib/msf/ui/web/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/ui/web/driver.rb -------------------------------------------------------------------------------- /lib/msf/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/util.rb -------------------------------------------------------------------------------- /lib/msf/util/exe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/util/exe.rb -------------------------------------------------------------------------------- /lib/msf/util/svn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/util/svn.rb -------------------------------------------------------------------------------- /lib/msf/windows_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msf/windows_error.rb -------------------------------------------------------------------------------- /lib/msfenv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/msfenv.rb -------------------------------------------------------------------------------- /lib/nessus/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/nessus/README -------------------------------------------------------------------------------- /lib/nessus/TODO: -------------------------------------------------------------------------------- 1 | - Error handling, no puts 2 | -------------------------------------------------------------------------------- /lib/nessus/nessus-cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/nessus/nessus-cli.rb -------------------------------------------------------------------------------- /lib/nessus/nessus-xmlrpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/nessus/nessus-xmlrpc.rb -------------------------------------------------------------------------------- /lib/net/dns.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | require "net/dns/resolver" 3 | -------------------------------------------------------------------------------- /lib/net/dns/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/README -------------------------------------------------------------------------------- /lib/net/dns/dns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/dns.rb -------------------------------------------------------------------------------- /lib/net/dns/header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/header.rb -------------------------------------------------------------------------------- /lib/net/dns/names/names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/names/names.rb -------------------------------------------------------------------------------- /lib/net/dns/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/packet.rb -------------------------------------------------------------------------------- /lib/net/dns/question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/question.rb -------------------------------------------------------------------------------- /lib/net/dns/resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/resolver.rb -------------------------------------------------------------------------------- /lib/net/dns/rr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/rr.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/a.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/rr/a.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/aaaa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/rr/aaaa.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/classes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/rr/classes.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/cname.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/rr/cname.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/hinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/rr/hinfo.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/mr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/rr/mr.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/mx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/rr/mx.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/ns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/rr/ns.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/null.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/rr/null.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/ptr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/rr/ptr.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/soa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/rr/soa.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/srv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/rr/srv.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/txt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/rr/txt.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/dns/rr/types.rb -------------------------------------------------------------------------------- /lib/net/ssh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh.rb -------------------------------------------------------------------------------- /lib/net/ssh/CHANGELOG.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/CHANGELOG.rdoc -------------------------------------------------------------------------------- /lib/net/ssh/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/README.rdoc -------------------------------------------------------------------------------- /lib/net/ssh/THANKS.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/THANKS.rdoc -------------------------------------------------------------------------------- /lib/net/ssh/buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/buffer.rb -------------------------------------------------------------------------------- /lib/net/ssh/buffered_io.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/buffered_io.rb -------------------------------------------------------------------------------- /lib/net/ssh/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/config.rb -------------------------------------------------------------------------------- /lib/net/ssh/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/errors.rb -------------------------------------------------------------------------------- /lib/net/ssh/key_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/key_factory.rb -------------------------------------------------------------------------------- /lib/net/ssh/known_hosts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/known_hosts.rb -------------------------------------------------------------------------------- /lib/net/ssh/loggable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/loggable.rb -------------------------------------------------------------------------------- /lib/net/ssh/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/packet.rb -------------------------------------------------------------------------------- /lib/net/ssh/prompt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/prompt.rb -------------------------------------------------------------------------------- /lib/net/ssh/proxy/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/proxy/errors.rb -------------------------------------------------------------------------------- /lib/net/ssh/proxy/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/proxy/http.rb -------------------------------------------------------------------------------- /lib/net/ssh/proxy/socks4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/proxy/socks4.rb -------------------------------------------------------------------------------- /lib/net/ssh/proxy/socks5.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/proxy/socks5.rb -------------------------------------------------------------------------------- /lib/net/ssh/ruby_compat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/ruby_compat.rb -------------------------------------------------------------------------------- /lib/net/ssh/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/test.rb -------------------------------------------------------------------------------- /lib/net/ssh/test/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/test/channel.rb -------------------------------------------------------------------------------- /lib/net/ssh/test/kex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/test/kex.rb -------------------------------------------------------------------------------- /lib/net/ssh/test/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/test/packet.rb -------------------------------------------------------------------------------- /lib/net/ssh/test/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/test/script.rb -------------------------------------------------------------------------------- /lib/net/ssh/test/socket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/test/socket.rb -------------------------------------------------------------------------------- /lib/net/ssh/transport/kex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/transport/kex.rb -------------------------------------------------------------------------------- /lib/net/ssh/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/utils.rb -------------------------------------------------------------------------------- /lib/net/ssh/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/net/ssh/version.rb -------------------------------------------------------------------------------- /lib/openvas/openvas-omp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/openvas/openvas-omp.rb -------------------------------------------------------------------------------- /lib/postgres/buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/postgres/buffer.rb -------------------------------------------------------------------------------- /lib/postgres/byteorder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/postgres/byteorder.rb -------------------------------------------------------------------------------- /lib/postgres_msf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/postgres_msf.rb -------------------------------------------------------------------------------- /lib/rabal/tree.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rabal/tree.rb -------------------------------------------------------------------------------- /lib/rapid7/nexpose.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rapid7/nexpose.rb -------------------------------------------------------------------------------- /lib/rbmysql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rbmysql.rb -------------------------------------------------------------------------------- /lib/rbmysql/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rbmysql/README -------------------------------------------------------------------------------- /lib/rbmysql/charset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rbmysql/charset.rb -------------------------------------------------------------------------------- /lib/rbmysql/compat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rbmysql/compat.rb -------------------------------------------------------------------------------- /lib/rbmysql/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rbmysql/constants.rb -------------------------------------------------------------------------------- /lib/rbmysql/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rbmysql/error.rb -------------------------------------------------------------------------------- /lib/rbmysql/protocol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rbmysql/protocol.rb -------------------------------------------------------------------------------- /lib/rex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex.rb -------------------------------------------------------------------------------- /lib/rex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/LICENSE -------------------------------------------------------------------------------- /lib/rex/arch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/arch.rb -------------------------------------------------------------------------------- /lib/rex/arch/sparc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/arch/sparc.rb -------------------------------------------------------------------------------- /lib/rex/arch/x86.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/arch/x86.rb -------------------------------------------------------------------------------- /lib/rex/assembly/nasm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/assembly/nasm.rb -------------------------------------------------------------------------------- /lib/rex/codepage.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/codepage.map -------------------------------------------------------------------------------- /lib/rex/compat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/compat.rb -------------------------------------------------------------------------------- /lib/rex/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/constants.rb -------------------------------------------------------------------------------- /lib/rex/constants/windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/constants/windows.rb -------------------------------------------------------------------------------- /lib/rex/elfparsey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/elfparsey.rb -------------------------------------------------------------------------------- /lib/rex/elfparsey/elf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/elfparsey/elf.rb -------------------------------------------------------------------------------- /lib/rex/elfparsey/elfbase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/elfparsey/elfbase.rb -------------------------------------------------------------------------------- /lib/rex/elfscan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/elfscan.rb -------------------------------------------------------------------------------- /lib/rex/elfscan/scanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/elfscan/scanner.rb -------------------------------------------------------------------------------- /lib/rex/elfscan/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/elfscan/search.rb -------------------------------------------------------------------------------- /lib/rex/encoder/alpha2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/encoder/alpha2.rb -------------------------------------------------------------------------------- /lib/rex/encoder/ndr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/encoder/ndr.rb -------------------------------------------------------------------------------- /lib/rex/encoder/nonalpha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/encoder/nonalpha.rb -------------------------------------------------------------------------------- /lib/rex/encoder/nonupper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/encoder/nonupper.rb -------------------------------------------------------------------------------- /lib/rex/encoder/xdr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/encoder/xdr.rb -------------------------------------------------------------------------------- /lib/rex/encoder/xor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/encoder/xor.rb -------------------------------------------------------------------------------- /lib/rex/encoder/xor/dword.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/encoder/xor/dword.rb -------------------------------------------------------------------------------- /lib/rex/encoding/xor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/encoding/xor.rb -------------------------------------------------------------------------------- /lib/rex/encoding/xor/byte.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/encoding/xor/byte.rb -------------------------------------------------------------------------------- /lib/rex/encoding/xor/word.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/encoding/xor/word.rb -------------------------------------------------------------------------------- /lib/rex/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/exceptions.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/js.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/exploitation/js.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/seh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/exploitation/seh.rb -------------------------------------------------------------------------------- /lib/rex/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/file.rb -------------------------------------------------------------------------------- /lib/rex/image_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/image_source.rb -------------------------------------------------------------------------------- /lib/rex/image_source/disk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/image_source/disk.rb -------------------------------------------------------------------------------- /lib/rex/io/ring_buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/io/ring_buffer.rb -------------------------------------------------------------------------------- /lib/rex/io/stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/io/stream.rb -------------------------------------------------------------------------------- /lib/rex/io/stream_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/io/stream_server.rb -------------------------------------------------------------------------------- /lib/rex/java.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | 3 | require 'rex/java/serialization' -------------------------------------------------------------------------------- /lib/rex/job_container.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/job_container.rb -------------------------------------------------------------------------------- /lib/rex/json_hash_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/json_hash_file.rb -------------------------------------------------------------------------------- /lib/rex/logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/logging.rb -------------------------------------------------------------------------------- /lib/rex/logging/log_sink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/logging/log_sink.rb -------------------------------------------------------------------------------- /lib/rex/mac_oui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/mac_oui.rb -------------------------------------------------------------------------------- /lib/rex/machparsey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/machparsey.rb -------------------------------------------------------------------------------- /lib/rex/machparsey/mach.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/machparsey/mach.rb -------------------------------------------------------------------------------- /lib/rex/machscan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/machscan.rb -------------------------------------------------------------------------------- /lib/rex/machscan/scanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/machscan/scanner.rb -------------------------------------------------------------------------------- /lib/rex/mime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/mime.rb -------------------------------------------------------------------------------- /lib/rex/mime/encoding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/mime/encoding.rb -------------------------------------------------------------------------------- /lib/rex/mime/header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/mime/header.rb -------------------------------------------------------------------------------- /lib/rex/mime/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/mime/message.rb -------------------------------------------------------------------------------- /lib/rex/mime/part.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/mime/part.rb -------------------------------------------------------------------------------- /lib/rex/nop/opty2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/nop/opty2.rb -------------------------------------------------------------------------------- /lib/rex/nop/opty2_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/nop/opty2_tables.rb -------------------------------------------------------------------------------- /lib/rex/ole.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ole.rb -------------------------------------------------------------------------------- /lib/rex/ole/clsid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ole/clsid.rb -------------------------------------------------------------------------------- /lib/rex/ole/difat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ole/difat.rb -------------------------------------------------------------------------------- /lib/rex/ole/directory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ole/directory.rb -------------------------------------------------------------------------------- /lib/rex/ole/direntry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ole/direntry.rb -------------------------------------------------------------------------------- /lib/rex/ole/docs/references.txt: -------------------------------------------------------------------------------- 1 | [MS-CFB].pdf 2 | -------------------------------------------------------------------------------- /lib/rex/ole/fat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ole/fat.rb -------------------------------------------------------------------------------- /lib/rex/ole/header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ole/header.rb -------------------------------------------------------------------------------- /lib/rex/ole/minifat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ole/minifat.rb -------------------------------------------------------------------------------- /lib/rex/ole/propset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ole/propset.rb -------------------------------------------------------------------------------- /lib/rex/ole/samples/dir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ole/samples/dir.rb -------------------------------------------------------------------------------- /lib/rex/ole/storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ole/storage.rb -------------------------------------------------------------------------------- /lib/rex/ole/stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ole/stream.rb -------------------------------------------------------------------------------- /lib/rex/ole/substorage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ole/substorage.rb -------------------------------------------------------------------------------- /lib/rex/ole/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ole/util.rb -------------------------------------------------------------------------------- /lib/rex/parser/arguments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/parser/arguments.rb -------------------------------------------------------------------------------- /lib/rex/parser/fs/ntfs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/parser/fs/ntfs.rb -------------------------------------------------------------------------------- /lib/rex/parser/ini.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/parser/ini.rb -------------------------------------------------------------------------------- /lib/rex/parser/ip360_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/parser/ip360_xml.rb -------------------------------------------------------------------------------- /lib/rex/parser/nessus_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/parser/nessus_xml.rb -------------------------------------------------------------------------------- /lib/rex/parser/nmap_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/parser/nmap_xml.rb -------------------------------------------------------------------------------- /lib/rex/parser/retina_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/parser/retina_xml.rb -------------------------------------------------------------------------------- /lib/rex/parser/unattend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/parser/unattend.rb -------------------------------------------------------------------------------- /lib/rex/payloads.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | require 'rex/payloads/win32' 3 | -------------------------------------------------------------------------------- /lib/rex/payloads/win32.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/payloads/win32.rb -------------------------------------------------------------------------------- /lib/rex/peparsey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/peparsey.rb -------------------------------------------------------------------------------- /lib/rex/peparsey/pe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/peparsey/pe.rb -------------------------------------------------------------------------------- /lib/rex/peparsey/pebase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/peparsey/pebase.rb -------------------------------------------------------------------------------- /lib/rex/peparsey/section.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/peparsey/section.rb -------------------------------------------------------------------------------- /lib/rex/pescan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/pescan.rb -------------------------------------------------------------------------------- /lib/rex/pescan/analyze.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/pescan/analyze.rb -------------------------------------------------------------------------------- /lib/rex/pescan/scanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/pescan/scanner.rb -------------------------------------------------------------------------------- /lib/rex/pescan/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/pescan/search.rb -------------------------------------------------------------------------------- /lib/rex/platforms.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | require 'rex/platforms/windows' 3 | -------------------------------------------------------------------------------- /lib/rex/platforms/windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/platforms/windows.rb -------------------------------------------------------------------------------- /lib/rex/poly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/poly.rb -------------------------------------------------------------------------------- /lib/rex/poly/block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/poly/block.rb -------------------------------------------------------------------------------- /lib/rex/poly/machine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/poly/machine.rb -------------------------------------------------------------------------------- /lib/rex/poly/machine/x86.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/poly/machine/x86.rb -------------------------------------------------------------------------------- /lib/rex/poly/register.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/poly/register.rb -------------------------------------------------------------------------------- /lib/rex/poly/register/x86.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/poly/register/x86.rb -------------------------------------------------------------------------------- /lib/rex/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/post.rb -------------------------------------------------------------------------------- /lib/rex/post/dir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/post/dir.rb -------------------------------------------------------------------------------- /lib/rex/post/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/post/file.rb -------------------------------------------------------------------------------- /lib/rex/post/file_stat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/post/file_stat.rb -------------------------------------------------------------------------------- /lib/rex/post/gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/post/gen.pl -------------------------------------------------------------------------------- /lib/rex/post/io.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/post/io.rb -------------------------------------------------------------------------------- /lib/rex/post/meterpreter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/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/martinvigo/metasploit-framework/HEAD/lib/rex/post/permission.rb -------------------------------------------------------------------------------- /lib/rex/post/process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/post/process.rb -------------------------------------------------------------------------------- /lib/rex/post/thread.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/post/thread.rb -------------------------------------------------------------------------------- /lib/rex/post/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/post/ui.rb -------------------------------------------------------------------------------- /lib/rex/powershell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/powershell.rb -------------------------------------------------------------------------------- /lib/rex/powershell/obfu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/powershell/obfu.rb -------------------------------------------------------------------------------- /lib/rex/powershell/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/powershell/output.rb -------------------------------------------------------------------------------- /lib/rex/powershell/param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/powershell/param.rb -------------------------------------------------------------------------------- /lib/rex/powershell/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/powershell/parser.rb -------------------------------------------------------------------------------- /lib/rex/powershell/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/powershell/script.rb -------------------------------------------------------------------------------- /lib/rex/proto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto.rb -------------------------------------------------------------------------------- /lib/rex/proto/acpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/acpp.rb -------------------------------------------------------------------------------- /lib/rex/proto/acpp/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/acpp/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/addp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/addp.rb -------------------------------------------------------------------------------- /lib/rex/proto/dcerpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/dcerpc.rb -------------------------------------------------------------------------------- /lib/rex/proto/dcerpc/ndr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/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/martinvigo/metasploit-framework/HEAD/lib/rex/proto/dcerpc/uuid.rb -------------------------------------------------------------------------------- /lib/rex/proto/dhcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/dhcp.rb -------------------------------------------------------------------------------- /lib/rex/proto/dhcp/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/dhcp/server.rb -------------------------------------------------------------------------------- /lib/rex/proto/drda.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/drda.rb -------------------------------------------------------------------------------- /lib/rex/proto/drda/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/drda/packet.rb -------------------------------------------------------------------------------- /lib/rex/proto/drda/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/drda/utils.rb -------------------------------------------------------------------------------- /lib/rex/proto/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/http.rb -------------------------------------------------------------------------------- /lib/rex/proto/http/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/http/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/http/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/http/packet.rb -------------------------------------------------------------------------------- /lib/rex/proto/http/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/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/martinvigo/metasploit-framework/HEAD/lib/rex/proto/iax2/call.rb -------------------------------------------------------------------------------- /lib/rex/proto/iax2/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/iax2/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/iax2/codecs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/iax2/codecs.rb -------------------------------------------------------------------------------- /lib/rex/proto/ipmi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/ipmi.rb -------------------------------------------------------------------------------- /lib/rex/proto/ipmi/rakp2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/ipmi/rakp2.rb -------------------------------------------------------------------------------- /lib/rex/proto/ipmi/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/ipmi/utils.rb -------------------------------------------------------------------------------- /lib/rex/proto/kademlia.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/kademlia.rb -------------------------------------------------------------------------------- /lib/rex/proto/kerberos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/kerberos.rb -------------------------------------------------------------------------------- /lib/rex/proto/natpmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/natpmp.rb -------------------------------------------------------------------------------- /lib/rex/proto/ntlm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/ntlm.rb -------------------------------------------------------------------------------- /lib/rex/proto/ntlm/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/ntlm/base.rb -------------------------------------------------------------------------------- /lib/rex/proto/ntlm/crypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/ntlm/crypt.rb -------------------------------------------------------------------------------- /lib/rex/proto/ntlm/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/ntlm/utils.rb -------------------------------------------------------------------------------- /lib/rex/proto/ntp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/ntp.rb -------------------------------------------------------------------------------- /lib/rex/proto/ntp/modes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/ntp/modes.rb -------------------------------------------------------------------------------- /lib/rex/proto/pjl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/pjl.rb -------------------------------------------------------------------------------- /lib/rex/proto/pjl/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/pjl/client.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/martinvigo/metasploit-framework/HEAD/lib/rex/proto/rfb.rb -------------------------------------------------------------------------------- /lib/rex/proto/rfb/cipher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/rfb/cipher.rb -------------------------------------------------------------------------------- /lib/rex/proto/rfb/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/rfb/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/rmi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/rmi.rb -------------------------------------------------------------------------------- /lib/rex/proto/rmi/model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/rmi/model.rb -------------------------------------------------------------------------------- /lib/rex/proto/sip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/sip.rb -------------------------------------------------------------------------------- /lib/rex/proto/smb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/smb.rb -------------------------------------------------------------------------------- /lib/rex/proto/smb/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/smb/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/smb/crypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/smb/crypt.rb -------------------------------------------------------------------------------- /lib/rex/proto/smb/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/smb/utils.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/martinvigo/metasploit-framework/HEAD/lib/rex/proto/tftp.rb -------------------------------------------------------------------------------- /lib/rex/proto/tftp/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/tftp/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/tftp/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/proto/tftp/server.rb -------------------------------------------------------------------------------- /lib/rex/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/registry.rb -------------------------------------------------------------------------------- /lib/rex/registry/hive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/registry/hive.rb -------------------------------------------------------------------------------- /lib/rex/registry/lfkey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/registry/lfkey.rb -------------------------------------------------------------------------------- /lib/rex/registry/nodekey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/registry/nodekey.rb -------------------------------------------------------------------------------- /lib/rex/registry/regf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/registry/regf.rb -------------------------------------------------------------------------------- /lib/rex/registry/valuekey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/registry/valuekey.rb -------------------------------------------------------------------------------- /lib/rex/ropbuilder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ropbuilder.rb -------------------------------------------------------------------------------- /lib/rex/ropbuilder/rop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ropbuilder/rop.rb -------------------------------------------------------------------------------- /lib/rex/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/script.rb -------------------------------------------------------------------------------- /lib/rex/script/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/script/base.rb -------------------------------------------------------------------------------- /lib/rex/script/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/script/shell.rb -------------------------------------------------------------------------------- /lib/rex/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/service.rb -------------------------------------------------------------------------------- /lib/rex/service_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/service_manager.rb -------------------------------------------------------------------------------- /lib/rex/socket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/socket.rb -------------------------------------------------------------------------------- /lib/rex/socket/comm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/socket/comm.rb -------------------------------------------------------------------------------- /lib/rex/socket/comm/local.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/socket/comm/local.rb -------------------------------------------------------------------------------- /lib/rex/socket/ip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/socket/ip.rb -------------------------------------------------------------------------------- /lib/rex/socket/parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/socket/parameters.rb -------------------------------------------------------------------------------- /lib/rex/socket/ssl_tcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/socket/ssl_tcp.rb -------------------------------------------------------------------------------- /lib/rex/socket/tcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/socket/tcp.rb -------------------------------------------------------------------------------- /lib/rex/socket/tcp_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/socket/tcp_server.rb -------------------------------------------------------------------------------- /lib/rex/socket/udp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/socket/udp.rb -------------------------------------------------------------------------------- /lib/rex/sslscan/result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/sslscan/result.rb -------------------------------------------------------------------------------- /lib/rex/sslscan/scanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/sslscan/scanner.rb -------------------------------------------------------------------------------- /lib/rex/struct2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/struct2.rb -------------------------------------------------------------------------------- /lib/rex/struct2/c_struct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/struct2/c_struct.rb -------------------------------------------------------------------------------- /lib/rex/struct2/constant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/struct2/constant.rb -------------------------------------------------------------------------------- /lib/rex/struct2/element.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/struct2/element.rb -------------------------------------------------------------------------------- /lib/rex/struct2/generic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/struct2/generic.rb -------------------------------------------------------------------------------- /lib/rex/struct2/restraint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/struct2/restraint.rb -------------------------------------------------------------------------------- /lib/rex/struct2/s_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/struct2/s_string.rb -------------------------------------------------------------------------------- /lib/rex/struct2/s_struct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/struct2/s_struct.rb -------------------------------------------------------------------------------- /lib/rex/sync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/sync.rb -------------------------------------------------------------------------------- /lib/rex/sync/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/sync/event.rb -------------------------------------------------------------------------------- /lib/rex/sync/ref.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/sync/ref.rb -------------------------------------------------------------------------------- /lib/rex/sync/thread_safe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/sync/thread_safe.rb -------------------------------------------------------------------------------- /lib/rex/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/text.rb -------------------------------------------------------------------------------- /lib/rex/thread_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/thread_factory.rb -------------------------------------------------------------------------------- /lib/rex/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/time.rb -------------------------------------------------------------------------------- /lib/rex/transformer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/transformer.rb -------------------------------------------------------------------------------- /lib/rex/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ui.rb -------------------------------------------------------------------------------- /lib/rex/ui/interactive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ui/interactive.rb -------------------------------------------------------------------------------- /lib/rex/ui/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ui/output.rb -------------------------------------------------------------------------------- /lib/rex/ui/output/none.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ui/output/none.rb -------------------------------------------------------------------------------- /lib/rex/ui/subscriber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ui/subscriber.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ui/text/color.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ui/text/input.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/irb_shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ui/text/irb_shell.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ui/text/output.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ui/text/shell.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/ui/text/table.rb -------------------------------------------------------------------------------- /lib/rex/zip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/zip.rb -------------------------------------------------------------------------------- /lib/rex/zip/archive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/zip/archive.rb -------------------------------------------------------------------------------- /lib/rex/zip/blocks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/zip/blocks.rb -------------------------------------------------------------------------------- /lib/rex/zip/entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/zip/entry.rb -------------------------------------------------------------------------------- /lib/rex/zip/jar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/zip/jar.rb -------------------------------------------------------------------------------- /lib/rex/zip/samples/mkwar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/zip/samples/mkwar.rb -------------------------------------------------------------------------------- /lib/rex/zip/samples/mkzip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/rex/zip/samples/mkzip.rb -------------------------------------------------------------------------------- /lib/snmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/snmp.rb -------------------------------------------------------------------------------- /lib/snmp/agent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/snmp/agent.rb -------------------------------------------------------------------------------- /lib/snmp/ber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/snmp/ber.rb -------------------------------------------------------------------------------- /lib/snmp/manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/snmp/manager.rb -------------------------------------------------------------------------------- /lib/snmp/mib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/snmp/mib.rb -------------------------------------------------------------------------------- /lib/snmp/pdu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/snmp/pdu.rb -------------------------------------------------------------------------------- /lib/snmp/varbind.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/snmp/varbind.rb -------------------------------------------------------------------------------- /lib/sshkey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/sshkey.rb -------------------------------------------------------------------------------- /lib/sshkey/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/sshkey/LICENSE -------------------------------------------------------------------------------- /lib/sshkey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/sshkey/README.md -------------------------------------------------------------------------------- /lib/sshkey/lib/sshkey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/sshkey/lib/sshkey.rb -------------------------------------------------------------------------------- /lib/sshkey/lib/sshkey/version.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | class SSHKey 3 | VERSION = "1.3.0" 4 | end 5 | -------------------------------------------------------------------------------- /lib/tasks/cucumber.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/tasks/cucumber.rake -------------------------------------------------------------------------------- /lib/tasks/databases.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/tasks/databases.rake -------------------------------------------------------------------------------- /lib/telephony.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/telephony.rb -------------------------------------------------------------------------------- /lib/telephony/modem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/lib/telephony/modem.rb -------------------------------------------------------------------------------- /modules/auxiliary/vsploit/exploit/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/exploits/multi/vnc/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/nops/x86/opty2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/modules/nops/x86/opty2.rb -------------------------------------------------------------------------------- /msfbinscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/msfbinscan -------------------------------------------------------------------------------- /msfcli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/msfcli -------------------------------------------------------------------------------- /msfconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/msfconsole -------------------------------------------------------------------------------- /msfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/msfd -------------------------------------------------------------------------------- /msfelfscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/msfelfscan -------------------------------------------------------------------------------- /msfmachscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/msfmachscan -------------------------------------------------------------------------------- /msfpescan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/msfpescan -------------------------------------------------------------------------------- /msfrop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/msfrop -------------------------------------------------------------------------------- /msfrpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/msfrpc -------------------------------------------------------------------------------- /msfrpcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/msfrpcd -------------------------------------------------------------------------------- /msfupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/msfupdate -------------------------------------------------------------------------------- /msfvenom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/msfvenom -------------------------------------------------------------------------------- /plugins/alias.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/alias.rb -------------------------------------------------------------------------------- /plugins/auto_add_route.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/auto_add_route.rb -------------------------------------------------------------------------------- /plugins/db_credcollect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/db_credcollect.rb -------------------------------------------------------------------------------- /plugins/db_tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/db_tracker.rb -------------------------------------------------------------------------------- /plugins/event_tester.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/event_tester.rb -------------------------------------------------------------------------------- /plugins/ffautoregen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/ffautoregen.rb -------------------------------------------------------------------------------- /plugins/ips_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/ips_filter.rb -------------------------------------------------------------------------------- /plugins/lab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/lab.rb -------------------------------------------------------------------------------- /plugins/msfd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/msfd.rb -------------------------------------------------------------------------------- /plugins/msgrpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/msgrpc.rb -------------------------------------------------------------------------------- /plugins/nessus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/nessus.rb -------------------------------------------------------------------------------- /plugins/nexpose.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/nexpose.rb -------------------------------------------------------------------------------- /plugins/openvas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/openvas.rb -------------------------------------------------------------------------------- /plugins/pcap_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/pcap_log.rb -------------------------------------------------------------------------------- /plugins/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/request.rb -------------------------------------------------------------------------------- /plugins/sample.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/sample.rb -------------------------------------------------------------------------------- /plugins/session_tagger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/session_tagger.rb -------------------------------------------------------------------------------- /plugins/socket_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/socket_logger.rb -------------------------------------------------------------------------------- /plugins/sounds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/sounds.rb -------------------------------------------------------------------------------- /plugins/sqlmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/sqlmap.rb -------------------------------------------------------------------------------- /plugins/thread.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/thread.rb -------------------------------------------------------------------------------- /plugins/token_adduser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/token_adduser.rb -------------------------------------------------------------------------------- /plugins/token_hunter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/token_hunter.rb -------------------------------------------------------------------------------- /plugins/wiki.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/wiki.rb -------------------------------------------------------------------------------- /plugins/wmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/plugins/wmap.rb -------------------------------------------------------------------------------- /script/cucumber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/script/cucumber -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/script/rails -------------------------------------------------------------------------------- /scripts/ps/msflag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/scripts/ps/msflag.ps1 -------------------------------------------------------------------------------- /scripts/resource/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/shell/migrate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/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/rex/arch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/spec/lib/rex/arch_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/text_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/spec/lib/rex/text_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/time_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/spec/lib/rex/time_spec.rb -------------------------------------------------------------------------------- /spec/modules_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/spec/modules_spec.rb -------------------------------------------------------------------------------- /spec/msfcli_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/spec/msfcli_spec.rb -------------------------------------------------------------------------------- /spec/msfupdate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/spec/msfupdate_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/tools/jsobfu_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/spec/tools/jsobfu_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/martinvigo/metasploit-framework/HEAD/test/hooks/array_to_s.rb -------------------------------------------------------------------------------- /test/hooks/string_idx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/test/hooks/string_idx.rb -------------------------------------------------------------------------------- /test/lib/module_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/test/lib/module_test.rb -------------------------------------------------------------------------------- /test/lib/msf_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/test/lib/msf_matchers.rb -------------------------------------------------------------------------------- /test/lib/regexr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/test/lib/regexr.rb -------------------------------------------------------------------------------- /test/tests/rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/test/tests/rakefile -------------------------------------------------------------------------------- /test/tests/testbase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/test/tests/testbase.rb -------------------------------------------------------------------------------- /tools/committer_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/committer_count.rb -------------------------------------------------------------------------------- /tools/context/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/context/Makefile -------------------------------------------------------------------------------- /tools/context/cpuid-key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/context/cpuid-key.c -------------------------------------------------------------------------------- /tools/context/stat-key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/context/stat-key.c -------------------------------------------------------------------------------- /tools/context/time-key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/context/time-key.c -------------------------------------------------------------------------------- /tools/dev/add_pr_fetch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/dev/add_pr_fetch.rb -------------------------------------------------------------------------------- /tools/egghunter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/egghunter.rb -------------------------------------------------------------------------------- /tools/exe2vba.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/exe2vba.rb -------------------------------------------------------------------------------- /tools/exe2vbs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/exe2vbs.rb -------------------------------------------------------------------------------- /tools/find_badchars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/find_badchars.rb -------------------------------------------------------------------------------- /tools/halflm_second.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/halflm_second.rb -------------------------------------------------------------------------------- /tools/hmac_sha1_crack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/hmac_sha1_crack.rb -------------------------------------------------------------------------------- /tools/jsobfu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/jsobfu.rb -------------------------------------------------------------------------------- /tools/list_interfaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/list_interfaces.rb -------------------------------------------------------------------------------- /tools/lm2ntcrack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/lm2ntcrack.rb -------------------------------------------------------------------------------- /tools/makeiplist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/makeiplist.rb -------------------------------------------------------------------------------- /tools/md5_lookup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/md5_lookup.rb -------------------------------------------------------------------------------- /tools/memdump/memdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/memdump/memdump.c -------------------------------------------------------------------------------- /tools/memdump/memdump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/memdump/memdump.exe -------------------------------------------------------------------------------- /tools/metasm_shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/metasm_shell.rb -------------------------------------------------------------------------------- /tools/module_author.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/module_author.rb -------------------------------------------------------------------------------- /tools/module_commits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/module_commits.rb -------------------------------------------------------------------------------- /tools/module_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/module_count.rb -------------------------------------------------------------------------------- /tools/module_license.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/module_license.rb -------------------------------------------------------------------------------- /tools/module_mixins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/module_mixins.rb -------------------------------------------------------------------------------- /tools/module_payloads.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/module_payloads.rb -------------------------------------------------------------------------------- /tools/module_ports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/module_ports.rb -------------------------------------------------------------------------------- /tools/module_rank.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/module_rank.rb -------------------------------------------------------------------------------- /tools/module_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/module_reference.rb -------------------------------------------------------------------------------- /tools/module_targets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/module_targets.rb -------------------------------------------------------------------------------- /tools/msf_irb_shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/msf_irb_shell.rb -------------------------------------------------------------------------------- /tools/msftidy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/msftidy.rb -------------------------------------------------------------------------------- /tools/nasm_shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/nasm_shell.rb -------------------------------------------------------------------------------- /tools/pattern_create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/pattern_create.rb -------------------------------------------------------------------------------- /tools/pattern_offset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/pattern_offset.rb -------------------------------------------------------------------------------- /tools/payload_lengths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/payload_lengths.rb -------------------------------------------------------------------------------- /tools/pdf2xdp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/pdf2xdp.rb -------------------------------------------------------------------------------- /tools/profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/profile.sh -------------------------------------------------------------------------------- /tools/psexec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/psexec.rb -------------------------------------------------------------------------------- /tools/reg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/reg.rb -------------------------------------------------------------------------------- /tools/verify_datastore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/verify_datastore.rb -------------------------------------------------------------------------------- /tools/virustotal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/virustotal.rb -------------------------------------------------------------------------------- /tools/vxdigger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/vxdigger.rb -------------------------------------------------------------------------------- /tools/vxencrypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/vxencrypt.rb -------------------------------------------------------------------------------- /tools/vxmaster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinvigo/metasploit-framework/HEAD/tools/vxmaster.rb --------------------------------------------------------------------------------