├── .gitignore ├── .mailmap ├── .rspec ├── .ruby-gemset ├── .ruby-version ├── .simplecov ├── .travis.yml ├── .yardopts ├── CONTRIBUTING.md ├── COPYING ├── Gemfile ├── Gemfile.lock ├── HACKING ├── LICENSE ├── README.md ├── Rakefile ├── config ├── database.yml.example └── database.yml.travis ├── data ├── android │ ├── apk │ │ ├── AndroidManifest.xml │ │ ├── classes.dex │ │ ├── res │ │ │ ├── drawable-mdpi │ │ │ │ └── icon.png │ │ │ └── layout │ │ │ │ └── main.xml │ │ └── resources.arsc │ ├── meterpreter.jar │ ├── metstage.jar │ └── shell.jar ├── 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-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-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-2171.bin │ ├── CVE-2013-2465 │ │ ├── Exploit$MyColorModel.class │ │ ├── Exploit$MyColorSpace.class │ │ └── Exploit.class │ ├── 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-0422 │ │ ├── B.class │ │ └── Exploit.class │ ├── cve-2013-0431 │ │ ├── B.class │ │ ├── Exploit.class │ │ └── Exploit.ser │ ├── cve-2013-0758.swf │ ├── 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 │ │ └── exploit.dll │ ├── docx │ │ ├── [Content_Types].xml │ │ ├── _rels │ │ │ └── .rels │ │ ├── docProps │ │ │ └── app.xml │ │ └── word │ │ │ ├── _rels │ │ │ └── document.xml.rels │ │ │ ├── document.xml │ │ │ ├── fontTable.xml │ │ │ ├── settings.xml │ │ │ ├── styles.xml │ │ │ ├── theme │ │ │ └── theme1.xml │ │ │ └── webSettings.xml │ ├── exec_payload.msi │ ├── google_proxystylesheet.xml │ ├── iceweasel_macosx.icns │ ├── iphone_libtiff.bin │ ├── java_signed_applet │ │ └── SiteLoader.class │ ├── jboss_jmxinvoker │ │ └── DeploymentFileRepository │ │ │ ├── installstager.bin │ │ │ ├── osarch.bin │ │ │ ├── osname.bin │ │ │ ├── removestagerdirectory.bin │ │ │ ├── removestagerfile.bin │ │ │ └── version.bin │ ├── 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 │ ├── 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 │ ├── 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 │ └── 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 ├── java │ ├── com │ │ └── metasploit │ │ │ └── meterpreter │ │ │ ├── MemoryBufferURLConnection.class │ │ │ └── MemoryBufferURLStreamHandler.class │ ├── javaCompile │ │ ├── CompileSourceInMemory.class │ │ ├── CreateJarFile.class │ │ ├── JavaSourceFromString.class │ │ ├── SignJar$FilteredStream.class │ │ └── SignJar.class │ ├── javapayload │ │ └── stage │ │ │ ├── Meterpreter.class │ │ │ ├── Shell.class │ │ │ ├── Stage.class │ │ │ └── StreamForwarder.class │ └── metasploit │ │ ├── AESEncryption.class │ │ ├── Payload.class │ │ ├── PayloadServlet.class │ │ ├── PayloadTrustManager.class │ │ ├── RMILoader.class │ │ └── RMIPayload.class ├── 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 │ │ └── password.lst ├── lab │ ├── test_lab.yml │ └── test_targets.yml ├── meterpreter │ ├── elevator.x64.dll │ ├── elevator.x86.dll │ ├── ext_server_espia.x64.dll │ ├── ext_server_espia.x86.dll │ ├── ext_server_incognito.x64.dll │ ├── ext_server_incognito.x86.dll │ ├── ext_server_lanattacks.x64.dll │ ├── ext_server_lanattacks.x86.dll │ ├── ext_server_mimikatz.x64.dll │ ├── ext_server_mimikatz.x86.dll │ ├── ext_server_networkpug.lso │ ├── ext_server_priv.x64.dll │ ├── ext_server_priv.x86.dll │ ├── ext_server_sniffer.lso │ ├── ext_server_sniffer.x64.dll │ ├── ext_server_sniffer.x86.dll │ ├── ext_server_stdapi.jar │ ├── ext_server_stdapi.lso │ ├── ext_server_stdapi.php │ ├── ext_server_stdapi.py │ ├── ext_server_stdapi.x64.dll │ ├── ext_server_stdapi.x86.dll │ ├── metcli.exe │ ├── meterpreter.jar │ ├── meterpreter.php │ ├── meterpreter.py │ ├── metsrv.x64.dll │ ├── metsrv.x86.dll │ ├── metsvc-server.exe │ ├── metsvc.exe │ ├── msflinker_linux_x86.bin │ ├── screenshot.x64.dll │ └── screenshot.x86.dll ├── mime.yml ├── msfcrawler │ ├── basic.rb │ ├── forms.rb │ ├── frames.rb │ ├── image.rb │ ├── link.rb │ ├── objects.rb │ └── scripts.rb ├── msfpescan │ └── identify.txt ├── passivex │ └── passivex.dll ├── php │ ├── bind_tcp.php │ ├── bind_tcp_ipv6.php │ └── reverse_tcp.php ├── post │ ├── bypassuac-x64.exe │ ├── bypassuac-x86.exe │ └── enum_artifacts_list.txt ├── ropdb │ ├── flash.xml │ ├── hxds.xml │ ├── java.xml │ ├── msvcrt.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 ├── svn │ └── auth │ │ └── svn.ssl.server │ │ ├── 19bdfeb3753b288b06b4205235b24238 │ │ └── ae6796767fe833f43e1aac5614a3f229 ├── 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 │ ├── src │ │ ├── elf │ │ │ └── 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_darwin.bin │ ├── template_x64_linux.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.dll ├── vncdll.x64.dll ├── wmap │ ├── whaler.txt │ ├── wmap_404s.txt │ ├── wmap_dirs.txt │ ├── wmap_files.txt │ └── wmap_sample_profile.txt └── wordlists │ ├── burnett_top_1024.txt │ ├── burnett_top_500.txt │ ├── cms400net_default_userpass.txt │ ├── db2_default_pass.txt │ ├── db2_default_user.txt │ ├── db2_default_userpass.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 │ ├── 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 └── schema.rb ├── documentation ├── developers_guide.pdf ├── gendocs.sh ├── metasploit2 │ ├── README │ └── exploits.txt ├── msfconsole_rc_ruby_example.rc ├── msfopcode.txt ├── msfrpc.txt ├── posix_meterpreter.txt ├── rpm │ └── metasploit.spec ├── samples │ ├── framework │ │ ├── dump_module_info.rb │ │ ├── encode_file.rb │ │ ├── enumerate_modules.rb │ │ ├── run_exploit_using_base.rb │ │ └── run_exploit_using_core.rb │ ├── modules │ │ ├── auxiliary │ │ │ └── sample.rb │ │ ├── encoders │ │ │ └── sample.rb │ │ ├── exploits │ │ │ ├── ie_browser.rb │ │ │ └── sample.rb │ │ ├── nops │ │ │ └── sample.rb │ │ ├── payloads │ │ │ └── singles │ │ │ │ └── sample.rb │ │ └── post │ │ │ └── sample.rb │ ├── pro │ │ ├── msfrpc_pro_discover.rb │ │ ├── msfrpc_pro_exploit.rb │ │ ├── msfrpc_pro_import.rb │ │ ├── msfrpc_pro_nexpose.rb │ │ └── msfrpc_pro_report.rb │ ├── scripts │ │ ├── meterpreter_script_template.rb │ │ └── resource_script.rb │ └── vulnapps │ │ ├── exploitme-posix │ │ ├── Makefile │ │ └── exploitme-posix.c │ │ ├── php │ │ └── test.php │ │ └── testsrv │ │ ├── Makefile │ │ ├── README │ │ ├── testsrv.c │ │ └── testsrv.exe ├── users_guide.tex ├── users_guide_4.2.pdf ├── users_guide_4.3.pdf └── wmap.txt ├── 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 ├── ruby-lorcon │ ├── Lorcon.c │ ├── Lorcon.h │ ├── README │ ├── extconf.rb │ └── test.rb ├── ruby-lorcon2 │ ├── Lorcon2.c │ ├── Lorcon2.h │ ├── README │ ├── extconf.rb │ ├── test.rb │ └── upstream.svn ├── 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 │ ├── ReflectiveDllInjection_v1.0.zip │ ├── 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-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-2171 │ │ ├── Makefile │ │ └── exploit.c │ ├── CVE-2013-2465 │ │ ├── Exploit.java │ │ └── Makefile │ ├── 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 │ │ ├── Win32 │ │ │ └── .keep │ │ ├── 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 │ │ ├── source.rb │ │ │ └── .keep │ │ ├── stdafx.h │ │ ├── targetver.h │ │ └── x64 │ │ │ └── .keep │ ├── 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-0422 │ │ ├── B.java │ │ ├── Exploit.java │ │ └── Makefile │ ├── cve-2013-0431 │ │ ├── B.java │ │ ├── Exploit.java │ │ ├── Makefile │ │ └── Serializer.java │ ├── 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 │ │ ├── LICENSE.txt │ │ ├── Readme.md │ │ ├── dll │ │ │ ├── reflective_dll.sln │ │ │ ├── reflective_dll.vcproj │ │ │ ├── reflective_dll.vcxproj │ │ │ ├── reflective_dll.vcxproj.filters │ │ │ └── src │ │ │ │ ├── ComplexPath.h │ │ │ │ ├── ReflectiveDLLInjection.h │ │ │ │ ├── ReflectiveDll.c │ │ │ │ ├── ReflectiveLoader.c │ │ │ │ └── ReflectiveLoader.h │ │ └── rdi.sln │ ├── exec_payload_msi │ │ └── exec_payload.wxs │ ├── jre17u17 │ │ ├── Exploit.java │ │ └── Makefile │ └── splunk │ │ └── upload_app_exec │ │ ├── bin │ │ └── msf_exec.py │ │ ├── default │ │ ├── app.conf │ │ └── commands.conf │ │ └── metadata │ │ └── default.meta │ ├── 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 │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ └── 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_exitfunk.asm │ │ ├── block_rc4.asm │ │ ├── block_recv.asm │ │ ├── block_recv_rc4.asm │ │ ├── block_reverse_http.asm │ │ ├── block_reverse_https.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_shell.asm │ │ ├── hash.py │ │ ├── kernel │ │ └── stager_sysenter_hook.asm │ │ ├── migrate │ │ ├── apc.asm │ │ ├── executex64.asm │ │ └── migrate.asm │ │ ├── single │ │ ├── alloc_execute.asm │ │ ├── createthread.asm │ │ ├── single_exec.asm │ │ ├── single_loadlibrary.asm │ │ ├── single_shell_bind_tcp.asm │ │ └── single_shell_reverse_tcp.asm │ │ ├── stage │ │ ├── stage_shell.asm │ │ └── stage_upexec.asm │ │ ├── stager │ │ ├── stager_bind_tcp_nx.asm │ │ ├── stager_bind_tcp_rc4.asm │ │ ├── stager_reverse_http.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 │ │ └── 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 │ ├── loader │ ├── LICENSE.txt │ ├── LoadLibraryR.c │ ├── LoadLibraryR.h │ ├── ReflectiveDLLInjection.h │ ├── ReflectiveLoader.c │ ├── ReflectiveLoader.h │ ├── context.c │ ├── context.h │ ├── inject.c │ ├── inject.h │ ├── loader.c │ ├── loader.h │ ├── loader.rc │ ├── loader.vcproj │ ├── ps.c │ ├── ps.h │ ├── session.c │ └── session.h │ ├── output │ ├── vncdll.dll │ └── vncdll.x64.dll │ └── 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 │ ├── ReflectiveDLLInjection.h │ ├── ReflectiveLoader.c │ ├── ReflectiveLoader.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.vcproj │ ├── 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 │ ├── vncdll.sln │ └── 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 ├── 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 ├── fastlib.rb ├── metasm.rb ├── metasm │ ├── .hg_archival.txt │ ├── .hgtags │ ├── BUGS │ ├── CREDITS │ ├── INSTALL │ ├── LICENCE │ ├── README │ ├── TODO │ ├── doc │ │ ├── code_organisation.txt │ │ ├── const_missing.txt │ │ ├── core │ │ │ ├── DynLdr.txt │ │ │ ├── ExeFormat.txt │ │ │ ├── Expression.txt │ │ │ ├── GNUExports.txt │ │ │ ├── Ia32.txt │ │ │ ├── SerialStruct.txt │ │ │ ├── VirtualString.txt │ │ │ ├── WindowsExports.txt │ │ │ └── index.txt │ │ ├── core_classes.txt │ │ ├── feature_list.txt │ │ ├── index.txt │ │ ├── install_notes.txt │ │ ├── style.css │ │ ├── usage │ │ │ └── index.txt │ │ └── use_cases.txt │ ├── metasm.rb │ ├── metasm │ │ ├── arm.rb │ │ ├── arm │ │ │ ├── debug.rb │ │ │ ├── decode.rb │ │ │ ├── encode.rb │ │ │ ├── main.rb │ │ │ ├── opcodes.rb │ │ │ ├── parse.rb │ │ │ └── render.rb │ │ ├── compile_c.rb │ │ ├── dalvik.rb │ │ ├── dalvik │ │ │ ├── decode.rb │ │ │ ├── main.rb │ │ │ └── opcodes.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 │ │ │ ├── macho.rb │ │ │ ├── main.rb │ │ │ ├── mz.rb │ │ │ ├── nds.rb │ │ │ ├── pe.rb │ │ │ ├── serialstruct.rb │ │ │ ├── shellcode.rb │ │ │ └── xcoff.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 │ │ ├── ia32.rb │ │ ├── ia32 │ │ │ ├── compile_c.rb │ │ │ ├── debug.rb │ │ │ ├── decode.rb │ │ │ ├── decompile.rb │ │ │ ├── encode.rb │ │ │ ├── main.rb │ │ │ ├── opcodes.rb │ │ │ ├── parse.rb │ │ │ └── render.rb │ │ ├── main.rb │ │ ├── mips.rb │ │ ├── mips │ │ │ ├── compile_c.rb │ │ │ ├── decode.rb │ │ │ ├── encode.rb │ │ │ ├── main.rb │ │ │ ├── opcodes.rb │ │ │ ├── parse.rb │ │ │ └── render.rb │ │ ├── os │ │ │ ├── gnu_exports.rb │ │ │ ├── linux.rb │ │ │ ├── main.rb │ │ │ ├── remote.rb │ │ │ ├── windows.rb │ │ │ └── windows_exports.rb │ │ ├── parse.rb │ │ ├── parse_c.rb │ │ ├── pic16c │ │ │ ├── decode.rb │ │ │ ├── main.rb │ │ │ └── opcodes.rb │ │ ├── ppc.rb │ │ ├── ppc │ │ │ ├── decode.rb │ │ │ ├── decompile.rb │ │ │ ├── encode.rb │ │ │ ├── main.rb │ │ │ ├── opcodes.rb │ │ │ └── parse.rb │ │ ├── preprocessor.rb │ │ ├── render.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 │ ├── misc │ │ ├── bottleneck.rb │ │ ├── cheader-findpppath.rb │ │ ├── hexdiff.rb │ │ ├── hexdump.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 │ │ │ ├── cppobj_funcall.rb │ │ │ ├── dasm_all.rb │ │ │ ├── deobfuscate.rb │ │ │ ├── dump_text.rb │ │ │ ├── findgadget.rb │ │ │ ├── hl_opcode.rb │ │ │ ├── hotfix_gtk_dbg.rb │ │ │ ├── match_libsigs.rb │ │ │ ├── namelocalvars.rb │ │ │ ├── patch_file.rb │ │ │ ├── scanfuncstart.rb │ │ │ ├── scanxrefs.rb │ │ │ └── selfmodify.rb │ │ ├── dasmnavig.rb │ │ ├── dbg-apihook.rb │ │ ├── dbg-plugins │ │ │ └── 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 │ │ ├── gdbclient.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 │ │ ├── rubstop.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 │ │ ├── dasm.rb │ │ ├── dynldr.rb │ │ ├── encodeddata.rb │ │ ├── ia32.rb │ │ ├── mips.rb │ │ ├── parse_c.rb │ │ ├── preprocessor.rb │ │ └── x86_64.rb ├── metasploit │ ├── framework.rb │ └── framework │ │ └── database.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_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 │ │ │ ├── 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 │ │ ├── auxiliary.rb │ │ ├── auxiliary │ │ │ ├── auth_brute.rb │ │ │ ├── cisco.rb │ │ │ ├── commandshell.rb │ │ │ ├── crawler.rb │ │ │ ├── dos.rb │ │ │ ├── fuzzer.rb │ │ │ ├── iax2.rb │ │ │ ├── jtr.rb │ │ │ ├── login.rb │ │ │ ├── mime_types.rb │ │ │ ├── mixins.rb │ │ │ ├── nmap.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 │ │ ├── db.rb │ │ ├── db_export.rb │ │ ├── db_manager.rb │ │ ├── db_manager │ │ │ ├── import_msf_xml.rb │ │ │ └── migration.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_injector.rb │ │ ├── exploit.rb │ │ ├── exploit │ │ │ ├── afp.rb │ │ │ ├── arkeia.rb │ │ │ ├── browser_autopwn.rb │ │ │ ├── brute.rb │ │ │ ├── brutetargets.rb │ │ │ ├── capture.rb │ │ │ ├── cmdstager.rb │ │ │ ├── cmdstager_bourne.rb │ │ │ ├── cmdstager_debug_asm.rb │ │ │ ├── cmdstager_debug_write.rb │ │ │ ├── cmdstager_echo.rb │ │ │ ├── cmdstager_tftp.rb │ │ │ ├── cmdstager_vbs.rb │ │ │ ├── cmdstager_vbs_adodb.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 │ │ │ ├── http │ │ │ │ ├── client.rb │ │ │ │ └── server.rb │ │ │ ├── imap.rb │ │ │ ├── ip.rb │ │ │ ├── ipv6.rb │ │ │ ├── java.rb │ │ │ ├── kernel_mode.rb │ │ │ ├── local.rb │ │ │ ├── local │ │ │ │ ├── compile_c.rb │ │ │ │ ├── linux.rb │ │ │ │ ├── linux_kernel.rb │ │ │ │ └── unix.rb │ │ │ ├── lorcon.rb │ │ │ ├── lorcon2.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 │ │ │ ├── riff.rb │ │ │ ├── ropdb.rb │ │ │ ├── seh.rb │ │ │ ├── smb.rb │ │ │ ├── smb │ │ │ │ ├── authenticated.rb │ │ │ │ └── psexec.rb │ │ │ ├── smtp.rb │ │ │ ├── smtp_deliver.rb │ │ │ ├── snmp.rb │ │ │ ├── sunrpc.rb │ │ │ ├── tcp.rb │ │ │ ├── telnet.rb │ │ │ ├── tftp.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_http.rb │ │ │ ├── reverse_https.rb │ │ │ ├── reverse_https_proxy.rb │ │ │ ├── reverse_ipv6_http.rb │ │ │ ├── reverse_ipv6_https.rb │ │ │ ├── reverse_tcp.rb │ │ │ ├── reverse_tcp_allports.rb │ │ │ ├── reverse_tcp_double.rb │ │ │ ├── reverse_tcp_double_ssl.rb │ │ │ └── reverse_tcp_ssl.rb │ │ ├── module.rb │ │ ├── module │ │ │ ├── author.rb │ │ │ ├── auxiliary_action.rb │ │ │ ├── deprecated.rb │ │ │ ├── has_actions.rb │ │ │ ├── platform.rb │ │ │ ├── platform_list.rb │ │ │ ├── reference.rb │ │ │ └── target.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 │ │ │ │ ├── archive.rb │ │ │ │ ├── base.rb │ │ │ │ └── directory.rb │ │ │ ├── metasploit_class_compatibility_error.rb │ │ │ ├── namespace.rb │ │ │ └── version_compatibility_error.rb │ │ ├── nop.rb │ │ ├── option_container.rb │ │ ├── payload.rb │ │ ├── payload │ │ │ ├── aix.rb │ │ │ ├── bsd.rb │ │ │ ├── dalvik.rb │ │ │ ├── generic.rb │ │ │ ├── java.rb │ │ │ ├── linux.rb │ │ │ ├── netware.rb │ │ │ ├── osx.rb │ │ │ ├── osx │ │ │ │ └── bundleinject.rb │ │ │ ├── php.rb │ │ │ ├── ruby.rb │ │ │ ├── single.rb │ │ │ ├── solaris.rb │ │ │ ├── stager.rb │ │ │ ├── windows.rb │ │ │ └── windows │ │ │ │ ├── dllinject.rb │ │ │ │ ├── exec.rb │ │ │ │ ├── loadlibrary.rb │ │ │ │ ├── prepend_migrate.rb │ │ │ │ ├── reflectivedllinject.rb │ │ │ │ └── x64 │ │ │ │ └── reflectivedllinject.rb │ │ ├── payload_set.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 │ │ │ ├── windows.rb │ │ │ └── windows │ │ │ │ ├── accounts.rb │ │ │ │ ├── cli_parse.rb │ │ │ │ ├── eventlog.rb │ │ │ │ ├── file_info.rb │ │ │ │ ├── powershell.rb │ │ │ │ ├── priv.rb │ │ │ │ ├── process.rb │ │ │ │ ├── railgun.rb │ │ │ │ ├── registry.rb │ │ │ │ ├── services.rb │ │ │ │ ├── shadowcopy.rb │ │ │ │ └── user_profiles.rb │ │ ├── post_mixin.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 │ │ ├── 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 │ │ ├── task_manager.rb │ │ └── thread_manager.rb │ ├── events.rb │ ├── http │ │ ├── wordpress.rb │ │ └── wordpress │ │ │ ├── base.rb │ │ │ ├── helpers.rb │ │ │ ├── login.rb │ │ │ ├── posts.rb │ │ │ ├── uris.rb │ │ │ ├── users.rb │ │ │ └── version.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 │ │ ├── logos │ │ │ ├── 3kom-superhack.txt │ │ │ ├── branded-longhorn.txt │ │ │ ├── cow-head.txt │ │ │ ├── cowsay.txt │ │ │ ├── figlet.txt │ │ │ ├── i-heart-shells.txt │ │ │ ├── metasploit-shield.txt │ │ │ ├── missile-command.txt │ │ │ ├── ninja.txt │ │ │ ├── null-pointer-deref.txt │ │ │ ├── r7-metasploit.txt │ │ │ ├── test.rb │ │ │ ├── wake-up-neo.txt │ │ │ └── workflow.txt │ │ ├── web.rb │ │ └── web │ │ │ ├── comm.rb │ │ │ ├── console.rb │ │ │ └── driver.rb │ ├── util.rb │ ├── util │ │ ├── exe.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 ├── rbreadline.rb ├── readline_compatible.rb ├── rex.rb ├── rex │ ├── LICENSE │ ├── arch.rb │ ├── arch │ │ ├── sparc.rb │ │ └── x86.rb │ ├── assembly │ │ └── nasm.rb │ ├── codepage.map │ ├── compat.rb │ ├── constants.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 │ │ │ ├── tftp.rb │ │ │ └── vbs.rb │ │ ├── egghunter.rb │ │ ├── encryptjs.rb │ │ ├── heaplib.js.b64 │ │ ├── heaplib.rb │ │ ├── javascriptosdetect.js │ │ ├── javascriptosdetect.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 │ ├── job_container.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 │ │ ├── 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 │ │ ├── fusionvm_nokogiri.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 │ │ ├── retina_xml.rb │ │ ├── unattend.rb │ │ └── wapiti_nokogiri.rb │ ├── payloads.rb │ ├── payloads │ │ ├── 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 │ │ │ │ ├── espia │ │ │ │ │ ├── espia.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── incognito │ │ │ │ │ ├── incognito.rb │ │ │ │ │ └── tlv.rb │ │ │ │ ├── lanattacks │ │ │ │ │ ├── lanattacks.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_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 │ │ │ │ ├── core.rb │ │ │ │ ├── espia.rb │ │ │ │ ├── incognito.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 │ ├── proto.rb │ ├── proto │ │ ├── addp.rb │ │ ├── dcerpc.rb │ │ ├── dcerpc │ │ │ ├── client.rb │ │ │ ├── exceptions.rb │ │ │ ├── handle.rb │ │ │ ├── ndr.rb │ │ │ ├── packet.rb │ │ │ ├── response.rb │ │ │ └── uuid.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 │ │ │ ├── header.rb │ │ │ ├── packet.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 │ │ ├── natpmp.rb │ │ ├── natpmp │ │ │ ├── constants.rb │ │ │ └── packet.rb │ │ ├── ntlm.rb │ │ ├── ntlm │ │ │ ├── base.rb │ │ │ ├── constants.rb │ │ │ ├── crypt.rb │ │ │ ├── exceptions.rb │ │ │ ├── message.rb │ │ │ └── utils.rb │ │ ├── proxy │ │ │ └── socks4a.rb │ │ ├── rfb.rb │ │ ├── rfb │ │ │ ├── cipher.rb │ │ │ ├── client.rb │ │ │ └── constants.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 │ │ ├── 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 │ ├── test.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 ├── rkelly.rb ├── rkelly │ ├── constants.rb │ ├── generated_parser.output │ ├── generated_parser.rb │ ├── js.rb │ ├── js │ │ ├── array.rb │ │ ├── base.rb │ │ ├── boolean.rb │ │ ├── function.rb │ │ ├── function_prototype.rb │ │ ├── global_object.rb │ │ ├── math.rb │ │ ├── nan.rb │ │ ├── number.rb │ │ ├── object.rb │ │ ├── object_prototype.rb │ │ ├── property.rb │ │ ├── scope.rb │ │ └── string.rb │ ├── lexeme.rb │ ├── nodes.rb │ ├── nodes │ │ ├── binary_node.rb │ │ ├── bracket_accessor_node.rb │ │ ├── case_clause_node.rb │ │ ├── comma_node.rb │ │ ├── conditional_node.rb │ │ ├── dot_accessor_node.rb │ │ ├── for_in_node.rb │ │ ├── for_node.rb │ │ ├── function_call_node.rb │ │ ├── function_decl_node.rb │ │ ├── function_expr_node.rb │ │ ├── if_node.rb │ │ ├── label_node.rb │ │ ├── new_expr_node.rb │ │ ├── node.rb │ │ ├── not_strict_equal_node.rb │ │ ├── op_equal_node.rb │ │ ├── postfix_node.rb │ │ ├── prefix_node.rb │ │ ├── property_node.rb │ │ ├── resolve_node.rb │ │ ├── strict_equal_node.rb │ │ ├── try_node.rb │ │ └── var_decl_node.rb │ ├── parser.rb │ ├── runtime.rb │ ├── runtime │ │ ├── ruby_function.rb │ │ └── scope_chain.rb │ ├── syntax_error.rb │ ├── token.rb │ ├── tokenizer.rb │ ├── visitable.rb │ ├── visitors.rb │ └── visitors │ │ ├── dot_visitor.rb │ │ ├── ecma_visitor.rb │ │ ├── enumerable_visitor.rb │ │ ├── evaluation_visitor.rb │ │ ├── function_visitor.rb │ │ ├── pointcut_visitor.rb │ │ ├── real_sexp_visitor.rb │ │ ├── sexp_visitor.rb │ │ └── visitor.rb ├── snmp.rb ├── snmp │ ├── agent.rb │ ├── ber.rb │ ├── manager.rb │ ├── mib.rb │ ├── pdu.rb │ └── varbind.rb ├── sshkey.rb ├── sshkey │ ├── LICENSE │ ├── README.md │ └── lib │ │ ├── sshkey.rb │ │ └── sshkey │ │ └── version.rb ├── tasks │ ├── database.rake │ └── rails.rake ├── telephony.rb ├── telephony │ └── modem.rb ├── windows_console_color_support.rb ├── zip.rb └── zip │ ├── ChangeLog │ ├── NEWS │ ├── README │ ├── TODO │ ├── ioextras.rb │ ├── samples │ ├── example.rb │ ├── example_filesystem.rb │ ├── gtkRubyzip.rb │ ├── qtzip.rb │ ├── write_simple.rb │ └── zipfind.rb │ ├── stdrubyext.rb │ ├── tempfile_bugfixed.rb │ ├── test │ ├── alltests.rb │ ├── data │ │ ├── file1.txt │ │ ├── file1.txt.deflatedData │ │ ├── file2.txt │ │ ├── generated │ │ │ ├── 5entry.zip │ │ │ ├── empty.txt │ │ │ ├── empty.zip │ │ │ ├── empty_chmod640.txt │ │ │ ├── emptytestdir │ │ │ │ └── .keep │ │ │ ├── longAscii.txt │ │ │ ├── longBinary.bin │ │ │ ├── randomAscii1.txt │ │ │ ├── randomAscii2.txt │ │ │ ├── randomAscii3.txt │ │ │ ├── randomBinary1.bin │ │ │ ├── randomBinary2.bin │ │ │ ├── short.txt │ │ │ ├── test1.zip │ │ │ └── zipWithDir.zip │ │ ├── notzippedruby.rb │ │ ├── rubycode.zip │ │ ├── rubycode2.zip │ │ ├── testDirectory.bin │ │ └── zipWithDirs.zip │ ├── gentestfiles.rb │ ├── ioextrastest.rb │ ├── stdrubyexttest.rb │ ├── zipfilesystemtest.rb │ ├── ziprequiretest.rb │ └── ziptest.rb │ ├── zip.rb │ ├── zipfilesystem.rb │ └── ziprequire.rb ├── modules ├── auxiliary │ ├── admin │ │ ├── 2wire │ │ │ └── xslt_password_reset.rb │ │ ├── backupexec │ │ │ ├── dump.rb │ │ │ └── registry.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 │ │ ├── hp │ │ │ └── hp_data_protector_cmd.rb │ │ ├── http │ │ │ ├── axigen_file_access.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_seam_exec.rb │ │ │ ├── linksys_e1500_e2500_exec.rb │ │ │ ├── linksys_wrt54gl_exec.rb │ │ │ ├── mutiny_frontend_read_delete.rb │ │ │ ├── nexpose_xxe_file_read.rb │ │ │ ├── novell_file_reporter_filedelete.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 │ │ ├── maxdb │ │ │ └── maxdb_cons_exec.rb │ │ ├── misc │ │ │ └── wol.rb │ │ ├── motorola │ │ │ └── wr850g_cred.rb │ │ ├── ms │ │ │ └── ms08_059_his2006.rb │ │ ├── mssql │ │ │ ├── mssql_enum.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 │ │ │ ├── ge_proficy_substitute_traversal.rb │ │ │ ├── igss_exec_17.rb │ │ │ ├── modicon_command.rb │ │ │ ├── modicon_password_recovery.rb │ │ │ ├── modicon_stux_transfer.rb │ │ │ └── multi_cip_command.rb │ │ ├── serverprotect │ │ │ └── file.rb │ │ ├── smb │ │ │ ├── check_dir_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_unshadow.rb │ │ └── postgres_md5_crack.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_mod_isapi.rb │ │ │ ├── apache_range_dos.rb │ │ │ ├── apache_tomcat_transfer_encoding.rb │ │ │ ├── canon_wireless_printer.rb │ │ │ ├── dell_openmanage_post.rb │ │ │ ├── hashcollision_dos.rb │ │ │ ├── monkey_headers.rb │ │ │ ├── novell_file_reporter_heap_bof.rb │ │ │ ├── sonicwall_ssl_format.rb │ │ │ └── webrick_regex.rb │ │ ├── mdns │ │ │ └── avahi_portzero.rb │ │ ├── misc │ │ │ ├── dopewars.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 │ │ ├── smtp │ │ │ └── sendmail_prescan.rb │ │ ├── solaris │ │ │ └── lpd │ │ │ │ └── cascade_delete.rb │ │ ├── ssl │ │ │ ├── dtls_changecipherspec.rb │ │ │ └── openssl_aesni.rb │ │ ├── syslog │ │ │ └── rsyslog_long_tag.rb │ │ ├── tcp │ │ │ ├── junos_tcp_opt.rb │ │ │ └── synflood.rb │ │ ├── upnp │ │ │ └── miniupnpd_dos.rb │ │ ├── wifi │ │ │ ├── apple_orinoco_probe_response.rb │ │ │ ├── cts_rts_flood.rb │ │ │ ├── deauth.rb │ │ │ ├── fakeap.rb │ │ │ ├── file2air.rb │ │ │ ├── netgear_ma521_rates.rb │ │ │ ├── netgear_wg311pci.rb │ │ │ ├── probe_resp_null_ssid.rb │ │ │ ├── ssidlist_beacon.rb │ │ │ └── wifun.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 │ │ │ ├── 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 │ │ ├── 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 │ │ └── wifi │ │ │ ├── fuzz_beacon.rb │ │ │ └── fuzz_proberesp.rb │ ├── gather │ │ ├── android_htmlfileprovider.rb │ │ ├── apache_rave_creds.rb │ │ ├── apple_safari_webarchive_uxss.rb │ │ ├── checkpoint_hostname.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_info.rb │ │ ├── dns_reverse_lookup.rb │ │ ├── dns_srv_enum.rb │ │ ├── eaton_nsm_creds.rb │ │ ├── enum_dns.rb │ │ ├── external_ip.rb │ │ ├── gpp_standalone.rb │ │ ├── hp_snac_domain_creds.rb │ │ ├── impersonate_ssl.rb │ │ ├── natpmp_external_address.rb │ │ ├── search_email_collector.rb │ │ ├── shodan_search.rb │ │ ├── wp_w3_total_cache_hash_extract.rb │ │ └── xbmc_traversal.rb │ ├── parser │ │ └── unattend.rb │ ├── pdf │ │ └── foxit │ │ │ └── authbypass.rb │ ├── scanner │ │ ├── afp │ │ │ ├── afp_login.rb │ │ │ └── afp_server_info.rb │ │ ├── backdoor │ │ │ └── energizer_duo_detect.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 │ │ ├── dect │ │ │ ├── call_scanner.rb │ │ │ └── station_scanner.rb │ │ ├── discovery │ │ │ ├── arp_sweep.rb │ │ │ ├── ipv6_multicast_ping.rb │ │ │ ├── ipv6_neighbor.rb │ │ │ ├── ipv6_neighbor_router_advertisement.rb │ │ │ ├── udp_probe.rb │ │ │ └── udp_sweep.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 │ │ │ ├── adobe_xml_inject.rb │ │ │ ├── apache_activemq_source_disclosure.rb │ │ │ ├── apache_activemq_traversal.rb │ │ │ ├── apache_userdir_enum.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 │ │ │ ├── brute_dirs.rb │ │ │ ├── canon_wireless.rb │ │ │ ├── cert.rb │ │ │ ├── cisco_device_manager.rb │ │ │ ├── cisco_ios_auth_bypass.rb │ │ │ ├── cisco_ironport_enum.rb │ │ │ ├── cisco_nac_manager_traversal.rb │ │ │ ├── clansphere_traversal.rb │ │ │ ├── cold_fusion_version.rb │ │ │ ├── coldfusion_locale_traversal.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 │ │ │ ├── dolibarr_login.rb │ │ │ ├── drupal_views_user_enum.rb │ │ │ ├── ektron_cms400net.rb │ │ │ ├── enum_wayback.rb │ │ │ ├── error_sql_injection.rb │ │ │ ├── file_same_name_dir.rb │ │ │ ├── files_dir.rb │ │ │ ├── frontpage_login.rb │ │ │ ├── glassfish_login.rb │ │ │ ├── groupwise_agents_http_traversal.rb │ │ │ ├── hp_imc_faultdownloadservlet_traversal.rb │ │ │ ├── hp_imc_ictdownloadservlet_traversal.rb │ │ │ ├── hp_imc_reportimgservlt_traversal.rb │ │ │ ├── hp_sitescope_getfileinternal_fileaccess.rb │ │ │ ├── hp_sitescope_getsitescopeconfiguration.rb │ │ │ ├── hp_sitescope_loadfilecontent_fileaccess.rb │ │ │ ├── hp_sys_mgmt_login.rb │ │ │ ├── http_hsts.rb │ │ │ ├── http_login.rb │ │ │ ├── http_put.rb │ │ │ ├── http_traversal.rb │ │ │ ├── http_version.rb │ │ │ ├── httpbl_lookup.rb │ │ │ ├── iis_internal_ip.rb │ │ │ ├── infovista_enum.rb │ │ │ ├── jboss_vulnscan.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_deviceexpert_traversal.rb │ │ │ ├── manageengine_securitymanager_traversal.rb │ │ │ ├── mediawiki_svg_fileaccess.rb │ │ │ ├── mod_negotiation_brute.rb │ │ │ ├── mod_negotiation_scanner.rb │ │ │ ├── ms09_020_webdav_unicode_bypass.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 │ │ │ ├── options.rb │ │ │ ├── owa_login.rb │ │ │ ├── prev_dir_same_name_file.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 │ │ │ ├── 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 │ │ │ ├── soap_xml.rb │ │ │ ├── sockso_traversal.rb │ │ │ ├── splunk_web_login.rb │ │ │ ├── sqlmap.rb │ │ │ ├── squid_pivot_scanning.rb │ │ │ ├── squiz_matrix_user_enum.rb │ │ │ ├── ssl.rb │ │ │ ├── svn_scanner.rb │ │ │ ├── svn_wcdb_scanner.rb │ │ │ ├── sybase_easerver_traversal.rb │ │ │ ├── symantec_brightmail_logfile.rb │ │ │ ├── titan_ftp_admin_pwd.rb │ │ │ ├── tomcat_enum.rb │ │ │ ├── tomcat_mgr_login.rb │ │ │ ├── tplink_traversal_noauth.rb │ │ │ ├── trace.rb │ │ │ ├── trace_axd.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 │ │ │ ├── wordpress_login_enum.rb │ │ │ ├── wordpress_pingback_access.rb │ │ │ ├── xpath.rb │ │ │ ├── yaws_traversal.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 │ │ ├── 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 │ │ │ ├── raysharp_dvr_passwords.rb │ │ │ ├── redis_server.rb │ │ │ ├── rosewill_rxs3211_passwords.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_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_readvar.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 │ │ │ ├── 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 │ │ ├── rdp │ │ │ └── ms12_020_check.rb │ │ ├── rogue │ │ │ ├── rogue_recv.rb │ │ │ └── rogue_send.rb │ │ ├── rservices │ │ │ ├── rexec_login.rb │ │ │ ├── rlogin_login.rb │ │ │ └── rsh_login.rb │ │ ├── sap │ │ │ ├── sap_ctc_verb_tampering_user_mgmt.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_version.rb │ │ ├── smtp │ │ │ ├── smtp_enum.rb │ │ │ ├── smtp_relay.rb │ │ │ └── smtp_version.rb │ │ ├── snmp │ │ │ ├── aix_version.rb │ │ │ ├── cisco_config_tftp.rb │ │ │ ├── cisco_upload_file.rb │ │ │ ├── snmp_enum.rb │ │ │ ├── snmp_enumshares.rb │ │ │ ├── snmp_enumusers.rb │ │ │ ├── snmp_login.rb │ │ │ ├── snmp_set.rb │ │ │ └── xerox_workcentre_enumusers.rb │ │ ├── ssh │ │ │ ├── ssh_identify_pubkeys.rb │ │ │ ├── ssh_login.rb │ │ │ ├── ssh_login_pubkey.rb │ │ │ └── ssh_version.rb │ │ ├── telephony │ │ │ └── wardial.rb │ │ ├── telnet │ │ │ ├── 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 │ │ ├── upnp │ │ │ └── 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 │ │ ├── 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 │ │ ├── dhcp.rb │ │ ├── dns │ │ │ └── spoofhelper.rb │ │ ├── fakedns.rb │ │ ├── ftp.rb │ │ ├── http_ntlmrelay.rb │ │ ├── icmp_exfil.rb │ │ ├── pxexploit.rb │ │ ├── socks4a.rb │ │ ├── socks_unc.rb │ │ ├── tftp.rb │ │ ├── webkit_xslt_dropper.rb │ │ └── wpad.rb │ ├── sniffer │ │ └── psnuffle.rb │ ├── spoof │ │ ├── arp │ │ │ └── arp_poisoning.rb │ │ ├── cisco │ │ │ └── dtp.rb │ │ ├── dns │ │ │ ├── bailiwicked_domain.rb │ │ │ ├── bailiwicked_host.rb │ │ │ └── compare_results.rb │ │ ├── llmnr │ │ │ └── llmnr_response.rb │ │ ├── nbns │ │ │ └── nbns_response.rb │ │ ├── replay │ │ │ └── pcap_replay.rb │ │ └── wifi │ │ │ ├── airpwn.rb │ │ │ └── dnspwn.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 │ │ ├── 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 │ │ ├── generic_sh.rb │ │ ├── ifs.rb │ │ └── printf_php_mq.rb │ ├── generic │ │ └── none.rb │ ├── mipsbe │ │ └── longxor.rb │ ├── mipsle │ │ └── 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 │ │ ├── shikata_ga_nai.rb │ │ ├── single_static_bit.rb │ │ ├── unicode_mixed.rb │ │ └── unicode_upper.rb ├── exploits │ ├── aix │ │ ├── rpc_cmsd_opcode21.rb │ │ └── rpc_ttdbserverd_realpath.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 │ ├── freebsd │ │ ├── ftp │ │ │ └── proftp_telnet_iac.rb │ │ ├── local │ │ │ └── mmap.rb │ │ ├── samba │ │ │ └── trans2open.rb │ │ ├── tacacs │ │ │ └── xtacacsd_report.rb │ │ └── telnet │ │ │ └── telnet_encrypt_keyid.rb │ ├── hpux │ │ └── lpd │ │ │ └── cleanup_exec.rb │ ├── irix │ │ └── lpd │ │ │ └── tagprinter_exec.rb │ ├── linux │ │ ├── browser │ │ │ └── adobe_flashplayer_aslaunch.rb │ │ ├── ftp │ │ │ ├── proftp_sreplace.rb │ │ │ └── proftp_telnet_iac.rb │ │ ├── games │ │ │ └── ut2004_secure.rb │ │ ├── http │ │ │ ├── alcatel_omnipcx_mastercgi_exec.rb │ │ │ ├── astium_sqli_upload.rb │ │ │ ├── ddwrt_cgibin_exec.rb │ │ │ ├── dlink_command_php_exec_noauth.rb │ │ │ ├── dlink_diagnostic_exec_noauth.rb │ │ │ ├── dlink_dir300_exec_telnet.rb │ │ │ ├── dlink_dir615_up_exec.rb │ │ │ ├── dlink_upnp_exec_noauth.rb │ │ │ ├── dlink_upnp_exec_noauth_telnetd.rb │ │ │ ├── dolibarr_cmd_exec.rb │ │ │ ├── dreambox_openpli_shell.rb │ │ │ ├── esva_exec.rb │ │ │ ├── foreman_openstack_satellite_code_exec.rb │ │ │ ├── gpsd_format_string.rb │ │ │ ├── groundwork_monarch_cmd_exec.rb │ │ │ ├── hp_system_management.rb │ │ │ ├── linksys_apply_cgi.rb │ │ │ ├── linksys_e1500_apply_exec.rb │ │ │ ├── linksys_wrt160nv2_apply_exec.rb │ │ │ ├── linksys_wrt54gl_apply_exec.rb │ │ │ ├── mutiny_frontend_upload.rb │ │ │ ├── netgear_dgn1000b_setup_exec.rb │ │ │ ├── netgear_dgn2200b_pppoe_exec.rb │ │ │ ├── nginx_chunked_size.rb │ │ │ ├── openfiler_networkcard_exec.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 │ │ │ ├── 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 │ │ │ ├── vcms_upload.rb │ │ │ ├── wanem_exec.rb │ │ │ ├── webcalendar_settings_exec.rb │ │ │ ├── webid_converter.rb │ │ │ ├── zen_load_balancer_exec.rb │ │ │ └── zenoss_showdaemonxmlconfig_exec.rb │ │ ├── ids │ │ │ └── snortbopre.rb │ │ ├── imap │ │ │ └── imap_uw_lsub.rb │ │ ├── local │ │ │ ├── hp_smhstart.rb │ │ │ ├── kloxo_lxsuexec.rb │ │ │ ├── sock_sendpage.rb │ │ │ ├── sophos_wpa_clear_keys.rb │ │ │ ├── udev_netlink.rb │ │ │ ├── vmware_mount.rb │ │ │ └── zpanel_zsudo.rb │ │ ├── madwifi │ │ │ └── madwifi_giwscan_cb.rb │ │ ├── misc │ │ │ ├── accellion_fta_mpipe2.rb │ │ │ ├── drb_remote_codeexec.rb │ │ │ ├── gld_postfix.rb │ │ │ ├── hp_data_protector_cmd_exec.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 │ │ │ └── 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 │ │ ├── ssh │ │ │ ├── f5_bigip_known_privkey.rb │ │ │ └── symantec_smg_ssh.rb │ │ ├── telnet │ │ │ └── telnet_encrypt_keyid.rb │ │ └── upnp │ │ │ └── miniupnpd_soap_bof.rb │ ├── multi │ │ ├── browser │ │ │ ├── firefox_escape_retval.rb │ │ │ ├── firefox_queryinterface.rb │ │ │ ├── firefox_svg_plugin.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 │ │ ├── fileformat │ │ │ ├── adobe_u3d_meshcont.rb │ │ │ ├── maple_maplet.rb │ │ │ ├── nodejs_js_yaml_load_code_exec.rb │ │ │ └── peazip_command_injection.rb │ │ ├── ftp │ │ │ └── wuftpd_site_exec_format.rb │ │ ├── handler.rb │ │ ├── http │ │ │ ├── activecollab_chat.rb │ │ │ ├── ajaxplorer_checkinstall_exec.rb │ │ │ ├── apprain_upload_exec.rb │ │ │ ├── auxilium_upload_exec.rb │ │ │ ├── axis2_deployer.rb │ │ │ ├── cuteflow_upload_exec.rb │ │ │ ├── eaton_nsm_code_exec.rb │ │ │ ├── extplorer_upload_exec.rb │ │ │ ├── familycms_less_exec.rb │ │ │ ├── freenas_exec_raw.rb │ │ │ ├── gestioip_exec.rb │ │ │ ├── gitorious_graph.rb │ │ │ ├── glassfish_deployer.rb │ │ │ ├── glossword_upload_exec.rb │ │ │ ├── glpi_install_rce.rb │ │ │ ├── horde_href_backdoor.rb │ │ │ ├── hp_sitescope_uploadfileshandler.rb │ │ │ ├── hp_sys_mgmt_exec.rb │ │ │ ├── jboss_bshdeployer.rb │ │ │ ├── jboss_deploymentfilerepository.rb │ │ │ ├── jboss_invoke_deploy.rb │ │ │ ├── jboss_maindeployer.rb │ │ │ ├── jenkins_script_console.rb │ │ │ ├── kordil_edms_upload_exec.rb │ │ │ ├── lcms_php_exec.rb │ │ │ ├── linksys_wrt110_cmd_exec_stager.rb │ │ │ ├── log1cms_ajax_create_folder.rb │ │ │ ├── manageengine_search_sqli.rb │ │ │ ├── mobilecartly_upload_exec.rb │ │ │ ├── movabletype_upgrade_exec.rb │ │ │ ├── mutiny_subnetmask_exec.rb │ │ │ ├── netwin_surgeftp_exec.rb │ │ │ ├── op5_license.rb │ │ │ ├── op5_welcome.rb │ │ │ ├── openfire_auth_bypass.rb │ │ │ ├── openx_backdoor_php.rb │ │ │ ├── php_cgi_arg_injection.rb │ │ │ ├── php_volunteer_upload_exec.rb │ │ │ ├── phpldapadmin_query_engine.rb │ │ │ ├── phpmyadmin_3522_backdoor.rb │ │ │ ├── phpmyadmin_preg_replace.rb │ │ │ ├── phpscheduleit_start_date.rb │ │ │ ├── phptax_exec.rb │ │ │ ├── plone_popen2.rb │ │ │ ├── pmwiki_pagelist.rb │ │ │ ├── polarcms_upload_exec.rb │ │ │ ├── qdpm_upload_exec.rb │ │ │ ├── rails_json_yaml_code_exec.rb │ │ │ ├── rails_secret_deserialization.rb │ │ │ ├── rails_xml_yaml_code_exec.rb │ │ │ ├── sflog_upload_exec.rb │ │ │ ├── sit_file_upload.rb │ │ │ ├── snortreport_exec.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_exception_delegator.rb │ │ │ ├── struts_code_exec_parameters.rb │ │ │ ├── struts_default_action_mapper.rb │ │ │ ├── struts_include_params.rb │ │ │ ├── stunshell_eval.rb │ │ │ ├── stunshell_exec.rb │ │ │ ├── sun_jsws_dav_options.rb │ │ │ ├── testlink_upload_exec.rb │ │ │ ├── tomcat_mgr_deploy.rb │ │ │ ├── traq_plugin_exec.rb │ │ │ ├── v0pcr3w_exec.rb │ │ │ ├── vbseo_proc_deutf.rb │ │ │ ├── webpagetest_upload_exec.rb │ │ │ ├── wikka_spam_exec.rb │ │ │ └── zenworks_control_center_upload.rb │ │ ├── ids │ │ │ └── snort_dce_rpc.rb │ │ ├── misc │ │ │ ├── batik_svg_java.rb │ │ │ ├── hp_vsa_exec.rb │ │ │ ├── indesign_server_soap.rb │ │ │ ├── java_rmi_server.rb │ │ │ ├── openview_omniback_exec.rb │ │ │ ├── pbot_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 │ │ ├── ssh │ │ │ └── sshexec.rb │ │ ├── svn │ │ │ └── svnserve_date.rb │ │ ├── upnp │ │ │ └── libupnp_ssdp_overflow.rb │ │ ├── vnc │ │ │ └── .keep │ │ └── 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 │ │ │ └── software_update.rb │ │ ├── email │ │ │ └── mailapp_image_exec.rb │ │ ├── ftp │ │ │ └── webstar_ftp_user.rb │ │ ├── http │ │ │ └── evocam_webserver.rb │ │ ├── local │ │ │ ├── setuid_tunnelblick.rb │ │ │ ├── setuid_viscosity.rb │ │ │ └── sudo_password_bypass.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 │ │ ├── ftp │ │ │ ├── proftpd_133c_backdoor.rb │ │ │ └── vsftpd_234_backdoor.rb │ │ ├── http │ │ │ ├── contentkeeperweb_mimencode.rb │ │ │ ├── ctek_skyrouter.rb │ │ │ ├── freepbx_callmenum.rb │ │ │ └── lifesize_room.rb │ │ ├── irc │ │ │ └── unreal_ircd_3281_backdoor.rb │ │ ├── local │ │ │ └── setuid_nmap.rb │ │ ├── misc │ │ │ ├── distcc_exec.rb │ │ │ ├── qnx_qconn_exec.rb │ │ │ ├── spamassassin_exec.rb │ │ │ └── zabbix_agent_exec.rb │ │ ├── smtp │ │ │ ├── clamav_milter_blackhole.rb │ │ │ └── exim4_string_format.rb │ │ ├── ssh │ │ │ └── tectia_passwd_changereq.rb │ │ └── webapp │ │ │ ├── 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 │ │ │ ├── generic_exec.rb │ │ │ ├── google_proxystylesheet_exec.rb │ │ │ ├── graphite_pickle_exec.rb │ │ │ ├── guestbook_ssi_exec.rb │ │ │ ├── hastymail_exec.rb │ │ │ ├── havalite_upload_exec.rb │ │ │ ├── instantcms_exec.rb │ │ │ ├── invision_pboard_unserialize_exec.rb │ │ │ ├── joomla_comjce_imgmanager.rb │ │ │ ├── joomla_media_upload_exec.rb │ │ │ ├── joomla_tinybrowser.rb │ │ │ ├── libretto_upload_exec.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 │ │ │ ├── openemr_sqli_privesc_upload.rb │ │ │ ├── openemr_upload_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_lastpost.rb │ │ │ ├── php_wordpress_total_cache.rb │ │ │ ├── php_xmlrpc_eval.rb │ │ │ ├── phpbb_highlight.rb │ │ │ ├── phpmyadmin_config.rb │ │ │ ├── projectpier_upload_exec.rb │ │ │ ├── qtss_parse_xml_exec.rb │ │ │ ├── redmine_scm_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 │ │ │ ├── twiki_history.rb │ │ │ ├── twiki_maketext.rb │ │ │ ├── twiki_search.rb │ │ │ ├── webmin_show_cgi_exec.rb │ │ │ ├── wp_advanced_custom_fields_exec.rb │ │ │ ├── wp_asset_manager_upload_exec.rb │ │ │ ├── wp_google_document_embedder_exec.rb │ │ │ ├── wp_property_upload_exec.rb │ │ │ ├── xoda_file_upload.rb │ │ │ ├── zeroshell_exec.rb │ │ │ ├── zoneminder_packagecontrol_exec.rb │ │ │ └── zpanel_username_exec.rb │ └── windows │ │ ├── antivirus │ │ ├── ams_hndlrsvc.rb │ │ ├── ams_xfr.rb │ │ ├── symantec_iao.rb │ │ ├── symantec_rtvscan.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 │ │ ├── tape_engine_8A.rb │ │ └── universal_agent.rb │ │ ├── browser │ │ ├── adobe_cooltype_sing.rb │ │ ├── adobe_flash_mp4_cprt.rb │ │ ├── adobe_flash_otf_font.rb │ │ ├── adobe_flash_rtmp.rb │ │ ├── adobe_flash_sps.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_utilprintf.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 │ │ ├── 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 │ │ ├── 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_037_svg_dashstyle.rb │ │ ├── ms13_055_canchor.rb │ │ ├── ms13_059_cflatmarkuppointer.rb │ │ ├── ms13_069_caret.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 │ │ ├── winamp_playlist_unc.rb │ │ ├── winamp_ultravox.rb │ │ ├── windvd7_applicationtype.rb │ │ ├── winzip_fileview.rb │ │ ├── wmi_admintools.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 │ │ ├── driver │ │ ├── broadcom_wifi_ssid.rb │ │ ├── dlink_wifi_rates.rb │ │ └── netgear_wg111_beacon.rb │ │ ├── email │ │ ├── ms07_017_ani_loadimage_chunksize.rb │ │ ├── ms10_045_outlook_ref_only.rb │ │ └── ms10_045_outlook_ref_resolve.rb │ │ ├── emc │ │ ├── alphastor_agent.rb │ │ └── networker_format_string.rb │ │ ├── fileformat │ │ ├── a-pdf_wav_to_mp3.rb │ │ ├── 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_u3d_meshdecl.rb │ │ ├── adobe_utilprintf.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 │ │ ├── aviosoft_plf_buf.rb │ │ ├── bacnet_csv.rb │ │ ├── blazedvd_hdtv_bof.rb │ │ ├── blazedvd_plf.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 │ │ ├── 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_pcm_ws.rb │ │ ├── ideal_migration_ipj.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_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 │ │ ├── ms_visual_basic_vbp.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 │ │ ├── real_networks_netzip_bof.rb │ │ ├── real_player_url_property_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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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_request_headers_bof.rb │ │ ├── coldfusion_fckeditor.rb │ │ ├── cyclope_ess_sqli.rb │ │ ├── easyftp_list.rb │ │ ├── edirectory_host.rb │ │ ├── edirectory_imonitor.rb │ │ ├── efs_easychatserver_username.rb │ │ ├── ektron_xslt_exec.rb │ │ ├── ezserver_http.rb │ │ ├── fdm_auth_header.rb │ │ ├── hp_imc_mibfileupload.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 │ │ ├── kolibri_http.rb │ │ ├── landesk_thinkmanagement_upload_asp.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 │ │ ├── osb_uname_jlist.rb │ │ ├── peercast_url.rb │ │ ├── php_apache_request_headers_bof.rb │ │ ├── privatewire_gateway.rb │ │ ├── psoproxy91_overflow.rb │ │ ├── rabidhamster_r4_log.rb │ │ ├── sambar6_search_results.rb │ │ ├── sap_configservlet_exec_noauth.rb │ │ ├── sap_host_control_cmd_exec.rb │ │ ├── sap_mgmt_con_osexec_payload.rb │ │ ├── sapdb_webtools.rb │ │ ├── savant_31_overflow.rb │ │ ├── servu_session_cookie.rb │ │ ├── shoutcast_format.rb │ │ ├── shttpd_post.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 │ │ ├── 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 │ │ ├── bypassuac.rb │ │ ├── current_user_psexec.rb │ │ ├── ikeext_service.rb │ │ ├── ms10_092_schelevator.rb │ │ ├── ms11_080_afdjoinleaf.rb │ │ ├── ms13_005_hwnd_broadcast.rb │ │ ├── novell_client_nicm.rb │ │ ├── novell_client_nwfs.rb │ │ ├── payload_inject.rb │ │ ├── persistence.rb │ │ ├── ppr_flatten_rec.rb │ │ ├── s4u_persistence.rb │ │ ├── service_permissions.rb │ │ └── trusted_service_path.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 │ │ ├── actfax_raw_server_bof.rb │ │ ├── agentxpp_receive_agentx.rb │ │ ├── allmediaserver_bof.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_dtbclslogin.rb │ │ ├── hp_dataprotector_new_folder.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 │ │ ├── poisonivy_bof.rb │ │ ├── poppeeper_date.rb │ │ ├── poppeeper_uidl.rb │ │ ├── psh_web_delivery.rb │ │ ├── pxexploit.rb │ │ ├── realtek_playlist.rb │ │ ├── sap_2005_license.rb │ │ ├── sap_netweaver_dispatcher.rb │ │ ├── shixxnote_font.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_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 │ │ ├── citect_scada_odbc.rb │ │ ├── codesys_gateway_server_traversal.rb │ │ ├── codesys_web_server.rb │ │ ├── daq_factory_bof.rb │ │ ├── factorylink_csservice.rb │ │ ├── factorylink_vrn_09.rb │ │ ├── iconics_genbroker.rb │ │ ├── iconics_webhmi_setactivexguid.rb │ │ ├── igss9_igssdataserver_listall.rb │ │ ├── igss9_igssdataserver_rename.rb │ │ ├── igss9_misc.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 │ │ ├── sip │ │ ├── aim_triton_cseq.rb │ │ ├── sipxezphone_cseq.rb │ │ └── sipxphone_cseq.rb │ │ ├── smb │ │ ├── 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_061_spoolss.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 │ │ │ └── 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_netcat.rb │ │ │ │ ├── bind_netcat_gaping.rb │ │ │ │ ├── bind_netcat_gaping_ipv6.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_netcat.rb │ │ │ │ ├── reverse_netcat_gaping.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_perl.rb │ │ │ │ ├── bind_perl_ipv6.rb │ │ │ │ ├── bind_ruby.rb │ │ │ │ ├── download_eval_vbs.rb │ │ │ │ ├── download_exec_vbs.rb │ │ │ │ ├── reverse_perl.rb │ │ │ │ └── reverse_ruby.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 │ │ │ │ └── shell_reverse_tcp.rb │ │ │ ├── mipsle │ │ │ │ ├── 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_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_find_port.rb │ │ │ │ ├── shell_find_tag.rb │ │ │ │ ├── shell_reverse_tcp.rb │ │ │ │ └── shell_reverse_tcp2.rb │ │ ├── nodejs │ │ │ ├── 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_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 │ │ │ ├── loadlibrary.rb │ │ │ ├── messagebox.rb │ │ │ ├── metsvc_bind_tcp.rb │ │ │ ├── metsvc_reverse_tcp.rb │ │ │ ├── shell_bind_tcp.rb │ │ │ ├── shell_bind_tcp_xpfw.rb │ │ │ ├── shell_reverse_tcp.rb │ │ │ ├── speak_pwned.rb │ │ │ └── x64 │ │ │ ├── exec.rb │ │ │ ├── loadlibrary.rb │ │ │ ├── shell_bind_tcp.rb │ │ │ └── shell_reverse_tcp.rb │ ├── stagers │ │ ├── android │ │ │ └── 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 │ │ │ ├── x64 │ │ │ │ ├── bind_tcp.rb │ │ │ │ └── reverse_tcp.rb │ │ │ └── x86 │ │ │ │ ├── bind_ipv6_tcp.rb │ │ │ │ ├── bind_nonx_tcp.rb │ │ │ │ ├── bind_tcp.rb │ │ │ │ ├── find_tag.rb │ │ │ │ ├── reverse_ipv6_tcp.rb │ │ │ │ ├── reverse_nonx_tcp.rb │ │ │ │ └── reverse_tcp.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 │ │ │ └── reverse_tcp.rb │ │ ├── python │ │ │ ├── bind_tcp.rb │ │ │ └── reverse_tcp.rb │ │ └── windows │ │ │ ├── bind_ipv6_tcp.rb │ │ │ ├── bind_nonx_tcp.rb │ │ │ ├── bind_tcp.rb │ │ │ ├── bind_tcp_rc4.rb │ │ │ ├── findtag_ord.rb │ │ │ ├── reverse_http.rb │ │ │ ├── reverse_https.rb │ │ │ ├── reverse_https_proxy.rb │ │ │ ├── reverse_ipv6_http.rb │ │ │ ├── reverse_ipv6_https.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 │ │ │ └── x64 │ │ │ ├── bind_tcp.rb │ │ │ ├── reverse_https.rb │ │ │ └── reverse_tcp.rb │ └── stages │ │ ├── android │ │ ├── meterpreter.rb │ │ └── shell.rb │ │ ├── bsd │ │ └── x86 │ │ │ └── shell.rb │ │ ├── bsdi │ │ └── x86 │ │ │ └── shell.rb │ │ ├── java │ │ ├── meterpreter.rb │ │ └── shell.rb │ │ ├── linux │ │ ├── armle │ │ │ └── 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 │ ├── linux │ ├── gather │ │ ├── checkvm.rb │ │ ├── ecryptfs_creds.rb │ │ ├── enum_configs.rb │ │ ├── enum_network.rb │ │ ├── enum_protections.rb │ │ ├── enum_system.rb │ │ ├── enum_users_history.rb │ │ ├── enum_xchat.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 │ │ ├── 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 │ │ ├── multi_command.rb │ │ ├── netrc_creds.rb │ │ ├── pgpass_creds.rb │ │ ├── pidgin_cred.rb │ │ ├── ping_sweep.rb │ │ ├── run_console_rc_file.rb │ │ ├── skype_enum.rb │ │ ├── ssh_creds.rb │ │ └── thunderbird_creds.rb │ ├── general │ │ ├── close.rb │ │ └── execute.rb │ └── manage │ │ ├── multi_post.rb │ │ ├── record_mic.rb │ │ ├── sudo.rb │ │ └── system_session.rb │ ├── osx │ ├── admin │ │ └── say.rb │ ├── capture │ │ └── keylog_recorder.rb │ ├── gather │ │ ├── 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 │ └── manage │ │ ├── record_mic.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 │ ├── ms10_073_kbdlayout.rb │ ├── net_runtime_modify.rb │ └── screen_unlock.rb │ ├── gather │ ├── arp_scanner.rb │ ├── bitcoin_jacker.rb │ ├── cachedump.rb │ ├── checkvm.rb │ ├── credentials │ │ ├── bulletproof_ftp.rb │ │ ├── coreftp.rb │ │ ├── credential_collector.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 │ │ ├── meebo.rb │ │ ├── mremote.rb │ │ ├── nimbuzz.rb │ │ ├── outlook.rb │ │ ├── razer_synapse.rb │ │ ├── razorsql.rb │ │ ├── smartftp.rb │ │ ├── spark_im.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_computers.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_domains.rb │ ├── enum_files.rb │ ├── enum_hostfile.rb │ ├── enum_ie.rb │ ├── enum_logged_on_users.rb │ ├── enum_ms_product_keys.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 │ ├── forensics │ │ ├── duqu_check.rb │ │ ├── enum_drives.rb │ │ ├── imager.rb │ │ ├── nbd_server.rb │ │ └── recovery_files.rb │ ├── hashdump.rb │ ├── local_admin_search_enum.rb │ ├── memory_grep.rb │ ├── netlm_downgrade.rb │ ├── resolve_hosts.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 │ ├── clone_proxy_settings.rb │ ├── delete_user.rb │ ├── download_exec.rb │ ├── enable_rdp.rb │ ├── enable_support_account.rb │ ├── inject_ca.rb │ ├── inject_host.rb │ ├── migrate.rb │ ├── mssql_local_auth_bypass.rb │ ├── multi_meterpreter_inject.rb │ ├── nbd_server.rb │ ├── payload_inject.rb │ ├── persistence.rb │ ├── portproxy.rb │ ├── powershell │ │ └── exec_powershell.rb │ ├── pptp_tunnel.rb │ ├── pxexploit.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 │ ├── resolve_hostname.rb │ └── resolve_ip.rb │ └── wlan │ ├── wlan_bss_list.rb │ ├── wlan_current_connection.rb │ ├── wlan_disconnect.rb │ └── wlan_profile.rb ├── msfbinscan ├── msfcli ├── msfconsole ├── msfd ├── msfelfscan ├── msfencode ├── msfmachscan ├── msfpayload ├── msfpescan ├── msfrop ├── msfrpc ├── msfrpcd ├── msfupdate ├── msfvenom ├── plugins ├── alias.rb ├── auto_add_route.rb ├── db_credcollect.rb ├── db_tracker.rb ├── editor.rb ├── event_tester.rb ├── ffautoregen.rb ├── ips_filter.rb ├── lab.rb ├── msfd.rb ├── msgrpc.rb ├── nessus.rb ├── nexpose.rb ├── openvas.rb ├── pcap_log.rb ├── sample.rb ├── session_tagger.rb ├── socket_logger.rb ├── sounds.rb ├── thread.rb ├── token_adduser.rb ├── token_hunter.rb └── wmap.rb ├── 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 │ ├── 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 │ └── spawn_meterpreter.rb ├── spec ├── factories │ └── mdm │ │ ├── exported_web_vulns.rb │ │ └── module_details.rb ├── file_fixtures │ ├── short_address_list.txt │ └── string_list.txt ├── lib │ ├── active_record │ │ └── connection_adapters │ │ │ └── abstract_adapter │ │ │ └── connection_pool_spec.rb │ ├── fastlib_spec.rb │ ├── msf │ │ ├── base │ │ │ └── simple │ │ │ │ └── framework_spec.rb │ │ ├── core │ │ │ ├── data_store_spec.rb │ │ │ ├── exe │ │ │ │ └── segment_injector_spec.rb │ │ │ ├── exploit │ │ │ │ ├── capture_spec.rb │ │ │ │ └── http │ │ │ │ │ ├── client_spec.rb │ │ │ │ │ └── server_spec.rb │ │ │ ├── module_manager_spec.rb │ │ │ ├── module_spec.rb │ │ │ ├── modules │ │ │ │ ├── error_spec.rb │ │ │ │ ├── loader │ │ │ │ │ ├── archive_spec.rb │ │ │ │ │ ├── base_spec.rb │ │ │ │ │ └── directory_spec.rb │ │ │ │ ├── metasploit_class_compatibility_error_spec.rb │ │ │ │ ├── namespace_spec.rb │ │ │ │ └── version_compatibility_error_spec.rb │ │ │ ├── option_container_spec.rb │ │ │ ├── options │ │ │ │ ├── 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 │ │ │ └── task_manager_spec.rb │ │ ├── db_manager │ │ │ └── export_spec.rb │ │ ├── db_manager_spec.rb │ │ ├── ui │ │ │ └── command_dispatcher │ │ │ │ ├── auxiliary_spec.rb │ │ │ │ ├── core_spec.rb │ │ │ │ ├── db_spec.rb │ │ │ │ └── exploit_spec.rb │ │ └── util │ │ │ └── exe_spec.rb │ └── rex │ │ ├── encoding │ │ └── xor │ │ │ ├── byte_spec.rb │ │ │ ├── dword_spec.rb │ │ │ ├── qword_spec.rb │ │ │ └── word_spec.rb │ │ ├── file_utils_spec.rb │ │ ├── parser │ │ ├── nmap_xml_spec.rb │ │ └── unattend_spec.rb │ │ ├── post │ │ └── meterpreter │ │ │ ├── packet_parser_spec.rb │ │ │ └── packet_spec.rb │ │ ├── proto │ │ └── http │ │ │ ├── client_request_spec.rb │ │ │ ├── client_spec.rb │ │ │ └── response_spec.rb │ │ ├── random_identifier_generator_spec.rb │ │ ├── socket │ │ └── range_walker_spec.rb │ │ ├── sslscan │ │ ├── result_spec.rb │ │ └── scanner_spec.rb │ │ └── text_spec.rb ├── msfcli_spec.rb ├── msfvenom_spec.rb ├── spec_helper.rb └── support │ ├── matchers │ └── query_the_database.rb │ └── shared │ ├── contexts │ ├── database_cleaner.rb │ └── msf │ │ ├── db_manager.rb │ │ ├── modules │ │ ├── error_attributes.rb │ │ └── loader_base.rb │ │ ├── simple │ │ └── framework.rb │ │ ├── ui_driver.rb │ │ └── util │ │ └── exe.rb │ └── examples │ ├── msf │ ├── db_manager │ │ ├── export │ │ │ └── extract_module_detail_info_module_detail_child.rb │ │ ├── import_msf_xml.rb │ │ ├── import_msf_xml │ │ │ ├── check_msf_xml_version_with_root_tag.rb │ │ │ └── import_msf_web_element_specialization.rb │ │ ├── migration.rb │ │ ├── search_modules │ │ │ ├── mdm_module_platform_name_or_mdm_module_target_name_keyword.rb │ │ │ └── mdm_module_ref_name_keyword.rb │ │ ├── update_all_module_details_refresh.rb │ │ └── update_module_details_with_module_type.rb │ ├── module_manager │ │ ├── cache.rb │ │ ├── loading.rb │ │ └── module_paths.rb │ ├── modules │ │ ├── error_subclass_initialize.rb │ │ ├── loader_archive_read_module_content.rb │ │ └── version_compatibility_error.rb │ └── simple │ │ └── framework │ │ └── module_paths.rb │ ├── options.rb │ ├── typed_path.rb │ └── xor_encoder.rb ├── test ├── features │ ├── data │ │ └── test.exe │ ├── encoders.feature │ ├── handler.feature │ ├── payloads.feature │ ├── steps │ │ ├── common_steps.rb │ │ └── handler_steps.rb │ ├── support │ │ ├── .gitignore │ │ ├── env.rb │ │ └── test_config.rb │ └── windows_exploits.feature ├── 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 │ │ │ ├── ip_spoof.rb │ │ │ ├── recon_passive.rb │ │ │ ├── scanner_batch.rb │ │ │ ├── scanner_host.rb │ │ │ ├── scanner_range.rb │ │ │ └── space-check.rb │ ├── exploits │ │ └── test │ │ │ ├── aggressive.rb │ │ │ ├── check.rb │ │ │ ├── cmdweb.rb │ │ │ ├── dialup.rb │ │ │ ├── egghunter.rb │ │ │ ├── exploitme.rb │ │ │ ├── java_tester.rb │ │ │ ├── kernel.rb │ │ │ └── shell.rb │ └── post │ │ └── test │ │ ├── file.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 ├── convert_31.rb ├── dev ├── pre-commit-hook.rb ├── retab.rb └── set_binary_encoding.rb ├── exe2vba.rb ├── exe2vbs.rb ├── find_badchars.rb ├── halflm_second.rb ├── hmac_sha1_crack.rb ├── import_webscarab.rb ├── list_interfaces.rb ├── lm2ntcrack.rb ├── memdump ├── README.memdump ├── memdump.c └── memdump.exe ├── metasm_shell.rb ├── module_author.rb ├── module_changelog.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 ├── pack_fastlib.sh ├── pattern_create.rb ├── pattern_offset.rb ├── payload_lengths.rb ├── pdf2xdp.rb ├── profile.sh ├── psexec.rb ├── reg.rb ├── verify_datastore.rb ├── vxdigger.rb ├── vxencrypt.rb └── vxmaster.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/.mailmap -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | metasploit-framework 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 1.9.3-p448 2 | -------------------------------------------------------------------------------- /.simplecov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/.simplecov -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/.yardopts -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/COPYING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/HACKING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/Rakefile -------------------------------------------------------------------------------- /config/database.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/config/database.yml.example -------------------------------------------------------------------------------- /config/database.yml.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/config/database.yml.travis -------------------------------------------------------------------------------- /data/android/apk/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/android/apk/classes.dex -------------------------------------------------------------------------------- /data/android/meterpreter.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/android/meterpreter.jar -------------------------------------------------------------------------------- /data/android/metstage.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/android/metstage.jar -------------------------------------------------------------------------------- /data/android/shell.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/android/shell.jar -------------------------------------------------------------------------------- /data/cpuinfo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/cpuinfo/build.sh -------------------------------------------------------------------------------- /data/cpuinfo/cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/cpuinfo/cpuinfo.c -------------------------------------------------------------------------------- /data/cpuinfo/cpuinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/cpuinfo/cpuinfo.exe -------------------------------------------------------------------------------- /data/cpuinfo/cpuinfo.ia32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/cpuinfo/cpuinfo.ia32.bin -------------------------------------------------------------------------------- /data/cpuinfo/cpuinfo.ia64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/cpuinfo/cpuinfo.ia64.bin -------------------------------------------------------------------------------- /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/trustedsec/metasploit-framework/HEAD/data/eicar.txt -------------------------------------------------------------------------------- /data/emailer_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/docx/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/exploits/docx/_rels/.rels -------------------------------------------------------------------------------- /data/exploits/exec_payload.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/exploits/exec_payload.msi -------------------------------------------------------------------------------- /data/exploits/mp4player.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/exploits/mp4player.as -------------------------------------------------------------------------------- /data/exploits/mp4player.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/exploits/mp4player.fla -------------------------------------------------------------------------------- /data/exploits/mp4player.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/exploits/mp4player.swf -------------------------------------------------------------------------------- /data/exploits/mssql/h2b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/trustedsec/metasploit-framework/HEAD/data/exploits/pricedown.eot -------------------------------------------------------------------------------- /data/exploits/psnuffle/ftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/exploits/psnuffle/ftp.rb -------------------------------------------------------------------------------- /data/exploits/psnuffle/imap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/exploits/psnuffle/imap.rb -------------------------------------------------------------------------------- /data/exploits/psnuffle/pop3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/exploits/psnuffle/pop3.rb -------------------------------------------------------------------------------- /data/exploits/psnuffle/smb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/exploits/psnuffle/smb.rb -------------------------------------------------------------------------------- /data/exploits/psnuffle/url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/exploits/psnuffle/url.rb -------------------------------------------------------------------------------- /data/exploits/runcalc.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/exploits/runcalc.hlp -------------------------------------------------------------------------------- /data/exploits/wifi/dnspwn/dnslist.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/ipwn/ipwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/ipwn/ipwn -------------------------------------------------------------------------------- /data/isight.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/isight.bundle -------------------------------------------------------------------------------- /data/john/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/README -------------------------------------------------------------------------------- /data/john/README-jumbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/README-jumbo -------------------------------------------------------------------------------- /data/john/README.Rapid7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/README.Rapid7.txt -------------------------------------------------------------------------------- /data/john/confs/john.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/confs/john.conf -------------------------------------------------------------------------------- /data/john/doc/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/CHANGES -------------------------------------------------------------------------------- /data/john/doc/CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/CONFIG -------------------------------------------------------------------------------- /data/john/doc/CONTACT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/CONTACT -------------------------------------------------------------------------------- /data/john/doc/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/CREDITS -------------------------------------------------------------------------------- /data/john/doc/EPi.patch.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/EPi.patch.README -------------------------------------------------------------------------------- /data/john/doc/EXAMPLES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/EXAMPLES -------------------------------------------------------------------------------- /data/john/doc/EXTERNAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/EXTERNAL -------------------------------------------------------------------------------- /data/john/doc/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/FAQ -------------------------------------------------------------------------------- /data/john/doc/HDAA_README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/HDAA_README -------------------------------------------------------------------------------- /data/john/doc/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/INSTALL -------------------------------------------------------------------------------- /data/john/doc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/LICENSE -------------------------------------------------------------------------------- /data/john/doc/LICENSE.mpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/LICENSE.mpi -------------------------------------------------------------------------------- /data/john/doc/MARKOV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/MARKOV -------------------------------------------------------------------------------- /data/john/doc/MD5_GENERIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/MD5_GENERIC -------------------------------------------------------------------------------- /data/john/doc/MODES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/MODES -------------------------------------------------------------------------------- /data/john/doc/NETNTLM_README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/NETNTLM_README -------------------------------------------------------------------------------- /data/john/doc/OPTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/OPTIONS -------------------------------------------------------------------------------- /data/john/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/README -------------------------------------------------------------------------------- /data/john/doc/README.mpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/README.mpi -------------------------------------------------------------------------------- /data/john/doc/RULES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/RULES -------------------------------------------------------------------------------- /data/john/doc/UTF8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/UTF8 -------------------------------------------------------------------------------- /data/john/doc/UTF8-DEVEL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/UTF8-DEVEL.txt -------------------------------------------------------------------------------- /data/john/doc/pdfcrack_README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/doc/pdfcrack_README -------------------------------------------------------------------------------- /data/john/doc/pdfcrack_TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/run.win32.any/mailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/run.win32.any/mailer -------------------------------------------------------------------------------- /data/john/run.win32.any/stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/run.win32.any/stats -------------------------------------------------------------------------------- /data/john/run.win32.mmx/mailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/run.win32.mmx/mailer -------------------------------------------------------------------------------- /data/john/run.win32.mmx/stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/run.win32.mmx/stats -------------------------------------------------------------------------------- /data/john/run.win32.sse2/stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/run.win32.sse2/stats -------------------------------------------------------------------------------- /data/john/src.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/john/src.tar.bz2 -------------------------------------------------------------------------------- /data/lab/test_lab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/lab/test_lab.yml -------------------------------------------------------------------------------- /data/lab/test_targets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/lab/test_targets.yml -------------------------------------------------------------------------------- /data/meterpreter/metcli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/meterpreter/metcli.exe -------------------------------------------------------------------------------- /data/meterpreter/metsvc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/meterpreter/metsvc.exe -------------------------------------------------------------------------------- /data/mime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/mime.yml -------------------------------------------------------------------------------- /data/msfcrawler/basic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/msfcrawler/basic.rb -------------------------------------------------------------------------------- /data/msfcrawler/forms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/msfcrawler/forms.rb -------------------------------------------------------------------------------- /data/msfcrawler/frames.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/msfcrawler/frames.rb -------------------------------------------------------------------------------- /data/msfcrawler/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/msfcrawler/image.rb -------------------------------------------------------------------------------- /data/msfcrawler/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/msfcrawler/link.rb -------------------------------------------------------------------------------- /data/msfcrawler/objects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/msfcrawler/objects.rb -------------------------------------------------------------------------------- /data/msfcrawler/scripts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/msfcrawler/scripts.rb -------------------------------------------------------------------------------- /data/msfpescan/identify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/msfpescan/identify.txt -------------------------------------------------------------------------------- /data/passivex/passivex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/passivex/passivex.dll -------------------------------------------------------------------------------- /data/php/bind_tcp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/php/bind_tcp.php -------------------------------------------------------------------------------- /data/php/bind_tcp_ipv6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/php/bind_tcp_ipv6.php -------------------------------------------------------------------------------- /data/php/reverse_tcp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/php/reverse_tcp.php -------------------------------------------------------------------------------- /data/post/bypassuac-x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/post/bypassuac-x64.exe -------------------------------------------------------------------------------- /data/post/bypassuac-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/post/bypassuac-x86.exe -------------------------------------------------------------------------------- /data/ropdb/flash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/ropdb/flash.xml -------------------------------------------------------------------------------- /data/ropdb/hxds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/ropdb/hxds.xml -------------------------------------------------------------------------------- /data/ropdb/java.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/ropdb/java.xml -------------------------------------------------------------------------------- /data/ropdb/msvcrt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/ropdb/msvcrt.xml -------------------------------------------------------------------------------- /data/ropdb/samba.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/APM-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/APPC-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/APPC-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/APPN-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/APPN-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/APS-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/APS-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/ATM-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/ATM-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/ATM2-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/ATM2-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/BGP4-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/BGP4-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/CLNS-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/DLSW-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DS0-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/DS0-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DS1-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/DS1-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DS3-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/DS3-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/DSA-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/DSA-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/EBN-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/EBN-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/GSMP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/HPR-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/IF-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/IP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/IPOA-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/IPV6-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/ISDN-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/ISDN-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/L2TP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/L2TP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/MAU-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/MAU-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/MIP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/MIP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/MTA-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/MTA-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/NHRP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/NHRP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/OSPF-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/OSPF-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/PIM-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/PIM-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/PINT-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/RMON-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/ROHC-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/ROHC-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/RSVP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/RSVP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/RTP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/RTP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/SIP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/SIP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/SMON-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/SMON-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/TCP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/TCP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/UDP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/UDP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/UPS-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/UPS-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/VRRP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/VRRP-MIB.yaml -------------------------------------------------------------------------------- /data/snmp/mibs/WWW-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/snmp/mibs/WWW-MIB.yaml -------------------------------------------------------------------------------- /data/sounds/aiff2wav.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/sounds/aiff2wav.rb -------------------------------------------------------------------------------- /data/sounds/default/dot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/sounds/default/dot.wav -------------------------------------------------------------------------------- /data/sounds/default/num0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/sounds/default/num0.wav -------------------------------------------------------------------------------- /data/sounds/default/num1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/sounds/default/num1.wav -------------------------------------------------------------------------------- /data/sounds/default/num2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/sounds/default/num2.wav -------------------------------------------------------------------------------- /data/sounds/default/num3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/sounds/default/num3.wav -------------------------------------------------------------------------------- /data/sounds/default/num4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/sounds/default/num4.wav -------------------------------------------------------------------------------- /data/sounds/default/num5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/sounds/default/num5.wav -------------------------------------------------------------------------------- /data/sounds/default/num6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/sounds/default/num6.wav -------------------------------------------------------------------------------- /data/sounds/default/num7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/sounds/default/num7.wav -------------------------------------------------------------------------------- /data/sounds/default/num8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/sounds/default/num8.wav -------------------------------------------------------------------------------- /data/sounds/default/num9.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/sounds/default/num9.wav -------------------------------------------------------------------------------- /data/sounds/default/port.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/sounds/default/port.wav -------------------------------------------------------------------------------- /data/sounds/gensounds_mac.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/sounds/gensounds_mac.rb -------------------------------------------------------------------------------- /data/templates/dotnetmem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/templates/dotnetmem.dll -------------------------------------------------------------------------------- /data/templates/src/pe/dll/template.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | DllMain@12 3 | 4 | -------------------------------------------------------------------------------- /data/vncdll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/vncdll.dll -------------------------------------------------------------------------------- /data/vncdll.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/vncdll.x64.dll -------------------------------------------------------------------------------- /data/wmap/whaler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/wmap/whaler.txt -------------------------------------------------------------------------------- /data/wmap/wmap_404s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/wmap/wmap_404s.txt -------------------------------------------------------------------------------- /data/wmap/wmap_dirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/data/wmap/wmap_dirs.txt -------------------------------------------------------------------------------- /data/wmap/wmap_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/trustedsec/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/trustedsec/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/trustedsec/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/trustedsec/metasploit-framework/HEAD/data/wordlists/sid.txt -------------------------------------------------------------------------------- /data/wordlists/tftp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/db/schema.rb -------------------------------------------------------------------------------- /documentation/gendocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/documentation/gendocs.sh -------------------------------------------------------------------------------- /documentation/msfopcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/documentation/msfopcode.txt -------------------------------------------------------------------------------- /documentation/msfrpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/documentation/msfrpc.txt -------------------------------------------------------------------------------- /documentation/wmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/documentation/wmap.txt -------------------------------------------------------------------------------- /external/ruby-kissfft/Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /external/ruby-lorcon/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/external/ruby-lorcon/README -------------------------------------------------------------------------------- /external/ruby-lorcon/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/external/ruby-lorcon/test.rb -------------------------------------------------------------------------------- /external/ruby-lorcon2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/external/ruby-lorcon2/README -------------------------------------------------------------------------------- /external/serialport/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/external/serialport/MANIFEST -------------------------------------------------------------------------------- /external/source/byakugan/include/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/source/byakugan/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/source/exploits/bypassuac/Win32/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/source/exploits/bypassuac/source.rb/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/source/exploits/bypassuac/x64/.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/trustedsec/metasploit-framework/HEAD/external/source/ipwn/README -------------------------------------------------------------------------------- /external/source/ipwn/auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/external/source/ipwn/auto.h -------------------------------------------------------------------------------- /external/source/ipwn/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/external/source/ipwn/cmd.h -------------------------------------------------------------------------------- /external/source/ipwn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/external/source/ipwn/main.c -------------------------------------------------------------------------------- /external/source/ipwn/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/trustedsec/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 | -------------------------------------------------------------------------------- /lib/anemone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone.rb -------------------------------------------------------------------------------- /lib/anemone/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/cli.rb -------------------------------------------------------------------------------- /lib/anemone/cli/count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/cli/count.rb -------------------------------------------------------------------------------- /lib/anemone/cli/cron.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/cli/cron.rb -------------------------------------------------------------------------------- /lib/anemone/cli/pagedepth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/cli/pagedepth.rb -------------------------------------------------------------------------------- /lib/anemone/cli/serialize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/cli/serialize.rb -------------------------------------------------------------------------------- /lib/anemone/cli/url_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/cli/url_list.rb -------------------------------------------------------------------------------- /lib/anemone/cookie_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/cookie_store.rb -------------------------------------------------------------------------------- /lib/anemone/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/core.rb -------------------------------------------------------------------------------- /lib/anemone/docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/docs/LICENSE.txt -------------------------------------------------------------------------------- /lib/anemone/docs/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/docs/README.rdoc -------------------------------------------------------------------------------- /lib/anemone/docs/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/docs/Rakefile -------------------------------------------------------------------------------- /lib/anemone/docs/VERSION: -------------------------------------------------------------------------------- 1 | 0.5.0 2 | -------------------------------------------------------------------------------- /lib/anemone/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/exceptions.rb -------------------------------------------------------------------------------- /lib/anemone/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/http.rb -------------------------------------------------------------------------------- /lib/anemone/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/page.rb -------------------------------------------------------------------------------- /lib/anemone/page_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/page_store.rb -------------------------------------------------------------------------------- /lib/anemone/rex_http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/rex_http.rb -------------------------------------------------------------------------------- /lib/anemone/storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/storage.rb -------------------------------------------------------------------------------- /lib/anemone/storage/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/storage/base.rb -------------------------------------------------------------------------------- /lib/anemone/storage/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/storage/redis.rb -------------------------------------------------------------------------------- /lib/anemone/tentacle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/anemone/tentacle.rb -------------------------------------------------------------------------------- /lib/bit-struct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/bit-struct.rb -------------------------------------------------------------------------------- /lib/bit-struct/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/bit-struct/README -------------------------------------------------------------------------------- /lib/bit-struct/bit-struct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/bit-struct/bit-struct.rb -------------------------------------------------------------------------------- /lib/bit-struct/char-field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/bit-struct/char-field.rb -------------------------------------------------------------------------------- /lib/bit-struct/fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/bit-struct/fields.rb -------------------------------------------------------------------------------- /lib/bit-struct/pad-field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/bit-struct/pad-field.rb -------------------------------------------------------------------------------- /lib/bit-struct/text-field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/bit-struct/text-field.rb -------------------------------------------------------------------------------- /lib/bit-struct/vector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/bit-struct/vector.rb -------------------------------------------------------------------------------- /lib/bit-struct/yaml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/bit-struct/yaml.rb -------------------------------------------------------------------------------- /lib/enumerable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/enumerable.rb -------------------------------------------------------------------------------- /lib/fastlib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/fastlib.rb -------------------------------------------------------------------------------- /lib/metasm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm.rb -------------------------------------------------------------------------------- /lib/metasm/.hg_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/.hg_archival.txt -------------------------------------------------------------------------------- /lib/metasm/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/.hgtags -------------------------------------------------------------------------------- /lib/metasm/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/BUGS -------------------------------------------------------------------------------- /lib/metasm/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/CREDITS -------------------------------------------------------------------------------- /lib/metasm/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/INSTALL -------------------------------------------------------------------------------- /lib/metasm/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/LICENCE -------------------------------------------------------------------------------- /lib/metasm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/README -------------------------------------------------------------------------------- /lib/metasm/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/TODO -------------------------------------------------------------------------------- /lib/metasm/doc/core/Ia32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/doc/core/Ia32.txt -------------------------------------------------------------------------------- /lib/metasm/doc/core/index.txt: -------------------------------------------------------------------------------- 1 | See 2 | -------------------------------------------------------------------------------- /lib/metasm/doc/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/doc/index.txt -------------------------------------------------------------------------------- /lib/metasm/doc/style.css: -------------------------------------------------------------------------------- 1 | span.quote { 2 | font-family: monospace; 3 | } 4 | -------------------------------------------------------------------------------- /lib/metasm/doc/usage/index.txt: -------------------------------------------------------------------------------- 1 | See 2 | -------------------------------------------------------------------------------- /lib/metasm/doc/use_cases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/doc/use_cases.txt -------------------------------------------------------------------------------- /lib/metasm/metasm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/arm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/arm.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/dalvik.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/dalvik.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/decode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/decode.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/dynldr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/dynldr.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/encode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/encode.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/gui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/gui.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/gui/gtk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/gui/gtk.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/gui/qt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/gui/qt.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/gui/x11.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/gui/x11.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/ia32.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/ia32.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/main.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/mips.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/mips.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/os/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/os/main.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/parse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/parse.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/parse_c.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/parse_c.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/ppc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/ppc.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/render.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/render.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/sh4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/sh4.rb -------------------------------------------------------------------------------- /lib/metasm/metasm/x86_64.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/metasm/x86_64.rb -------------------------------------------------------------------------------- /lib/metasm/misc/hexdiff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/misc/hexdiff.rb -------------------------------------------------------------------------------- /lib/metasm/misc/hexdump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/misc/hexdump.rb -------------------------------------------------------------------------------- /lib/metasm/misc/objdiff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/misc/objdiff.rb -------------------------------------------------------------------------------- /lib/metasm/misc/objscan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/misc/objscan.rb -------------------------------------------------------------------------------- /lib/metasm/misc/pdfparse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/misc/pdfparse.rb -------------------------------------------------------------------------------- /lib/metasm/misc/txt2html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/misc/txt2html.rb -------------------------------------------------------------------------------- /lib/metasm/samples/a.out.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/samples/a.out.rb -------------------------------------------------------------------------------- /lib/metasm/samples/peldr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/samples/peldr.rb -------------------------------------------------------------------------------- /lib/metasm/samples/testpe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/samples/testpe.rb -------------------------------------------------------------------------------- /lib/metasm/tests/all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/tests/all.rb -------------------------------------------------------------------------------- /lib/metasm/tests/dasm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/tests/dasm.rb -------------------------------------------------------------------------------- /lib/metasm/tests/dynldr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/tests/dynldr.rb -------------------------------------------------------------------------------- /lib/metasm/tests/ia32.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/tests/ia32.rb -------------------------------------------------------------------------------- /lib/metasm/tests/mips.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/tests/mips.rb -------------------------------------------------------------------------------- /lib/metasm/tests/parse_c.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/tests/parse_c.rb -------------------------------------------------------------------------------- /lib/metasm/tests/x86_64.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/metasm/tests/x86_64.rb -------------------------------------------------------------------------------- /lib/metasploit/framework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/trustedsec/metasploit-framework/HEAD/lib/msf/base.rb -------------------------------------------------------------------------------- /lib/msf/base/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/base/config.rb -------------------------------------------------------------------------------- /lib/msf/base/logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/base/logging.rb -------------------------------------------------------------------------------- /lib/msf/base/sessions/tty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/base/sessions/tty.rb -------------------------------------------------------------------------------- /lib/msf/base/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/base/simple.rb -------------------------------------------------------------------------------- /lib/msf/base/simple/nop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/base/simple/nop.rb -------------------------------------------------------------------------------- /lib/msf/base/simple/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/base/simple/post.rb -------------------------------------------------------------------------------- /lib/msf/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core.rb -------------------------------------------------------------------------------- /lib/msf/core/auxiliary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/auxiliary.rb -------------------------------------------------------------------------------- /lib/msf/core/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/constants.rb -------------------------------------------------------------------------------- /lib/msf/core/data_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/data_store.rb -------------------------------------------------------------------------------- /lib/msf/core/db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/db.rb -------------------------------------------------------------------------------- /lib/msf/core/db_export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/db_export.rb -------------------------------------------------------------------------------- /lib/msf/core/db_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/db_manager.rb -------------------------------------------------------------------------------- /lib/msf/core/encoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/encoder.rb -------------------------------------------------------------------------------- /lib/msf/core/encoder/xor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/encoder/xor.rb -------------------------------------------------------------------------------- /lib/msf/core/encoding/xor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/encoding/xor.rb -------------------------------------------------------------------------------- /lib/msf/core/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exceptions.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/afp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/afp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/db2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/db2.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/dhcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/dhcp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/exe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/exe.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/ftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/ftp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/imap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/imap.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/ip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/ip.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/ipv6.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/ipv6.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/java.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/java.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/ndmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/ndmp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/ntlm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/ntlm.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/pdf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/pdf.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/pop2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/pop2.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/riff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/riff.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/seh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/seh.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/smb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/smb.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/smtp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/smtp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/snmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/snmp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/tcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/tcp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/tftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/tftp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/tns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/tns.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/udp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/udp.rb -------------------------------------------------------------------------------- /lib/msf/core/exploit/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/exploit/web.rb -------------------------------------------------------------------------------- /lib/msf/core/framework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/framework.rb -------------------------------------------------------------------------------- /lib/msf/core/handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/handler.rb -------------------------------------------------------------------------------- /lib/msf/core/handler/none.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/handler/none.rb -------------------------------------------------------------------------------- /lib/msf/core/module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/module.rb -------------------------------------------------------------------------------- /lib/msf/core/module_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/module_set.rb -------------------------------------------------------------------------------- /lib/msf/core/modules.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/modules.rb -------------------------------------------------------------------------------- /lib/msf/core/nop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/nop.rb -------------------------------------------------------------------------------- /lib/msf/core/payload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/payload.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/aix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/payload/aix.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/bsd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/payload/bsd.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/java.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/payload/java.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/osx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/payload/osx.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/php.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/payload/php.rb -------------------------------------------------------------------------------- /lib/msf/core/payload/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/payload/ruby.rb -------------------------------------------------------------------------------- /lib/msf/core/payload_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/payload_set.rb -------------------------------------------------------------------------------- /lib/msf/core/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/plugin.rb -------------------------------------------------------------------------------- /lib/msf/core/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/post.rb -------------------------------------------------------------------------------- /lib/msf/core/post/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/post/common.rb -------------------------------------------------------------------------------- /lib/msf/core/post/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/post/file.rb -------------------------------------------------------------------------------- /lib/msf/core/post/linux.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/post/linux.rb -------------------------------------------------------------------------------- /lib/msf/core/post/osx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/post/osx.rb -------------------------------------------------------------------------------- /lib/msf/core/post/solaris.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/post/solaris.rb -------------------------------------------------------------------------------- /lib/msf/core/post/unix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/post/unix.rb -------------------------------------------------------------------------------- /lib/msf/core/post/windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/post/windows.rb -------------------------------------------------------------------------------- /lib/msf/core/post_mixin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/post_mixin.rb -------------------------------------------------------------------------------- /lib/msf/core/rpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/rpc.rb -------------------------------------------------------------------------------- /lib/msf/core/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/session.rb -------------------------------------------------------------------------------- /lib/msf/core/session/comm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/session/comm.rb -------------------------------------------------------------------------------- /lib/msf/core/task_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/core/task_manager.rb -------------------------------------------------------------------------------- /lib/msf/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/events.rb -------------------------------------------------------------------------------- /lib/msf/http/wordpress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/http/wordpress.rb -------------------------------------------------------------------------------- /lib/msf/sanity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/sanity.rb -------------------------------------------------------------------------------- /lib/msf/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/ui.rb -------------------------------------------------------------------------------- /lib/msf/ui/banner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/ui/banner.rb -------------------------------------------------------------------------------- /lib/msf/ui/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/ui/common.rb -------------------------------------------------------------------------------- /lib/msf/ui/console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/ui/console.rb -------------------------------------------------------------------------------- /lib/msf/ui/console/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/ui/console/driver.rb -------------------------------------------------------------------------------- /lib/msf/ui/console/table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/ui/console/table.rb -------------------------------------------------------------------------------- /lib/msf/ui/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/ui/driver.rb -------------------------------------------------------------------------------- /lib/msf/ui/logos/cowsay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/ui/logos/cowsay.txt -------------------------------------------------------------------------------- /lib/msf/ui/logos/figlet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/ui/logos/figlet.txt -------------------------------------------------------------------------------- /lib/msf/ui/logos/ninja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/ui/logos/ninja.txt -------------------------------------------------------------------------------- /lib/msf/ui/logos/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/ui/logos/test.rb -------------------------------------------------------------------------------- /lib/msf/ui/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/ui/web.rb -------------------------------------------------------------------------------- /lib/msf/ui/web/comm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/ui/web/comm.rb -------------------------------------------------------------------------------- /lib/msf/ui/web/console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/ui/web/console.rb -------------------------------------------------------------------------------- /lib/msf/ui/web/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/ui/web/driver.rb -------------------------------------------------------------------------------- /lib/msf/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/util.rb -------------------------------------------------------------------------------- /lib/msf/util/exe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/util/exe.rb -------------------------------------------------------------------------------- /lib/msf/util/svn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/util/svn.rb -------------------------------------------------------------------------------- /lib/msf/windows_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msf/windows_error.rb -------------------------------------------------------------------------------- /lib/msfenv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/msfenv.rb -------------------------------------------------------------------------------- /lib/nessus/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/nessus/README -------------------------------------------------------------------------------- /lib/nessus/TODO: -------------------------------------------------------------------------------- 1 | - Error handling, no puts 2 | -------------------------------------------------------------------------------- /lib/nessus/nessus-cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/nessus/nessus-cli.rb -------------------------------------------------------------------------------- /lib/nessus/nessus-xmlrpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/trustedsec/metasploit-framework/HEAD/lib/net/dns/README -------------------------------------------------------------------------------- /lib/net/dns/dns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/dns.rb -------------------------------------------------------------------------------- /lib/net/dns/header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/header.rb -------------------------------------------------------------------------------- /lib/net/dns/names/names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/names/names.rb -------------------------------------------------------------------------------- /lib/net/dns/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/packet.rb -------------------------------------------------------------------------------- /lib/net/dns/question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/question.rb -------------------------------------------------------------------------------- /lib/net/dns/resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/resolver.rb -------------------------------------------------------------------------------- /lib/net/dns/rr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/rr.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/a.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/rr/a.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/aaaa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/rr/aaaa.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/classes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/rr/classes.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/cname.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/rr/cname.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/hinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/rr/hinfo.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/mr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/rr/mr.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/mx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/rr/mx.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/ns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/rr/ns.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/null.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/rr/null.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/ptr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/rr/ptr.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/soa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/rr/soa.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/srv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/rr/srv.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/txt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/rr/txt.rb -------------------------------------------------------------------------------- /lib/net/dns/rr/types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/dns/rr/types.rb -------------------------------------------------------------------------------- /lib/net/ssh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh.rb -------------------------------------------------------------------------------- /lib/net/ssh/CHANGELOG.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/CHANGELOG.rdoc -------------------------------------------------------------------------------- /lib/net/ssh/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/README.rdoc -------------------------------------------------------------------------------- /lib/net/ssh/THANKS.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/THANKS.rdoc -------------------------------------------------------------------------------- /lib/net/ssh/buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/buffer.rb -------------------------------------------------------------------------------- /lib/net/ssh/buffered_io.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/buffered_io.rb -------------------------------------------------------------------------------- /lib/net/ssh/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/config.rb -------------------------------------------------------------------------------- /lib/net/ssh/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/errors.rb -------------------------------------------------------------------------------- /lib/net/ssh/key_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/key_factory.rb -------------------------------------------------------------------------------- /lib/net/ssh/known_hosts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/known_hosts.rb -------------------------------------------------------------------------------- /lib/net/ssh/loggable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/loggable.rb -------------------------------------------------------------------------------- /lib/net/ssh/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/packet.rb -------------------------------------------------------------------------------- /lib/net/ssh/prompt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/prompt.rb -------------------------------------------------------------------------------- /lib/net/ssh/proxy/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/proxy/errors.rb -------------------------------------------------------------------------------- /lib/net/ssh/proxy/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/proxy/http.rb -------------------------------------------------------------------------------- /lib/net/ssh/proxy/socks4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/proxy/socks4.rb -------------------------------------------------------------------------------- /lib/net/ssh/proxy/socks5.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/proxy/socks5.rb -------------------------------------------------------------------------------- /lib/net/ssh/ruby_compat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/ruby_compat.rb -------------------------------------------------------------------------------- /lib/net/ssh/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/test.rb -------------------------------------------------------------------------------- /lib/net/ssh/test/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/test/channel.rb -------------------------------------------------------------------------------- /lib/net/ssh/test/kex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/test/kex.rb -------------------------------------------------------------------------------- /lib/net/ssh/test/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/test/packet.rb -------------------------------------------------------------------------------- /lib/net/ssh/test/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/test/script.rb -------------------------------------------------------------------------------- /lib/net/ssh/test/socket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/test/socket.rb -------------------------------------------------------------------------------- /lib/net/ssh/transport/kex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/transport/kex.rb -------------------------------------------------------------------------------- /lib/net/ssh/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/utils.rb -------------------------------------------------------------------------------- /lib/net/ssh/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/net/ssh/version.rb -------------------------------------------------------------------------------- /lib/openvas/openvas-omp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/openvas/openvas-omp.rb -------------------------------------------------------------------------------- /lib/postgres/buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/postgres/buffer.rb -------------------------------------------------------------------------------- /lib/postgres/byteorder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/postgres/byteorder.rb -------------------------------------------------------------------------------- /lib/postgres_msf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/postgres_msf.rb -------------------------------------------------------------------------------- /lib/rabal/tree.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rabal/tree.rb -------------------------------------------------------------------------------- /lib/rapid7/nexpose.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rapid7/nexpose.rb -------------------------------------------------------------------------------- /lib/rbmysql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rbmysql.rb -------------------------------------------------------------------------------- /lib/rbmysql/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rbmysql/README -------------------------------------------------------------------------------- /lib/rbmysql/charset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rbmysql/charset.rb -------------------------------------------------------------------------------- /lib/rbmysql/compat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rbmysql/compat.rb -------------------------------------------------------------------------------- /lib/rbmysql/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rbmysql/constants.rb -------------------------------------------------------------------------------- /lib/rbmysql/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rbmysql/error.rb -------------------------------------------------------------------------------- /lib/rbmysql/protocol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rbmysql/protocol.rb -------------------------------------------------------------------------------- /lib/rbreadline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rbreadline.rb -------------------------------------------------------------------------------- /lib/readline_compatible.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/readline_compatible.rb -------------------------------------------------------------------------------- /lib/rex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex.rb -------------------------------------------------------------------------------- /lib/rex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/LICENSE -------------------------------------------------------------------------------- /lib/rex/arch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/arch.rb -------------------------------------------------------------------------------- /lib/rex/arch/sparc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/arch/sparc.rb -------------------------------------------------------------------------------- /lib/rex/arch/x86.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/arch/x86.rb -------------------------------------------------------------------------------- /lib/rex/assembly/nasm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/assembly/nasm.rb -------------------------------------------------------------------------------- /lib/rex/codepage.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/codepage.map -------------------------------------------------------------------------------- /lib/rex/compat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/compat.rb -------------------------------------------------------------------------------- /lib/rex/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/constants.rb -------------------------------------------------------------------------------- /lib/rex/elfparsey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/elfparsey.rb -------------------------------------------------------------------------------- /lib/rex/elfparsey/elf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/elfparsey/elf.rb -------------------------------------------------------------------------------- /lib/rex/elfparsey/elfbase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/elfparsey/elfbase.rb -------------------------------------------------------------------------------- /lib/rex/elfscan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/elfscan.rb -------------------------------------------------------------------------------- /lib/rex/elfscan/scanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/elfscan/scanner.rb -------------------------------------------------------------------------------- /lib/rex/elfscan/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/elfscan/search.rb -------------------------------------------------------------------------------- /lib/rex/encoder/alpha2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/encoder/alpha2.rb -------------------------------------------------------------------------------- /lib/rex/encoder/ndr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/encoder/ndr.rb -------------------------------------------------------------------------------- /lib/rex/encoder/nonalpha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/encoder/nonalpha.rb -------------------------------------------------------------------------------- /lib/rex/encoder/nonupper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/encoder/nonupper.rb -------------------------------------------------------------------------------- /lib/rex/encoder/xdr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/encoder/xdr.rb -------------------------------------------------------------------------------- /lib/rex/encoder/xor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/encoder/xor.rb -------------------------------------------------------------------------------- /lib/rex/encoder/xor/dword.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/encoder/xor/dword.rb -------------------------------------------------------------------------------- /lib/rex/encoding/xor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/encoding/xor.rb -------------------------------------------------------------------------------- /lib/rex/encoding/xor/byte.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/encoding/xor/byte.rb -------------------------------------------------------------------------------- /lib/rex/encoding/xor/word.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/encoding/xor/word.rb -------------------------------------------------------------------------------- /lib/rex/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/exceptions.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/seh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/exploitation/seh.rb -------------------------------------------------------------------------------- /lib/rex/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/file.rb -------------------------------------------------------------------------------- /lib/rex/image_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/image_source.rb -------------------------------------------------------------------------------- /lib/rex/image_source/disk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/image_source/disk.rb -------------------------------------------------------------------------------- /lib/rex/io/ring_buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/io/ring_buffer.rb -------------------------------------------------------------------------------- /lib/rex/io/stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/io/stream.rb -------------------------------------------------------------------------------- /lib/rex/io/stream_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/io/stream_server.rb -------------------------------------------------------------------------------- /lib/rex/job_container.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/job_container.rb -------------------------------------------------------------------------------- /lib/rex/logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/logging.rb -------------------------------------------------------------------------------- /lib/rex/logging/log_sink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/logging/log_sink.rb -------------------------------------------------------------------------------- /lib/rex/mac_oui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/mac_oui.rb -------------------------------------------------------------------------------- /lib/rex/machparsey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/machparsey.rb -------------------------------------------------------------------------------- /lib/rex/machparsey/mach.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/machparsey/mach.rb -------------------------------------------------------------------------------- /lib/rex/machscan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/machscan.rb -------------------------------------------------------------------------------- /lib/rex/machscan/scanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/machscan/scanner.rb -------------------------------------------------------------------------------- /lib/rex/mime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/mime.rb -------------------------------------------------------------------------------- /lib/rex/mime/header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/mime/header.rb -------------------------------------------------------------------------------- /lib/rex/mime/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/mime/message.rb -------------------------------------------------------------------------------- /lib/rex/mime/part.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/mime/part.rb -------------------------------------------------------------------------------- /lib/rex/nop/opty2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/nop/opty2.rb -------------------------------------------------------------------------------- /lib/rex/nop/opty2_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/nop/opty2_tables.rb -------------------------------------------------------------------------------- /lib/rex/ole.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ole.rb -------------------------------------------------------------------------------- /lib/rex/ole/clsid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ole/clsid.rb -------------------------------------------------------------------------------- /lib/rex/ole/difat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ole/difat.rb -------------------------------------------------------------------------------- /lib/rex/ole/directory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ole/directory.rb -------------------------------------------------------------------------------- /lib/rex/ole/direntry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/trustedsec/metasploit-framework/HEAD/lib/rex/ole/fat.rb -------------------------------------------------------------------------------- /lib/rex/ole/header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ole/header.rb -------------------------------------------------------------------------------- /lib/rex/ole/minifat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ole/minifat.rb -------------------------------------------------------------------------------- /lib/rex/ole/propset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ole/propset.rb -------------------------------------------------------------------------------- /lib/rex/ole/samples/dir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ole/samples/dir.rb -------------------------------------------------------------------------------- /lib/rex/ole/storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ole/storage.rb -------------------------------------------------------------------------------- /lib/rex/ole/stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ole/stream.rb -------------------------------------------------------------------------------- /lib/rex/ole/substorage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ole/substorage.rb -------------------------------------------------------------------------------- /lib/rex/ole/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ole/util.rb -------------------------------------------------------------------------------- /lib/rex/parser/arguments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/parser/arguments.rb -------------------------------------------------------------------------------- /lib/rex/parser/ini.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/parser/ini.rb -------------------------------------------------------------------------------- /lib/rex/parser/ip360_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/parser/ip360_xml.rb -------------------------------------------------------------------------------- /lib/rex/parser/nessus_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/parser/nessus_xml.rb -------------------------------------------------------------------------------- /lib/rex/parser/nmap_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/parser/nmap_xml.rb -------------------------------------------------------------------------------- /lib/rex/parser/retina_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/parser/retina_xml.rb -------------------------------------------------------------------------------- /lib/rex/parser/unattend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/trustedsec/metasploit-framework/HEAD/lib/rex/payloads/win32.rb -------------------------------------------------------------------------------- /lib/rex/peparsey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/peparsey.rb -------------------------------------------------------------------------------- /lib/rex/peparsey/pe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/peparsey/pe.rb -------------------------------------------------------------------------------- /lib/rex/peparsey/pebase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/peparsey/pebase.rb -------------------------------------------------------------------------------- /lib/rex/peparsey/section.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/peparsey/section.rb -------------------------------------------------------------------------------- /lib/rex/pescan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/pescan.rb -------------------------------------------------------------------------------- /lib/rex/pescan/analyze.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/pescan/analyze.rb -------------------------------------------------------------------------------- /lib/rex/pescan/scanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/pescan/scanner.rb -------------------------------------------------------------------------------- /lib/rex/pescan/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/trustedsec/metasploit-framework/HEAD/lib/rex/platforms/windows.rb -------------------------------------------------------------------------------- /lib/rex/poly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/poly.rb -------------------------------------------------------------------------------- /lib/rex/poly/block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/poly/block.rb -------------------------------------------------------------------------------- /lib/rex/poly/machine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/poly/machine.rb -------------------------------------------------------------------------------- /lib/rex/poly/machine/x86.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/poly/machine/x86.rb -------------------------------------------------------------------------------- /lib/rex/poly/register.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/poly/register.rb -------------------------------------------------------------------------------- /lib/rex/poly/register/x86.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/poly/register/x86.rb -------------------------------------------------------------------------------- /lib/rex/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/post.rb -------------------------------------------------------------------------------- /lib/rex/post/dir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/post/dir.rb -------------------------------------------------------------------------------- /lib/rex/post/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/post/file.rb -------------------------------------------------------------------------------- /lib/rex/post/file_stat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/post/file_stat.rb -------------------------------------------------------------------------------- /lib/rex/post/gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/post/gen.pl -------------------------------------------------------------------------------- /lib/rex/post/io.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/post/io.rb -------------------------------------------------------------------------------- /lib/rex/post/meterpreter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/post/meterpreter.rb -------------------------------------------------------------------------------- /lib/rex/post/meterpreter/channels/streams/.cvskeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/rex/post/permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/post/permission.rb -------------------------------------------------------------------------------- /lib/rex/post/process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/post/process.rb -------------------------------------------------------------------------------- /lib/rex/post/thread.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/post/thread.rb -------------------------------------------------------------------------------- /lib/rex/post/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/post/ui.rb -------------------------------------------------------------------------------- /lib/rex/proto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto.rb -------------------------------------------------------------------------------- /lib/rex/proto/addp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/addp.rb -------------------------------------------------------------------------------- /lib/rex/proto/dcerpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/dcerpc.rb -------------------------------------------------------------------------------- /lib/rex/proto/dcerpc/ndr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/dcerpc/ndr.rb -------------------------------------------------------------------------------- /lib/rex/proto/dcerpc/uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/dcerpc/uuid.rb -------------------------------------------------------------------------------- /lib/rex/proto/dhcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/dhcp.rb -------------------------------------------------------------------------------- /lib/rex/proto/dhcp/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/dhcp/server.rb -------------------------------------------------------------------------------- /lib/rex/proto/drda.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/drda.rb -------------------------------------------------------------------------------- /lib/rex/proto/drda/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/drda/packet.rb -------------------------------------------------------------------------------- /lib/rex/proto/drda/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/drda/utils.rb -------------------------------------------------------------------------------- /lib/rex/proto/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/http.rb -------------------------------------------------------------------------------- /lib/rex/proto/http/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/http/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/http/header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/http/header.rb -------------------------------------------------------------------------------- /lib/rex/proto/http/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/http/packet.rb -------------------------------------------------------------------------------- /lib/rex/proto/http/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/trustedsec/metasploit-framework/HEAD/lib/rex/proto/iax2/call.rb -------------------------------------------------------------------------------- /lib/rex/proto/iax2/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/iax2/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/iax2/codecs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/iax2/codecs.rb -------------------------------------------------------------------------------- /lib/rex/proto/ipmi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/ipmi.rb -------------------------------------------------------------------------------- /lib/rex/proto/ipmi/rakp2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/ipmi/rakp2.rb -------------------------------------------------------------------------------- /lib/rex/proto/ipmi/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/ipmi/utils.rb -------------------------------------------------------------------------------- /lib/rex/proto/natpmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/natpmp.rb -------------------------------------------------------------------------------- /lib/rex/proto/ntlm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/ntlm.rb -------------------------------------------------------------------------------- /lib/rex/proto/ntlm/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/ntlm/base.rb -------------------------------------------------------------------------------- /lib/rex/proto/ntlm/crypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/ntlm/crypt.rb -------------------------------------------------------------------------------- /lib/rex/proto/ntlm/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/ntlm/utils.rb -------------------------------------------------------------------------------- /lib/rex/proto/rfb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/rfb.rb -------------------------------------------------------------------------------- /lib/rex/proto/rfb/cipher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/rfb/cipher.rb -------------------------------------------------------------------------------- /lib/rex/proto/rfb/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/rfb/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/smb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/smb.rb -------------------------------------------------------------------------------- /lib/rex/proto/smb/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/smb/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/smb/crypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/smb/crypt.rb -------------------------------------------------------------------------------- /lib/rex/proto/smb/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/smb/utils.rb -------------------------------------------------------------------------------- /lib/rex/proto/sunrpc.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | require 'rex/proto/sunrpc/client' 3 | -------------------------------------------------------------------------------- /lib/rex/proto/tftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/tftp.rb -------------------------------------------------------------------------------- /lib/rex/proto/tftp/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/tftp/client.rb -------------------------------------------------------------------------------- /lib/rex/proto/tftp/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/proto/tftp/server.rb -------------------------------------------------------------------------------- /lib/rex/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/registry.rb -------------------------------------------------------------------------------- /lib/rex/registry/hive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/registry/hive.rb -------------------------------------------------------------------------------- /lib/rex/registry/lfkey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/registry/lfkey.rb -------------------------------------------------------------------------------- /lib/rex/registry/nodekey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/registry/nodekey.rb -------------------------------------------------------------------------------- /lib/rex/registry/regf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/registry/regf.rb -------------------------------------------------------------------------------- /lib/rex/registry/valuekey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/registry/valuekey.rb -------------------------------------------------------------------------------- /lib/rex/ropbuilder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ropbuilder.rb -------------------------------------------------------------------------------- /lib/rex/ropbuilder/rop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ropbuilder/rop.rb -------------------------------------------------------------------------------- /lib/rex/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/script.rb -------------------------------------------------------------------------------- /lib/rex/script/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/script/base.rb -------------------------------------------------------------------------------- /lib/rex/script/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/script/shell.rb -------------------------------------------------------------------------------- /lib/rex/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/service.rb -------------------------------------------------------------------------------- /lib/rex/service_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/service_manager.rb -------------------------------------------------------------------------------- /lib/rex/socket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/socket.rb -------------------------------------------------------------------------------- /lib/rex/socket/comm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/socket/comm.rb -------------------------------------------------------------------------------- /lib/rex/socket/comm/local.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/socket/comm/local.rb -------------------------------------------------------------------------------- /lib/rex/socket/ip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/socket/ip.rb -------------------------------------------------------------------------------- /lib/rex/socket/parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/socket/parameters.rb -------------------------------------------------------------------------------- /lib/rex/socket/ssl_tcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/socket/ssl_tcp.rb -------------------------------------------------------------------------------- /lib/rex/socket/tcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/socket/tcp.rb -------------------------------------------------------------------------------- /lib/rex/socket/tcp_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/socket/tcp_server.rb -------------------------------------------------------------------------------- /lib/rex/socket/udp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/socket/udp.rb -------------------------------------------------------------------------------- /lib/rex/sslscan/result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/sslscan/result.rb -------------------------------------------------------------------------------- /lib/rex/sslscan/scanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/sslscan/scanner.rb -------------------------------------------------------------------------------- /lib/rex/struct2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/struct2.rb -------------------------------------------------------------------------------- /lib/rex/struct2/c_struct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/struct2/c_struct.rb -------------------------------------------------------------------------------- /lib/rex/struct2/constant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/struct2/constant.rb -------------------------------------------------------------------------------- /lib/rex/struct2/element.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/struct2/element.rb -------------------------------------------------------------------------------- /lib/rex/struct2/generic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/struct2/generic.rb -------------------------------------------------------------------------------- /lib/rex/struct2/restraint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/struct2/restraint.rb -------------------------------------------------------------------------------- /lib/rex/struct2/s_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/struct2/s_string.rb -------------------------------------------------------------------------------- /lib/rex/struct2/s_struct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/struct2/s_struct.rb -------------------------------------------------------------------------------- /lib/rex/sync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/sync.rb -------------------------------------------------------------------------------- /lib/rex/sync/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/sync/event.rb -------------------------------------------------------------------------------- /lib/rex/sync/ref.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/sync/ref.rb -------------------------------------------------------------------------------- /lib/rex/sync/thread_safe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/sync/thread_safe.rb -------------------------------------------------------------------------------- /lib/rex/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/test.rb -------------------------------------------------------------------------------- /lib/rex/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/text.rb -------------------------------------------------------------------------------- /lib/rex/thread_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/thread_factory.rb -------------------------------------------------------------------------------- /lib/rex/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/time.rb -------------------------------------------------------------------------------- /lib/rex/transformer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/transformer.rb -------------------------------------------------------------------------------- /lib/rex/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ui.rb -------------------------------------------------------------------------------- /lib/rex/ui/interactive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ui/interactive.rb -------------------------------------------------------------------------------- /lib/rex/ui/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ui/output.rb -------------------------------------------------------------------------------- /lib/rex/ui/output/none.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ui/output/none.rb -------------------------------------------------------------------------------- /lib/rex/ui/subscriber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ui/subscriber.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ui/text/color.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ui/text/input.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/irb_shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ui/text/irb_shell.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ui/text/output.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ui/text/shell.rb -------------------------------------------------------------------------------- /lib/rex/ui/text/table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/ui/text/table.rb -------------------------------------------------------------------------------- /lib/rex/zip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/zip.rb -------------------------------------------------------------------------------- /lib/rex/zip/archive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/zip/archive.rb -------------------------------------------------------------------------------- /lib/rex/zip/blocks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/zip/blocks.rb -------------------------------------------------------------------------------- /lib/rex/zip/entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/zip/entry.rb -------------------------------------------------------------------------------- /lib/rex/zip/jar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/zip/jar.rb -------------------------------------------------------------------------------- /lib/rex/zip/samples/mkwar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/zip/samples/mkwar.rb -------------------------------------------------------------------------------- /lib/rex/zip/samples/mkzip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rex/zip/samples/mkzip.rb -------------------------------------------------------------------------------- /lib/rkelly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly.rb -------------------------------------------------------------------------------- /lib/rkelly/constants.rb: -------------------------------------------------------------------------------- 1 | module RKelly 2 | VERSION = '1.0.3' 3 | end 4 | -------------------------------------------------------------------------------- /lib/rkelly/js.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/js.rb -------------------------------------------------------------------------------- /lib/rkelly/js/array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/js/array.rb -------------------------------------------------------------------------------- /lib/rkelly/js/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/js/base.rb -------------------------------------------------------------------------------- /lib/rkelly/js/boolean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/js/boolean.rb -------------------------------------------------------------------------------- /lib/rkelly/js/function.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/js/function.rb -------------------------------------------------------------------------------- /lib/rkelly/js/math.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/js/math.rb -------------------------------------------------------------------------------- /lib/rkelly/js/nan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/js/nan.rb -------------------------------------------------------------------------------- /lib/rkelly/js/number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/js/number.rb -------------------------------------------------------------------------------- /lib/rkelly/js/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/js/object.rb -------------------------------------------------------------------------------- /lib/rkelly/js/property.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/js/property.rb -------------------------------------------------------------------------------- /lib/rkelly/js/scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/js/scope.rb -------------------------------------------------------------------------------- /lib/rkelly/js/string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/js/string.rb -------------------------------------------------------------------------------- /lib/rkelly/lexeme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/lexeme.rb -------------------------------------------------------------------------------- /lib/rkelly/nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/nodes.rb -------------------------------------------------------------------------------- /lib/rkelly/nodes/for_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/nodes/for_node.rb -------------------------------------------------------------------------------- /lib/rkelly/nodes/if_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/nodes/if_node.rb -------------------------------------------------------------------------------- /lib/rkelly/nodes/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/nodes/node.rb -------------------------------------------------------------------------------- /lib/rkelly/nodes/try_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/nodes/try_node.rb -------------------------------------------------------------------------------- /lib/rkelly/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/parser.rb -------------------------------------------------------------------------------- /lib/rkelly/runtime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/runtime.rb -------------------------------------------------------------------------------- /lib/rkelly/syntax_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/syntax_error.rb -------------------------------------------------------------------------------- /lib/rkelly/token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/token.rb -------------------------------------------------------------------------------- /lib/rkelly/tokenizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/tokenizer.rb -------------------------------------------------------------------------------- /lib/rkelly/visitable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/visitable.rb -------------------------------------------------------------------------------- /lib/rkelly/visitors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/rkelly/visitors.rb -------------------------------------------------------------------------------- /lib/snmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/snmp.rb -------------------------------------------------------------------------------- /lib/snmp/agent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/snmp/agent.rb -------------------------------------------------------------------------------- /lib/snmp/ber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/snmp/ber.rb -------------------------------------------------------------------------------- /lib/snmp/manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/snmp/manager.rb -------------------------------------------------------------------------------- /lib/snmp/mib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/snmp/mib.rb -------------------------------------------------------------------------------- /lib/snmp/pdu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/snmp/pdu.rb -------------------------------------------------------------------------------- /lib/snmp/varbind.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/snmp/varbind.rb -------------------------------------------------------------------------------- /lib/sshkey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/sshkey.rb -------------------------------------------------------------------------------- /lib/sshkey/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/sshkey/LICENSE -------------------------------------------------------------------------------- /lib/sshkey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/sshkey/README.md -------------------------------------------------------------------------------- /lib/sshkey/lib/sshkey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/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/database.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/tasks/database.rake -------------------------------------------------------------------------------- /lib/tasks/rails.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/tasks/rails.rake -------------------------------------------------------------------------------- /lib/telephony.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/telephony.rb -------------------------------------------------------------------------------- /lib/telephony/modem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/telephony/modem.rb -------------------------------------------------------------------------------- /lib/zip.rb: -------------------------------------------------------------------------------- 1 | require 'zip/zip' 2 | -------------------------------------------------------------------------------- /lib/zip/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/ChangeLog -------------------------------------------------------------------------------- /lib/zip/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/NEWS -------------------------------------------------------------------------------- /lib/zip/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/README -------------------------------------------------------------------------------- /lib/zip/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/TODO -------------------------------------------------------------------------------- /lib/zip/ioextras.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/ioextras.rb -------------------------------------------------------------------------------- /lib/zip/samples/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/samples/example.rb -------------------------------------------------------------------------------- /lib/zip/samples/qtzip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/samples/qtzip.rb -------------------------------------------------------------------------------- /lib/zip/samples/zipfind.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/samples/zipfind.rb -------------------------------------------------------------------------------- /lib/zip/stdrubyext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/stdrubyext.rb -------------------------------------------------------------------------------- /lib/zip/tempfile_bugfixed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/tempfile_bugfixed.rb -------------------------------------------------------------------------------- /lib/zip/test/alltests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/test/alltests.rb -------------------------------------------------------------------------------- /lib/zip/test/data/file1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/test/data/file1.txt -------------------------------------------------------------------------------- /lib/zip/test/data/file2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/test/data/file2.txt -------------------------------------------------------------------------------- /lib/zip/test/data/generated/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/zip/test/data/generated/empty_chmod640.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/zip/test/data/generated/emptytestdir/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/zip/test/data/generated/randomAscii1.txt: -------------------------------------------------------------------------------- 1 | 0.040244959211864 -------------------------------------------------------------------------------- /lib/zip/test/data/generated/randomAscii2.txt: -------------------------------------------------------------------------------- 1 | 0.917381580665493 -------------------------------------------------------------------------------- /lib/zip/test/data/generated/randomAscii3.txt: -------------------------------------------------------------------------------- 1 | 0.670572209005379 -------------------------------------------------------------------------------- /lib/zip/test/data/generated/randomBinary1.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/zip/test/data/generated/randomBinary2.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/zip/test/data/generated/short.txt: -------------------------------------------------------------------------------- 1 | ABCDEF -------------------------------------------------------------------------------- /lib/zip/test/gentestfiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/test/gentestfiles.rb -------------------------------------------------------------------------------- /lib/zip/test/ioextrastest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/test/ioextrastest.rb -------------------------------------------------------------------------------- /lib/zip/test/ziptest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/test/ziptest.rb -------------------------------------------------------------------------------- /lib/zip/zip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/zip.rb -------------------------------------------------------------------------------- /lib/zip/zipfilesystem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/zipfilesystem.rb -------------------------------------------------------------------------------- /lib/zip/ziprequire.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/lib/zip/ziprequire.rb -------------------------------------------------------------------------------- /modules/auxiliary/vsploit/exploit/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/encoders/cmd/ifs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/modules/encoders/cmd/ifs.rb -------------------------------------------------------------------------------- /modules/encoders/x64/xor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/modules/encoders/x64/xor.rb -------------------------------------------------------------------------------- /modules/exploits/multi/vnc/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/nops/armle/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/modules/nops/armle/simple.rb -------------------------------------------------------------------------------- /modules/nops/php/generic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/modules/nops/php/generic.rb -------------------------------------------------------------------------------- /modules/nops/ppc/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/modules/nops/ppc/simple.rb -------------------------------------------------------------------------------- /modules/nops/sparc/random.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/modules/nops/sparc/random.rb -------------------------------------------------------------------------------- /modules/nops/tty/generic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/modules/nops/tty/generic.rb -------------------------------------------------------------------------------- /modules/nops/x64/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/modules/nops/x64/simple.rb -------------------------------------------------------------------------------- /modules/nops/x86/opty2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/modules/nops/x86/opty2.rb -------------------------------------------------------------------------------- /modules/post/aix/hashdump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/modules/post/aix/hashdump.rb -------------------------------------------------------------------------------- /msfbinscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/msfbinscan -------------------------------------------------------------------------------- /msfcli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/msfcli -------------------------------------------------------------------------------- /msfconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/msfconsole -------------------------------------------------------------------------------- /msfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/msfd -------------------------------------------------------------------------------- /msfelfscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/msfelfscan -------------------------------------------------------------------------------- /msfencode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/msfencode -------------------------------------------------------------------------------- /msfmachscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/msfmachscan -------------------------------------------------------------------------------- /msfpayload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/msfpayload -------------------------------------------------------------------------------- /msfpescan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/msfpescan -------------------------------------------------------------------------------- /msfrop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/msfrop -------------------------------------------------------------------------------- /msfrpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/msfrpc -------------------------------------------------------------------------------- /msfrpcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/msfrpcd -------------------------------------------------------------------------------- /msfupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/msfupdate -------------------------------------------------------------------------------- /msfvenom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/msfvenom -------------------------------------------------------------------------------- /plugins/alias.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/alias.rb -------------------------------------------------------------------------------- /plugins/auto_add_route.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/auto_add_route.rb -------------------------------------------------------------------------------- /plugins/db_credcollect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/db_credcollect.rb -------------------------------------------------------------------------------- /plugins/db_tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/db_tracker.rb -------------------------------------------------------------------------------- /plugins/editor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/editor.rb -------------------------------------------------------------------------------- /plugins/event_tester.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/event_tester.rb -------------------------------------------------------------------------------- /plugins/ffautoregen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/ffautoregen.rb -------------------------------------------------------------------------------- /plugins/ips_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/ips_filter.rb -------------------------------------------------------------------------------- /plugins/lab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/lab.rb -------------------------------------------------------------------------------- /plugins/msfd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/msfd.rb -------------------------------------------------------------------------------- /plugins/msgrpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/msgrpc.rb -------------------------------------------------------------------------------- /plugins/nessus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/nessus.rb -------------------------------------------------------------------------------- /plugins/nexpose.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/nexpose.rb -------------------------------------------------------------------------------- /plugins/openvas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/openvas.rb -------------------------------------------------------------------------------- /plugins/pcap_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/pcap_log.rb -------------------------------------------------------------------------------- /plugins/sample.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/sample.rb -------------------------------------------------------------------------------- /plugins/session_tagger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/session_tagger.rb -------------------------------------------------------------------------------- /plugins/socket_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/socket_logger.rb -------------------------------------------------------------------------------- /plugins/sounds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/sounds.rb -------------------------------------------------------------------------------- /plugins/thread.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/thread.rb -------------------------------------------------------------------------------- /plugins/token_adduser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/token_adduser.rb -------------------------------------------------------------------------------- /plugins/token_hunter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/token_hunter.rb -------------------------------------------------------------------------------- /plugins/wmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/plugins/wmap.rb -------------------------------------------------------------------------------- /scripts/meterpreter/vnc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/scripts/meterpreter/vnc.rb -------------------------------------------------------------------------------- /scripts/meterpreter/winbf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/scripts/meterpreter/winbf.rb -------------------------------------------------------------------------------- /scripts/meterpreter/wmic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/scripts/meterpreter/wmic.rb -------------------------------------------------------------------------------- /scripts/ps/msflag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/scripts/ps/msflag.ps1 -------------------------------------------------------------------------------- /scripts/resource/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/resource/portscan.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/scripts/resource/portscan.rc -------------------------------------------------------------------------------- /scripts/shell/migrate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/scripts/shell/migrate.rb -------------------------------------------------------------------------------- /spec/file_fixtures/string_list.txt: -------------------------------------------------------------------------------- 1 | foo 2 | bar 3 | baz -------------------------------------------------------------------------------- /spec/lib/fastlib_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/spec/lib/fastlib_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/text_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/spec/lib/rex/text_spec.rb -------------------------------------------------------------------------------- /spec/msfcli_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/spec/msfcli_spec.rb -------------------------------------------------------------------------------- /spec/msfvenom_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/spec/msfvenom_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/features/data/test.exe: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /test/features/support/.gitignore: -------------------------------------------------------------------------------- 1 | # These files are to be excluded from git # 2 | 3 | test_config.yml 4 | -------------------------------------------------------------------------------- /test/features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/test/features/support/env.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/trustedsec/metasploit-framework/HEAD/test/hooks/array_to_s.rb -------------------------------------------------------------------------------- /test/hooks/string_idx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/test/hooks/string_idx.rb -------------------------------------------------------------------------------- /test/lib/module_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/test/lib/module_test.rb -------------------------------------------------------------------------------- /test/lib/msf_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/test/lib/msf_matchers.rb -------------------------------------------------------------------------------- /test/lib/regexr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/test/lib/regexr.rb -------------------------------------------------------------------------------- /test/scripts/test-check.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/test/scripts/test-check.rc -------------------------------------------------------------------------------- /test/tests/rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/test/tests/rakefile -------------------------------------------------------------------------------- /test/tests/test_encoders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/test/tests/test_encoders.rb -------------------------------------------------------------------------------- /test/tests/testbase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/test/tests/testbase.rb -------------------------------------------------------------------------------- /tools/committer_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/committer_count.rb -------------------------------------------------------------------------------- /tools/context/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/context/Makefile -------------------------------------------------------------------------------- /tools/context/cpuid-key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/context/cpuid-key.c -------------------------------------------------------------------------------- /tools/context/stat-key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/context/stat-key.c -------------------------------------------------------------------------------- /tools/context/time-key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/context/time-key.c -------------------------------------------------------------------------------- /tools/convert_31.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/convert_31.rb -------------------------------------------------------------------------------- /tools/dev/pre-commit-hook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/dev/pre-commit-hook.rb -------------------------------------------------------------------------------- /tools/dev/retab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/dev/retab.rb -------------------------------------------------------------------------------- /tools/exe2vba.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/exe2vba.rb -------------------------------------------------------------------------------- /tools/exe2vbs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/exe2vbs.rb -------------------------------------------------------------------------------- /tools/find_badchars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/find_badchars.rb -------------------------------------------------------------------------------- /tools/halflm_second.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/halflm_second.rb -------------------------------------------------------------------------------- /tools/hmac_sha1_crack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/hmac_sha1_crack.rb -------------------------------------------------------------------------------- /tools/import_webscarab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/import_webscarab.rb -------------------------------------------------------------------------------- /tools/list_interfaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/list_interfaces.rb -------------------------------------------------------------------------------- /tools/lm2ntcrack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/lm2ntcrack.rb -------------------------------------------------------------------------------- /tools/memdump/README.memdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/memdump/README.memdump -------------------------------------------------------------------------------- /tools/memdump/memdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/memdump/memdump.c -------------------------------------------------------------------------------- /tools/memdump/memdump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/memdump/memdump.exe -------------------------------------------------------------------------------- /tools/metasm_shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/metasm_shell.rb -------------------------------------------------------------------------------- /tools/module_author.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/module_author.rb -------------------------------------------------------------------------------- /tools/module_changelog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/module_changelog.rb -------------------------------------------------------------------------------- /tools/module_commits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/module_commits.rb -------------------------------------------------------------------------------- /tools/module_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/module_count.rb -------------------------------------------------------------------------------- /tools/module_disclodate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/module_disclodate.rb -------------------------------------------------------------------------------- /tools/module_license.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/module_license.rb -------------------------------------------------------------------------------- /tools/module_mixins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/module_mixins.rb -------------------------------------------------------------------------------- /tools/module_payloads.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/module_payloads.rb -------------------------------------------------------------------------------- /tools/module_ports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/module_ports.rb -------------------------------------------------------------------------------- /tools/module_rank.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/module_rank.rb -------------------------------------------------------------------------------- /tools/module_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/module_reference.rb -------------------------------------------------------------------------------- /tools/module_targets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/module_targets.rb -------------------------------------------------------------------------------- /tools/msf_irb_shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/msf_irb_shell.rb -------------------------------------------------------------------------------- /tools/msftidy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/msftidy.rb -------------------------------------------------------------------------------- /tools/nasm_shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/nasm_shell.rb -------------------------------------------------------------------------------- /tools/pack_fastlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/pack_fastlib.sh -------------------------------------------------------------------------------- /tools/pattern_create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/pattern_create.rb -------------------------------------------------------------------------------- /tools/pattern_offset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/pattern_offset.rb -------------------------------------------------------------------------------- /tools/payload_lengths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/payload_lengths.rb -------------------------------------------------------------------------------- /tools/pdf2xdp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/pdf2xdp.rb -------------------------------------------------------------------------------- /tools/profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/profile.sh -------------------------------------------------------------------------------- /tools/psexec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/psexec.rb -------------------------------------------------------------------------------- /tools/reg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/reg.rb -------------------------------------------------------------------------------- /tools/verify_datastore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/verify_datastore.rb -------------------------------------------------------------------------------- /tools/vxdigger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/vxdigger.rb -------------------------------------------------------------------------------- /tools/vxencrypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/vxencrypt.rb -------------------------------------------------------------------------------- /tools/vxmaster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/metasploit-framework/HEAD/tools/vxmaster.rb --------------------------------------------------------------------------------