├── README.md ├── config.yaml ├── dlls └── .dlls ├── eBSploit.exe ├── exploit_eternalpulse ├── Doublepulsar-1.3.1.Skeleton.xml ├── Doublepulsar-1.3.1.exe ├── Doublepulsar-1.3.1.xml ├── EternalPulse ├── Eternalblue-2.2.0.Skeleton.xml ├── Eternalblue-2.2.0.exe ├── Eternalblue-2.2.0.xml ├── README.md ├── _pytrch.pyd ├── adfw-2.dll ├── adfw.dll ├── cnli-0.dll ├── cnli-1.dll ├── coli-0.dll ├── crli-0.dll ├── dmgd-1.dll ├── dmgd-4.dll ├── esco-0.dll ├── eternalpulse.rb ├── exma-1.dll ├── exma.dll ├── iconv.dll ├── libcurl.dll ├── libeay32.dll ├── libiconv-2.dll ├── libxml2.dll ├── pcla-0.dll ├── pcre-0.dll ├── pcrecpp-0.dll ├── pcreposix-0.dll ├── posh-0.dll ├── posh.dll ├── pytrch.py ├── pytrch.pyc ├── riar-2.dll ├── riar.dll ├── ssleay32.dll ├── tibe-1.dll ├── tibe-2.dll ├── tibe.dll ├── trch-0.dll ├── trch-1.dll ├── trch.dll ├── trfo-0.dll ├── trfo-2.dll ├── trfo.dll ├── tucl-1.dll ├── tucl.dll ├── ucl.dll ├── xdvl-0.dll ├── zibe.dll └── zlib1.dll ├── images ├── header.png ├── image-20240817155056436.png ├── image-20240817163810191.png ├── image-20240817163830990.png ├── image-20240817164008249.png ├── image-20240817164028291.png ├── image-20240817164124976.png ├── image-20240817164407513.png ├── image-20240817165617525.png ├── image-20240817165709553.png ├── image-20240817165908697.png ├── image-20240817170940918.png ├── image-20240817171504669.png ├── image-20240817171550660.png ├── image-20240817171640616.png ├── image-20240817171651874.png ├── image-20240817171706529.png ├── image-20240817171749532.png ├── image-20240817171829426.png ├── image-20240817172905976.png ├── image-20240817172915556.png ├── image-20240817172954360.png ├── image-20240817173100657.png ├── image-20240817173215258.png ├── image-20240817173224017.png ├── image-20240817173306341.png ├── image-20240817173322714.png ├── image-20240817173328886.png ├── image-20240817223040654.png ├── image-20240817223057415.png ├── image-20240817223146713.png ├── image-20240817223235883.png ├── image-20240817223236718.png ├── image-20240817223238022.png ├── image-20240817223433487.png ├── image-20240817224014967.png ├── image-20240817224111732.png ├── image-20240817224352514.png ├── image-20240817224401506.png ├── image-20240817224406043.png └── image-20240817224723017.png ├── metasploit-framework ├── framework │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ ├── config.yml │ │ │ ├── documentation.md │ │ │ ├── feature_suggestion.md │ │ │ ├── module_suggestion.md │ │ │ └── question.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ ├── SECURITY.md │ │ └── workflows │ │ │ ├── docs.yml │ │ │ ├── labels.yml │ │ │ ├── lint.yml │ │ │ ├── schedule-stale.yml │ │ │ ├── verify.yml │ │ │ └── weekly-dependencies-pr.yml │ ├── Gemfile │ ├── Gemfile.local.example │ ├── Gemfile.lock │ ├── app │ │ ├── README.md │ │ ├── concerns │ │ │ ├── mdm │ │ │ │ └── workspace │ │ │ │ │ └── boundary_range.rb │ │ │ └── metasploit │ │ │ │ └── credential │ │ │ │ └── core │ │ │ │ └── to_credential.rb │ │ ├── models │ │ │ └── application_record.rb │ │ └── validators │ │ │ ├── metasploit.rb │ │ │ └── metasploit │ │ │ └── framework │ │ │ ├── executable_path_validator.rb │ │ │ └── file_path_validator.rb │ ├── config │ │ ├── README.md │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── cucumber.yml │ │ ├── database.yml.example │ │ ├── database.yml.github_actions │ │ ├── database.yml.vagrant │ │ ├── environment.rb │ │ ├── environments │ │ │ └── production.rb │ │ └── openssl.conf │ ├── data │ │ ├── README.md │ │ ├── SqlClrPayload │ │ │ ├── v2.0 │ │ │ │ └── SqlClrPayload.dll │ │ │ ├── v3.5 │ │ │ │ └── SqlClrPayload.dll │ │ │ ├── v4.0 │ │ │ │ └── SqlClrPayload.dll │ │ │ ├── v4.5.1 │ │ │ │ └── SqlClrPayload.dll │ │ │ ├── v4.5.2 │ │ │ │ └── SqlClrPayload.dll │ │ │ ├── v4.5 │ │ │ │ └── SqlClrPayload.dll │ │ │ ├── v4.6.1 │ │ │ │ └── SqlClrPayload.dll │ │ │ └── v4.6 │ │ │ │ └── SqlClrPayload.dll │ │ ├── capture_config.yaml │ │ ├── eicar.com │ │ ├── eicar.txt │ │ ├── emailer_config.yaml │ │ ├── exchange_versions.json │ │ ├── f5-mcp-objects.txt │ │ ├── isight.bundle │ │ ├── mime.yml │ │ ├── passivex │ │ │ └── passivex.dll │ │ ├── php │ │ │ └── hop.php │ │ ├── post │ │ │ ├── SharpHound.exe │ │ │ ├── bypassuac-x64.dll │ │ │ ├── bypassuac-x64.exe │ │ │ ├── bypassuac-x86.dll │ │ │ ├── bypassuac-x86.exe │ │ │ ├── enum_artifacts_list.txt │ │ │ ├── execute-dotnet-assembly │ │ │ │ └── .gitignore │ │ │ ├── powershell │ │ │ │ ├── Invoke-LoginPrompt.ps1 │ │ │ │ ├── NTDSgrab.ps1 │ │ │ │ ├── SharpHound.ps1 │ │ │ │ ├── exchange.ps1 │ │ │ │ ├── msflag.ps1 │ │ │ │ └── outlook.ps1 │ │ │ ├── sonic_pi_example.rb │ │ │ └── zip │ │ │ │ └── zip.js │ │ ├── rocketmq_versions_list.json │ │ ├── shellcode │ │ │ ├── block_api.x64.graphml │ │ │ └── block_api.x86.graphml │ │ ├── snmp │ │ │ └── mibs │ │ │ │ ├── ACCOUNTING-CONTROL-MIB.yaml │ │ │ │ ├── ADSL-LINE-EXT-MIB.yaml │ │ │ │ ├── ADSL-LINE-MIB.yaml │ │ │ │ ├── ADSL-TC-MIB.yaml │ │ │ │ ├── AGENTX-MIB.yaml │ │ │ │ ├── APM-MIB.yaml │ │ │ │ ├── APPC-MIB.yaml │ │ │ │ ├── APPLETALK-MIB.yaml │ │ │ │ ├── APPLICATION-MIB.yaml │ │ │ │ ├── APPN-DLUR-MIB.yaml │ │ │ │ ├── APPN-MIB.yaml │ │ │ │ ├── APPN-TRAP-MIB.yaml │ │ │ │ ├── APS-MIB.yaml │ │ │ │ ├── ATM-ACCOUNTING-INFORMATION-MIB.yaml │ │ │ │ ├── ATM-MIB.yaml │ │ │ │ ├── ATM-TC-MIB.yaml │ │ │ │ ├── ATM2-MIB.yaml │ │ │ │ ├── BGP4-MIB.yaml │ │ │ │ ├── BLDG-HVAC-MIB.yaml │ │ │ │ ├── BRIDGE-MIB.yaml │ │ │ │ ├── CHARACTER-MIB.yaml │ │ │ │ ├── CIRCUIT-IF-MIB.yaml │ │ │ │ ├── CLNS-MIB.yaml │ │ │ │ ├── COFFEE-POT-MIB.yaml │ │ │ │ ├── COPS-CLIENT-MIB.yaml │ │ │ │ ├── DECNET-PHIV-MIB.yaml │ │ │ │ ├── DIAL-CONTROL-MIB.yaml │ │ │ │ ├── DIFFSERV-CONFIG-MIB.yaml │ │ │ │ ├── DIFFSERV-DSCP-TC.yaml │ │ │ │ ├── DIFFSERV-MIB.yaml │ │ │ │ ├── DIRECTORY-SERVER-MIB.yaml │ │ │ │ ├── DISMAN-EVENT-MIB.yaml │ │ │ │ ├── DISMAN-EXPRESSION-MIB.yaml │ │ │ │ ├── DISMAN-NSLOOKUP-MIB.yaml │ │ │ │ ├── DISMAN-PING-MIB.yaml │ │ │ │ ├── DISMAN-SCHEDULE-MIB.yaml │ │ │ │ ├── DISMAN-SCRIPT-MIB.yaml │ │ │ │ ├── DISMAN-TRACEROUTE-MIB.yaml │ │ │ │ ├── DLSW-MIB.yaml │ │ │ │ ├── DNS-RESOLVER-MIB.yaml │ │ │ │ ├── DNS-SERVER-MIB.yaml │ │ │ │ ├── DOCS-BPI-MIB.yaml │ │ │ │ ├── DOCS-CABLE-DEVICE-MIB.yaml │ │ │ │ ├── DOCS-IF-MIB.yaml │ │ │ │ ├── DOT12-IF-MIB.yaml │ │ │ │ ├── DS0-MIB.yaml │ │ │ │ ├── DS0BUNDLE-MIB.yaml │ │ │ │ ├── DS1-MIB.yaml │ │ │ │ ├── DS3-MIB.yaml │ │ │ │ ├── DSA-MIB.yaml │ │ │ │ ├── DSMON-MIB.yaml │ │ │ │ ├── EBN-MIB.yaml │ │ │ │ ├── ENTITY-MIB.yaml │ │ │ │ ├── ENTITY-SENSOR-MIB.yaml │ │ │ │ ├── ETHER-CHIPSET-MIB.yaml │ │ │ │ ├── ETHER-WIS.yaml │ │ │ │ ├── EtherLike-MIB.yaml │ │ │ │ ├── FDDI-SMT73-MIB.yaml │ │ │ │ ├── FIBRE-CHANNEL-FE-MIB.yaml │ │ │ │ ├── FLOW-METER-MIB.yaml │ │ │ │ ├── FR-ATM-PVC-SERVICE-IWF-MIB.yaml │ │ │ │ ├── FR-MFR-MIB.yaml │ │ │ │ ├── FRAME-RELAY-DTE-MIB.yaml │ │ │ │ ├── FRNETSERV-MIB.yaml │ │ │ │ ├── FRSLD-MIB.yaml │ │ │ │ ├── Finisher-MIB.yaml │ │ │ │ ├── GSMP-MIB.yaml │ │ │ │ ├── HC-ALARM-MIB.yaml │ │ │ │ ├── HC-PerfHist-TC-MIB.yaml │ │ │ │ ├── HC-RMON-MIB.yaml │ │ │ │ ├── HCNUM-TC.yaml │ │ │ │ ├── HDSL2-SHDSL-LINE-MIB.yaml │ │ │ │ ├── HOST-RESOURCES-MIB.yaml │ │ │ │ ├── HOST-RESOURCES-TYPES.yaml │ │ │ │ ├── HPR-IP-MIB.yaml │ │ │ │ ├── HPR-MIB.yaml │ │ │ │ ├── IF-INVERTED-STACK-MIB.yaml │ │ │ │ ├── IF-MIB.yaml │ │ │ │ ├── IGMP-STD-MIB.yaml │ │ │ │ ├── INET-ADDRESS-MIB.yaml │ │ │ │ ├── INTEGRATED-SERVICES-GUARANTEED-MIB.yaml │ │ │ │ ├── INTEGRATED-SERVICES-MIB.yaml │ │ │ │ ├── INTERFACETOPN-MIB.yaml │ │ │ │ ├── IP-FORWARD-MIB.yaml │ │ │ │ ├── IP-MIB.yaml │ │ │ │ ├── IPATM-IPMC-MIB.yaml │ │ │ │ ├── IPMROUTE-STD-MIB.yaml │ │ │ │ ├── IPOA-MIB.yaml │ │ │ │ ├── IPV6-FLOW-LABEL-MIB.yaml │ │ │ │ ├── IPV6-ICMP-MIB.yaml │ │ │ │ ├── IPV6-MIB.yaml │ │ │ │ ├── IPV6-MLD-MIB.yaml │ │ │ │ ├── IPV6-TCP-MIB.yaml │ │ │ │ ├── IPV6-UDP-MIB.yaml │ │ │ │ ├── ISDN-MIB.yaml │ │ │ │ ├── Job-Monitoring-MIB.yaml │ │ │ │ ├── L2TP-MIB.yaml │ │ │ │ ├── MALLOC-MIB.yaml │ │ │ │ ├── MAU-MIB.yaml │ │ │ │ ├── MIOX25-MIB.yaml │ │ │ │ ├── MIP-MIB.yaml │ │ │ │ ├── MPLS-FTN-STD-MIB.yaml │ │ │ │ ├── MPLS-LDP-ATM-STD-MIB.yaml │ │ │ │ ├── MPLS-LDP-FRAME-RELAY-STD-MIB.yaml │ │ │ │ ├── MPLS-LDP-GENERIC-STD-MIB.yaml │ │ │ │ ├── MPLS-LDP-STD-MIB.yaml │ │ │ │ ├── MPLS-LSR-STD-MIB.yaml │ │ │ │ ├── MPLS-TC-STD-MIB.yaml │ │ │ │ ├── MPLS-TE-STD-MIB.yaml │ │ │ │ ├── MTA-MIB.yaml │ │ │ │ ├── Modem-MIB.yaml │ │ │ │ ├── NETWORK-SERVICES-MIB.yaml │ │ │ │ ├── NHRP-MIB.yaml │ │ │ │ ├── NOTIFICATION-LOG-MIB.yaml │ │ │ │ ├── OPT-IF-MIB.yaml │ │ │ │ ├── OSPF-MIB.yaml │ │ │ │ ├── OSPF-TRAP-MIB.yaml │ │ │ │ ├── P-BRIDGE-MIB.yaml │ │ │ │ ├── PARALLEL-MIB.yaml │ │ │ │ ├── PIM-MIB.yaml │ │ │ │ ├── PINT-MIB.yaml │ │ │ │ ├── POWER-ETHERNET-MIB.yaml │ │ │ │ ├── PPP-BRIDGE-NCP-MIB.yaml │ │ │ │ ├── PPP-IP-NCP-MIB.yaml │ │ │ │ ├── PPP-LCP-MIB.yaml │ │ │ │ ├── PPP-SEC-MIB.yaml │ │ │ │ ├── PTOPO-MIB.yaml │ │ │ │ ├── PerfHist-TC-MIB.yaml │ │ │ │ ├── Printer-MIB.yaml │ │ │ │ ├── Q-BRIDGE-MIB.yaml │ │ │ │ ├── RADIUS-ACC-CLIENT-MIB.yaml │ │ │ │ ├── RADIUS-ACC-SERVER-MIB.yaml │ │ │ │ ├── RADIUS-AUTH-CLIENT-MIB.yaml │ │ │ │ ├── RADIUS-AUTH-SERVER-MIB.yaml │ │ │ │ ├── RDBMS-MIB.yaml │ │ │ │ ├── RFC1065-SMI.yaml │ │ │ │ ├── RFC1155-SMI.yaml │ │ │ │ ├── RFC1158-MIB.yaml │ │ │ │ ├── RFC1213-MIB.yaml │ │ │ │ ├── RFC1269-MIB.yaml │ │ │ │ ├── RFC1271-MIB.yaml │ │ │ │ ├── RFC1285-MIB.yaml │ │ │ │ ├── RFC1316-MIB.yaml │ │ │ │ ├── RFC1381-MIB.yaml │ │ │ │ ├── RFC1382-MIB.yaml │ │ │ │ ├── RFC1414-MIB.yaml │ │ │ │ ├── RIPv2-MIB.yaml │ │ │ │ ├── RMON-MIB.yaml │ │ │ │ ├── RMON2-MIB.yaml │ │ │ │ ├── ROHC-MIB.yaml │ │ │ │ ├── ROHC-RTP-MIB.yaml │ │ │ │ ├── ROHC-UNCOMPRESSED-MIB.yaml │ │ │ │ ├── RS-232-MIB.yaml │ │ │ │ ├── RSVP-MIB.yaml │ │ │ │ ├── RTP-MIB.yaml │ │ │ │ ├── SFLOW-MIB.yaml │ │ │ │ ├── SIP-MIB.yaml │ │ │ │ ├── SLAPM-MIB.yaml │ │ │ │ ├── SMON-MIB.yaml │ │ │ │ ├── SNA-NAU-MIB.yaml │ │ │ │ ├── SNA-SDLC-MIB.yaml │ │ │ │ ├── SNMP-COMMUNITY-MIB.yaml │ │ │ │ ├── SNMP-FRAMEWORK-MIB.yaml │ │ │ │ ├── SNMP-MPD-MIB.yaml │ │ │ │ ├── SNMP-NOTIFICATION-MIB.yaml │ │ │ │ ├── SNMP-PROXY-MIB.yaml │ │ │ │ ├── SNMP-REPEATER-MIB.yaml │ │ │ │ ├── SNMP-TARGET-MIB.yaml │ │ │ │ ├── SNMP-USER-BASED-SM-MIB.yaml │ │ │ │ ├── SNMP-USM-DH-OBJECTS-MIB.yaml │ │ │ │ ├── SNMP-VIEW-BASED-ACM-MIB.yaml │ │ │ │ ├── SNMPv2-MIB.yaml │ │ │ │ ├── SNMPv2-SMI.yaml │ │ │ │ ├── SNMPv2-TM.yaml │ │ │ │ ├── SNMPv2-USEC-MIB.yaml │ │ │ │ ├── SONET-MIB.yaml │ │ │ │ ├── SOURCE-ROUTING-MIB.yaml │ │ │ │ ├── SYSAPPL-MIB.yaml │ │ │ │ ├── TCP-MIB.yaml │ │ │ │ ├── TCPIPX-MIB.yaml │ │ │ │ ├── TN3270E-MIB.yaml │ │ │ │ ├── TN3270E-RT-MIB.yaml │ │ │ │ ├── TOKEN-RING-RMON-MIB.yaml │ │ │ │ ├── TOKENRING-MIB.yaml │ │ │ │ ├── TOKENRING-STATION-SR-MIB.yaml │ │ │ │ ├── TRANSPORT-ADDRESS-MIB.yaml │ │ │ │ ├── TUNNEL-MIB.yaml │ │ │ │ ├── UDP-MIB.yaml │ │ │ │ ├── UPS-MIB.yaml │ │ │ │ ├── VDSL-LINE-MIB.yaml │ │ │ │ ├── VRRP-MIB.yaml │ │ │ │ └── WWW-MIB.yaml │ │ ├── sounds │ │ │ ├── aiff2wav.rb │ │ │ ├── default │ │ │ │ ├── excellent.wav │ │ │ │ ├── exploit_worked.wav │ │ │ │ ├── got_a_shell.wav │ │ │ │ ├── try_harder.wav │ │ │ │ └── wonderful.wav │ │ │ └── gensounds_mac.rb │ │ ├── templates │ │ │ ├── dotnetmem.dll │ │ │ ├── scripts │ │ │ │ ├── to_exe.asp.template │ │ │ │ ├── to_exe.aspx.template │ │ │ │ ├── to_exe.jsp.template │ │ │ │ ├── to_exe.vba.template │ │ │ │ ├── to_exe.vbs.template │ │ │ │ ├── to_mem.aspx.template │ │ │ │ ├── to_mem.vba.template │ │ │ │ ├── to_powershell.ducky_script.template │ │ │ │ ├── to_powershell.hta.template │ │ │ │ └── to_powershell.vba.template │ │ │ ├── src │ │ │ │ ├── elf │ │ │ │ │ ├── dll │ │ │ │ │ │ ├── elf_dll_aarch64_template.s │ │ │ │ │ │ ├── elf_dll_armle_template.s │ │ │ │ │ │ ├── elf_dll_x64_template.s │ │ │ │ │ │ └── elf_dll_x86_template.s │ │ │ │ │ └── exe │ │ │ │ │ │ ├── elf_aarch64_template.s │ │ │ │ │ │ ├── elf_armle_template.s │ │ │ │ │ │ ├── elf_mipsle_template.s │ │ │ │ │ │ ├── elf_x86_bsd_template.s │ │ │ │ │ │ ├── elf_x86_solaris_template.s │ │ │ │ │ │ └── elf_x86_template.s │ │ │ │ ├── msi │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── COMPILING.txt │ │ │ │ │ ├── buffer │ │ │ │ │ ├── compile.bat │ │ │ │ │ ├── template_nouac_windows.wxs │ │ │ │ │ └── template_windows.wxs │ │ │ │ └── pe │ │ │ │ │ ├── README.md │ │ │ │ │ ├── build_dlls.bat │ │ │ │ │ ├── dll │ │ │ │ │ ├── build.bat │ │ │ │ │ ├── template.c │ │ │ │ │ ├── template.h │ │ │ │ │ └── template.rc │ │ │ │ │ ├── dll_gdiplus │ │ │ │ │ ├── build.bat │ │ │ │ │ └── exports.h │ │ │ │ │ ├── dll_mixed_mode │ │ │ │ │ ├── README.md │ │ │ │ │ ├── build.bat │ │ │ │ │ └── template.cpp │ │ │ │ │ └── exe │ │ │ │ │ ├── service │ │ │ │ │ ├── Service.sln │ │ │ │ │ ├── Service.vcproj │ │ │ │ │ └── service.c │ │ │ │ │ ├── template.c │ │ │ │ │ ├── template.s │ │ │ │ │ └── template_x64_windows.asm │ │ │ ├── template_aarch64_linux.bin │ │ │ ├── template_aarch64_linux_dll.bin │ │ │ ├── template_armle_darwin.bin │ │ │ ├── template_armle_linux.bin │ │ │ ├── template_armle_linux_dll.bin │ │ │ ├── template_dotnetmem.dll │ │ │ ├── template_mipsbe_linux.bin │ │ │ ├── template_mipsle_linux.bin │ │ │ ├── template_nouac_windows.msi │ │ │ ├── template_ppc_darwin.bin │ │ │ ├── template_windows.msi │ │ │ ├── template_x64_bsd.bin │ │ │ ├── template_x64_darwin.bin │ │ │ ├── template_x64_linux.bin │ │ │ ├── template_x64_linux_dll.bin │ │ │ ├── template_x64_windows.256kib.dll │ │ │ ├── template_x64_windows.dll │ │ │ ├── template_x64_windows.exe │ │ │ ├── template_x64_windows_dccw_gdiplus.256kib.dll │ │ │ ├── template_x64_windows_dccw_gdiplus.dll │ │ │ ├── template_x64_windows_mixed_mode.256kib.dll │ │ │ ├── template_x64_windows_mixed_mode.dll │ │ │ ├── template_x64_windows_svc.exe │ │ │ ├── template_x86_bsd.bin │ │ │ ├── template_x86_darwin.bin │ │ │ ├── template_x86_linux.bin │ │ │ ├── template_x86_linux_dll.bin │ │ │ ├── template_x86_solaris.bin │ │ │ ├── template_x86_windows.256kib.dll │ │ │ ├── template_x86_windows.dll │ │ │ ├── template_x86_windows.exe │ │ │ ├── template_x86_windows_dccw_gdiplus.256kib.dll │ │ │ ├── template_x86_windows_dccw_gdiplus.dll │ │ │ ├── template_x86_windows_mixed_mode.256kib.dll │ │ │ ├── template_x86_windows_mixed_mode.dll │ │ │ ├── template_x86_windows_old.exe │ │ │ └── template_x86_windows_svc.exe │ │ ├── unirpc-errors.yaml │ │ ├── utilities │ │ │ └── encrypted_payload │ │ │ │ ├── AdjustStack.asm │ │ │ │ ├── func_order.ld │ │ │ │ └── func_order64.ld │ │ ├── vncdll.x64.dll │ │ ├── vncdll.x86.dll │ │ ├── webcam │ │ │ ├── answerer.html │ │ │ ├── api.js │ │ │ └── offerer.html │ │ ├── wmap │ │ │ ├── whaler.txt │ │ │ ├── wmap_404s.txt │ │ │ ├── wmap_dirs.txt │ │ │ ├── wmap_files.txt │ │ │ └── wmap_sample_profile.txt │ │ ├── wordlists │ │ │ ├── adobe_top100_pass.txt │ │ │ ├── av-update-urls.txt │ │ │ ├── av_hips_executables.txt │ │ │ ├── burnett_top_1024.txt │ │ │ ├── burnett_top_500.txt │ │ │ ├── can_flood_frames.txt │ │ │ ├── cms400net_default_userpass.txt │ │ │ ├── common_roots.txt │ │ │ ├── dangerzone_a.txt │ │ │ ├── dangerzone_b.txt │ │ │ ├── db2_default_pass.txt │ │ │ ├── db2_default_user.txt │ │ │ ├── db2_default_userpass.txt │ │ │ ├── default_pass_for_services_unhash.txt │ │ │ ├── default_userpass_for_services_unhash.txt │ │ │ ├── default_users_for_services_unhash.txt │ │ │ ├── dlink_telnet_backdoor_userpass.txt │ │ │ ├── grafana_plugins.txt │ │ │ ├── hci_oracle_passwords.csv │ │ │ ├── http_default_pass.txt │ │ │ ├── http_default_userpass.txt │ │ │ ├── http_default_users.txt │ │ │ ├── http_owa_common.txt │ │ │ ├── idrac_default_pass.txt │ │ │ ├── idrac_default_user.txt │ │ │ ├── ipmi_passwords.txt │ │ │ ├── ipmi_users.txt │ │ │ ├── joomla.txt │ │ │ ├── keyboard-patterns.txt │ │ │ ├── lync_subdomains.txt │ │ │ ├── malicious_urls.txt │ │ │ ├── mirai_pass.txt │ │ │ ├── mirai_user.txt │ │ │ ├── mirai_user_pass.txt │ │ │ ├── multi_vendor_cctv_dvr_pass.txt │ │ │ ├── multi_vendor_cctv_dvr_users.txt │ │ │ ├── named_pipes.txt │ │ │ ├── namelist.txt │ │ │ ├── oracle_default_hashes.txt │ │ │ ├── oracle_default_passwords.csv │ │ │ ├── oracle_default_userpass.txt │ │ │ ├── password.lst │ │ │ ├── piata_ssh_userpass.txt │ │ │ ├── postgres_default_pass.txt │ │ │ ├── postgres_default_user.txt │ │ │ ├── postgres_default_userpass.txt │ │ │ ├── root_userpass.txt │ │ │ ├── routers_userpass.txt │ │ │ ├── rpc_names.txt │ │ │ ├── rservices_from_users.txt │ │ │ ├── sap_common.txt │ │ │ ├── sap_default.txt │ │ │ ├── sap_icm_paths.txt │ │ │ ├── scada_default_userpass.txt │ │ │ ├── sensitive_files.txt │ │ │ ├── sensitive_files_win.txt │ │ │ ├── sid.txt │ │ │ ├── snmp_default_pass.txt │ │ │ ├── telerik_ui_asp_net_ajax_versions.txt │ │ │ ├── telnet_cdata_ftth_backdoor_userpass.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 │ │ │ ├── wp-exploitable-plugins.txt │ │ │ ├── wp-exploitable-themes.txt │ │ │ ├── wp-plugins.txt │ │ │ └── wp-themes.txt │ │ └── ysoserial_payloads.json │ ├── db │ │ ├── README.md │ │ ├── migrate │ │ │ └── .git-keep │ │ ├── modules_metadata_base.json │ │ └── schema.rb │ ├── docker │ │ ├── README.md │ │ ├── bin │ │ │ ├── msfconsole │ │ │ └── msfvenom │ │ ├── database.yml │ │ ├── entrypoint.sh │ │ └── msfconsole.rc │ ├── lib │ │ ├── README.md │ │ ├── anemone.rb │ │ ├── anemone │ │ │ ├── cli.rb │ │ │ ├── cli │ │ │ │ ├── count.rb │ │ │ │ ├── cron.rb │ │ │ │ ├── pagedepth.rb │ │ │ │ ├── serialize.rb │ │ │ │ └── url_list.rb │ │ │ ├── cookie_store.rb │ │ │ ├── core.rb │ │ │ ├── docs │ │ │ │ ├── CHANGELOG.rdoc │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── MODIFIED.txt │ │ │ │ ├── README.rdoc │ │ │ │ ├── Rakefile │ │ │ │ └── VERSION │ │ │ ├── exceptions.rb │ │ │ ├── extractors │ │ │ │ ├── anchors.rb │ │ │ │ ├── dirbuster.rb │ │ │ │ ├── dirbuster │ │ │ │ │ └── directories │ │ │ │ ├── forms.rb │ │ │ │ ├── frames.rb │ │ │ │ ├── generic.rb │ │ │ │ ├── links.rb │ │ │ │ ├── meta_refresh.rb │ │ │ │ └── scripts.rb │ │ │ ├── http.rb │ │ │ ├── page.rb │ │ │ ├── page_store.rb │ │ │ ├── rex_http.rb │ │ │ ├── storage.rb │ │ │ ├── storage │ │ │ │ ├── base.rb │ │ │ │ ├── exceptions.rb │ │ │ │ ├── mongodb.rb │ │ │ │ ├── pstore.rb │ │ │ │ ├── redis.rb │ │ │ │ └── tokyo_cabinet.rb │ │ │ └── tentacle.rb │ │ ├── enumerable.rb │ │ ├── expect.rb │ │ ├── metasploit │ │ │ ├── framework.rb │ │ │ └── framework │ │ │ │ ├── afp │ │ │ │ └── client.rb │ │ │ │ ├── api.rb │ │ │ │ ├── api │ │ │ │ └── version.rb │ │ │ │ ├── aws │ │ │ │ └── client.rb │ │ │ │ ├── command.rb │ │ │ │ ├── command │ │ │ │ ├── base.rb │ │ │ │ └── console.rb │ │ │ │ ├── common_engine.rb │ │ │ │ ├── community_string_collection.rb │ │ │ │ ├── compiler │ │ │ │ ├── headers │ │ │ │ │ ├── base.rb │ │ │ │ │ └── windows.rb │ │ │ │ ├── mingw.rb │ │ │ │ ├── utils.rb │ │ │ │ └── windows.rb │ │ │ │ ├── core.rb │ │ │ │ ├── core │ │ │ │ └── version.rb │ │ │ │ ├── credential.rb │ │ │ │ ├── credential_collection.rb │ │ │ │ ├── data_service.rb │ │ │ │ ├── data_service │ │ │ │ ├── proxy │ │ │ │ │ ├── core.rb │ │ │ │ │ ├── credential_data_proxy.rb │ │ │ │ │ ├── data_proxy_auto_loader.rb │ │ │ │ │ ├── db_export_data_proxy.rb │ │ │ │ │ ├── db_import_data_proxy.rb │ │ │ │ │ ├── event_data_proxy.rb │ │ │ │ │ ├── exploit_data_proxy.rb │ │ │ │ │ ├── host_data_proxy.rb │ │ │ │ │ ├── login_data_proxy.rb │ │ │ │ │ ├── loot_data_proxy.rb │ │ │ │ │ ├── msf_data_proxy.rb │ │ │ │ │ ├── nmap_data_proxy.rb │ │ │ │ │ ├── note_data_proxy.rb │ │ │ │ │ ├── payload_data_proxy.rb │ │ │ │ │ ├── route_data_proxy.rb │ │ │ │ │ ├── service_data_proxy.rb │ │ │ │ │ ├── session_data_proxy.rb │ │ │ │ │ ├── session_event_data_proxy.rb │ │ │ │ │ ├── vuln_attempt_data_proxy.rb │ │ │ │ │ ├── vuln_data_proxy.rb │ │ │ │ │ ├── web_data_proxy.rb │ │ │ │ │ └── workspace_data_proxy.rb │ │ │ │ ├── remote │ │ │ │ │ ├── http │ │ │ │ │ │ ├── core.rb │ │ │ │ │ │ ├── data_service_auto_loader.rb │ │ │ │ │ │ ├── error.rb │ │ │ │ │ │ ├── query_meta.rb │ │ │ │ │ │ ├── remote_credential_data_service.rb │ │ │ │ │ │ ├── remote_db_export_data_service.rb │ │ │ │ │ │ ├── remote_db_import_data_service.rb │ │ │ │ │ │ ├── remote_event_data_service.rb │ │ │ │ │ │ ├── remote_exploit_data_service.rb │ │ │ │ │ │ ├── remote_host_data_service.rb │ │ │ │ │ │ ├── remote_login_data_service.rb │ │ │ │ │ │ ├── remote_loot_data_service.rb │ │ │ │ │ │ ├── remote_msf_data_service.rb │ │ │ │ │ │ ├── remote_nmap_data_service.rb │ │ │ │ │ │ ├── remote_note_data_service.rb │ │ │ │ │ │ ├── remote_payload_data_service.rb │ │ │ │ │ │ ├── remote_route_data_service.rb │ │ │ │ │ │ ├── remote_service_data_service.rb │ │ │ │ │ │ ├── remote_session_data_service.rb │ │ │ │ │ │ ├── remote_session_event_data_service.rb │ │ │ │ │ │ ├── remote_vuln_attempt_data_service.rb │ │ │ │ │ │ ├── remote_vuln_data_service.rb │ │ │ │ │ │ ├── remote_web_data_service.rb │ │ │ │ │ │ ├── remote_workspace_data_service.rb │ │ │ │ │ │ └── response_data_helper.rb │ │ │ │ │ └── managed_remote_data_service.rb │ │ │ │ └── stubs │ │ │ │ │ ├── credential_data_service.rb │ │ │ │ │ ├── db_export_service.rb │ │ │ │ │ ├── db_import_service.rb │ │ │ │ │ ├── event_data_service.rb │ │ │ │ │ ├── exploit_data_service.rb │ │ │ │ │ ├── host_data_service.rb │ │ │ │ │ ├── login_data_service.rb │ │ │ │ │ ├── loot_data_service.rb │ │ │ │ │ ├── module_data_service.rb │ │ │ │ │ ├── msf_data_service.rb │ │ │ │ │ ├── note_data_service.rb │ │ │ │ │ ├── payload_data_service.rb │ │ │ │ │ ├── query_service.rb │ │ │ │ │ ├── route_data_service.rb │ │ │ │ │ ├── search.rb │ │ │ │ │ ├── service_data_service.rb │ │ │ │ │ ├── session_data_service.rb │ │ │ │ │ ├── session_event_service.rb │ │ │ │ │ ├── vuln_data_service.rb │ │ │ │ │ ├── web_data_service.rb │ │ │ │ │ └── workspace_data_service.rb │ │ │ │ ├── database.rb │ │ │ │ ├── engine.rb │ │ │ │ ├── ftp │ │ │ │ └── client.rb │ │ │ │ ├── hashes.rb │ │ │ │ ├── login_scanner.rb │ │ │ │ ├── login_scanner │ │ │ │ ├── acpp.rb │ │ │ │ ├── advantech_webaccess.rb │ │ │ │ ├── afp.rb │ │ │ │ ├── amqp.rb │ │ │ │ ├── axis2.rb │ │ │ │ ├── base.rb │ │ │ │ ├── bavision_cameras.rb │ │ │ │ ├── buffalo.rb │ │ │ │ ├── caidao.rb │ │ │ │ ├── chef_webui.rb │ │ │ │ ├── cisco_firepower.rb │ │ │ │ ├── db2.rb │ │ │ │ ├── directadmin.rb │ │ │ │ ├── freeswitch_event_socket.rb │ │ │ │ ├── ftp.rb │ │ │ │ ├── gitlab.rb │ │ │ │ ├── glassfish.rb │ │ │ │ ├── http.rb │ │ │ │ ├── invalid.rb │ │ │ │ ├── ipboard.rb │ │ │ │ ├── jenkins.rb │ │ │ │ ├── jupyter.rb │ │ │ │ ├── kerberos.rb │ │ │ │ ├── manageengine_desktop_central.rb │ │ │ │ ├── mqtt.rb │ │ │ │ ├── mssql.rb │ │ │ │ ├── mybook_live.rb │ │ │ │ ├── mysql.rb │ │ │ │ ├── nessus.rb │ │ │ │ ├── ntlm.rb │ │ │ │ ├── octopusdeploy.rb │ │ │ │ ├── phpmyadmin.rb │ │ │ │ ├── pop3.rb │ │ │ │ ├── postgres.rb │ │ │ │ ├── redis.rb │ │ │ │ ├── result.rb │ │ │ │ ├── rex_socket.rb │ │ │ │ ├── smb.rb │ │ │ │ ├── smh.rb │ │ │ │ ├── snmp.rb │ │ │ │ ├── softing_sis.rb │ │ │ │ ├── ssh.rb │ │ │ │ ├── symantec_web_gateway.rb │ │ │ │ ├── syncovery_file_sync_backup.rb │ │ │ │ ├── telnet.rb │ │ │ │ ├── tomcat.rb │ │ │ │ ├── varnish.rb │ │ │ │ ├── vmauthd.rb │ │ │ │ ├── vnc.rb │ │ │ │ ├── winrm.rb │ │ │ │ ├── wordpress_multicall.rb │ │ │ │ ├── wordpress_rpc.rb │ │ │ │ ├── wowza_streaming_engine_manager.rb │ │ │ │ ├── x3.rb │ │ │ │ └── zabbix.rb │ │ │ │ ├── mssql │ │ │ │ ├── base.rb │ │ │ │ ├── client.rb │ │ │ │ └── tdssslproxy.rb │ │ │ │ ├── ntds │ │ │ │ ├── account.rb │ │ │ │ └── parser.rb │ │ │ │ ├── obfuscation │ │ │ │ ├── crandomizer.rb │ │ │ │ └── crandomizer │ │ │ │ │ ├── code_factory.rb │ │ │ │ │ ├── code_factory │ │ │ │ │ ├── base.rb │ │ │ │ │ ├── fake_function.rb │ │ │ │ │ ├── fake_function_collection.rb │ │ │ │ │ ├── gettickcount.rb │ │ │ │ │ ├── if.rb │ │ │ │ │ ├── int_assignments.rb │ │ │ │ │ ├── malloc.rb │ │ │ │ │ ├── outputdebugstring.rb │ │ │ │ │ ├── printf.rb │ │ │ │ │ ├── string_assignments.rb │ │ │ │ │ ├── switch.rb │ │ │ │ │ └── uninit_variables.rb │ │ │ │ │ ├── modifier.rb │ │ │ │ │ ├── parser.rb │ │ │ │ │ ├── random_statements.rb │ │ │ │ │ └── utility.rb │ │ │ │ ├── parsed_options.rb │ │ │ │ ├── parsed_options │ │ │ │ ├── base.rb │ │ │ │ ├── console.rb │ │ │ │ └── remote_db.rb │ │ │ │ ├── password_crackers │ │ │ │ ├── cracker.rb │ │ │ │ ├── hashcat │ │ │ │ │ └── formatter.rb │ │ │ │ ├── invalid_wordlist.rb │ │ │ │ ├── jtr │ │ │ │ │ └── formatter.rb │ │ │ │ └── wordlist.rb │ │ │ │ ├── profiler.rb │ │ │ │ ├── rails_version_constraint.rb │ │ │ │ ├── require.rb │ │ │ │ ├── spec.rb │ │ │ │ ├── spec │ │ │ │ ├── constants.rb │ │ │ │ ├── constants │ │ │ │ │ ├── each.rb │ │ │ │ │ └── suite.rb │ │ │ │ ├── threads.rb │ │ │ │ ├── threads │ │ │ │ │ ├── logger.rb │ │ │ │ │ └── suite.rb │ │ │ │ └── untested_payloads.rb │ │ │ │ ├── ssh │ │ │ │ └── platform.rb │ │ │ │ ├── tcp │ │ │ │ └── client.rb │ │ │ │ ├── telnet │ │ │ │ └── client.rb │ │ │ │ ├── thread_factory_provider.rb │ │ │ │ ├── varnish │ │ │ │ └── client.rb │ │ │ │ └── version.rb │ │ ├── msf.rb │ │ ├── msf │ │ │ ├── LICENSE │ │ │ ├── base.rb │ │ │ ├── base │ │ │ │ ├── README.md │ │ │ │ ├── config.rb │ │ │ │ ├── logging.rb │ │ │ │ ├── persistent_storage.rb │ │ │ │ ├── persistent_storage │ │ │ │ │ └── flatfile.rb │ │ │ │ ├── serializer │ │ │ │ │ ├── json.rb │ │ │ │ │ └── readable_text.rb │ │ │ │ ├── sessions │ │ │ │ │ ├── aws_ssm_command_shell_bind.rb │ │ │ │ │ ├── command_shell.rb │ │ │ │ │ ├── command_shell_options.rb │ │ │ │ │ ├── command_shell_unix.rb │ │ │ │ │ ├── command_shell_windows.rb │ │ │ │ │ ├── custom.rb │ │ │ │ │ ├── encrypted_shell.rb │ │ │ │ │ ├── hwbridge.rb │ │ │ │ │ ├── mainframe_shell.rb │ │ │ │ │ ├── meterpreter.rb │ │ │ │ │ ├── meterpreter_aarch64_apple_ios.rb │ │ │ │ │ ├── meterpreter_aarch64_linux.rb │ │ │ │ │ ├── meterpreter_android.rb │ │ │ │ │ ├── meterpreter_armbe_linux.rb │ │ │ │ │ ├── meterpreter_armle_apple_ios.rb │ │ │ │ │ ├── meterpreter_armle_linux.rb │ │ │ │ │ ├── meterpreter_java.rb │ │ │ │ │ ├── meterpreter_mips64_linux.rb │ │ │ │ │ ├── meterpreter_mipsbe_linux.rb │ │ │ │ │ ├── meterpreter_mipsle_linux.rb │ │ │ │ │ ├── meterpreter_multi.rb │ │ │ │ │ ├── meterpreter_options.rb │ │ │ │ │ ├── meterpreter_php.rb │ │ │ │ │ ├── meterpreter_ppc64le_linux.rb │ │ │ │ │ ├── meterpreter_ppc_linux.rb │ │ │ │ │ ├── meterpreter_ppce500v2_linux.rb │ │ │ │ │ ├── meterpreter_python.rb │ │ │ │ │ ├── meterpreter_x64_linux.rb │ │ │ │ │ ├── meterpreter_x64_osx.rb │ │ │ │ │ ├── meterpreter_x64_win.rb │ │ │ │ │ ├── meterpreter_x86_bsd.rb │ │ │ │ │ ├── meterpreter_x86_linux.rb │ │ │ │ │ ├── meterpreter_x86_osx.rb │ │ │ │ │ ├── meterpreter_x86_win.rb │ │ │ │ │ ├── meterpreter_zarch_linux.rb │ │ │ │ │ ├── mettle_config.rb │ │ │ │ │ ├── pingback.rb │ │ │ │ │ ├── powershell.rb │ │ │ │ │ ├── scriptable.rb │ │ │ │ │ ├── ssh_command_shell_bind.rb │ │ │ │ │ ├── ssh_command_shell_reverse.rb │ │ │ │ │ ├── tty.rb │ │ │ │ │ ├── vncinject.rb │ │ │ │ │ ├── vncinject_options.rb │ │ │ │ │ └── winrm_command_shell.rb │ │ │ │ ├── simple.rb │ │ │ │ └── simple │ │ │ │ │ ├── auxiliary.rb │ │ │ │ │ ├── buffer.rb │ │ │ │ │ ├── encoder.rb │ │ │ │ │ ├── evasion.rb │ │ │ │ │ ├── exploit.rb │ │ │ │ │ ├── framework.rb │ │ │ │ │ ├── framework │ │ │ │ │ └── module_paths.rb │ │ │ │ │ ├── module.rb │ │ │ │ │ ├── noop_job_listener.rb │ │ │ │ │ ├── nop.rb │ │ │ │ │ ├── payload.rb │ │ │ │ │ ├── post.rb │ │ │ │ │ └── statistics.rb │ │ │ ├── core.rb │ │ │ ├── core │ │ │ │ ├── README.md │ │ │ │ ├── analyze.rb │ │ │ │ ├── analyze │ │ │ │ │ └── result.rb │ │ │ │ ├── author.rb │ │ │ │ ├── auxiliary.rb │ │ │ │ ├── auxiliary │ │ │ │ │ ├── arista.rb │ │ │ │ │ ├── auth_brute.rb │ │ │ │ │ ├── brocade.rb │ │ │ │ │ ├── cisco.rb │ │ │ │ │ ├── cnpilot.rb │ │ │ │ │ ├── command_shell.rb │ │ │ │ │ ├── crand.rb │ │ │ │ │ ├── dos.rb │ │ │ │ │ ├── drdos.rb │ │ │ │ │ ├── epmp.rb │ │ │ │ │ ├── etcd.rb │ │ │ │ │ ├── f5.rb │ │ │ │ │ ├── fuzzer.rb │ │ │ │ │ ├── http_crawler.rb │ │ │ │ │ ├── iax2.rb │ │ │ │ │ ├── juniper.rb │ │ │ │ │ ├── kademlia.rb │ │ │ │ │ ├── llmnr.rb │ │ │ │ │ ├── login.rb │ │ │ │ │ ├── manage_engine_xnode.rb │ │ │ │ │ ├── manage_engine_xnode │ │ │ │ │ │ ├── action.rb │ │ │ │ │ │ ├── basic_checks.rb │ │ │ │ │ │ ├── config.rb │ │ │ │ │ │ ├── interact.rb │ │ │ │ │ │ └── process.rb │ │ │ │ │ ├── mdns.rb │ │ │ │ │ ├── mikrotik.rb │ │ │ │ │ ├── mime_types.rb │ │ │ │ │ ├── mms.rb │ │ │ │ │ ├── mqtt.rb │ │ │ │ │ ├── natpmp.rb │ │ │ │ │ ├── nfs.rb │ │ │ │ │ ├── nmap.rb │ │ │ │ │ ├── ntp.rb │ │ │ │ │ ├── password_cracker.rb │ │ │ │ │ ├── pii.rb │ │ │ │ │ ├── redis.rb │ │ │ │ │ ├── report.rb │ │ │ │ │ ├── rocketmq.rb │ │ │ │ │ ├── rservices.rb │ │ │ │ │ ├── scanner.rb │ │ │ │ │ ├── sms.rb │ │ │ │ │ ├── timed.rb │ │ │ │ │ ├── ubiquiti.rb │ │ │ │ │ ├── udp_scanner.rb │ │ │ │ │ ├── vyos.rb │ │ │ │ │ ├── web.rb │ │ │ │ │ ├── web │ │ │ │ │ │ ├── analysis │ │ │ │ │ │ │ ├── differential.rb │ │ │ │ │ │ │ ├── taint.rb │ │ │ │ │ │ │ └── timing.rb │ │ │ │ │ │ ├── form.rb │ │ │ │ │ │ ├── fuzzable.rb │ │ │ │ │ │ ├── http.rb │ │ │ │ │ │ ├── path.rb │ │ │ │ │ │ └── target.rb │ │ │ │ │ ├── wmap_crawler.rb │ │ │ │ │ ├── wmap_module.rb │ │ │ │ │ ├── wmap_scan_dir.rb │ │ │ │ │ ├── wmap_scan_file.rb │ │ │ │ │ ├── wmap_scan_generic.rb │ │ │ │ │ ├── wmap_scan_query.rb │ │ │ │ │ ├── wmap_scan_server.rb │ │ │ │ │ ├── wmap_scan_ssl.rb │ │ │ │ │ └── wmap_scan_unique_query.rb │ │ │ │ ├── cert_provider.rb │ │ │ │ ├── constants.rb │ │ │ │ ├── data_store.rb │ │ │ │ ├── data_store_with_fallbacks.rb │ │ │ │ ├── database_event.rb │ │ │ │ ├── db_connector.rb │ │ │ │ ├── db_export.rb │ │ │ │ ├── db_import_error.rb │ │ │ │ ├── db_manager.rb │ │ │ │ ├── db_manager │ │ │ │ │ ├── adapter.rb │ │ │ │ │ ├── client.rb │ │ │ │ │ ├── connection.rb │ │ │ │ │ ├── cred.rb │ │ │ │ │ ├── db_export.rb │ │ │ │ │ ├── event.rb │ │ │ │ │ ├── exploit_attempt.rb │ │ │ │ │ ├── exploited_host.rb │ │ │ │ │ ├── host.rb │ │ │ │ │ ├── host_detail.rb │ │ │ │ │ ├── host_tag.rb │ │ │ │ │ ├── import.rb │ │ │ │ │ ├── import │ │ │ │ │ │ ├── acunetix.rb │ │ │ │ │ │ ├── amap.rb │ │ │ │ │ │ ├── appscan.rb │ │ │ │ │ │ ├── burp_issue.rb │ │ │ │ │ │ ├── burp_session.rb │ │ │ │ │ │ ├── ci.rb │ │ │ │ │ │ ├── foundstone.rb │ │ │ │ │ │ ├── fusion_vm.rb │ │ │ │ │ │ ├── gpp.rb │ │ │ │ │ │ ├── ip360.rb │ │ │ │ │ │ ├── ip360 │ │ │ │ │ │ │ ├── aspl.rb │ │ │ │ │ │ │ └── v3.rb │ │ │ │ │ │ ├── ip_list.rb │ │ │ │ │ │ ├── libpcap.rb │ │ │ │ │ │ ├── mbsa.rb │ │ │ │ │ │ ├── metasploit_framework.rb │ │ │ │ │ │ ├── metasploit_framework │ │ │ │ │ │ │ ├── credential.rb │ │ │ │ │ │ │ ├── xml.rb │ │ │ │ │ │ │ └── zip.rb │ │ │ │ │ │ ├── nessus.rb │ │ │ │ │ │ ├── nessus │ │ │ │ │ │ │ ├── nbe.rb │ │ │ │ │ │ │ ├── xml.rb │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ │ ├── v1.rb │ │ │ │ │ │ │ │ └── v2.rb │ │ │ │ │ │ ├── netsparker.rb │ │ │ │ │ │ ├── nexpose.rb │ │ │ │ │ │ ├── nexpose │ │ │ │ │ │ │ ├── raw.rb │ │ │ │ │ │ │ └── simple.rb │ │ │ │ │ │ ├── nikto.rb │ │ │ │ │ │ ├── nmap.rb │ │ │ │ │ │ ├── nuclei.rb │ │ │ │ │ │ ├── open_vas.rb │ │ │ │ │ │ ├── outpost24.rb │ │ │ │ │ │ ├── qualys.rb │ │ │ │ │ │ ├── qualys │ │ │ │ │ │ │ ├── asset.rb │ │ │ │ │ │ │ └── scan.rb │ │ │ │ │ │ ├── report.rb │ │ │ │ │ │ ├── retina.rb │ │ │ │ │ │ ├── spiceworks.rb │ │ │ │ │ │ └── wapiti.rb │ │ │ │ │ ├── ip_address.rb │ │ │ │ │ ├── login.rb │ │ │ │ │ ├── loot.rb │ │ │ │ │ ├── migration.rb │ │ │ │ │ ├── module_cache.rb │ │ │ │ │ ├── note.rb │ │ │ │ │ ├── payload.rb │ │ │ │ │ ├── ref.rb │ │ │ │ │ ├── report.rb │ │ │ │ │ ├── route.rb │ │ │ │ │ ├── service.rb │ │ │ │ │ ├── session.rb │ │ │ │ │ ├── session_event.rb │ │ │ │ │ ├── task.rb │ │ │ │ │ ├── user.rb │ │ │ │ │ ├── vuln.rb │ │ │ │ │ ├── vuln_attempt.rb │ │ │ │ │ ├── vuln_detail.rb │ │ │ │ │ ├── web.rb │ │ │ │ │ ├── wmap.rb │ │ │ │ │ └── workspace.rb │ │ │ │ ├── encoded_payload.rb │ │ │ │ ├── encoder.rb │ │ │ │ ├── encoder │ │ │ │ │ ├── alphanum.rb │ │ │ │ │ ├── nonalpha.rb │ │ │ │ │ ├── nonupper.rb │ │ │ │ │ ├── xor.rb │ │ │ │ │ ├── xor_additive_feedback.rb │ │ │ │ │ └── xor_dynamic.rb │ │ │ │ ├── encoding │ │ │ │ │ └── xor.rb │ │ │ │ ├── evasion.rb │ │ │ │ ├── evasion_driver.rb │ │ │ │ ├── event_dispatcher.rb │ │ │ │ ├── exception.rb │ │ │ │ ├── exe │ │ │ │ │ ├── segment_appender.rb │ │ │ │ │ └── segment_injector.rb │ │ │ │ ├── exploit.rb │ │ │ │ ├── exploit │ │ │ │ │ ├── android.rb │ │ │ │ │ ├── auto_target.rb │ │ │ │ │ ├── brute.rb │ │ │ │ │ ├── brute_targets.rb │ │ │ │ │ ├── capture.rb │ │ │ │ │ ├── cmd_stager.rb │ │ │ │ │ ├── cmd_stager │ │ │ │ │ │ └── http.rb │ │ │ │ │ ├── dect_coa.rb │ │ │ │ │ ├── dhcp_server.rb │ │ │ │ │ ├── egghunter.rb │ │ │ │ │ ├── exe.rb │ │ │ │ │ ├── file_dropper.rb │ │ │ │ │ ├── fileformat.rb │ │ │ │ │ ├── format │ │ │ │ │ │ ├── php_payload_png.rb │ │ │ │ │ │ ├── rar_symlink_path_traversal.rb │ │ │ │ │ │ └── webarchive.rb │ │ │ │ │ ├── format_string.rb │ │ │ │ │ ├── git.rb │ │ │ │ │ ├── git │ │ │ │ │ │ ├── lfs.rb │ │ │ │ │ │ ├── lfs │ │ │ │ │ │ │ └── response.rb │ │ │ │ │ │ ├── packfile.rb │ │ │ │ │ │ ├── pkt_line.rb │ │ │ │ │ │ ├── smart_http.rb │ │ │ │ │ │ └── smart_http │ │ │ │ │ │ │ ├── request.rb │ │ │ │ │ │ │ └── response.rb │ │ │ │ │ ├── http.rb │ │ │ │ │ ├── java.rb │ │ │ │ │ ├── java_deserialization.rb │ │ │ │ │ ├── jsobfu.rb │ │ │ │ │ ├── kernel_mode.rb │ │ │ │ │ ├── local.rb │ │ │ │ │ ├── local │ │ │ │ │ │ ├── compile_c.rb │ │ │ │ │ │ ├── linux.rb │ │ │ │ │ │ ├── linux_kernel.rb │ │ │ │ │ │ ├── sap_smd_agent_unencrypted_property.rb │ │ │ │ │ │ └── windows_kernel.rb │ │ │ │ │ ├── ntlm.rb │ │ │ │ │ ├── omelet.rb │ │ │ │ │ ├── oracle.rb │ │ │ │ │ ├── pdf.rb │ │ │ │ │ ├── pdf_parse.rb │ │ │ │ │ ├── php_exe.rb │ │ │ │ │ ├── powershell.rb │ │ │ │ │ ├── powershell │ │ │ │ │ │ └── dot_net.rb │ │ │ │ │ ├── remote.rb │ │ │ │ │ ├── remote │ │ │ │ │ │ ├── afp.rb │ │ │ │ │ │ ├── arkeia.rb │ │ │ │ │ │ ├── auth_option.rb │ │ │ │ │ │ ├── auto_check.rb │ │ │ │ │ │ ├── browser_autopwn.rb │ │ │ │ │ │ ├── browser_autopwn2.rb │ │ │ │ │ │ ├── browser_exploit_server.rb │ │ │ │ │ │ ├── browser_profile_manager.rb │ │ │ │ │ │ ├── check_module.rb │ │ │ │ │ │ ├── db2.rb │ │ │ │ │ │ ├── dcerpc.rb │ │ │ │ │ │ ├── dcerpc_epm.rb │ │ │ │ │ │ ├── dcerpc_lsa.rb │ │ │ │ │ │ ├── dcerpc_mgmt.rb │ │ │ │ │ │ ├── dialup.rb │ │ │ │ │ │ ├── dns.rb │ │ │ │ │ │ ├── dns │ │ │ │ │ │ │ ├── client.rb │ │ │ │ │ │ │ ├── common.rb │ │ │ │ │ │ │ ├── enumeration.rb │ │ │ │ │ │ │ └── server.rb │ │ │ │ │ │ ├── expect.rb │ │ │ │ │ │ ├── firefox_addon_generator.rb │ │ │ │ │ │ ├── firefox_privilege_escalation.rb │ │ │ │ │ │ ├── ftp.rb │ │ │ │ │ │ ├── ftp_server.rb │ │ │ │ │ │ ├── gdb.rb │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ ├── drupal.rb │ │ │ │ │ │ │ ├── exchange.rb │ │ │ │ │ │ │ ├── exchange │ │ │ │ │ │ │ │ └── proxy_maybe_shell.rb │ │ │ │ │ │ │ ├── gitea.rb │ │ │ │ │ │ │ ├── gitea │ │ │ │ │ │ │ │ ├── base.rb │ │ │ │ │ │ │ │ ├── error.rb │ │ │ │ │ │ │ │ ├── helpers.rb │ │ │ │ │ │ │ │ ├── login.rb │ │ │ │ │ │ │ │ ├── repository.rb │ │ │ │ │ │ │ │ ├── uris.rb │ │ │ │ │ │ │ │ └── version.rb │ │ │ │ │ │ │ ├── gitlab.rb │ │ │ │ │ │ │ ├── gitlab │ │ │ │ │ │ │ │ ├── access_tokens.rb │ │ │ │ │ │ │ │ ├── authenticate.rb │ │ │ │ │ │ │ │ ├── error.rb │ │ │ │ │ │ │ │ ├── form.rb │ │ │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ │ │ ├── access_tokens.rb │ │ │ │ │ │ │ │ │ └── authenticate.rb │ │ │ │ │ │ │ │ ├── groups.rb │ │ │ │ │ │ │ │ ├── helpers.rb │ │ │ │ │ │ │ │ ├── import.rb │ │ │ │ │ │ │ │ ├── rest.rb │ │ │ │ │ │ │ │ ├── rest │ │ │ │ │ │ │ │ │ ├── v4.rb │ │ │ │ │ │ │ │ │ └── v4 │ │ │ │ │ │ │ │ │ │ ├── access_tokens.rb │ │ │ │ │ │ │ │ │ │ ├── groups.rb │ │ │ │ │ │ │ │ │ │ ├── import.rb │ │ │ │ │ │ │ │ │ │ └── version.rb │ │ │ │ │ │ │ │ └── version.rb │ │ │ │ │ │ │ ├── http_cookie.rb │ │ │ │ │ │ │ ├── http_cookie_jar.rb │ │ │ │ │ │ │ ├── jboss.rb │ │ │ │ │ │ │ ├── jboss │ │ │ │ │ │ │ │ ├── base.rb │ │ │ │ │ │ │ │ ├── bean_shell.rb │ │ │ │ │ │ │ │ ├── bean_shell_scripts.rb │ │ │ │ │ │ │ │ ├── deployment_file_repository.rb │ │ │ │ │ │ │ │ └── deployment_file_repository_scripts.rb │ │ │ │ │ │ │ ├── jenkins.rb │ │ │ │ │ │ │ ├── joomla.rb │ │ │ │ │ │ │ ├── joomla │ │ │ │ │ │ │ │ ├── base.rb │ │ │ │ │ │ │ │ └── version.rb │ │ │ │ │ │ │ ├── jwt.rb │ │ │ │ │ │ │ ├── kubernetes.rb │ │ │ │ │ │ │ ├── kubernetes │ │ │ │ │ │ │ │ ├── auth_parser.rb │ │ │ │ │ │ │ │ ├── client.rb │ │ │ │ │ │ │ │ ├── enumeration.rb │ │ │ │ │ │ │ │ ├── error.rb │ │ │ │ │ │ │ │ ├── output.rb │ │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ │ │ ├── json.rb │ │ │ │ │ │ │ │ │ └── table.rb │ │ │ │ │ │ │ │ └── secret.rb │ │ │ │ │ │ │ ├── manage_engine_adaudit_plus.rb │ │ │ │ │ │ │ ├── manage_engine_adaudit_plus │ │ │ │ │ │ │ │ ├── json_post_data.rb │ │ │ │ │ │ │ │ ├── login.rb │ │ │ │ │ │ │ │ ├── status_codes.rb │ │ │ │ │ │ │ │ ├── target_info.rb │ │ │ │ │ │ │ │ └── uris.rb │ │ │ │ │ │ │ ├── moodle.rb │ │ │ │ │ │ │ ├── moodle │ │ │ │ │ │ │ │ ├── admin.rb │ │ │ │ │ │ │ │ ├── base.rb │ │ │ │ │ │ │ │ ├── course.rb │ │ │ │ │ │ │ │ ├── helpers.rb │ │ │ │ │ │ │ │ ├── login.rb │ │ │ │ │ │ │ │ ├── uris.rb │ │ │ │ │ │ │ │ └── version.rb │ │ │ │ │ │ │ ├── nagios_xi.rb │ │ │ │ │ │ │ ├── nagios_xi │ │ │ │ │ │ │ │ ├── install.rb │ │ │ │ │ │ │ │ ├── login.rb │ │ │ │ │ │ │ │ ├── rce_check.rb │ │ │ │ │ │ │ │ ├── uris.rb │ │ │ │ │ │ │ │ └── version.rb │ │ │ │ │ │ │ ├── pihole.rb │ │ │ │ │ │ │ ├── sap_sol_man_eem_miss_auth.rb │ │ │ │ │ │ │ ├── sharepoint.rb │ │ │ │ │ │ │ ├── typo3.rb │ │ │ │ │ │ │ ├── typo3 │ │ │ │ │ │ │ │ ├── login.rb │ │ │ │ │ │ │ │ └── uris.rb │ │ │ │ │ │ │ ├── webmin.rb │ │ │ │ │ │ │ ├── webmin │ │ │ │ │ │ │ │ ├── check.rb │ │ │ │ │ │ │ │ └── login.rb │ │ │ │ │ │ │ ├── wordpress.rb │ │ │ │ │ │ │ └── wordpress │ │ │ │ │ │ │ │ ├── admin.rb │ │ │ │ │ │ │ │ ├── base.rb │ │ │ │ │ │ │ │ ├── helpers.rb │ │ │ │ │ │ │ │ ├── login.rb │ │ │ │ │ │ │ │ ├── posts.rb │ │ │ │ │ │ │ │ ├── register.rb │ │ │ │ │ │ │ │ ├── uris.rb │ │ │ │ │ │ │ │ ├── users.rb │ │ │ │ │ │ │ │ ├── version.rb │ │ │ │ │ │ │ │ └── xml_rpc.rb │ │ │ │ │ │ ├── http_client.rb │ │ │ │ │ │ ├── http_server.rb │ │ │ │ │ │ ├── http_server │ │ │ │ │ │ │ ├── browser_exploit.rb │ │ │ │ │ │ │ ├── html.rb │ │ │ │ │ │ │ └── php_include.rb │ │ │ │ │ │ ├── imap.rb │ │ │ │ │ │ ├── ip.rb │ │ │ │ │ │ ├── ipv6.rb │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ │ └── class_loader.rb │ │ │ │ │ │ │ └── rmi │ │ │ │ │ │ │ │ ├── builder.rb │ │ │ │ │ │ │ │ ├── client.rb │ │ │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ │ ├── jmx.rb │ │ │ │ │ │ │ │ ├── jmx │ │ │ │ │ │ │ │ │ ├── connection.rb │ │ │ │ │ │ │ │ │ ├── connection │ │ │ │ │ │ │ │ │ │ └── builder.rb │ │ │ │ │ │ │ │ │ ├── server.rb │ │ │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ │ │ ├── builder.rb │ │ │ │ │ │ │ │ │ │ └── parser.rb │ │ │ │ │ │ │ │ ├── registry.rb │ │ │ │ │ │ │ │ └── registry │ │ │ │ │ │ │ │ │ ├── builder.rb │ │ │ │ │ │ │ │ │ └── parser.rb │ │ │ │ │ │ │ │ └── util.rb │ │ │ │ │ │ ├── jndi_injection.rb │ │ │ │ │ │ ├── kerberos │ │ │ │ │ │ │ ├── auth_brute.rb │ │ │ │ │ │ │ ├── client.rb │ │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ │ ├── ap_request.rb │ │ │ │ │ │ │ │ ├── as_request.rb │ │ │ │ │ │ │ │ ├── as_response.rb │ │ │ │ │ │ │ │ ├── base.rb │ │ │ │ │ │ │ │ ├── pac.rb │ │ │ │ │ │ │ │ ├── pkinit.rb │ │ │ │ │ │ │ │ ├── tgs_request.rb │ │ │ │ │ │ │ │ └── tgs_response.rb │ │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ │ └── tgt_response.rb │ │ │ │ │ │ │ ├── service_authenticator.rb │ │ │ │ │ │ │ ├── service_authenticator │ │ │ │ │ │ │ │ ├── base.rb │ │ │ │ │ │ │ │ ├── http.rb │ │ │ │ │ │ │ │ ├── ldap.rb │ │ │ │ │ │ │ │ ├── mssql.rb │ │ │ │ │ │ │ │ ├── options.rb │ │ │ │ │ │ │ │ └── smb.rb │ │ │ │ │ │ │ ├── ticket.rb │ │ │ │ │ │ │ ├── ticket │ │ │ │ │ │ │ │ ├── storage.rb │ │ │ │ │ │ │ │ └── storage │ │ │ │ │ │ │ │ │ ├── base.rb │ │ │ │ │ │ │ │ │ ├── none.rb │ │ │ │ │ │ │ │ │ ├── read_mixin.rb │ │ │ │ │ │ │ │ │ ├── read_only.rb │ │ │ │ │ │ │ │ │ ├── read_write.rb │ │ │ │ │ │ │ │ │ ├── stored_ticket.rb │ │ │ │ │ │ │ │ │ ├── write_mixin.rb │ │ │ │ │ │ │ │ │ └── write_only.rb │ │ │ │ │ │ │ └── ticket_converter.rb │ │ │ │ │ │ ├── ldap.rb │ │ │ │ │ │ ├── ldap │ │ │ │ │ │ │ └── server.rb │ │ │ │ │ │ ├── log4_shell.rb │ │ │ │ │ │ ├── ms_icpr.rb │ │ │ │ │ │ ├── ms_samr.rb │ │ │ │ │ │ ├── mssql.rb │ │ │ │ │ │ ├── mssql_commands.rb │ │ │ │ │ │ ├── mssql_sqli.rb │ │ │ │ │ │ ├── mysql.rb │ │ │ │ │ │ ├── ndmp.rb │ │ │ │ │ │ ├── ndmp_socket.rb │ │ │ │ │ │ ├── nuuo.rb │ │ │ │ │ │ ├── pop2.rb │ │ │ │ │ │ ├── postgres.rb │ │ │ │ │ │ ├── rdp.rb │ │ │ │ │ │ ├── real_port.rb │ │ │ │ │ │ ├── sip.rb │ │ │ │ │ │ ├── smb │ │ │ │ │ │ │ ├── client.rb │ │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ │ ├── authenticated.rb │ │ │ │ │ │ │ │ ├── kerberos_authentication.rb │ │ │ │ │ │ │ │ ├── local_paths.rb │ │ │ │ │ │ │ │ ├── pipe_auditor.rb │ │ │ │ │ │ │ │ ├── psexec.rb │ │ │ │ │ │ │ │ ├── psexec_ms17_010.rb │ │ │ │ │ │ │ │ ├── remote_paths.rb │ │ │ │ │ │ │ │ └── web_exec.rb │ │ │ │ │ │ │ ├── log_adapter.rb │ │ │ │ │ │ │ ├── relay │ │ │ │ │ │ │ │ ├── ntlm │ │ │ │ │ │ │ │ │ ├── server.rb │ │ │ │ │ │ │ │ │ └── server_client.rb │ │ │ │ │ │ │ │ ├── provider │ │ │ │ │ │ │ │ │ └── always_grant_access.rb │ │ │ │ │ │ │ │ └── target_list.rb │ │ │ │ │ │ │ ├── server.rb │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ ├── hash_capture.rb │ │ │ │ │ │ │ │ └── share.rb │ │ │ │ │ │ ├── smtp.rb │ │ │ │ │ │ ├── smtp_deliver.rb │ │ │ │ │ │ ├── snmp_client.rb │ │ │ │ │ │ ├── socket_server.rb │ │ │ │ │ │ ├── ssh.rb │ │ │ │ │ │ ├── ssh │ │ │ │ │ │ │ ├── auth_methods.rb │ │ │ │ │ │ │ ├── auth_methods │ │ │ │ │ │ │ │ ├── fortinet_backdoor.rb │ │ │ │ │ │ │ │ ├── libssh_auth_bypass.rb │ │ │ │ │ │ │ │ └── malformed_packet.rb │ │ │ │ │ │ │ └── options.rb │ │ │ │ │ │ ├── sunrpc.rb │ │ │ │ │ │ ├── tcp.rb │ │ │ │ │ │ ├── tcp_server.rb │ │ │ │ │ │ ├── telnet.rb │ │ │ │ │ │ ├── tincd_exploit_client.rb │ │ │ │ │ │ ├── tns.rb │ │ │ │ │ │ ├── udp.rb │ │ │ │ │ │ ├── unirpc.rb │ │ │ │ │ │ ├── vim_soap.rb │ │ │ │ │ │ ├── wdbrpc.rb │ │ │ │ │ │ ├── wdbrpc_client.rb │ │ │ │ │ │ ├── web.rb │ │ │ │ │ │ ├── winrm.rb │ │ │ │ │ │ └── zeromq.rb │ │ │ │ │ ├── retry.rb │ │ │ │ │ ├── riff.rb │ │ │ │ │ ├── rop_db.rb │ │ │ │ │ ├── ruby_deserialization.rb │ │ │ │ │ ├── seh.rb │ │ │ │ │ ├── smb │ │ │ │ │ │ └── shadow_mitm_dispatcher.rb │ │ │ │ │ ├── sqli.rb │ │ │ │ │ ├── sqli │ │ │ │ │ │ ├── boolean_based_blind_mixin.rb │ │ │ │ │ │ ├── common.rb │ │ │ │ │ │ ├── mssqli.rb │ │ │ │ │ │ ├── mssqli │ │ │ │ │ │ │ ├── boolean_based_blind.rb │ │ │ │ │ │ │ ├── common.rb │ │ │ │ │ │ │ └── time_based_blind.rb │ │ │ │ │ │ ├── mysqli.rb │ │ │ │ │ │ ├── mysqli │ │ │ │ │ │ │ ├── boolean_based_blind.rb │ │ │ │ │ │ │ ├── common.rb │ │ │ │ │ │ │ └── time_based_blind.rb │ │ │ │ │ │ ├── postgresqli.rb │ │ │ │ │ │ ├── postgresqli │ │ │ │ │ │ │ ├── boolean_based_blind.rb │ │ │ │ │ │ │ ├── common.rb │ │ │ │ │ │ │ └── time_based_blind.rb │ │ │ │ │ │ ├── sqlitei.rb │ │ │ │ │ │ ├── sqlitei │ │ │ │ │ │ │ ├── boolean_based_blind.rb │ │ │ │ │ │ │ ├── common.rb │ │ │ │ │ │ │ └── time_based_blind.rb │ │ │ │ │ │ ├── time_based_blind_mixin.rb │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── common.rb │ │ │ │ │ ├── tftp_server.rb │ │ │ │ │ ├── view_state.rb │ │ │ │ │ ├── wbem_exec.rb │ │ │ │ │ └── windows_constants.rb │ │ │ │ ├── exploit_driver.rb │ │ │ │ ├── exploit_event.rb │ │ │ │ ├── feature_manager.rb │ │ │ │ ├── framework.rb │ │ │ │ ├── general_event_subscriber.rb │ │ │ │ ├── handler.rb │ │ │ │ ├── handler │ │ │ │ │ ├── bind_aws_ssm.rb │ │ │ │ │ ├── bind_named_pipe.rb │ │ │ │ │ ├── bind_sctp.rb │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ ├── bind_udp.rb │ │ │ │ │ ├── find_port.rb │ │ │ │ │ ├── find_shell.rb │ │ │ │ │ ├── find_tag.rb │ │ │ │ │ ├── find_tty.rb │ │ │ │ │ ├── generic.rb │ │ │ │ │ ├── none.rb │ │ │ │ │ ├── reverse.rb │ │ │ │ │ ├── reverse │ │ │ │ │ │ ├── comm.rb │ │ │ │ │ │ └── ssl.rb │ │ │ │ │ ├── reverse_hop_http.rb │ │ │ │ │ ├── reverse_http.rb │ │ │ │ │ ├── reverse_https.rb │ │ │ │ │ ├── reverse_https_proxy.rb │ │ │ │ │ ├── reverse_named_pipe.rb │ │ │ │ │ ├── reverse_sctp.rb │ │ │ │ │ ├── reverse_ssh.rb │ │ │ │ │ ├── reverse_tcp.rb │ │ │ │ │ ├── reverse_tcp_all_ports.rb │ │ │ │ │ ├── reverse_tcp_double.rb │ │ │ │ │ ├── reverse_tcp_double_ssl.rb │ │ │ │ │ ├── reverse_tcp_ssl.rb │ │ │ │ │ └── reverse_udp.rb │ │ │ │ ├── host_state.rb │ │ │ │ ├── module.rb │ │ │ │ ├── module │ │ │ │ │ ├── alert.rb │ │ │ │ │ ├── arch.rb │ │ │ │ │ ├── auth.rb │ │ │ │ │ ├── author.rb │ │ │ │ │ ├── auxiliary_action.rb │ │ │ │ │ ├── compatibility.rb │ │ │ │ │ ├── data_store.rb │ │ │ │ │ ├── deprecated.rb │ │ │ │ │ ├── external.rb │ │ │ │ │ ├── failure.rb │ │ │ │ │ ├── full_name.rb │ │ │ │ │ ├── has_actions.rb │ │ │ │ │ ├── module_info.rb │ │ │ │ │ ├── module_store.rb │ │ │ │ │ ├── network.rb │ │ │ │ │ ├── options.rb │ │ │ │ │ ├── platform.rb │ │ │ │ │ ├── platform_list.rb │ │ │ │ │ ├── privileged.rb │ │ │ │ │ ├── ranking.rb │ │ │ │ │ ├── reference.rb │ │ │ │ │ ├── reliability.rb │ │ │ │ │ ├── side_effects.rb │ │ │ │ │ ├── stability.rb │ │ │ │ │ ├── target.rb │ │ │ │ │ ├── type.rb │ │ │ │ │ ├── ui.rb │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── line.rb │ │ │ │ │ │ ├── line │ │ │ │ │ │ │ └── verbose.rb │ │ │ │ │ │ ├── message.rb │ │ │ │ │ │ └── message │ │ │ │ │ │ │ └── verbose.rb │ │ │ │ │ └── uuid.rb │ │ │ │ ├── module_data_store.rb │ │ │ │ ├── module_data_store_with_fallbacks.rb │ │ │ │ ├── module_manager.rb │ │ │ │ ├── module_manager │ │ │ │ │ ├── cache.rb │ │ │ │ │ ├── loading.rb │ │ │ │ │ ├── module_paths.rb │ │ │ │ │ ├── module_sets.rb │ │ │ │ │ └── reloading.rb │ │ │ │ ├── module_set.rb │ │ │ │ ├── modules.rb │ │ │ │ ├── modules │ │ │ │ │ ├── error.rb │ │ │ │ │ ├── external.rb │ │ │ │ │ ├── external │ │ │ │ │ │ ├── bridge.rb │ │ │ │ │ │ ├── cli.rb │ │ │ │ │ │ ├── go │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ └── metasploit │ │ │ │ │ │ │ │ └── module │ │ │ │ │ │ │ │ ├── core.go │ │ │ │ │ │ │ │ ├── metadata.go │ │ │ │ │ │ │ │ └── report.go │ │ │ │ │ │ ├── message.rb │ │ │ │ │ │ ├── python │ │ │ │ │ │ │ ├── async_timeout │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ └── metasploit │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── cli.py │ │ │ │ │ │ │ │ ├── login_scanner.py │ │ │ │ │ │ │ │ ├── module.py │ │ │ │ │ │ │ │ └── probe_scanner.py │ │ │ │ │ │ ├── ruby │ │ │ │ │ │ │ └── metasploit.rb │ │ │ │ │ │ ├── shim.rb │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── capture_server.erb │ │ │ │ │ │ │ ├── common_check.erb │ │ │ │ │ │ │ ├── common_metadata.erb │ │ │ │ │ │ │ ├── dos.erb │ │ │ │ │ │ │ ├── evasion.erb │ │ │ │ │ │ │ ├── multi_scanner.erb │ │ │ │ │ │ │ ├── remote_exploit.erb │ │ │ │ │ │ │ ├── remote_exploit_cmd_stager.erb │ │ │ │ │ │ │ ├── single_host_login_scanner.erb │ │ │ │ │ │ │ └── single_scanner.erb │ │ │ │ │ ├── loader.rb │ │ │ │ │ ├── loader │ │ │ │ │ │ ├── base.rb │ │ │ │ │ │ ├── directory.rb │ │ │ │ │ │ └── executable.rb │ │ │ │ │ ├── metadata.rb │ │ │ │ │ └── metadata │ │ │ │ │ │ ├── cache.rb │ │ │ │ │ │ ├── maps.rb │ │ │ │ │ │ ├── obj.rb │ │ │ │ │ │ ├── search.rb │ │ │ │ │ │ └── store.rb │ │ │ │ ├── nop.rb │ │ │ │ ├── opt.rb │ │ │ │ ├── opt_address.rb │ │ │ │ ├── opt_address_local.rb │ │ │ │ ├── opt_address_range.rb │ │ │ │ ├── opt_address_routable.rb │ │ │ │ ├── opt_base.rb │ │ │ │ ├── opt_bool.rb │ │ │ │ ├── opt_condition.rb │ │ │ │ ├── opt_enum.rb │ │ │ │ ├── opt_float.rb │ │ │ │ ├── opt_int.rb │ │ │ │ ├── opt_meterpreter_debug_logging.rb │ │ │ │ ├── opt_path.rb │ │ │ │ ├── opt_port.rb │ │ │ │ ├── opt_raw.rb │ │ │ │ ├── opt_regexp.rb │ │ │ │ ├── opt_rhosts.rb │ │ │ │ ├── opt_string.rb │ │ │ │ ├── option_container.rb │ │ │ │ ├── payload.rb │ │ │ │ ├── payload │ │ │ │ │ ├── adapter.rb │ │ │ │ │ ├── adapter │ │ │ │ │ │ ├── fetch.rb │ │ │ │ │ │ └── fetch │ │ │ │ │ │ │ ├── http.rb │ │ │ │ │ │ │ ├── https.rb │ │ │ │ │ │ │ ├── linux_options.rb │ │ │ │ │ │ │ ├── server │ │ │ │ │ │ │ ├── http.rb │ │ │ │ │ │ │ ├── https.rb │ │ │ │ │ │ │ └── tftp.rb │ │ │ │ │ │ │ ├── tftp.rb │ │ │ │ │ │ │ └── windows_options.rb │ │ │ │ │ ├── aix.rb │ │ │ │ │ ├── android.rb │ │ │ │ │ ├── android │ │ │ │ │ │ ├── meterpreter_loader.rb │ │ │ │ │ │ ├── payload_options.rb │ │ │ │ │ │ ├── reverse_http.rb │ │ │ │ │ │ ├── reverse_https.rb │ │ │ │ │ │ └── reverse_tcp.rb │ │ │ │ │ ├── apk.rb │ │ │ │ │ ├── bsd.rb │ │ │ │ │ ├── bsd │ │ │ │ │ │ └── x86.rb │ │ │ │ │ ├── custom.rb │ │ │ │ │ ├── custom │ │ │ │ │ │ └── options.rb │ │ │ │ │ ├── firefox.rb │ │ │ │ │ ├── generic.rb │ │ │ │ │ ├── hardware.rb │ │ │ │ │ ├── java.rb │ │ │ │ │ ├── java │ │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ │ ├── meterpreter_loader.rb │ │ │ │ │ │ ├── payload_options.rb │ │ │ │ │ │ ├── reverse_http.rb │ │ │ │ │ │ ├── reverse_https.rb │ │ │ │ │ │ └── reverse_tcp.rb │ │ │ │ │ ├── jsp.rb │ │ │ │ │ ├── linux.rb │ │ │ │ │ ├── linux │ │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ │ ├── reverse_tcp_x86.rb │ │ │ │ │ │ ├── send_uuid.rb │ │ │ │ │ │ └── x64 │ │ │ │ │ │ │ ├── reverse_sctp_x64.rb │ │ │ │ │ │ │ └── reverse_tcp_x64.rb │ │ │ │ │ ├── macho.rb │ │ │ │ │ ├── mainframe.rb │ │ │ │ │ ├── multi.rb │ │ │ │ │ ├── multi │ │ │ │ │ │ ├── reverse_http.rb │ │ │ │ │ │ └── reverse_https.rb │ │ │ │ │ ├── netware.rb │ │ │ │ │ ├── nodejs.rb │ │ │ │ │ ├── osx.rb │ │ │ │ │ ├── osx │ │ │ │ │ │ ├── bundle_inject.rb │ │ │ │ │ │ └── x64 │ │ │ │ │ │ │ ├── reverse_tcp_x64.rb │ │ │ │ │ │ │ └── send_uuid_x64.rb │ │ │ │ │ ├── php.rb │ │ │ │ │ ├── php │ │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ │ ├── reverse_tcp.rb │ │ │ │ │ │ └── send_uuid.rb │ │ │ │ │ ├── pingback.rb │ │ │ │ │ ├── pingback │ │ │ │ │ │ └── options.rb │ │ │ │ │ ├── python.rb │ │ │ │ │ ├── python │ │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ │ ├── meterpreter_loader.rb │ │ │ │ │ │ ├── reverse_http.rb │ │ │ │ │ │ ├── reverse_tcp.rb │ │ │ │ │ │ ├── reverse_tcp_ssl.rb │ │ │ │ │ │ └── send_uuid.rb │ │ │ │ │ ├── r.rb │ │ │ │ │ ├── ruby.rb │ │ │ │ │ ├── single.rb │ │ │ │ │ ├── solaris.rb │ │ │ │ │ ├── stager.rb │ │ │ │ │ ├── transport_config.rb │ │ │ │ │ ├── uuid.rb │ │ │ │ │ ├── uuid │ │ │ │ │ │ └── options.rb │ │ │ │ │ ├── windows.rb │ │ │ │ │ └── windows │ │ │ │ │ │ ├── bind_named_pipe.rb │ │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ │ ├── bind_tcp_rc4.rb │ │ │ │ │ │ ├── block_api.rb │ │ │ │ │ │ ├── dll_inject.rb │ │ │ │ │ │ ├── encrypted_payload_opts.rb │ │ │ │ │ │ ├── encrypted_reverse_tcp.rb │ │ │ │ │ │ ├── exec.rb │ │ │ │ │ │ ├── exec_x64.rb │ │ │ │ │ │ ├── exitfunk.rb │ │ │ │ │ │ ├── load_library.rb │ │ │ │ │ │ ├── meterpreter_loader.rb │ │ │ │ │ │ ├── migrate_common.rb │ │ │ │ │ │ ├── migrate_http.rb │ │ │ │ │ │ ├── migrate_named_pipe.rb │ │ │ │ │ │ ├── migrate_tcp.rb │ │ │ │ │ │ ├── payload_db_conf.rb │ │ │ │ │ │ ├── pe_inject.rb │ │ │ │ │ │ ├── powershell.rb │ │ │ │ │ │ ├── prepend_migrate.rb │ │ │ │ │ │ ├── rc4.rb │ │ │ │ │ │ ├── reflective_dll_inject.rb │ │ │ │ │ │ ├── reflective_pe_loader.rb │ │ │ │ │ │ ├── reverse_http.rb │ │ │ │ │ │ ├── reverse_https.rb │ │ │ │ │ │ ├── reverse_named_pipe.rb │ │ │ │ │ │ ├── reverse_tcp.rb │ │ │ │ │ │ ├── reverse_tcp_dns.rb │ │ │ │ │ │ ├── reverse_tcp_rc4.rb │ │ │ │ │ │ ├── reverse_tcp_rc4_dns.rb │ │ │ │ │ │ ├── reverse_udp.rb │ │ │ │ │ │ ├── reverse_win_http.rb │ │ │ │ │ │ ├── reverse_win_https.rb │ │ │ │ │ │ ├── send_uuid.rb │ │ │ │ │ │ ├── verify_ssl.rb │ │ │ │ │ │ └── x64 │ │ │ │ │ │ ├── addr_loader.rb │ │ │ │ │ │ ├── bind_named_pipe_x64.rb │ │ │ │ │ │ ├── bind_tcp_rc4_x64.rb │ │ │ │ │ │ ├── bind_tcp_x64.rb │ │ │ │ │ │ ├── block_api_x64.rb │ │ │ │ │ │ ├── exitfunk_x64.rb │ │ │ │ │ │ ├── meterpreter_loader_x64.rb │ │ │ │ │ │ ├── migrate_common_x64.rb │ │ │ │ │ │ ├── migrate_http_x64.rb │ │ │ │ │ │ ├── migrate_named_pipe_x64.rb │ │ │ │ │ │ ├── migrate_tcp_x64.rb │ │ │ │ │ │ ├── rc4_x64.rb │ │ │ │ │ │ ├── reflective_dll_inject_x64.rb │ │ │ │ │ │ ├── reflective_pe_loader_x64.rb │ │ │ │ │ │ ├── reverse_http_x64.rb │ │ │ │ │ │ ├── reverse_https_x64.rb │ │ │ │ │ │ ├── reverse_named_pipe_x64.rb │ │ │ │ │ │ ├── reverse_tcp_rc4_x64.rb │ │ │ │ │ │ ├── reverse_tcp_x64.rb │ │ │ │ │ │ ├── reverse_win_http_x64.rb │ │ │ │ │ │ ├── reverse_win_https_x64.rb │ │ │ │ │ │ └── send_uuid_x64.rb │ │ │ │ ├── payload_generator.rb │ │ │ │ ├── payload_set.rb │ │ │ │ ├── platform.rb │ │ │ │ ├── plugin.rb │ │ │ │ ├── plugin_manager.rb │ │ │ │ ├── post.rb │ │ │ │ ├── post │ │ │ │ │ ├── android.rb │ │ │ │ │ ├── android │ │ │ │ │ │ ├── priv.rb │ │ │ │ │ │ └── system.rb │ │ │ │ │ ├── architecture.rb │ │ │ │ │ ├── common.rb │ │ │ │ │ ├── file.rb │ │ │ │ │ ├── hardware.rb │ │ │ │ │ ├── hardware │ │ │ │ │ │ ├── automotive │ │ │ │ │ │ │ ├── dtc.rb │ │ │ │ │ │ │ └── uds.rb │ │ │ │ │ │ ├── rftransceiver │ │ │ │ │ │ │ └── rftransceiver.rb │ │ │ │ │ │ └── zigbee │ │ │ │ │ │ │ └── utils.rb │ │ │ │ │ ├── linux.rb │ │ │ │ │ ├── linux │ │ │ │ │ │ ├── busy_box.rb │ │ │ │ │ │ ├── compile.rb │ │ │ │ │ │ ├── f5_mcp.rb │ │ │ │ │ │ ├── kernel.rb │ │ │ │ │ │ ├── priv.rb │ │ │ │ │ │ ├── process.rb │ │ │ │ │ │ └── system.rb │ │ │ │ │ ├── osx.rb │ │ │ │ │ ├── osx │ │ │ │ │ │ ├── priv.rb │ │ │ │ │ │ ├── ruby_dl.rb │ │ │ │ │ │ └── system.rb │ │ │ │ │ ├── process.rb │ │ │ │ │ ├── solaris.rb │ │ │ │ │ ├── solaris │ │ │ │ │ │ ├── kernel.rb │ │ │ │ │ │ ├── priv.rb │ │ │ │ │ │ └── system.rb │ │ │ │ │ ├── unix.rb │ │ │ │ │ ├── vcenter.rb │ │ │ │ │ ├── vcenter │ │ │ │ │ │ ├── database.rb │ │ │ │ │ │ └── vcenter.rb │ │ │ │ │ ├── webrtc.rb │ │ │ │ │ ├── windows.rb │ │ │ │ │ └── windows │ │ │ │ │ │ ├── accounts.rb │ │ │ │ │ │ ├── cli_parse.rb │ │ │ │ │ │ ├── dotnet.rb │ │ │ │ │ │ ├── error.rb │ │ │ │ │ │ ├── eventlog.rb │ │ │ │ │ │ ├── extapi.rb │ │ │ │ │ │ ├── file_info.rb │ │ │ │ │ │ ├── file_system.rb │ │ │ │ │ │ ├── kiwi.rb │ │ │ │ │ │ ├── ldap.rb │ │ │ │ │ │ ├── mssql.rb │ │ │ │ │ │ ├── net_api.rb │ │ │ │ │ │ ├── packrat.rb │ │ │ │ │ │ ├── powershell.rb │ │ │ │ │ │ ├── priv.rb │ │ │ │ │ │ ├── process.rb │ │ │ │ │ │ ├── reflective_dll_injection.rb │ │ │ │ │ │ ├── registry.rb │ │ │ │ │ │ ├── runas.rb │ │ │ │ │ │ ├── services.rb │ │ │ │ │ │ ├── shadow_copy.rb │ │ │ │ │ │ ├── system.rb │ │ │ │ │ │ ├── task_scheduler.rb │ │ │ │ │ │ ├── user_profiles.rb │ │ │ │ │ │ ├── version.rb │ │ │ │ │ │ └── wmic.rb │ │ │ │ ├── post_mixin.rb │ │ │ │ ├── reference.rb │ │ │ │ ├── reflective_dll_loader.rb │ │ │ │ ├── rhosts_walker.rb │ │ │ │ ├── rpc.rb │ │ │ │ ├── rpc │ │ │ │ │ ├── json │ │ │ │ │ │ ├── client.rb │ │ │ │ │ │ ├── dispatcher.rb │ │ │ │ │ │ ├── dispatcher_helper.rb │ │ │ │ │ │ ├── error.rb │ │ │ │ │ │ ├── request.rb │ │ │ │ │ │ ├── response.rb │ │ │ │ │ │ ├── rpc_command.rb │ │ │ │ │ │ ├── rpc_command_factory.rb │ │ │ │ │ │ ├── v1_0 │ │ │ │ │ │ │ └── rpc_command.rb │ │ │ │ │ │ └── v2_0 │ │ │ │ │ │ │ └── rpc_test.rb │ │ │ │ │ └── v10 │ │ │ │ │ │ ├── client.rb │ │ │ │ │ │ ├── constants.rb │ │ │ │ │ │ ├── health.rb │ │ │ │ │ │ ├── rpc_auth.rb │ │ │ │ │ │ ├── rpc_base.rb │ │ │ │ │ │ ├── rpc_console.rb │ │ │ │ │ │ ├── rpc_core.rb │ │ │ │ │ │ ├── rpc_db.rb │ │ │ │ │ │ ├── rpc_health.rb │ │ │ │ │ │ ├── rpc_job.rb │ │ │ │ │ │ ├── rpc_job_status_tracker.rb │ │ │ │ │ │ ├── rpc_module.rb │ │ │ │ │ │ ├── rpc_plugin.rb │ │ │ │ │ │ ├── rpc_session.rb │ │ │ │ │ │ └── service.rb │ │ │ │ ├── service_state.rb │ │ │ │ ├── session.rb │ │ │ │ ├── session │ │ │ │ │ ├── basic.rb │ │ │ │ │ ├── comm.rb │ │ │ │ │ ├── interactive.rb │ │ │ │ │ └── provider │ │ │ │ │ │ ├── multi_command_execution.rb │ │ │ │ │ │ ├── multi_command_shell.rb │ │ │ │ │ │ ├── single_command_execution.rb │ │ │ │ │ │ └── single_command_shell.rb │ │ │ │ ├── session_event.rb │ │ │ │ ├── session_manager.rb │ │ │ │ ├── site_reference.rb │ │ │ │ ├── target.rb │ │ │ │ ├── thread_manager.rb │ │ │ │ ├── web_services.rb │ │ │ │ ├── web_services │ │ │ │ │ ├── authentication.rb │ │ │ │ │ ├── authentication │ │ │ │ │ │ ├── strategies.rb │ │ │ │ │ │ └── strategies │ │ │ │ │ │ │ ├── admin_api_token.rb │ │ │ │ │ │ │ ├── api_token.rb │ │ │ │ │ │ │ └── user_password.rb │ │ │ │ │ ├── db_manager_proxy.rb │ │ │ │ │ ├── documentation │ │ │ │ │ │ └── api │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── auth_api_doc.rb │ │ │ │ │ │ │ ├── credential_api_doc.rb │ │ │ │ │ │ │ ├── db_export_api_doc.rb │ │ │ │ │ │ │ ├── event_api_doc.rb │ │ │ │ │ │ │ ├── exploit_api_doc.rb │ │ │ │ │ │ │ ├── host_api_doc.rb │ │ │ │ │ │ │ ├── login_api_doc.rb │ │ │ │ │ │ │ ├── loot_api_doc.rb │ │ │ │ │ │ │ ├── module_search_api_doc.rb │ │ │ │ │ │ │ ├── msf_api_doc.rb │ │ │ │ │ │ │ ├── nmap_api_doc.rb │ │ │ │ │ │ │ ├── note_api_doc.rb │ │ │ │ │ │ │ ├── payload_api_doc.rb │ │ │ │ │ │ │ ├── root_api_doc.rb │ │ │ │ │ │ │ ├── service_api_doc.rb │ │ │ │ │ │ │ ├── session_api_doc.rb │ │ │ │ │ │ │ ├── session_event_api_doc.rb │ │ │ │ │ │ │ ├── user_api_doc.rb │ │ │ │ │ │ │ ├── vuln_api_doc.rb │ │ │ │ │ │ │ ├── vuln_attempt_api_doc.rb │ │ │ │ │ │ │ └── workspace_api_doc.rb │ │ │ │ │ ├── framework_extension.rb │ │ │ │ │ ├── http_db_manager_service.rb │ │ │ │ │ ├── job_processor.rb │ │ │ │ │ ├── json_rpc_app.rb │ │ │ │ │ ├── json_rpc_exception_handling.rb │ │ │ │ │ ├── metasploit_api_app.rb │ │ │ │ │ ├── module_search.rb │ │ │ │ │ ├── public │ │ │ │ │ │ ├── favicon-16x16.png │ │ │ │ │ │ ├── favicon-32x32.png │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── msf-ws.css │ │ │ │ │ │ └── oauth2-redirect.html │ │ │ │ │ ├── servlet │ │ │ │ │ │ ├── api_docs_servlet.rb │ │ │ │ │ │ ├── auth_servlet.rb │ │ │ │ │ │ ├── credential_servlet.rb │ │ │ │ │ │ ├── db_export_servlet.rb │ │ │ │ │ │ ├── db_import_servlet.rb │ │ │ │ │ │ ├── event_servlet.rb │ │ │ │ │ │ ├── exploit_servlet.rb │ │ │ │ │ │ ├── health_servlet.rb │ │ │ │ │ │ ├── host_servlet.rb │ │ │ │ │ │ ├── json_rpc_servlet.rb │ │ │ │ │ │ ├── login_servlet.rb │ │ │ │ │ │ ├── loot_servlet.rb │ │ │ │ │ │ ├── module_search_servlet.rb │ │ │ │ │ │ ├── msf_servlet.rb │ │ │ │ │ │ ├── nmap_servlet.rb │ │ │ │ │ │ ├── note_servlet.rb │ │ │ │ │ │ ├── payload_servlet.rb │ │ │ │ │ │ ├── route_servlet.rb │ │ │ │ │ │ ├── service_servlet.rb │ │ │ │ │ │ ├── session_event_servlet.rb │ │ │ │ │ │ ├── session_servlet.rb │ │ │ │ │ │ ├── user_servlet.rb │ │ │ │ │ │ ├── vuln_attempt_servlet.rb │ │ │ │ │ │ ├── vuln_servlet.rb │ │ │ │ │ │ ├── web_servlet.rb │ │ │ │ │ │ └── workspace_servlet.rb │ │ │ │ │ ├── servlet_helper.rb │ │ │ │ │ └── views │ │ │ │ │ │ ├── api_docs.erb │ │ │ │ │ │ └── auth │ │ │ │ │ │ ├── account.erb │ │ │ │ │ │ └── login.erb │ │ │ │ └── windows_version.rb │ │ │ ├── ui │ │ │ │ ├── banner.rb │ │ │ │ ├── common.rb │ │ │ │ ├── console.rb │ │ │ │ ├── console │ │ │ │ │ ├── command_dispatcher.rb │ │ │ │ │ ├── command_dispatcher │ │ │ │ │ │ ├── auxiliary.rb │ │ │ │ │ │ ├── common.rb │ │ │ │ │ │ ├── core.rb │ │ │ │ │ │ ├── creds.rb │ │ │ │ │ │ ├── db.rb │ │ │ │ │ │ ├── db │ │ │ │ │ │ │ ├── analyze.rb │ │ │ │ │ │ │ ├── common.rb │ │ │ │ │ │ │ └── klist.rb │ │ │ │ │ │ ├── developer.rb │ │ │ │ │ │ ├── encoder.rb │ │ │ │ │ │ ├── evasion.rb │ │ │ │ │ │ ├── exploit.rb │ │ │ │ │ │ ├── jobs.rb │ │ │ │ │ │ ├── modules.rb │ │ │ │ │ │ ├── nop.rb │ │ │ │ │ │ ├── payload.rb │ │ │ │ │ │ ├── post.rb │ │ │ │ │ │ └── resource.rb │ │ │ │ │ ├── driver.rb │ │ │ │ │ ├── framework_event_manager.rb │ │ │ │ │ ├── module_action_commands.rb │ │ │ │ │ ├── module_argument_parsing.rb │ │ │ │ │ ├── module_command_dispatcher.rb │ │ │ │ │ ├── module_option_tab_completion.rb │ │ │ │ │ ├── table.rb │ │ │ │ │ └── table_print │ │ │ │ │ │ ├── age_formatter.rb │ │ │ │ │ │ ├── custom_color_styler.rb │ │ │ │ │ │ ├── highlight_substring_styler.rb │ │ │ │ │ │ ├── omit_column_header.rb │ │ │ │ │ │ ├── rank_formatter.rb │ │ │ │ │ │ ├── rank_styler.rb │ │ │ │ │ │ └── row_indicator_styler.rb │ │ │ │ ├── debug.rb │ │ │ │ ├── driver.rb │ │ │ │ ├── formatter.rb │ │ │ │ ├── formatter │ │ │ │ │ └── option_validate_error.rb │ │ │ │ ├── tip.rb │ │ │ │ ├── web.rb │ │ │ │ └── web │ │ │ │ │ ├── comm.rb │ │ │ │ │ ├── driver.rb │ │ │ │ │ └── web_console.rb │ │ │ ├── ui_event_subscriber.rb │ │ │ ├── util │ │ │ │ ├── db_manager.rb │ │ │ │ ├── document_generator.rb │ │ │ │ ├── document_generator │ │ │ │ │ ├── document_normalizer.rb │ │ │ │ │ └── pull_request_finder.rb │ │ │ │ ├── dot_net_deserialization.rb │ │ │ │ ├── dot_net_deserialization │ │ │ │ │ ├── assemblies.rb │ │ │ │ │ ├── enums.rb │ │ │ │ │ ├── formatters.rb │ │ │ │ │ ├── formatters │ │ │ │ │ │ ├── binary_formatter.rb │ │ │ │ │ │ ├── json_net_formatter.rb │ │ │ │ │ │ ├── los_formatter.rb │ │ │ │ │ │ └── soap_formatter.rb │ │ │ │ │ ├── gadget_chains.rb │ │ │ │ │ ├── gadget_chains │ │ │ │ │ │ ├── claims_principal.rb │ │ │ │ │ │ ├── data_set.rb │ │ │ │ │ │ ├── data_set_type_spoof.rb │ │ │ │ │ │ ├── object_data_provider.rb │ │ │ │ │ │ ├── text_formatting_run_properties.rb │ │ │ │ │ │ ├── type_confuse_delegate.rb │ │ │ │ │ │ └── windows_identity.rb │ │ │ │ │ ├── types.rb │ │ │ │ │ └── types │ │ │ │ │ │ ├── general.rb │ │ │ │ │ │ ├── primitives.rb │ │ │ │ │ │ └── record_values.rb │ │ │ │ ├── exe.rb │ │ │ │ ├── helper.rb │ │ │ │ ├── host.rb │ │ │ │ ├── java_deserialization.rb │ │ │ │ ├── java_deserialization │ │ │ │ │ └── bean_factory.rb │ │ │ │ ├── payload_cached_size.rb │ │ │ │ ├── ruby_deserialization.rb │ │ │ │ ├── service_helper.rb │ │ │ │ ├── windows_crypto_helpers.rb │ │ │ │ ├── windows_registry.rb │ │ │ │ └── windows_registry │ │ │ │ │ ├── registry_parser.rb │ │ │ │ │ ├── sam.rb │ │ │ │ │ └── security.rb │ │ │ └── windows_error.rb │ │ ├── msf_autoload.rb │ │ ├── msfdb_helpers │ │ │ ├── db_interface.rb │ │ │ ├── pg_ctl.rb │ │ │ ├── pg_ctlcluster.rb │ │ │ └── standalone.rb │ │ ├── msfenv.rb │ │ ├── net │ │ │ ├── dns.rb │ │ │ ├── dns │ │ │ │ ├── README │ │ │ │ ├── dns.rb │ │ │ │ ├── header.rb │ │ │ │ ├── names │ │ │ │ │ └── names.rb │ │ │ │ ├── packet.rb │ │ │ │ ├── question.rb │ │ │ │ ├── resolver.rb │ │ │ │ ├── resolver │ │ │ │ │ ├── socks.rb │ │ │ │ │ └── timeouts.rb │ │ │ │ ├── rr.rb │ │ │ │ └── rr │ │ │ │ │ ├── a.rb │ │ │ │ │ ├── aaaa.rb │ │ │ │ │ ├── classes.rb │ │ │ │ │ ├── cname.rb │ │ │ │ │ ├── hinfo.rb │ │ │ │ │ ├── mr.rb │ │ │ │ │ ├── mx.rb │ │ │ │ │ ├── ns.rb │ │ │ │ │ ├── null.rb │ │ │ │ │ ├── ptr.rb │ │ │ │ │ ├── soa.rb │ │ │ │ │ ├── srv.rb │ │ │ │ │ ├── txt.rb │ │ │ │ │ └── types.rb │ │ │ ├── ssh │ │ │ │ ├── command_stream.rb │ │ │ │ └── pubkey_verifier.rb │ │ │ └── winrm │ │ │ │ ├── connection.rb │ │ │ │ ├── ctrl_c.rb │ │ │ │ ├── receive_response_reader.rb │ │ │ │ ├── rex_http_transport.rb │ │ │ │ └── stdin_shell.rb │ │ ├── postgres │ │ │ ├── binary_reader.rb │ │ │ ├── binary_writer.rb │ │ │ ├── buffer.rb │ │ │ ├── byteorder.rb │ │ │ └── postgres-pr │ │ │ │ ├── connection.rb │ │ │ │ ├── message.rb │ │ │ │ ├── postgres-compat.rb │ │ │ │ ├── typeconv │ │ │ │ ├── array.rb │ │ │ │ ├── bytea.rb │ │ │ │ └── conv.rb │ │ │ │ └── version.rb │ │ ├── postgres_msf.rb │ │ ├── rabal │ │ │ └── tree.rb │ │ ├── rbmysql.rb │ │ ├── rbmysql │ │ │ ├── README │ │ │ ├── charset.rb │ │ │ ├── constants.rb │ │ │ ├── error.rb │ │ │ ├── packet.rb │ │ │ └── protocol.rb │ │ ├── rex.rb │ │ ├── rex │ │ │ ├── LICENSE │ │ │ ├── crypto.rb │ │ │ ├── crypto │ │ │ │ ├── aes256.rb │ │ │ │ ├── chacha20.rb │ │ │ │ └── rc4.rb │ │ │ ├── ext_time.rb │ │ │ ├── google │ │ │ │ └── geolocation.rb │ │ │ ├── io │ │ │ │ └── gram_server.rb │ │ │ ├── job.rb │ │ │ ├── job_container.rb │ │ │ ├── json_hash_file.rb │ │ │ ├── logging.rb │ │ │ ├── logging │ │ │ │ ├── log_dispatcher.rb │ │ │ │ ├── log_sink.rb │ │ │ │ ├── log_sink_factory.rb │ │ │ │ └── sinks │ │ │ │ │ ├── flatfile.rb │ │ │ │ │ ├── stderr.rb │ │ │ │ │ ├── stdout.rb │ │ │ │ │ ├── stdout_without_timestamps.rb │ │ │ │ │ ├── stream.rb │ │ │ │ │ └── timestamp_colorless_flatfile.rb │ │ │ ├── oui.rb │ │ │ ├── parser.rb │ │ │ ├── parser │ │ │ │ ├── acunetix_document.rb │ │ │ │ ├── apple_backup_manifestdb.rb │ │ │ │ ├── appscan_document.rb │ │ │ │ ├── arguments.rb │ │ │ │ ├── burp_issue_document.rb │ │ │ │ ├── burp_session_document.rb │ │ │ │ ├── ci_document.rb │ │ │ │ ├── dbeaver.rb │ │ │ │ ├── foundstone_document.rb │ │ │ │ ├── fs │ │ │ │ │ ├── bitlocker.rb │ │ │ │ │ └── ntfs.rb │ │ │ │ ├── fusionvm_document.rb │ │ │ │ ├── graphml.rb │ │ │ │ ├── group_policy_preferences.rb │ │ │ │ ├── ini.rb │ │ │ │ ├── ip360_aspl_xml.rb │ │ │ │ ├── ip360_xml.rb │ │ │ │ ├── mbsa_document.rb │ │ │ │ ├── nessus_xml.rb │ │ │ │ ├── net_sarang.rb │ │ │ │ ├── netsparker_xml.rb │ │ │ │ ├── nexpose_raw_document.rb │ │ │ │ ├── nexpose_simple_document.rb │ │ │ │ ├── nexpose_xml.rb │ │ │ │ ├── nmap_document.rb │ │ │ │ ├── nmap_xml.rb │ │ │ │ ├── nokogiri_doc_mixin.rb │ │ │ │ ├── openvas_document.rb │ │ │ │ ├── outpost24_document.rb │ │ │ │ ├── parsed_result.rb │ │ │ │ ├── retina_xml.rb │ │ │ │ ├── unattend.rb │ │ │ │ ├── wapiti_document.rb │ │ │ │ └── winscp.rb │ │ │ ├── payloads.rb │ │ │ ├── payloads │ │ │ │ ├── meterpreter.rb │ │ │ │ ├── meterpreter │ │ │ │ │ ├── config.rb │ │ │ │ │ └── uri_checksum.rb │ │ │ │ ├── shuffle.rb │ │ │ │ └── win32 │ │ │ │ │ ├── common.rb │ │ │ │ │ ├── kernel.rb │ │ │ │ │ └── kernel │ │ │ │ │ ├── common.rb │ │ │ │ │ ├── migration.rb │ │ │ │ │ ├── recovery.rb │ │ │ │ │ └── stager.rb │ │ │ ├── post.rb │ │ │ ├── post │ │ │ │ ├── channel.rb │ │ │ │ ├── channel │ │ │ │ │ ├── container.rb │ │ │ │ │ ├── socket_abstraction.rb │ │ │ │ │ └── stream_abstraction.rb │ │ │ │ ├── dir.rb │ │ │ │ ├── file.rb │ │ │ │ ├── file_stat.rb │ │ │ │ ├── hwbridge.rb │ │ │ │ ├── hwbridge │ │ │ │ │ ├── client.rb │ │ │ │ │ ├── extension.rb │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── automotive │ │ │ │ │ │ │ ├── automotive.rb │ │ │ │ │ │ │ └── uds_errors.rb │ │ │ │ │ │ ├── custom_methods │ │ │ │ │ │ │ └── custom_methods.rb │ │ │ │ │ │ ├── rftransceiver │ │ │ │ │ │ │ └── rftransceiver.rb │ │ │ │ │ │ └── zigbee │ │ │ │ │ │ │ └── zigbee.rb │ │ │ │ │ ├── object_aliases.rb │ │ │ │ │ └── ui │ │ │ │ │ │ ├── console.rb │ │ │ │ │ │ └── console │ │ │ │ │ │ ├── command_dispatcher.rb │ │ │ │ │ │ ├── command_dispatcher │ │ │ │ │ │ ├── automotive.rb │ │ │ │ │ │ ├── core.rb │ │ │ │ │ │ ├── custom_methods.rb │ │ │ │ │ │ ├── rftransceiver.rb │ │ │ │ │ │ └── zigbee.rb │ │ │ │ │ │ └── interactive_channel.rb │ │ │ │ ├── io.rb │ │ │ │ ├── meterpreter.rb │ │ │ │ ├── meterpreter │ │ │ │ │ ├── channel.rb │ │ │ │ │ ├── channels │ │ │ │ │ │ ├── datagram.rb │ │ │ │ │ │ ├── pool.rb │ │ │ │ │ │ ├── pools │ │ │ │ │ │ │ ├── file.rb │ │ │ │ │ │ │ └── stream_pool.rb │ │ │ │ │ │ ├── socket_abstraction.rb │ │ │ │ │ │ ├── stream.rb │ │ │ │ │ │ └── streams │ │ │ │ │ │ │ └── .cvskeep │ │ │ │ │ ├── client.rb │ │ │ │ │ ├── client_core.rb │ │ │ │ │ ├── command_mapper.rb │ │ │ │ │ ├── core_ids.rb │ │ │ │ │ ├── dependencies.rb │ │ │ │ │ ├── extension.rb │ │ │ │ │ ├── extension_mapper.rb │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── android │ │ │ │ │ │ │ ├── android.rb │ │ │ │ │ │ │ ├── command_ids.rb │ │ │ │ │ │ │ └── tlv.rb │ │ │ │ │ │ ├── appapi │ │ │ │ │ │ │ ├── appapi.rb │ │ │ │ │ │ │ ├── command_ids.rb │ │ │ │ │ │ │ └── tlv.rb │ │ │ │ │ │ ├── bofloader │ │ │ │ │ │ │ ├── bofloader.rb │ │ │ │ │ │ │ ├── command_ids.rb │ │ │ │ │ │ │ └── tlv.rb │ │ │ │ │ │ ├── espia │ │ │ │ │ │ │ ├── command_ids.rb │ │ │ │ │ │ │ ├── espia.rb │ │ │ │ │ │ │ └── tlv.rb │ │ │ │ │ │ ├── extapi │ │ │ │ │ │ │ ├── adsi │ │ │ │ │ │ │ │ └── adsi.rb │ │ │ │ │ │ │ ├── clipboard │ │ │ │ │ │ │ │ └── clipboard.rb │ │ │ │ │ │ │ ├── command_ids.rb │ │ │ │ │ │ │ ├── extapi.rb │ │ │ │ │ │ │ ├── ntds │ │ │ │ │ │ │ │ └── ntds.rb │ │ │ │ │ │ │ ├── pageant │ │ │ │ │ │ │ │ └── pageant.rb │ │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ │ └── service.rb │ │ │ │ │ │ │ ├── tlv.rb │ │ │ │ │ │ │ ├── window │ │ │ │ │ │ │ │ └── window.rb │ │ │ │ │ │ │ └── wmi │ │ │ │ │ │ │ │ └── wmi.rb │ │ │ │ │ │ ├── incognito │ │ │ │ │ │ │ ├── command_ids.rb │ │ │ │ │ │ │ ├── incognito.rb │ │ │ │ │ │ │ └── tlv.rb │ │ │ │ │ │ ├── kiwi │ │ │ │ │ │ │ ├── command_ids.rb │ │ │ │ │ │ │ ├── kiwi.rb │ │ │ │ │ │ │ └── tlv.rb │ │ │ │ │ │ ├── lanattacks │ │ │ │ │ │ │ ├── command_ids.rb │ │ │ │ │ │ │ ├── dhcp │ │ │ │ │ │ │ │ └── dhcp.rb │ │ │ │ │ │ │ ├── lanattacks.rb │ │ │ │ │ │ │ ├── tftp │ │ │ │ │ │ │ │ └── tftp.rb │ │ │ │ │ │ │ └── tlv.rb │ │ │ │ │ │ ├── peinjector │ │ │ │ │ │ │ ├── command_ids.rb │ │ │ │ │ │ │ ├── peinjector.rb │ │ │ │ │ │ │ └── tlv.rb │ │ │ │ │ │ ├── powershell │ │ │ │ │ │ │ ├── command_ids.rb │ │ │ │ │ │ │ ├── powershell.rb │ │ │ │ │ │ │ └── tlv.rb │ │ │ │ │ │ ├── priv │ │ │ │ │ │ │ ├── command_ids.rb │ │ │ │ │ │ │ ├── fs.rb │ │ │ │ │ │ │ ├── passwd.rb │ │ │ │ │ │ │ ├── priv.rb │ │ │ │ │ │ │ └── tlv.rb │ │ │ │ │ │ ├── python │ │ │ │ │ │ │ ├── command_ids.rb │ │ │ │ │ │ │ ├── python.rb │ │ │ │ │ │ │ └── tlv.rb │ │ │ │ │ │ ├── sniffer │ │ │ │ │ │ │ ├── command_ids.rb │ │ │ │ │ │ │ ├── sniffer.rb │ │ │ │ │ │ │ └── tlv.rb │ │ │ │ │ │ ├── stdapi │ │ │ │ │ │ │ ├── audio_output │ │ │ │ │ │ │ │ └── audio_output.rb │ │ │ │ │ │ │ ├── command_ids.rb │ │ │ │ │ │ │ ├── constants.rb │ │ │ │ │ │ │ ├── fs │ │ │ │ │ │ │ │ ├── dir.rb │ │ │ │ │ │ │ │ ├── file.rb │ │ │ │ │ │ │ │ ├── file_stat.rb │ │ │ │ │ │ │ │ ├── io.rb │ │ │ │ │ │ │ │ └── mount.rb │ │ │ │ │ │ │ ├── mic │ │ │ │ │ │ │ │ └── mic.rb │ │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ │ ├── arp.rb │ │ │ │ │ │ │ │ ├── config.rb │ │ │ │ │ │ │ │ ├── interface.rb │ │ │ │ │ │ │ │ ├── netstat.rb │ │ │ │ │ │ │ │ ├── resolve.rb │ │ │ │ │ │ │ │ ├── route.rb │ │ │ │ │ │ │ │ ├── socket.rb │ │ │ │ │ │ │ │ └── socket_subsystem │ │ │ │ │ │ │ │ │ ├── tcp_client_channel.rb │ │ │ │ │ │ │ │ │ ├── tcp_server_channel.rb │ │ │ │ │ │ │ │ │ └── udp_channel.rb │ │ │ │ │ │ │ ├── railgun │ │ │ │ │ │ │ │ ├── buffer_item.rb │ │ │ │ │ │ │ │ ├── const_manager.rb │ │ │ │ │ │ │ │ ├── def │ │ │ │ │ │ │ │ │ ├── linux │ │ │ │ │ │ │ │ │ │ ├── api_constants.rb │ │ │ │ │ │ │ │ │ │ └── def_libc.rb │ │ │ │ │ │ │ │ │ ├── osx │ │ │ │ │ │ │ │ │ │ ├── api_constants.rb │ │ │ │ │ │ │ │ │ │ ├── def_libc.rb │ │ │ │ │ │ │ │ │ │ └── def_libobjc.rb │ │ │ │ │ │ │ │ │ └── windows │ │ │ │ │ │ │ │ │ │ ├── api_constants.rb │ │ │ │ │ │ │ │ │ │ ├── def_advapi32.rb │ │ │ │ │ │ │ │ │ │ ├── def_crypt32.rb │ │ │ │ │ │ │ │ │ │ ├── def_dbghelp.rb │ │ │ │ │ │ │ │ │ │ ├── def_iphlpapi.rb │ │ │ │ │ │ │ │ │ │ ├── def_kernel32.rb │ │ │ │ │ │ │ │ │ │ ├── def_netapi32.rb │ │ │ │ │ │ │ │ │ │ ├── def_ntdll.rb │ │ │ │ │ │ │ │ │ │ ├── def_psapi.rb │ │ │ │ │ │ │ │ │ │ ├── def_shell32.rb │ │ │ │ │ │ │ │ │ │ ├── def_spoolss.rb │ │ │ │ │ │ │ │ │ │ ├── def_user32.rb │ │ │ │ │ │ │ │ │ │ ├── def_version.rb │ │ │ │ │ │ │ │ │ │ ├── def_winspool.rb │ │ │ │ │ │ │ │ │ │ ├── def_wlanapi.rb │ │ │ │ │ │ │ │ │ │ ├── def_wldap32.rb │ │ │ │ │ │ │ │ │ │ └── def_ws2_32.rb │ │ │ │ │ │ │ │ ├── library.rb │ │ │ │ │ │ │ │ ├── library_function.rb │ │ │ │ │ │ │ │ ├── library_helper.rb │ │ │ │ │ │ │ │ ├── library_wrapper.rb │ │ │ │ │ │ │ │ ├── multicall.rb │ │ │ │ │ │ │ │ ├── platform_util.rb │ │ │ │ │ │ │ │ ├── railgun.rb │ │ │ │ │ │ │ │ ├── tlv.rb │ │ │ │ │ │ │ │ ├── type │ │ │ │ │ │ │ │ │ └── pointer_util.rb │ │ │ │ │ │ │ │ └── util.rb │ │ │ │ │ │ │ ├── stdapi.rb │ │ │ │ │ │ │ ├── sys │ │ │ │ │ │ │ │ ├── config.rb │ │ │ │ │ │ │ │ ├── event_log.rb │ │ │ │ │ │ │ │ ├── event_log_subsystem │ │ │ │ │ │ │ │ │ └── event_record.rb │ │ │ │ │ │ │ │ ├── power.rb │ │ │ │ │ │ │ │ ├── process.rb │ │ │ │ │ │ │ │ ├── process_subsystem │ │ │ │ │ │ │ │ │ ├── image.rb │ │ │ │ │ │ │ │ │ ├── io.rb │ │ │ │ │ │ │ │ │ ├── memory.rb │ │ │ │ │ │ │ │ │ └── thread.rb │ │ │ │ │ │ │ │ ├── registry.rb │ │ │ │ │ │ │ │ ├── registry_subsystem │ │ │ │ │ │ │ │ │ ├── registry_key.rb │ │ │ │ │ │ │ │ │ ├── registry_value.rb │ │ │ │ │ │ │ │ │ └── remote_registry_key.rb │ │ │ │ │ │ │ │ └── thread.rb │ │ │ │ │ │ │ ├── tlv.rb │ │ │ │ │ │ │ ├── ui.rb │ │ │ │ │ │ │ └── webcam │ │ │ │ │ │ │ │ └── webcam.rb │ │ │ │ │ │ ├── unhook │ │ │ │ │ │ │ ├── command_ids.rb │ │ │ │ │ │ │ ├── tlv.rb │ │ │ │ │ │ │ └── unhook.rb │ │ │ │ │ │ └── winpmem │ │ │ │ │ │ │ ├── command_ids.rb │ │ │ │ │ │ │ ├── tlv.rb │ │ │ │ │ │ │ └── winpmem.rb │ │ │ │ │ ├── inbound_packet_handler.rb │ │ │ │ │ ├── object_aliases.rb │ │ │ │ │ ├── packet.rb │ │ │ │ │ ├── packet_dispatcher.rb │ │ │ │ │ ├── packet_parser.rb │ │ │ │ │ ├── packet_response_waiter.rb │ │ │ │ │ ├── pivot.rb │ │ │ │ │ ├── pivot_container.rb │ │ │ │ │ └── ui │ │ │ │ │ │ ├── console.rb │ │ │ │ │ │ └── console │ │ │ │ │ │ ├── command_dispatcher.rb │ │ │ │ │ │ ├── command_dispatcher │ │ │ │ │ │ ├── android.rb │ │ │ │ │ │ ├── appapi.rb │ │ │ │ │ │ ├── bofloader.rb │ │ │ │ │ │ ├── core.rb │ │ │ │ │ │ ├── espia.rb │ │ │ │ │ │ ├── extapi.rb │ │ │ │ │ │ ├── extapi │ │ │ │ │ │ │ ├── adsi.rb │ │ │ │ │ │ │ ├── clipboard.rb │ │ │ │ │ │ │ ├── service.rb │ │ │ │ │ │ │ ├── window.rb │ │ │ │ │ │ │ └── wmi.rb │ │ │ │ │ │ ├── incognito.rb │ │ │ │ │ │ ├── kiwi.rb │ │ │ │ │ │ ├── lanattacks.rb │ │ │ │ │ │ ├── lanattacks │ │ │ │ │ │ │ ├── dhcp.rb │ │ │ │ │ │ │ └── tftp.rb │ │ │ │ │ │ ├── peinjector.rb │ │ │ │ │ │ ├── powershell.rb │ │ │ │ │ │ ├── priv.rb │ │ │ │ │ │ ├── priv │ │ │ │ │ │ │ ├── elevate.rb │ │ │ │ │ │ │ ├── passwd.rb │ │ │ │ │ │ │ └── timestomp.rb │ │ │ │ │ │ ├── python.rb │ │ │ │ │ │ ├── sniffer.rb │ │ │ │ │ │ ├── stdapi.rb │ │ │ │ │ │ ├── stdapi │ │ │ │ │ │ │ ├── audio_output.rb │ │ │ │ │ │ │ ├── fs.rb │ │ │ │ │ │ │ ├── mic.rb │ │ │ │ │ │ │ ├── net.rb │ │ │ │ │ │ │ ├── stream.rb │ │ │ │ │ │ │ ├── sys.rb │ │ │ │ │ │ │ ├── ui.rb │ │ │ │ │ │ │ └── webcam.rb │ │ │ │ │ │ ├── unhook.rb │ │ │ │ │ │ └── winpmem.rb │ │ │ │ │ │ └── interactive_channel.rb │ │ │ │ ├── permission.rb │ │ │ │ ├── process.rb │ │ │ │ ├── thread.rb │ │ │ │ └── ui.rb │ │ │ ├── proto.rb │ │ │ ├── proto │ │ │ │ ├── acpp.rb │ │ │ │ ├── acpp │ │ │ │ │ ├── client.rb │ │ │ │ │ └── message.rb │ │ │ │ ├── adb │ │ │ │ │ ├── client.rb │ │ │ │ │ └── message.rb │ │ │ │ ├── addp.rb │ │ │ │ ├── amqp.rb │ │ │ │ ├── amqp │ │ │ │ │ ├── error.rb │ │ │ │ │ ├── version_0_9_1.rb │ │ │ │ │ └── version_0_9_1 │ │ │ │ │ │ ├── client.rb │ │ │ │ │ │ ├── client │ │ │ │ │ │ └── channel.rb │ │ │ │ │ │ ├── frames.rb │ │ │ │ │ │ ├── frames │ │ │ │ │ │ └── method_arguments.rb │ │ │ │ │ │ └── types.rb │ │ │ │ ├── crypto_asn1.rb │ │ │ │ ├── crypto_asn1 │ │ │ │ │ ├── types.rb │ │ │ │ │ └── x509.rb │ │ │ │ ├── dcerpc │ │ │ │ │ ├── client.rb │ │ │ │ │ ├── exceptions.rb │ │ │ │ │ ├── handle.rb │ │ │ │ │ ├── ndr.rb │ │ │ │ │ ├── packet.rb │ │ │ │ │ ├── response.rb │ │ │ │ │ ├── svcctl │ │ │ │ │ │ └── client.rb │ │ │ │ │ ├── uuid.rb │ │ │ │ │ └── wdscp │ │ │ │ │ │ ├── constants.rb │ │ │ │ │ │ └── packet.rb │ │ │ │ ├── dhcp │ │ │ │ │ ├── constants.rb │ │ │ │ │ └── server.rb │ │ │ │ ├── dns.rb │ │ │ │ ├── dns │ │ │ │ │ ├── cache.rb │ │ │ │ │ ├── cached_resolver.rb │ │ │ │ │ ├── packet.rb │ │ │ │ │ ├── resolver.rb │ │ │ │ │ └── server.rb │ │ │ │ ├── drda.rb │ │ │ │ ├── drda │ │ │ │ │ ├── constants.rb │ │ │ │ │ ├── packet.rb │ │ │ │ │ └── utils.rb │ │ │ │ ├── ftp │ │ │ │ │ └── client.rb │ │ │ │ ├── gss.rb │ │ │ │ ├── gss │ │ │ │ │ ├── asn1.rb │ │ │ │ │ └── kerberos │ │ │ │ │ │ └── message_encryptor.rb │ │ │ │ ├── http │ │ │ │ │ ├── client.rb │ │ │ │ │ ├── client_request.rb │ │ │ │ │ ├── handler.rb │ │ │ │ │ ├── handler │ │ │ │ │ │ ├── erb.rb │ │ │ │ │ │ └── proc.rb │ │ │ │ │ ├── http_logger_subscriber.rb │ │ │ │ │ ├── http_subscriber.rb │ │ │ │ │ ├── packet.rb │ │ │ │ │ ├── packet │ │ │ │ │ │ └── header.rb │ │ │ │ │ ├── request.rb │ │ │ │ │ ├── response.rb │ │ │ │ │ ├── server.rb │ │ │ │ │ ├── web_socket.rb │ │ │ │ │ └── web_socket │ │ │ │ │ │ └── amazon_ssm.rb │ │ │ │ ├── iax2 │ │ │ │ │ ├── call.rb │ │ │ │ │ ├── client.rb │ │ │ │ │ ├── codecs │ │ │ │ │ │ ├── a_law.rb │ │ │ │ │ │ ├── g711.rb │ │ │ │ │ │ └── mu_law.rb │ │ │ │ │ └── constants.rb │ │ │ │ ├── ipmi.rb │ │ │ │ ├── ipmi │ │ │ │ │ ├── channel_auth_reply.rb │ │ │ │ │ ├── open_session_reply.rb │ │ │ │ │ ├── rakp2.rb │ │ │ │ │ └── utils.rb │ │ │ │ ├── kademlia.rb │ │ │ │ ├── kademlia │ │ │ │ │ ├── bootstrap_request.rb │ │ │ │ │ ├── bootstrap_response.rb │ │ │ │ │ ├── message.rb │ │ │ │ │ ├── ping.rb │ │ │ │ │ ├── pong.rb │ │ │ │ │ └── util.rb │ │ │ │ ├── kerberos │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client.rb │ │ │ │ │ ├── credential_cache.rb │ │ │ │ │ ├── credential_cache │ │ │ │ │ │ ├── krb5_ccache.rb │ │ │ │ │ │ ├── krb5_ccache_credential.rb │ │ │ │ │ │ ├── krb5_ccache_credential_address.rb │ │ │ │ │ │ ├── krb5_ccache_credential_authdata.rb │ │ │ │ │ │ ├── krb5_ccache_credential_keyblock.rb │ │ │ │ │ │ ├── krb5_ccache_presenter.rb │ │ │ │ │ │ ├── krb5_ccache_principal.rb │ │ │ │ │ │ ├── primitive.rb │ │ │ │ │ │ └── primitive │ │ │ │ │ │ │ ├── krb5_ccache_address.rb │ │ │ │ │ │ │ ├── krb5_ccache_bool.rb │ │ │ │ │ │ │ ├── krb5_ccache_data.rb │ │ │ │ │ │ │ └── krb5_ccache_epoch.rb │ │ │ │ │ ├── crypto.rb │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── aes128_cts_sha1.rb │ │ │ │ │ │ ├── aes256_cts_sha1.rb │ │ │ │ │ │ ├── aes_block_cipher_base.rb │ │ │ │ │ │ ├── asn1_utils.rb │ │ │ │ │ │ ├── block_cipher_base.rb │ │ │ │ │ │ ├── des3_cbc_sha1.rb │ │ │ │ │ │ ├── des_cbc_md5.rb │ │ │ │ │ │ ├── gss_new_encryption_type.rb │ │ │ │ │ │ ├── rc4_hmac.rb │ │ │ │ │ │ ├── rsa_md5.rb │ │ │ │ │ │ └── utils.rb │ │ │ │ │ ├── keytab.rb │ │ │ │ │ ├── keytab │ │ │ │ │ │ └── krb5_keytab.rb │ │ │ │ │ ├── model.rb │ │ │ │ │ ├── model │ │ │ │ │ │ ├── address_type.rb │ │ │ │ │ │ ├── ap_rep.rb │ │ │ │ │ │ ├── ap_req.rb │ │ │ │ │ │ ├── authenticator.rb │ │ │ │ │ │ ├── authorization_data.rb │ │ │ │ │ │ ├── checksum.rb │ │ │ │ │ │ ├── element.rb │ │ │ │ │ │ ├── enc_ap_rep_part.rb │ │ │ │ │ │ ├── enc_kdc_response.rb │ │ │ │ │ │ ├── enc_krb_cred_part.rb │ │ │ │ │ │ ├── encrypted_data.rb │ │ │ │ │ │ ├── encryption_key.rb │ │ │ │ │ │ ├── error.rb │ │ │ │ │ │ ├── host_address.rb │ │ │ │ │ │ ├── kdc_option_flags.rb │ │ │ │ │ │ ├── kdc_request.rb │ │ │ │ │ │ ├── kdc_request_body.rb │ │ │ │ │ │ ├── kdc_response.rb │ │ │ │ │ │ ├── kerberos_flags.rb │ │ │ │ │ │ ├── krb_cred.rb │ │ │ │ │ │ ├── krb_cred_info.rb │ │ │ │ │ │ ├── krb_error.rb │ │ │ │ │ │ ├── last_request.rb │ │ │ │ │ │ ├── pkinit.rb │ │ │ │ │ │ ├── pre_auth_data_entry.rb │ │ │ │ │ │ ├── pre_auth_enc_time_stamp.rb │ │ │ │ │ │ ├── pre_auth_etype_info2.rb │ │ │ │ │ │ ├── pre_auth_etype_info2_entry.rb │ │ │ │ │ │ ├── pre_auth_for_user.rb │ │ │ │ │ │ ├── pre_auth_pac_options.rb │ │ │ │ │ │ ├── pre_auth_pac_options_flags.rb │ │ │ │ │ │ ├── pre_auth_pac_request.rb │ │ │ │ │ │ ├── pre_auth_pk_as_rep.rb │ │ │ │ │ │ ├── pre_auth_pk_as_req.rb │ │ │ │ │ │ ├── pre_auth_pw_salt.rb │ │ │ │ │ │ ├── principal_name.rb │ │ │ │ │ │ ├── ticket.rb │ │ │ │ │ │ ├── ticket_enc_part.rb │ │ │ │ │ │ ├── ticket_flags.rb │ │ │ │ │ │ └── transited_encoding.rb │ │ │ │ │ ├── pac.rb │ │ │ │ │ └── pac │ │ │ │ │ │ ├── error.rb │ │ │ │ │ │ ├── krb5_pac.rb │ │ │ │ │ │ └── krb5_pac_element_type.rb │ │ │ │ ├── ldap.rb │ │ │ │ ├── ldap │ │ │ │ │ └── server.rb │ │ │ │ ├── mms │ │ │ │ │ ├── client.rb │ │ │ │ │ ├── exception.rb │ │ │ │ │ ├── model.rb │ │ │ │ │ └── model │ │ │ │ │ │ ├── message.rb │ │ │ │ │ │ └── smtp.rb │ │ │ │ ├── mqtt.rb │ │ │ │ ├── mqtt │ │ │ │ │ └── client.rb │ │ │ │ ├── ms_crtd.rb │ │ │ │ ├── ms_dtyp.rb │ │ │ │ ├── natpmp.rb │ │ │ │ ├── natpmp │ │ │ │ │ ├── constants.rb │ │ │ │ │ └── packet.rb │ │ │ │ ├── ntlm │ │ │ │ │ ├── base.rb │ │ │ │ │ ├── constants.rb │ │ │ │ │ ├── crypt.rb │ │ │ │ │ ├── exceptions.rb │ │ │ │ │ ├── message.rb │ │ │ │ │ └── utils.rb │ │ │ │ ├── ntp.rb │ │ │ │ ├── ntp │ │ │ │ │ ├── constants.rb │ │ │ │ │ └── modes.rb │ │ │ │ ├── nuuo │ │ │ │ │ ├── client.rb │ │ │ │ │ ├── client_request.rb │ │ │ │ │ ├── constants.rb │ │ │ │ │ └── response.rb │ │ │ │ ├── pjl.rb │ │ │ │ ├── pjl │ │ │ │ │ └── client.rb │ │ │ │ ├── proxy │ │ │ │ │ ├── socks4a.rb │ │ │ │ │ └── socks5 │ │ │ │ │ │ ├── packet.rb │ │ │ │ │ │ ├── server.rb │ │ │ │ │ │ └── server_client.rb │ │ │ │ ├── quake.rb │ │ │ │ ├── quake │ │ │ │ │ └── message.rb │ │ │ │ ├── rfb.rb │ │ │ │ ├── rfb │ │ │ │ │ ├── cipher.rb │ │ │ │ │ ├── client.rb │ │ │ │ │ └── constants.rb │ │ │ │ ├── rmi │ │ │ │ │ ├── decode_error.rb │ │ │ │ │ ├── exception.rb │ │ │ │ │ ├── model.rb │ │ │ │ │ └── model │ │ │ │ │ │ ├── call.rb │ │ │ │ │ │ ├── call_data.rb │ │ │ │ │ │ ├── continuation.rb │ │ │ │ │ │ ├── dgc_ack.rb │ │ │ │ │ │ ├── element.rb │ │ │ │ │ │ ├── output_header.rb │ │ │ │ │ │ ├── ping.rb │ │ │ │ │ │ ├── ping_ack.rb │ │ │ │ │ │ ├── protocol_ack.rb │ │ │ │ │ │ ├── return_data.rb │ │ │ │ │ │ ├── return_value.rb │ │ │ │ │ │ └── unique_identifier.rb │ │ │ │ ├── secauthz │ │ │ │ │ └── well_known_sids.rb │ │ │ │ ├── sip │ │ │ │ │ └── response.rb │ │ │ │ ├── smb │ │ │ │ │ ├── client.rb │ │ │ │ │ ├── constants.rb │ │ │ │ │ ├── crypt.rb │ │ │ │ │ ├── evasions.rb │ │ │ │ │ ├── exceptions.rb │ │ │ │ │ ├── simple_client.rb │ │ │ │ │ ├── simple_client │ │ │ │ │ │ ├── open_file.rb │ │ │ │ │ │ └── open_pipe.rb │ │ │ │ │ └── utils.rb │ │ │ │ ├── sms │ │ │ │ │ ├── client.rb │ │ │ │ │ ├── exception.rb │ │ │ │ │ ├── model.rb │ │ │ │ │ └── model │ │ │ │ │ │ ├── message.rb │ │ │ │ │ │ └── smtp.rb │ │ │ │ ├── ssh │ │ │ │ │ ├── connection.rb │ │ │ │ │ ├── hrr_rb_ssh.rb │ │ │ │ │ └── server.rb │ │ │ │ ├── steam.rb │ │ │ │ ├── steam │ │ │ │ │ └── message.rb │ │ │ │ ├── sunrpc │ │ │ │ │ └── client.rb │ │ │ │ ├── tftp │ │ │ │ │ ├── client.rb │ │ │ │ │ ├── constants.rb │ │ │ │ │ └── server.rb │ │ │ │ └── thrift.rb │ │ │ ├── script.rb │ │ │ ├── script │ │ │ │ ├── base.rb │ │ │ │ ├── meterpreter.rb │ │ │ │ └── shell.rb │ │ │ ├── service.rb │ │ │ ├── service_manager.rb │ │ │ ├── services │ │ │ │ └── local_relay.rb │ │ │ ├── tar.rb │ │ │ ├── thread_factory.rb │ │ │ ├── transformer.rb │ │ │ ├── ui │ │ │ │ ├── interactive.rb │ │ │ │ ├── output.rb │ │ │ │ ├── output │ │ │ │ │ └── none.rb │ │ │ │ ├── subscriber.rb │ │ │ │ └── text │ │ │ │ │ ├── bidirectional_pipe.rb │ │ │ │ │ ├── dispatcher_shell.rb │ │ │ │ │ ├── input.rb │ │ │ │ │ ├── input │ │ │ │ │ ├── buffer.rb │ │ │ │ │ ├── readline.rb │ │ │ │ │ ├── socket.rb │ │ │ │ │ └── stdio.rb │ │ │ │ │ ├── irb_shell.rb │ │ │ │ │ ├── output.rb │ │ │ │ │ ├── output │ │ │ │ │ ├── buffer.rb │ │ │ │ │ ├── buffer │ │ │ │ │ │ └── stdout.rb │ │ │ │ │ ├── file.rb │ │ │ │ │ ├── socket.rb │ │ │ │ │ ├── stdio.rb │ │ │ │ │ └── tee.rb │ │ │ │ │ ├── pseudo_shell.rb │ │ │ │ │ ├── resource.rb │ │ │ │ │ ├── shell.rb │ │ │ │ │ └── shell │ │ │ │ │ └── history_manager.rb │ │ │ ├── user_agent.rb │ │ │ └── version.rb │ │ ├── robots.rb │ │ ├── rubocop │ │ │ └── cop │ │ │ │ ├── layout │ │ │ │ ├── extra_spacing_with_bindata_ignored.rb │ │ │ │ ├── module_description_indentation.rb │ │ │ │ ├── module_hash_on_new_line.rb │ │ │ │ └── module_hash_values_on_same_line.rb │ │ │ │ └── lint │ │ │ │ ├── deprecated_gem_version.rb │ │ │ │ ├── module_disclosure_date_format.rb │ │ │ │ ├── module_disclosure_date_present.rb │ │ │ │ └── module_enforce_notes.rb │ │ ├── snmp.rb │ │ ├── snmp │ │ │ ├── agent.rb │ │ │ ├── ber.rb │ │ │ ├── manager.rb │ │ │ ├── mib.rb │ │ │ ├── pdu.rb │ │ │ └── varbind.rb │ │ ├── sqlmap │ │ │ ├── sqlmap_manager.rb │ │ │ └── sqlmap_session.rb │ │ ├── tasks │ │ │ └── databases.rake │ │ ├── telephony.rb │ │ ├── telephony │ │ │ └── modem.rb │ │ └── windows_console_color_support.rb │ ├── metasploit-framework.gemspec │ ├── modules │ │ ├── README.md │ │ ├── auxiliary │ │ │ ├── admin │ │ │ │ ├── 2wire │ │ │ │ │ └── xslt_password_reset.rb │ │ │ │ ├── android │ │ │ │ │ └── google_play_store_uxss_xframe_rce.rb │ │ │ │ ├── appletv │ │ │ │ │ ├── appletv_display_image.rb │ │ │ │ │ └── appletv_display_video.rb │ │ │ │ ├── atg │ │ │ │ │ └── atg_client.rb │ │ │ │ ├── aws │ │ │ │ │ └── aws_launch_instances.rb │ │ │ │ ├── backupexec │ │ │ │ │ ├── dump.rb │ │ │ │ │ └── registry.rb │ │ │ │ ├── chromecast │ │ │ │ │ ├── chromecast_reset.rb │ │ │ │ │ └── chromecast_youtube.rb │ │ │ │ ├── citrix │ │ │ │ │ └── citrix_netscaler_config_decrypt.rb │ │ │ │ ├── db2 │ │ │ │ │ └── db2rcmd.rb │ │ │ │ ├── dcerpc │ │ │ │ │ ├── cve_2020_1472_zerologon.rb │ │ │ │ │ ├── cve_2022_26923_certifried.rb │ │ │ │ │ ├── icpr_cert.rb │ │ │ │ │ └── samr_computer.rb │ │ │ │ ├── dns │ │ │ │ │ └── dyn_dns_update.rb │ │ │ │ ├── edirectory │ │ │ │ │ ├── edirectory_dhost_cookie.rb │ │ │ │ │ └── edirectory_edirutil.rb │ │ │ │ ├── emc │ │ │ │ │ ├── alphastor_devicemanager_exec.rb │ │ │ │ │ └── alphastor_librarymanager_exec.rb │ │ │ │ ├── firetv │ │ │ │ │ └── firetv_youtube.rb │ │ │ │ ├── hp │ │ │ │ │ ├── hp_data_protector_cmd.rb │ │ │ │ │ ├── hp_ilo_create_admin_account.rb │ │ │ │ │ └── hp_imc_som_create_account.rb │ │ │ │ ├── http │ │ │ │ │ ├── allegro_rompager_auth_bypass.rb │ │ │ │ │ ├── arris_motorola_surfboard_backdoor_xss.rb │ │ │ │ │ ├── axigen_file_access.rb │ │ │ │ │ ├── cfme_manageiq_evm_pass_reset.rb │ │ │ │ │ ├── cisco_7937g_ssh_privesc.py │ │ │ │ │ ├── cnpilot_r_cmd_exec.rb │ │ │ │ │ ├── cnpilot_r_fpt.rb │ │ │ │ │ ├── contentkeeper_fileaccess.rb │ │ │ │ │ ├── dlink_dir_300_600_exec_noauth.rb │ │ │ │ │ ├── dlink_dir_645_password_extractor.rb │ │ │ │ │ ├── dlink_dsl320b_password_extractor.rb │ │ │ │ │ ├── foreman_openstack_satellite_priv_esc.rb │ │ │ │ │ ├── gitstack_rest.rb │ │ │ │ │ ├── grafana_auth_bypass.py │ │ │ │ │ ├── hikvision_unauth_pwd_reset_cve_2017_7921.rb │ │ │ │ │ ├── hp_web_jetadmin_exec.rb │ │ │ │ │ ├── ibm_drm_download.rb │ │ │ │ │ ├── iis_auth_bypass.rb │ │ │ │ │ ├── intersil_pass_reset.rb │ │ │ │ │ ├── iomega_storcenterpro_sessionid.rb │ │ │ │ │ ├── jboss_bshdeployer.rb │ │ │ │ │ ├── jboss_deploymentfilerepository.rb │ │ │ │ │ ├── jboss_seam_exec.rb │ │ │ │ │ ├── joomla_registration_privesc.rb │ │ │ │ │ ├── kaseya_master_admin.rb │ │ │ │ │ ├── katello_satellite_priv_esc.rb │ │ │ │ │ ├── limesurvey_file_download.rb │ │ │ │ │ ├── linksys_e1500_e2500_exec.rb │ │ │ │ │ ├── linksys_tmunblock_admin_reset_bof.rb │ │ │ │ │ ├── linksys_wrt54gl_exec.rb │ │ │ │ │ ├── manage_engine_dc_create_admin.rb │ │ │ │ │ ├── manageengine_dir_listing.rb │ │ │ │ │ ├── manageengine_file_download.rb │ │ │ │ │ ├── manageengine_pmp_privesc.rb │ │ │ │ │ ├── mantisbt_password_reset.rb │ │ │ │ │ ├── mutiny_frontend_read_delete.rb │ │ │ │ │ ├── netflow_file_download.rb │ │ │ │ │ ├── netgear_auth_download.rb │ │ │ │ │ ├── netgear_pnpx_getsharefolderlist_auth_bypass.rb │ │ │ │ │ ├── netgear_r6700_pass_reset.rb │ │ │ │ │ ├── netgear_r7000_backup_cgi_heap_overflow_rce.rb │ │ │ │ │ ├── netgear_soap_password_extractor.rb │ │ │ │ │ ├── netgear_wnr2000_pass_recovery.rb │ │ │ │ │ ├── nexpose_xxe_file_read.rb │ │ │ │ │ ├── novell_file_reporter_filedelete.rb │ │ │ │ │ ├── nuuo_nvrmini_reset.rb │ │ │ │ │ ├── openbravo_xxe.rb │ │ │ │ │ ├── pfadmin_set_protected_alias.rb │ │ │ │ │ ├── pihole_domains_api_exec.rb │ │ │ │ │ ├── rails_devise_pass_reset.rb │ │ │ │ │ ├── scadabr_credential_dump.rb │ │ │ │ │ ├── scrutinizer_add_user.rb │ │ │ │ │ ├── sophos_wpa_traversal.rb │ │ │ │ │ ├── supra_smart_cloud_tv_rfi.rb │ │ │ │ │ ├── sysaid_admin_acct.rb │ │ │ │ │ ├── sysaid_file_download.rb │ │ │ │ │ ├── sysaid_sql_creds.rb │ │ │ │ │ ├── telpho10_credential_dump.rb │ │ │ │ │ ├── tomcat_administration.rb │ │ │ │ │ ├── tomcat_ghostcat.rb │ │ │ │ │ ├── tomcat_utf8_traversal.rb │ │ │ │ │ ├── trendmicro_dlp_traversal.rb │ │ │ │ │ ├── typo3_news_module_sqli.rb │ │ │ │ │ ├── typo3_sa_2009_001.rb │ │ │ │ │ ├── typo3_sa_2009_002.rb │ │ │ │ │ ├── typo3_sa_2010_020.rb │ │ │ │ │ ├── typo3_winstaller_default_enc_keys.rb │ │ │ │ │ ├── ulterius_file_download.rb │ │ │ │ │ ├── vbulletin_upgrade_admin.rb │ │ │ │ │ ├── webnms_cred_disclosure.rb │ │ │ │ │ ├── webnms_file_download.rb │ │ │ │ │ ├── wp_automatic_plugin_privesc.rb │ │ │ │ │ ├── wp_custom_contact_forms.rb │ │ │ │ │ ├── wp_easycart_privilege_escalation.rb │ │ │ │ │ ├── wp_gdpr_compliance_privesc.rb │ │ │ │ │ ├── wp_google_maps_sqli.rb │ │ │ │ │ ├── wp_masterstudy_privesc.rb │ │ │ │ │ ├── wp_symposium_sql_injection.rb │ │ │ │ │ ├── wp_wplms_privilege_escalation.rb │ │ │ │ │ └── zyxel_admin_password_extractor.rb │ │ │ │ ├── kerberos │ │ │ │ │ ├── forge_ticket.rb │ │ │ │ │ ├── get_ticket.rb │ │ │ │ │ ├── inspect_ticket.rb │ │ │ │ │ ├── keytab.rb │ │ │ │ │ ├── ms14_068_kerberos_checksum.rb │ │ │ │ │ └── ticket_converter.rb │ │ │ │ ├── ldap │ │ │ │ │ ├── ad_cs_cert_template.rb │ │ │ │ │ ├── rbcd.rb │ │ │ │ │ └── vmware_vcenter_vmdir_auth_bypass.rb │ │ │ │ ├── maxdb │ │ │ │ │ └── maxdb_cons_exec.rb │ │ │ │ ├── misc │ │ │ │ │ ├── sercomm_dump_config.rb │ │ │ │ │ └── wol.rb │ │ │ │ ├── motorola │ │ │ │ │ └── wr850g_cred.rb │ │ │ │ ├── ms │ │ │ │ │ └── ms08_059_his2006.rb │ │ │ │ ├── mssql │ │ │ │ │ ├── mssql_enum.rb │ │ │ │ │ ├── mssql_enum_domain_accounts.rb │ │ │ │ │ ├── mssql_enum_domain_accounts_sqli.rb │ │ │ │ │ ├── mssql_enum_sql_logins.rb │ │ │ │ │ ├── mssql_escalate_dbowner.rb │ │ │ │ │ ├── mssql_escalate_dbowner_sqli.rb │ │ │ │ │ ├── mssql_escalate_execute_as.rb │ │ │ │ │ ├── mssql_escalate_execute_as_sqli.rb │ │ │ │ │ ├── mssql_exec.rb │ │ │ │ │ ├── mssql_findandsampledata.rb │ │ │ │ │ ├── mssql_idf.rb │ │ │ │ │ ├── mssql_ntlm_stealer.rb │ │ │ │ │ ├── mssql_ntlm_stealer_sqli.rb │ │ │ │ │ ├── mssql_sql.rb │ │ │ │ │ └── mssql_sql_file.rb │ │ │ │ ├── mysql │ │ │ │ │ ├── mysql_enum.rb │ │ │ │ │ └── mysql_sql.rb │ │ │ │ ├── natpmp │ │ │ │ │ └── natpmp_map.rb │ │ │ │ ├── netbios │ │ │ │ │ └── netbios_spoof.rb │ │ │ │ ├── networking │ │ │ │ │ ├── arista_config.rb │ │ │ │ │ ├── brocade_config.rb │ │ │ │ │ ├── cisco_asa_extrabacon.rb │ │ │ │ │ ├── cisco_config.rb │ │ │ │ │ ├── cisco_dcnm_auth_bypass.rb │ │ │ │ │ ├── cisco_dcnm_download.rb │ │ │ │ │ ├── cisco_secure_acs_bypass.rb │ │ │ │ │ ├── cisco_vpn_3000_ftp_bypass.rb │ │ │ │ │ ├── f5_config.rb │ │ │ │ │ ├── juniper_config.rb │ │ │ │ │ ├── mikrotik_config.rb │ │ │ │ │ ├── ubiquiti_config.rb │ │ │ │ │ └── vyos_config.rb │ │ │ │ ├── officescan │ │ │ │ │ └── tmlisten_traversal.rb │ │ │ │ ├── oracle │ │ │ │ │ ├── ora_ntlm_stealer.rb │ │ │ │ │ ├── oracle_index_privesc.rb │ │ │ │ │ ├── oracle_login.rb │ │ │ │ │ ├── oracle_sql.rb │ │ │ │ │ ├── oraenum.rb │ │ │ │ │ ├── osb_execqr.rb │ │ │ │ │ ├── osb_execqr2.rb │ │ │ │ │ ├── osb_execqr3.rb │ │ │ │ │ ├── post_exploitation │ │ │ │ │ │ ├── win32exec.rb │ │ │ │ │ │ └── win32upload.rb │ │ │ │ │ ├── sid_brute.rb │ │ │ │ │ └── tnscmd.rb │ │ │ │ ├── pop2 │ │ │ │ │ └── uw_fileretrieval.rb │ │ │ │ ├── postgres │ │ │ │ │ ├── postgres_readfile.rb │ │ │ │ │ └── postgres_sql.rb │ │ │ │ ├── sap │ │ │ │ │ ├── cve_2020_6207_solman_rce.rb │ │ │ │ │ ├── cve_2020_6287_ws_add_user.rb │ │ │ │ │ ├── sap_configservlet_exec_noauth.rb │ │ │ │ │ ├── sap_igs_xmlchart_xxe.rb │ │ │ │ │ └── sap_mgmt_con_osexec.rb │ │ │ │ ├── scada │ │ │ │ │ ├── advantech_webaccess_dbvisitor_sqli.rb │ │ │ │ │ ├── ge_proficy_substitute_traversal.rb │ │ │ │ │ ├── modicon_command.rb │ │ │ │ │ ├── modicon_password_recovery.rb │ │ │ │ │ ├── modicon_stux_transfer.rb │ │ │ │ │ ├── moxa_credentials_recovery.rb │ │ │ │ │ ├── multi_cip_command.rb │ │ │ │ │ ├── pcom_command.rb │ │ │ │ │ ├── phoenix_command.rb │ │ │ │ │ └── yokogawa_bkbcopyd_client.rb │ │ │ │ ├── serverprotect │ │ │ │ │ └── file.rb │ │ │ │ ├── smb │ │ │ │ │ ├── check_dir_file.rb │ │ │ │ │ ├── delete_file.rb │ │ │ │ │ ├── download_file.rb │ │ │ │ │ ├── list_directory.rb │ │ │ │ │ ├── ms17_010_command.rb │ │ │ │ │ ├── psexec_ntdsgrab.rb │ │ │ │ │ ├── samba_symlink_traversal.rb │ │ │ │ │ ├── upload_file.rb │ │ │ │ │ └── webexec_command.rb │ │ │ │ ├── sunrpc │ │ │ │ │ └── solaris_kcms_readfile.rb │ │ │ │ ├── teradata │ │ │ │ │ └── teradata_odbc_sql.py │ │ │ │ ├── tftp │ │ │ │ │ └── tftp_transfer_util.rb │ │ │ │ ├── tikiwiki │ │ │ │ │ └── tikidblib.rb │ │ │ │ ├── upnp │ │ │ │ │ └── soap_portmapping.rb │ │ │ │ ├── vmware │ │ │ │ │ ├── poweroff_vm.rb │ │ │ │ │ ├── poweron_vm.rb │ │ │ │ │ ├── tag_vm.rb │ │ │ │ │ ├── terminate_esx_sessions.rb │ │ │ │ │ ├── vcenter_forge_saml_token.rb │ │ │ │ │ └── vcenter_offline_mdb_extract.rb │ │ │ │ ├── vnc │ │ │ │ │ └── realvnc_41_bypass.rb │ │ │ │ ├── vxworks │ │ │ │ │ ├── apple_airport_extreme_password.rb │ │ │ │ │ ├── dlink_i2eye_autoanswer.rb │ │ │ │ │ ├── wdbrpc_memory_dump.rb │ │ │ │ │ └── wdbrpc_reboot.rb │ │ │ │ ├── webmin │ │ │ │ │ ├── edit_html_fileaccess.rb │ │ │ │ │ └── file_disclosure.rb │ │ │ │ ├── wemo │ │ │ │ │ └── crockpot.rb │ │ │ │ └── zend │ │ │ │ │ └── java_bridge.rb │ │ │ ├── analyze │ │ │ │ ├── apply_pot.rb │ │ │ │ ├── crack_aix.rb │ │ │ │ ├── crack_databases.rb │ │ │ │ ├── crack_linux.rb │ │ │ │ ├── crack_mobile.rb │ │ │ │ ├── crack_osx.rb │ │ │ │ ├── crack_webapps.rb │ │ │ │ ├── crack_windows.rb │ │ │ │ └── modbus_zip.rb │ │ │ ├── bnat │ │ │ │ ├── bnat_router.rb │ │ │ │ └── bnat_scan.rb │ │ │ ├── client │ │ │ │ ├── hwbridge │ │ │ │ │ └── connect.rb │ │ │ │ ├── iec104 │ │ │ │ │ └── iec104.rb │ │ │ │ ├── mms │ │ │ │ │ └── send_mms.rb │ │ │ │ ├── sms │ │ │ │ │ └── send_text.rb │ │ │ │ ├── smtp │ │ │ │ │ └── emailer.rb │ │ │ │ └── telegram │ │ │ │ │ └── send_message.rb │ │ │ ├── cloud │ │ │ │ ├── aws │ │ │ │ │ ├── enum_ec2.rb │ │ │ │ │ ├── enum_iam.rb │ │ │ │ │ ├── enum_s3.rb │ │ │ │ │ └── enum_ssm.rb │ │ │ │ └── kubernetes │ │ │ │ │ └── enum_kubernetes.rb │ │ │ ├── crawler │ │ │ │ └── msfcrawler.rb │ │ │ ├── docx │ │ │ │ └── word_unc_injector.rb │ │ │ ├── dos │ │ │ │ ├── android │ │ │ │ │ └── android_stock_browser_iframe.rb │ │ │ │ ├── apple_ios │ │ │ │ │ └── webkit_backdrop_filter_blur.rb │ │ │ │ ├── cisco │ │ │ │ │ ├── cisco_7937g_dos.py │ │ │ │ │ ├── cisco_7937g_dos_reboot.py │ │ │ │ │ ├── ios_http_percentpercent.rb │ │ │ │ │ └── ios_telnet_rocem.rb │ │ │ │ ├── dhcp │ │ │ │ │ └── isc_dhcpd_clientid.rb │ │ │ │ ├── dns │ │ │ │ │ ├── bind_tkey.rb │ │ │ │ │ ├── bind_tsig.rb │ │ │ │ │ └── bind_tsig_badtime.rb │ │ │ │ ├── freebsd │ │ │ │ │ └── nfsd │ │ │ │ │ │ └── nfsd_mount.rb │ │ │ │ ├── ftp │ │ │ │ │ └── vsftpd_232.rb │ │ │ │ ├── hp │ │ │ │ │ └── data_protector_rds.rb │ │ │ │ ├── http │ │ │ │ │ ├── 3com_superstack_switch.rb │ │ │ │ │ ├── apache_commons_fileupload_dos.rb │ │ │ │ │ ├── apache_mod_isapi.rb │ │ │ │ │ ├── apache_range_dos.rb │ │ │ │ │ ├── apache_tomcat_transfer_encoding.rb │ │ │ │ │ ├── brother_debut_dos.rb │ │ │ │ │ ├── cable_haunt_websocket_dos.rb │ │ │ │ │ ├── canon_wireless_printer.rb │ │ │ │ │ ├── dell_openmanage_post.rb │ │ │ │ │ ├── f5_bigip_apm_max_sessions.rb │ │ │ │ │ ├── flexense_http_server_dos.rb │ │ │ │ │ ├── gzip_bomb_dos.rb │ │ │ │ │ ├── hashcollision_dos.rb │ │ │ │ │ ├── ibm_lotus_notes.rb │ │ │ │ │ ├── ibm_lotus_notes2.rb │ │ │ │ │ ├── marked_redos.rb │ │ │ │ │ ├── metasploit_httphandler_dos.rb │ │ │ │ │ ├── monkey_headers.rb │ │ │ │ │ ├── ms15_034_ulonglongadd.rb │ │ │ │ │ ├── nodejs_pipelining.rb │ │ │ │ │ ├── novell_file_reporter_heap_bof.rb │ │ │ │ │ ├── rails_action_view.rb │ │ │ │ │ ├── rails_json_float_dos.rb │ │ │ │ │ ├── slowloris.py │ │ │ │ │ ├── sonicwall_ssl_format.rb │ │ │ │ │ ├── squid_range_dos.rb │ │ │ │ │ ├── tautulli_shutdown_exec.rb │ │ │ │ │ ├── ua_parser_js_redos.rb │ │ │ │ │ ├── webkitplus.rb │ │ │ │ │ ├── webrick_regex.rb │ │ │ │ │ ├── wordpress_directory_traversal_dos.rb │ │ │ │ │ ├── wordpress_long_password_dos.rb │ │ │ │ │ ├── wordpress_xmlrpc_dos.rb │ │ │ │ │ └── ws_dos.rb │ │ │ │ ├── mdns │ │ │ │ │ └── avahi_portzero.rb │ │ │ │ ├── mirageos │ │ │ │ │ └── qubes_mirage_firewall_dos.rb │ │ │ │ ├── misc │ │ │ │ │ ├── dopewars.rb │ │ │ │ │ ├── ibm_sametime_webplayer_dos.rb │ │ │ │ │ ├── ibm_tsm_dos.rb │ │ │ │ │ └── memcached.rb │ │ │ │ ├── ntp │ │ │ │ │ └── ntpd_reserved_dos.rb │ │ │ │ ├── pptp │ │ │ │ │ └── ms02_063_pptp_dos.rb │ │ │ │ ├── rpc │ │ │ │ │ └── rpcbomb.rb │ │ │ │ ├── samba │ │ │ │ │ ├── lsa_addprivs_heap.rb │ │ │ │ │ ├── lsa_transnames_heap.rb │ │ │ │ │ └── read_nttrans_ea_list.rb │ │ │ │ ├── sap │ │ │ │ │ └── sap_soap_rfc_eps_delete_file.rb │ │ │ │ ├── scada │ │ │ │ │ ├── allen_bradley_pccc.rb │ │ │ │ │ ├── beckhoff_twincat.rb │ │ │ │ │ ├── d20_tftp_overflow.rb │ │ │ │ │ ├── igss9_dataserver.rb │ │ │ │ │ ├── siemens_siprotec4.rb │ │ │ │ │ └── yokogawa_logsvr.rb │ │ │ │ ├── smb │ │ │ │ │ └── smb_loris.rb │ │ │ │ ├── smtp │ │ │ │ │ └── sendmail_prescan.rb │ │ │ │ ├── solaris │ │ │ │ │ └── lpd │ │ │ │ │ │ └── cascade_delete.rb │ │ │ │ ├── ssl │ │ │ │ │ ├── dtls_changecipherspec.rb │ │ │ │ │ ├── dtls_fragment_overflow.rb │ │ │ │ │ └── openssl_aesni.rb │ │ │ │ ├── syslog │ │ │ │ │ └── rsyslog_long_tag.rb │ │ │ │ ├── tcp │ │ │ │ │ ├── claymore_dos.py │ │ │ │ │ ├── junos_tcp_opt.rb │ │ │ │ │ └── synflood.rb │ │ │ │ ├── upnp │ │ │ │ │ └── miniupnpd_dos.rb │ │ │ │ ├── windows │ │ │ │ │ ├── appian │ │ │ │ │ │ └── appian_bpm.rb │ │ │ │ │ ├── browser │ │ │ │ │ │ └── ms09_065_eot_integer.rb │ │ │ │ │ ├── ftp │ │ │ │ │ │ ├── filezilla_admin_user.rb │ │ │ │ │ │ ├── filezilla_server_port.rb │ │ │ │ │ │ ├── guildftp_cwdlist.rb │ │ │ │ │ │ ├── iis75_ftpd_iac_bof.rb │ │ │ │ │ │ ├── iis_list_exhaustion.rb │ │ │ │ │ │ ├── solarftp_user.rb │ │ │ │ │ │ ├── titan626_site.rb │ │ │ │ │ │ ├── vicftps50_list.rb │ │ │ │ │ │ ├── winftp230_nlst.rb │ │ │ │ │ │ ├── xmeasy560_nlst.rb │ │ │ │ │ │ └── xmeasy570_nlst.rb │ │ │ │ │ ├── games │ │ │ │ │ │ └── kaillera.rb │ │ │ │ │ ├── http │ │ │ │ │ │ ├── http_sys_accept_encoding_dos_cve_2021_31166.rb │ │ │ │ │ │ ├── ms10_065_ii6_asp_dos.rb │ │ │ │ │ │ └── pi3web_isapi.rb │ │ │ │ │ ├── llmnr │ │ │ │ │ │ └── ms11_030_dnsapi.rb │ │ │ │ │ ├── nat │ │ │ │ │ │ └── nat_helper.rb │ │ │ │ │ ├── rdp │ │ │ │ │ │ └── ms12_020_maxchannelids.rb │ │ │ │ │ ├── smb │ │ │ │ │ │ ├── ms05_047_pnp.rb │ │ │ │ │ │ ├── ms06_035_mailslot.rb │ │ │ │ │ │ ├── ms06_063_trans.rb │ │ │ │ │ │ ├── ms09_001_write.rb │ │ │ │ │ │ ├── ms09_050_smb2_negotiate_pidhigh.rb │ │ │ │ │ │ ├── ms09_050_smb2_session_logoff.rb │ │ │ │ │ │ ├── ms10_006_negotiate_response_loop.rb │ │ │ │ │ │ ├── ms10_054_queryfs_pool_overflow.rb │ │ │ │ │ │ ├── ms11_019_electbowser.rb │ │ │ │ │ │ ├── rras_vls_null_deref.rb │ │ │ │ │ │ └── vista_negotiate_stop.rb │ │ │ │ │ ├── smtp │ │ │ │ │ │ └── ms06_019_exchange.rb │ │ │ │ │ ├── ssh │ │ │ │ │ │ └── sysax_sshd_kexchange.rb │ │ │ │ │ └── tftp │ │ │ │ │ │ ├── pt360_write.rb │ │ │ │ │ │ └── solarwinds.rb │ │ │ │ └── wireshark │ │ │ │ │ ├── capwap.rb │ │ │ │ │ ├── chunked.rb │ │ │ │ │ ├── cldap.rb │ │ │ │ │ └── ldap.rb │ │ │ ├── example.py │ │ │ ├── example.rb │ │ │ ├── fileformat │ │ │ │ ├── badpdf.rb │ │ │ │ ├── multidrop.rb │ │ │ │ └── odt_badodt.rb │ │ │ ├── fuzzers │ │ │ │ ├── dns │ │ │ │ │ └── dns_fuzzer.rb │ │ │ │ ├── ftp │ │ │ │ │ ├── client_ftp.rb │ │ │ │ │ └── ftp_pre_post.rb │ │ │ │ ├── http │ │ │ │ │ ├── http_form_field.rb │ │ │ │ │ ├── http_get_uri_long.rb │ │ │ │ │ └── http_get_uri_strings.rb │ │ │ │ ├── ntp │ │ │ │ │ └── ntp_protocol_fuzzer.rb │ │ │ │ ├── smb │ │ │ │ │ ├── smb2_negotiate_corrupt.rb │ │ │ │ │ ├── smb_create_pipe.rb │ │ │ │ │ ├── smb_create_pipe_corrupt.rb │ │ │ │ │ ├── smb_negotiate_corrupt.rb │ │ │ │ │ ├── smb_ntlm1_login_corrupt.rb │ │ │ │ │ ├── smb_tree_connect.rb │ │ │ │ │ └── smb_tree_connect_corrupt.rb │ │ │ │ ├── smtp │ │ │ │ │ └── smtp_fuzzer.rb │ │ │ │ ├── ssh │ │ │ │ │ ├── ssh_kexinit_corrupt.rb │ │ │ │ │ ├── ssh_version_15.rb │ │ │ │ │ ├── ssh_version_2.rb │ │ │ │ │ └── ssh_version_corrupt.rb │ │ │ │ └── tds │ │ │ │ │ ├── tds_login_corrupt.rb │ │ │ │ │ └── tds_login_username.rb │ │ │ ├── gather │ │ │ │ ├── adobe_coldfusion_fileread_cve_2023_26360.rb │ │ │ │ ├── advantech_webaccess_creds.rb │ │ │ │ ├── alienvault_iso27001_sqli.rb │ │ │ │ ├── alienvault_newpolicyform_sqli.rb │ │ │ │ ├── android_browser_file_theft.rb │ │ │ │ ├── android_browser_new_tab_cookie_theft.rb │ │ │ │ ├── android_htmlfileprovider.rb │ │ │ │ ├── android_object_tag_webview_uxss.rb │ │ │ │ ├── android_stock_browser_uxss.rb │ │ │ │ ├── apache_rave_creds.rb │ │ │ │ ├── apple_safari_ftp_url_cookie_theft.rb │ │ │ │ ├── apple_safari_webarchive_uxss.rb │ │ │ │ ├── asterisk_creds.rb │ │ │ │ ├── avtech744_dvr_accounts.rb │ │ │ │ ├── billquick_txtid_sqli.rb │ │ │ │ ├── browser_info.rb │ │ │ │ ├── browser_lanipleak.rb │ │ │ │ ├── c2s_dvr_password_disclosure.rb │ │ │ │ ├── censys_search.rb │ │ │ │ ├── cerberus_helpdesk_hash_disclosure.rb │ │ │ │ ├── checkpoint_hostname.rb │ │ │ │ ├── chrome_debugger.rb │ │ │ │ ├── cisco_pvc2300_download_config.rb │ │ │ │ ├── cisco_rv320_config.rb │ │ │ │ ├── citrix_published_applications.rb │ │ │ │ ├── citrix_published_bruteforce.rb │ │ │ │ ├── cloud_lookup.rb │ │ │ │ ├── coldfusion_pwd_props.rb │ │ │ │ ├── corpwatch_lookup_id.rb │ │ │ │ ├── corpwatch_lookup_name.rb │ │ │ │ ├── cve_2021_27850_apache_tapestry_hmac_key.rb │ │ │ │ ├── d20pass.rb │ │ │ │ ├── darkcomet_filedownloader.rb │ │ │ │ ├── dolibarr_creds_sqli.rb │ │ │ │ ├── doliwamp_traversal_creds.rb │ │ │ │ ├── drupal_openid_xxe.rb │ │ │ │ ├── eaton_nsm_creds.rb │ │ │ │ ├── emc_cta_xxe.rb │ │ │ │ ├── enum_dns.rb │ │ │ │ ├── eventlog_cred_disclosure.rb │ │ │ │ ├── exchange_proxylogon_collector.rb │ │ │ │ ├── external_ip.rb │ │ │ │ ├── f5_bigip_cookie_disclosure.rb │ │ │ │ ├── firefox_pdfjs_file_theft.rb │ │ │ │ ├── flash_rosetta_jsonp_url_disclosure.rb │ │ │ │ ├── fortios_vpnssl_traversal_creds_leak.rb │ │ │ │ ├── get_user_spns.py │ │ │ │ ├── gitlab_authenticated_subgroups_file_read.rb │ │ │ │ ├── grandstream_ucm62xx_sql_account_guess.rb │ │ │ │ ├── hikvision_info_disclosure_cve_2017_7921.rb │ │ │ │ ├── hp_enum_perfd.rb │ │ │ │ ├── hp_snac_domain_creds.rb │ │ │ │ ├── http_pdf_authors.rb │ │ │ │ ├── huawei_wifi_info.rb │ │ │ │ ├── ibm_bigfix_sites_packages_enum.rb │ │ │ │ ├── ibm_sametime_enumerate_users.rb │ │ │ │ ├── ibm_sametime_room_brute.rb │ │ │ │ ├── ibm_sametime_version.rb │ │ │ │ ├── ie_sandbox_findfiles.rb │ │ │ │ ├── ie_uxss_injection.rb │ │ │ │ ├── impersonate_ssl.rb │ │ │ │ ├── ipcamera_password_disclosure.rb │ │ │ │ ├── java_rmi_registry.rb │ │ │ │ ├── jenkins_cred_recovery.rb │ │ │ │ ├── jetty_web_inf_disclosure.rb │ │ │ │ ├── joomla_com_realestatemanager_sqli.rb │ │ │ │ ├── joomla_contenthistory_sqli.rb │ │ │ │ ├── joomla_weblinks_sqli.rb │ │ │ │ ├── kerberos_enumusers.rb │ │ │ │ ├── konica_minolta_pwd_extract.rb │ │ │ │ ├── lansweeper_collector.rb │ │ │ │ ├── ldap_esc_vulnerable_cert_finder.rb │ │ │ │ ├── ldap_hashdump.rb │ │ │ │ ├── ldap_query.rb │ │ │ │ ├── manageengine_adaudit_plus_xnode_enum.rb │ │ │ │ ├── manageengine_datasecurity_plus_xnode_enum.rb │ │ │ │ ├── mantisbt_admin_sqli.rb │ │ │ │ ├── mcafee_epo_xxe.rb │ │ │ │ ├── memcached_extractor.rb │ │ │ │ ├── microweber_lfi.rb │ │ │ │ ├── mikrotik_winbox_fileread.py │ │ │ │ ├── mongodb_js_inject_collection_enum.rb │ │ │ │ ├── ms14_052_xmldom.rb │ │ │ │ ├── mybb_db_fingerprint.rb │ │ │ │ ├── natpmp_external_address.rb │ │ │ │ ├── netgear_password_disclosure.rb │ │ │ │ ├── nis_bootparamd_domain.rb │ │ │ │ ├── nis_ypserv_map.rb │ │ │ │ ├── nuuo_cms_bruteforce.rb │ │ │ │ ├── nuuo_cms_file_download.rb │ │ │ │ ├── oats_downloadservlet_traversal.rb │ │ │ │ ├── office365userenum.py │ │ │ │ ├── opennms_xxe.rb │ │ │ │ ├── peplink_bauth_sqli.rb │ │ │ │ ├── pimcore_creds_sqli.rb │ │ │ │ ├── piwigo_cve_2023_26876.rb │ │ │ │ ├── pulse_secure_file_disclosure.rb │ │ │ │ ├── qnap_backtrace_admin_hash.rb │ │ │ │ ├── qnap_lfi.rb │ │ │ │ ├── rails_doubletap_file_read.rb │ │ │ │ ├── redis_extractor.rb │ │ │ │ ├── safari_file_url_navigation.rb │ │ │ │ ├── saltstack_salt_root_key.rb │ │ │ │ ├── samsung_browser_sop_bypass.rb │ │ │ │ ├── search_email_collector.rb │ │ │ │ ├── searchengine_subdomains_collector.rb │ │ │ │ ├── shodan_honeyscore.rb │ │ │ │ ├── shodan_host.rb │ │ │ │ ├── shodan_search.rb │ │ │ │ ├── snare_registry.rb │ │ │ │ ├── solarwinds_orion_sqli.rb │ │ │ │ ├── ssllabs_scan.rb │ │ │ │ ├── suite_crm_export_sqli.rb │ │ │ │ ├── teamtalk_creds.rb │ │ │ │ ├── tplink_archer_c7_traversal.rb │ │ │ │ ├── trackit_sql_domain_creds.rb │ │ │ │ ├── vbulletin_getindexablecontent_sqli.rb │ │ │ │ ├── vbulletin_vote_sqli.rb │ │ │ │ ├── vmware_vcenter_vmdir_ldap.rb │ │ │ │ ├── windows_deployment_services_shares.rb │ │ │ │ ├── windows_secrets_dump.rb │ │ │ │ ├── wp_all_in_one_migration_export.rb │ │ │ │ ├── wp_bookingpress_category_services_sqli.rb │ │ │ │ ├── wp_ultimate_csv_importer_user_extract.rb │ │ │ │ ├── wp_w3_total_cache_hash_extract.rb │ │ │ │ ├── xbmc_traversal.rb │ │ │ │ ├── xerox_pwd_extract.rb │ │ │ │ ├── xerox_workcentre_5xxx_ldap.rb │ │ │ │ ├── xymon_info.rb │ │ │ │ ├── zabbix_toggleids_sqli.rb │ │ │ │ ├── zookeeper_info_disclosure.rb │ │ │ │ └── zoomeye_search.rb │ │ │ ├── parser │ │ │ │ └── unattend.rb │ │ │ ├── pdf │ │ │ │ └── foxit │ │ │ │ │ └── authbypass.rb │ │ │ ├── scanner │ │ │ │ ├── acpp │ │ │ │ │ └── login.rb │ │ │ │ ├── afp │ │ │ │ │ ├── afp_login.rb │ │ │ │ │ └── afp_server_info.rb │ │ │ │ ├── amqp │ │ │ │ │ ├── amqp_login.rb │ │ │ │ │ └── amqp_version.rb │ │ │ │ ├── backdoor │ │ │ │ │ └── energizer_duo_detect.rb │ │ │ │ ├── chargen │ │ │ │ │ └── chargen_probe.rb │ │ │ │ ├── couchdb │ │ │ │ │ ├── couchdb_enum.rb │ │ │ │ │ └── couchdb_login.rb │ │ │ │ ├── db2 │ │ │ │ │ ├── db2_auth.rb │ │ │ │ │ ├── db2_version.rb │ │ │ │ │ └── discovery.rb │ │ │ │ ├── dcerpc │ │ │ │ │ ├── dfscoerce.rb │ │ │ │ │ ├── endpoint_mapper.rb │ │ │ │ │ ├── hidden.rb │ │ │ │ │ ├── management.rb │ │ │ │ │ ├── petitpotam.rb │ │ │ │ │ ├── tcp_dcerpc_auditor.rb │ │ │ │ │ └── windows_deployment_services.rb │ │ │ │ ├── dect │ │ │ │ │ ├── call_scanner.rb │ │ │ │ │ └── station_scanner.rb │ │ │ │ ├── discovery │ │ │ │ │ ├── arp_sweep.rb │ │ │ │ │ ├── empty_udp.rb │ │ │ │ │ ├── ipv6_multicast_ping.rb │ │ │ │ │ ├── ipv6_neighbor.rb │ │ │ │ │ ├── ipv6_neighbor_router_advertisement.rb │ │ │ │ │ ├── udp_probe.rb │ │ │ │ │ └── udp_sweep.rb │ │ │ │ ├── dlsw │ │ │ │ │ └── dlsw_leak_capture.rb │ │ │ │ ├── dns │ │ │ │ │ └── dns_amp.rb │ │ │ │ ├── elasticsearch │ │ │ │ │ └── indices_enum.rb │ │ │ │ ├── emc │ │ │ │ │ ├── alphastor_devicemanager.rb │ │ │ │ │ └── alphastor_librarymanager.rb │ │ │ │ ├── etcd │ │ │ │ │ ├── open_key_scanner.rb │ │ │ │ │ └── version.rb │ │ │ │ ├── finger │ │ │ │ │ └── finger_users.rb │ │ │ │ ├── ftp │ │ │ │ │ ├── anonymous.rb │ │ │ │ │ ├── bison_ftp_traversal.rb │ │ │ │ │ ├── colorado_ftp_traversal.rb │ │ │ │ │ ├── easy_file_sharing_ftp.rb │ │ │ │ │ ├── ftp_login.rb │ │ │ │ │ ├── ftp_version.rb │ │ │ │ │ ├── konica_ftp_traversal.rb │ │ │ │ │ ├── pcman_ftp_traversal.rb │ │ │ │ │ └── titanftp_xcrc_traversal.rb │ │ │ │ ├── gopher │ │ │ │ │ └── gopher_gophermap.rb │ │ │ │ ├── gprs │ │ │ │ │ └── gtp_echo.rb │ │ │ │ ├── h323 │ │ │ │ │ └── h323_version.rb │ │ │ │ ├── http │ │ │ │ │ ├── a10networks_ax_directory_traversal.rb │ │ │ │ │ ├── accellion_fta_statecode_file_read.rb │ │ │ │ │ ├── adobe_xml_inject.rb │ │ │ │ │ ├── advantech_webaccess_login.rb │ │ │ │ │ ├── allegro_rompager_misfortune_cookie.rb │ │ │ │ │ ├── apache_activemq_source_disclosure.rb │ │ │ │ │ ├── apache_activemq_traversal.rb │ │ │ │ │ ├── apache_flink_jobmanager_traversal.rb │ │ │ │ │ ├── apache_mod_cgi_bash_env.rb │ │ │ │ │ ├── apache_nifi_login.rb │ │ │ │ │ ├── apache_nifi_version.rb │ │ │ │ │ ├── apache_normalize_path.rb │ │ │ │ │ ├── apache_optionsbleed.rb │ │ │ │ │ ├── apache_userdir_enum.rb │ │ │ │ │ ├── appletv_login.rb │ │ │ │ │ ├── atlassian_crowd_fileaccess.rb │ │ │ │ │ ├── axis_local_file_include.rb │ │ │ │ │ ├── axis_login.rb │ │ │ │ │ ├── azure_ad_login.rb │ │ │ │ │ ├── backup_file.rb │ │ │ │ │ ├── barracuda_directory_traversal.rb │ │ │ │ │ ├── bavision_cam_login.rb │ │ │ │ │ ├── binom3_login_config_pass_dump.rb │ │ │ │ │ ├── bitweaver_overlay_type_traversal.rb │ │ │ │ │ ├── blind_sql_query.rb │ │ │ │ │ ├── bmc_trackit_passwd_reset.rb │ │ │ │ │ ├── brute_dirs.rb │ │ │ │ │ ├── buffalo_login.rb │ │ │ │ │ ├── buildmaster_login.rb │ │ │ │ │ ├── caidao_bruteforce_login.rb │ │ │ │ │ ├── canon_wireless.rb │ │ │ │ │ ├── cassandra_web_file_read.rb │ │ │ │ │ ├── cert.rb │ │ │ │ │ ├── cgit_traversal.rb │ │ │ │ │ ├── chef_webui_login.rb │ │ │ │ │ ├── chromecast_webserver.rb │ │ │ │ │ ├── chromecast_wifi.rb │ │ │ │ │ ├── cisco_asa_asdm_bruteforce.rb │ │ │ │ │ ├── cisco_asa_clientless_vpn.rb │ │ │ │ │ ├── cisco_device_manager.rb │ │ │ │ │ ├── cisco_directory_traversal.rb │ │ │ │ │ ├── cisco_firepower_download.rb │ │ │ │ │ ├── cisco_firepower_login.rb │ │ │ │ │ ├── cisco_ios_auth_bypass.rb │ │ │ │ │ ├── cisco_ironport_enum.rb │ │ │ │ │ ├── cisco_nac_manager_traversal.rb │ │ │ │ │ ├── cisco_ssl_vpn.rb │ │ │ │ │ ├── cisco_ssl_vpn_priv_esc.rb │ │ │ │ │ ├── citrix_dir_traversal.rb │ │ │ │ │ ├── clansphere_traversal.rb │ │ │ │ │ ├── cnpilot_r_web_login_loot.rb │ │ │ │ │ ├── coldfusion_locale_traversal.rb │ │ │ │ │ ├── coldfusion_version.rb │ │ │ │ │ ├── concrete5_member_list.rb │ │ │ │ │ ├── copy_of_file.rb │ │ │ │ │ ├── crawler.rb │ │ │ │ │ ├── dell_idrac.rb │ │ │ │ │ ├── dicoogle_traversal.rb │ │ │ │ │ ├── dir_listing.rb │ │ │ │ │ ├── dir_scanner.rb │ │ │ │ │ ├── dir_webdav_unicode_bypass.rb │ │ │ │ │ ├── directadmin_login.rb │ │ │ │ │ ├── dlink_dir_300_615_http_login.rb │ │ │ │ │ ├── dlink_dir_615h_http_login.rb │ │ │ │ │ ├── dlink_dir_session_cgi_http_login.rb │ │ │ │ │ ├── dlink_user_agent_backdoor.rb │ │ │ │ │ ├── dnalims_file_retrieve.rb │ │ │ │ │ ├── docker_version.rb │ │ │ │ │ ├── dolibarr_16_contact_dump.rb │ │ │ │ │ ├── dolibarr_login.rb │ │ │ │ │ ├── drupal_views_user_enum.rb │ │ │ │ │ ├── ektron_cms400net.rb │ │ │ │ │ ├── elasticsearch_traversal.rb │ │ │ │ │ ├── emby_ssrf_scanner.rb │ │ │ │ │ ├── emby_version_ssrf.rb │ │ │ │ │ ├── enum_wayback.rb │ │ │ │ │ ├── epmp1000_dump_config.rb │ │ │ │ │ ├── epmp1000_dump_hashes.rb │ │ │ │ │ ├── epmp1000_get_chart_cmd_exec.rb │ │ │ │ │ ├── epmp1000_ping_cmd_exec.rb │ │ │ │ │ ├── epmp1000_reset_pass.rb │ │ │ │ │ ├── epmp1000_web_login.rb │ │ │ │ │ ├── error_sql_injection.rb │ │ │ │ │ ├── es_file_explorer_open_port.rb │ │ │ │ │ ├── etherpad_duo_login.rb │ │ │ │ │ ├── exchange_proxylogon.rb │ │ │ │ │ ├── exchange_web_server_pushsubscription.rb │ │ │ │ │ ├── f5_bigip_virtual_server.rb │ │ │ │ │ ├── f5_mgmt_scanner.rb │ │ │ │ │ ├── file_same_name_dir.rb │ │ │ │ │ ├── files_dir.rb │ │ │ │ │ ├── fortimail_login_bypass_detection.rb │ │ │ │ │ ├── fortinet_ssl_vpn.rb │ │ │ │ │ ├── frontpage_credential_dump.rb │ │ │ │ │ ├── frontpage_login.rb │ │ │ │ │ ├── gavazzi_em_login_loot.rb │ │ │ │ │ ├── git_scanner.rb │ │ │ │ │ ├── gitlab_graphql_user_enum.rb │ │ │ │ │ ├── gitlab_login.rb │ │ │ │ │ ├── gitlab_user_enum.rb │ │ │ │ │ ├── glassfish_login.rb │ │ │ │ │ ├── glassfish_traversal.rb │ │ │ │ │ ├── goahead_traversal.rb │ │ │ │ │ ├── grafana_plugin_traversal.rb │ │ │ │ │ ├── groupwise_agents_http_traversal.rb │ │ │ │ │ ├── host_header_injection.rb │ │ │ │ │ ├── hp_imc_bims_downloadservlet_traversal.rb │ │ │ │ │ ├── hp_imc_faultdownloadservlet_traversal.rb │ │ │ │ │ ├── hp_imc_ictdownloadservlet_traversal.rb │ │ │ │ │ ├── hp_imc_reportimgservlt_traversal.rb │ │ │ │ │ ├── hp_imc_som_file_download.rb │ │ │ │ │ ├── hp_sitescope_getfileinternal_fileaccess.rb │ │ │ │ │ ├── hp_sitescope_getsitescopeconfiguration.rb │ │ │ │ │ ├── hp_sitescope_loadfilecontent_fileaccess.rb │ │ │ │ │ ├── hp_sys_mgmt_login.rb │ │ │ │ │ ├── http_header.rb │ │ │ │ │ ├── http_hsts.rb │ │ │ │ │ ├── http_login.rb │ │ │ │ │ ├── http_put.rb │ │ │ │ │ ├── http_sickrage_password_leak.rb │ │ │ │ │ ├── http_traversal.rb │ │ │ │ │ ├── http_version.rb │ │ │ │ │ ├── httpbl_lookup.rb │ │ │ │ │ ├── httpdasm_directory_traversal.rb │ │ │ │ │ ├── icinga_static_library_file_directory_traversal.rb │ │ │ │ │ ├── iis_internal_ip.rb │ │ │ │ │ ├── iis_shortname_scanner.rb │ │ │ │ │ ├── influxdb_enum.rb │ │ │ │ │ ├── infovista_enum.rb │ │ │ │ │ ├── intel_amt_digest_bypass.rb │ │ │ │ │ ├── ipboard_login.rb │ │ │ │ │ ├── jboss_status.rb │ │ │ │ │ ├── jboss_vulnscan.rb │ │ │ │ │ ├── jenkins_command.rb │ │ │ │ │ ├── jenkins_enum.rb │ │ │ │ │ ├── jenkins_login.rb │ │ │ │ │ ├── jira_user_enum.rb │ │ │ │ │ ├── joomla_api_improper_access_checks.rb │ │ │ │ │ ├── joomla_bruteforce_login.rb │ │ │ │ │ ├── joomla_ecommercewd_sqli_scanner.rb │ │ │ │ │ ├── joomla_gallerywd_sqli_scanner.rb │ │ │ │ │ ├── joomla_pages.rb │ │ │ │ │ ├── joomla_plugins.rb │ │ │ │ │ ├── joomla_version.rb │ │ │ │ │ ├── jupyter_login.rb │ │ │ │ │ ├── kodi_traversal.rb │ │ │ │ │ ├── limesurvey_zip_traversals.rb │ │ │ │ │ ├── linknat_vos_traversal.rb │ │ │ │ │ ├── linksys_e1500_traversal.rb │ │ │ │ │ ├── litespeed_source_disclosure.rb │ │ │ │ │ ├── log4shell_scanner.rb │ │ │ │ │ ├── lucky_punch.rb │ │ │ │ │ ├── majordomo2_directory_traversal.rb │ │ │ │ │ ├── manageengine_desktop_central_login.rb │ │ │ │ │ ├── manageengine_deviceexpert_traversal.rb │ │ │ │ │ ├── manageengine_deviceexpert_user_creds.rb │ │ │ │ │ ├── manageengine_securitymanager_traversal.rb │ │ │ │ │ ├── mediawiki_svg_fileaccess.rb │ │ │ │ │ ├── meteocontrol_weblog_extractadmin.rb │ │ │ │ │ ├── mod_negotiation_brute.rb │ │ │ │ │ ├── mod_negotiation_scanner.rb │ │ │ │ │ ├── ms09_020_webdav_unicode_bypass.rb │ │ │ │ │ ├── ms15_034_http_sys_memory_dump.rb │ │ │ │ │ ├── mybook_live_login.rb │ │ │ │ │ ├── nagios_xi_scanner.rb │ │ │ │ │ ├── netdecision_traversal.rb │ │ │ │ │ ├── netgear_sph200d_traversal.rb │ │ │ │ │ ├── nginx_source_disclosure.rb │ │ │ │ │ ├── novell_file_reporter_fsfui_fileaccess.rb │ │ │ │ │ ├── novell_file_reporter_srs_fileaccess.rb │ │ │ │ │ ├── novell_mdm_creds.rb │ │ │ │ │ ├── ntlm_info_enumeration.rb │ │ │ │ │ ├── octopusdeploy_login.rb │ │ │ │ │ ├── onion_omega2_login.py │ │ │ │ │ ├── open_proxy.rb │ │ │ │ │ ├── openmind_messageos_login.rb │ │ │ │ │ ├── options.rb │ │ │ │ │ ├── oracle_demantra_database_credentials_leak.rb │ │ │ │ │ ├── oracle_demantra_file_retrieval.rb │ │ │ │ │ ├── oracle_ilom_login.rb │ │ │ │ │ ├── owa_ews_login.rb │ │ │ │ │ ├── owa_iis_internal_ip.rb │ │ │ │ │ ├── owa_login.rb │ │ │ │ │ ├── phpmyadmin_login.rb │ │ │ │ │ ├── pocketpad_login.rb │ │ │ │ │ ├── prev_dir_same_name_file.rb │ │ │ │ │ ├── radware_appdirector_enum.rb │ │ │ │ │ ├── rails_json_yaml_scanner.rb │ │ │ │ │ ├── rails_mass_assignment.rb │ │ │ │ │ ├── rails_xml_yaml_scanner.rb │ │ │ │ │ ├── rdp_web_login.py │ │ │ │ │ ├── replace_ext.rb │ │ │ │ │ ├── rewrite_proxy_bypass.rb │ │ │ │ │ ├── rfcode_reader_enum.rb │ │ │ │ │ ├── rips_traversal.rb │ │ │ │ │ ├── riverbed_steelhead_vcx_file_read.rb │ │ │ │ │ ├── robots_txt.rb │ │ │ │ │ ├── rpyc_rce.py │ │ │ │ │ ├── s40_traversal.rb │ │ │ │ │ ├── sap_businessobjects_user_brute.rb │ │ │ │ │ ├── sap_businessobjects_user_brute_web.rb │ │ │ │ │ ├── sap_businessobjects_user_enum.rb │ │ │ │ │ ├── sap_businessobjects_version_enum.rb │ │ │ │ │ ├── scraper.rb │ │ │ │ │ ├── sentry_cdu_enum.rb │ │ │ │ │ ├── servicedesk_plus_traversal.rb │ │ │ │ │ ├── sevone_enum.rb │ │ │ │ │ ├── simple_webserver_traversal.rb │ │ │ │ │ ├── smt_ipmi_49152_exposure.rb │ │ │ │ │ ├── smt_ipmi_cgi_scanner.rb │ │ │ │ │ ├── smt_ipmi_static_cert_scanner.rb │ │ │ │ │ ├── smt_ipmi_url_redirect_traversal.rb │ │ │ │ │ ├── soap_xml.rb │ │ │ │ │ ├── sockso_traversal.rb │ │ │ │ │ ├── softing_sis_login.rb │ │ │ │ │ ├── splunk_web_login.rb │ │ │ │ │ ├── springcloud_directory_traversal.rb │ │ │ │ │ ├── springcloud_traversal.rb │ │ │ │ │ ├── squid_pivot_scanning.rb │ │ │ │ │ ├── squiz_matrix_user_enum.rb │ │ │ │ │ ├── support_center_plus_directory_traversal.rb │ │ │ │ │ ├── surgenews_user_creds.rb │ │ │ │ │ ├── svn_scanner.rb │ │ │ │ │ ├── svn_wcdb_scanner.rb │ │ │ │ │ ├── sybase_easerver_traversal.rb │ │ │ │ │ ├── symantec_brightmail_ldapcreds.rb │ │ │ │ │ ├── symantec_brightmail_logfile.rb │ │ │ │ │ ├── symantec_web_gateway_login.rb │ │ │ │ │ ├── syncovery_linux_login.rb │ │ │ │ │ ├── syncovery_linux_token_cve_2022_36536.rb │ │ │ │ │ ├── synology_forget_passwd_user_enum.rb │ │ │ │ │ ├── thinvnc_traversal.rb │ │ │ │ │ ├── titan_ftp_admin_pwd.rb │ │ │ │ │ ├── title.rb │ │ │ │ │ ├── tomcat_enum.rb │ │ │ │ │ ├── tomcat_mgr_login.rb │ │ │ │ │ ├── totaljs_traversal.rb │ │ │ │ │ ├── tplink_traversal_noauth.rb │ │ │ │ │ ├── trace.rb │ │ │ │ │ ├── trace_axd.rb │ │ │ │ │ ├── tvt_nvms_traversal.rb │ │ │ │ │ ├── typo3_bruteforce.rb │ │ │ │ │ ├── vcms_login.rb │ │ │ │ │ ├── verb_auth_bypass.rb │ │ │ │ │ ├── vhost_scanner.rb │ │ │ │ │ ├── vicidial_multiple_sqli.rb │ │ │ │ │ ├── wangkongbao_traversal.rb │ │ │ │ │ ├── web_vulndb.rb │ │ │ │ │ ├── webdav_internal_ip.rb │ │ │ │ │ ├── webdav_scanner.rb │ │ │ │ │ ├── webdav_website_content.rb │ │ │ │ │ ├── webpagetest_traversal.rb │ │ │ │ │ ├── wildfly_traversal.rb │ │ │ │ │ ├── wordpress_content_injection.rb │ │ │ │ │ ├── wordpress_cp_calendar_sqli.rb │ │ │ │ │ ├── wordpress_ghost_scanner.rb │ │ │ │ │ ├── wordpress_login_enum.rb │ │ │ │ │ ├── wordpress_multicall_creds.rb │ │ │ │ │ ├── wordpress_pingback_access.rb │ │ │ │ │ ├── wordpress_scanner.rb │ │ │ │ │ ├── wordpress_xmlrpc_login.rb │ │ │ │ │ ├── wowza_streaming_engine_manager_login.rb │ │ │ │ │ ├── wp_abandoned_cart_sqli.rb │ │ │ │ │ ├── wp_arbitrary_file_deletion.rb │ │ │ │ │ ├── wp_bulletproofsecurity_backups.rb │ │ │ │ │ ├── wp_chopslider_id_sqli.rb │ │ │ │ │ ├── wp_contus_video_gallery_sqli.rb │ │ │ │ │ ├── wp_dukapress_file_read.rb │ │ │ │ │ ├── wp_duplicator_file_read.rb │ │ │ │ │ ├── wp_easy_wp_smtp.rb │ │ │ │ │ ├── wp_email_sub_news_sqli.rb │ │ │ │ │ ├── wp_gimedia_library_file_read.rb │ │ │ │ │ ├── wp_learnpress_sqli.rb │ │ │ │ │ ├── wp_loginizer_log_sqli.rb │ │ │ │ │ ├── wp_mobile_pack_info_disclosure.rb │ │ │ │ │ ├── wp_mobileedition_file_read.rb │ │ │ │ │ ├── wp_modern_events_calendar_sqli.rb │ │ │ │ │ ├── wp_nextgen_galley_file_read.rb │ │ │ │ │ ├── wp_paid_membership_pro_code_sqli.rb │ │ │ │ │ ├── wp_registrationmagic_sqli.rb │ │ │ │ │ ├── wp_secure_copy_content_protection_sqli.rb │ │ │ │ │ ├── wp_simple_backup_file_read.rb │ │ │ │ │ ├── wp_subscribe_comments_file_read.rb │ │ │ │ │ ├── wp_total_upkeep_downloader.rb │ │ │ │ │ ├── wp_woocommerce_payments_add_user.rb │ │ │ │ │ ├── wp_wps_hide_login_revealer.rb │ │ │ │ │ ├── xpath.rb │ │ │ │ │ ├── yaws_traversal.rb │ │ │ │ │ ├── zabbix_login.rb │ │ │ │ │ ├── zenload_balancer_traversal.rb │ │ │ │ │ ├── zenworks_assetmanagement_fileaccess.rb │ │ │ │ │ └── zenworks_assetmanagement_getconfig.rb │ │ │ │ ├── ike │ │ │ │ │ └── cisco_ike_benigncertain.rb │ │ │ │ ├── imap │ │ │ │ │ └── imap_version.rb │ │ │ │ ├── ip │ │ │ │ │ └── ipidseq.rb │ │ │ │ ├── ipmi │ │ │ │ │ ├── ipmi_cipher_zero.rb │ │ │ │ │ ├── ipmi_dumphashes.rb │ │ │ │ │ └── ipmi_version.rb │ │ │ │ ├── jenkins │ │ │ │ │ └── jenkins_udp_broadcast_enum.rb │ │ │ │ ├── kademlia │ │ │ │ │ └── server_info.rb │ │ │ │ ├── kerberos │ │ │ │ │ └── kerberos_login.rb │ │ │ │ ├── llmnr │ │ │ │ │ └── query.rb │ │ │ │ ├── lotus │ │ │ │ │ ├── lotus_domino_hashes.rb │ │ │ │ │ ├── lotus_domino_login.rb │ │ │ │ │ └── lotus_domino_version.rb │ │ │ │ ├── mdns │ │ │ │ │ └── query.rb │ │ │ │ ├── memcached │ │ │ │ │ ├── memcached_amp.rb │ │ │ │ │ └── memcached_udp_version.rb │ │ │ │ ├── misc │ │ │ │ │ ├── cctv_dvr_login.rb │ │ │ │ │ ├── cisco_smart_install.rb │ │ │ │ │ ├── clamav_control.rb │ │ │ │ │ ├── dahua_dvr_auth_bypass.rb │ │ │ │ │ ├── dvr_config_disclosure.rb │ │ │ │ │ ├── easycafe_server_fileaccess.rb │ │ │ │ │ ├── freeswitch_event_socket_login.rb │ │ │ │ │ ├── ib_service_mgr_info.rb │ │ │ │ │ ├── ibm_mq_channel_brute.rb │ │ │ │ │ ├── ibm_mq_enum.rb │ │ │ │ │ ├── ibm_mq_login.rb │ │ │ │ │ ├── java_jmx_server.rb │ │ │ │ │ ├── java_rmi_server.rb │ │ │ │ │ ├── oki_scanner.rb │ │ │ │ │ ├── poisonivy_control_scanner.rb │ │ │ │ │ ├── raysharp_dvr_passwords.rb │ │ │ │ │ ├── rocketmq_version.rb │ │ │ │ │ ├── rosewill_rxs3211_passwords.rb │ │ │ │ │ ├── sercomm_backdoor_scanner.rb │ │ │ │ │ ├── sunrpc_portmapper.rb │ │ │ │ │ └── zenworks_preboot_fileaccess.rb │ │ │ │ ├── mongodb │ │ │ │ │ └── mongodb_login.rb │ │ │ │ ├── motorola │ │ │ │ │ └── timbuktu_udp.rb │ │ │ │ ├── mqtt │ │ │ │ │ └── connect.rb │ │ │ │ ├── msf │ │ │ │ │ ├── msf_rpc_login.rb │ │ │ │ │ └── msf_web_login.rb │ │ │ │ ├── msmail │ │ │ │ │ ├── exchange_enum.go │ │ │ │ │ ├── host_id.go │ │ │ │ │ ├── onprem_enum.go │ │ │ │ │ └── shared │ │ │ │ │ │ └── src │ │ │ │ │ │ └── msmail │ │ │ │ │ │ └── msmail.go │ │ │ │ ├── mssql │ │ │ │ │ ├── mssql_hashdump.rb │ │ │ │ │ ├── mssql_login.rb │ │ │ │ │ ├── mssql_ping.rb │ │ │ │ │ └── mssql_schemadump.rb │ │ │ │ ├── mysql │ │ │ │ │ ├── mysql_authbypass_hashdump.rb │ │ │ │ │ ├── mysql_file_enum.rb │ │ │ │ │ ├── mysql_hashdump.rb │ │ │ │ │ ├── mysql_login.rb │ │ │ │ │ ├── mysql_schemadump.rb │ │ │ │ │ ├── mysql_version.rb │ │ │ │ │ └── mysql_writable_dirs.rb │ │ │ │ ├── natpmp │ │ │ │ │ └── natpmp_portscan.rb │ │ │ │ ├── nessus │ │ │ │ │ ├── nessus_ntp_login.rb │ │ │ │ │ ├── nessus_rest_login.rb │ │ │ │ │ ├── nessus_xmlrpc_login.rb │ │ │ │ │ └── nessus_xmlrpc_ping.rb │ │ │ │ ├── netbios │ │ │ │ │ └── nbname.rb │ │ │ │ ├── nexpose │ │ │ │ │ └── nexpose_api_login.rb │ │ │ │ ├── nfs │ │ │ │ │ └── nfsmount.rb │ │ │ │ ├── nntp │ │ │ │ │ └── nntp_login.rb │ │ │ │ ├── ntp │ │ │ │ │ ├── ntp_monlist.rb │ │ │ │ │ ├── ntp_nak_to_the_future.rb │ │ │ │ │ ├── ntp_peer_list_dos.rb │ │ │ │ │ ├── ntp_peer_list_sum_dos.rb │ │ │ │ │ ├── ntp_readvar.rb │ │ │ │ │ ├── ntp_req_nonce_dos.rb │ │ │ │ │ ├── ntp_reslist_dos.rb │ │ │ │ │ └── ntp_unsettrap_dos.rb │ │ │ │ ├── openvas │ │ │ │ │ ├── openvas_gsad_login.rb │ │ │ │ │ ├── openvas_omp_login.rb │ │ │ │ │ └── openvas_otp_login.rb │ │ │ │ ├── oracle │ │ │ │ │ ├── emc_sid.rb │ │ │ │ │ ├── isqlplus_login.rb │ │ │ │ │ ├── isqlplus_sidbrute.rb │ │ │ │ │ ├── oracle_hashdump.rb │ │ │ │ │ ├── oracle_login.rb │ │ │ │ │ ├── sid_brute.rb │ │ │ │ │ ├── sid_enum.rb │ │ │ │ │ ├── spy_sid.rb │ │ │ │ │ ├── tnslsnr_version.rb │ │ │ │ │ ├── tnspoison_checker.rb │ │ │ │ │ ├── xdb_sid.rb │ │ │ │ │ └── xdb_sid_brute.rb │ │ │ │ ├── pcanywhere │ │ │ │ │ ├── pcanywhere_login.rb │ │ │ │ │ ├── pcanywhere_tcp.rb │ │ │ │ │ └── pcanywhere_udp.rb │ │ │ │ ├── pop3 │ │ │ │ │ ├── pop3_login.rb │ │ │ │ │ └── pop3_version.rb │ │ │ │ ├── portmap │ │ │ │ │ └── portmap_amp.rb │ │ │ │ ├── portscan │ │ │ │ │ ├── ack.rb │ │ │ │ │ ├── ftpbounce.rb │ │ │ │ │ ├── syn.rb │ │ │ │ │ ├── tcp.rb │ │ │ │ │ └── xmas.rb │ │ │ │ ├── postgres │ │ │ │ │ ├── postgres_dbname_flag_injection.rb │ │ │ │ │ ├── postgres_hashdump.rb │ │ │ │ │ ├── postgres_login.rb │ │ │ │ │ ├── postgres_schemadump.rb │ │ │ │ │ └── postgres_version.rb │ │ │ │ ├── printer │ │ │ │ │ ├── canon_iradv_pwd_extract.rb │ │ │ │ │ ├── printer_delete_file.rb │ │ │ │ │ ├── printer_download_file.rb │ │ │ │ │ ├── printer_env_vars.rb │ │ │ │ │ ├── printer_list_dir.rb │ │ │ │ │ ├── printer_list_volumes.rb │ │ │ │ │ ├── printer_ready_message.rb │ │ │ │ │ ├── printer_upload_file.rb │ │ │ │ │ └── printer_version_info.rb │ │ │ │ ├── quake │ │ │ │ │ └── server_info.rb │ │ │ │ ├── rdp │ │ │ │ │ ├── cve_2019_0708_bluekeep.rb │ │ │ │ │ ├── ms12_020_check.rb │ │ │ │ │ └── rdp_scanner.rb │ │ │ │ ├── redis │ │ │ │ │ ├── file_upload.rb │ │ │ │ │ ├── redis_login.rb │ │ │ │ │ └── redis_server.rb │ │ │ │ ├── rogue │ │ │ │ │ ├── rogue_recv.rb │ │ │ │ │ └── rogue_send.rb │ │ │ │ ├── rservices │ │ │ │ │ ├── rexec_login.rb │ │ │ │ │ ├── rlogin_login.rb │ │ │ │ │ └── rsh_login.rb │ │ │ │ ├── rsync │ │ │ │ │ └── modules_list.rb │ │ │ │ ├── sage │ │ │ │ │ └── x3_adxsrv_login.rb │ │ │ │ ├── sap │ │ │ │ │ ├── sap_ctc_verb_tampering_user_mgmt.rb │ │ │ │ │ ├── sap_hostctrl_getcomputersystem.rb │ │ │ │ │ ├── sap_icf_public_info.rb │ │ │ │ │ ├── sap_icm_urlscan.rb │ │ │ │ │ ├── sap_mgmt_con_abaplog.rb │ │ │ │ │ ├── sap_mgmt_con_brute_login.rb │ │ │ │ │ ├── sap_mgmt_con_extractusers.rb │ │ │ │ │ ├── sap_mgmt_con_getaccesspoints.rb │ │ │ │ │ ├── sap_mgmt_con_getenv.rb │ │ │ │ │ ├── sap_mgmt_con_getlogfiles.rb │ │ │ │ │ ├── sap_mgmt_con_getprocesslist.rb │ │ │ │ │ ├── sap_mgmt_con_getprocessparameter.rb │ │ │ │ │ ├── sap_mgmt_con_instanceproperties.rb │ │ │ │ │ ├── sap_mgmt_con_listconfigfiles.rb │ │ │ │ │ ├── sap_mgmt_con_listlogfiles.rb │ │ │ │ │ ├── sap_mgmt_con_startprofile.rb │ │ │ │ │ ├── sap_mgmt_con_version.rb │ │ │ │ │ ├── sap_router_info_request.rb │ │ │ │ │ ├── sap_router_portscanner.rb │ │ │ │ │ ├── sap_service_discovery.rb │ │ │ │ │ ├── sap_smb_relay.rb │ │ │ │ │ ├── sap_soap_bapi_user_create1.rb │ │ │ │ │ ├── sap_soap_rfc_brute_login.rb │ │ │ │ │ ├── sap_soap_rfc_dbmcli_sxpg_call_system_command_exec.rb │ │ │ │ │ ├── sap_soap_rfc_dbmcli_sxpg_command_exec.rb │ │ │ │ │ ├── sap_soap_rfc_eps_get_directory_listing.rb │ │ │ │ │ ├── sap_soap_rfc_pfl_check_os_file_existence.rb │ │ │ │ │ ├── sap_soap_rfc_ping.rb │ │ │ │ │ ├── sap_soap_rfc_read_table.rb │ │ │ │ │ ├── sap_soap_rfc_rzl_read_dir.rb │ │ │ │ │ ├── sap_soap_rfc_susr_rfc_user_interface.rb │ │ │ │ │ ├── sap_soap_rfc_sxpg_call_system_exec.rb │ │ │ │ │ ├── sap_soap_rfc_sxpg_command_exec.rb │ │ │ │ │ ├── sap_soap_rfc_system_info.rb │ │ │ │ │ ├── sap_soap_th_saprel_disclosure.rb │ │ │ │ │ └── sap_web_gui_brute_login.rb │ │ │ │ ├── scada │ │ │ │ │ ├── bacnet_l3.rb │ │ │ │ │ ├── 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_banner_grabbing.rb │ │ │ │ │ ├── modbus_findunitid.rb │ │ │ │ │ ├── modbusclient.rb │ │ │ │ │ ├── modbusdetect.rb │ │ │ │ │ ├── moxa_discover.rb │ │ │ │ │ ├── pcomclient.rb │ │ │ │ │ ├── profinet_siemens.rb │ │ │ │ │ └── sielco_winlog_fileaccess.rb │ │ │ │ ├── sip │ │ │ │ │ ├── enumerator.rb │ │ │ │ │ ├── enumerator_tcp.rb │ │ │ │ │ ├── options.rb │ │ │ │ │ ├── options_tcp.rb │ │ │ │ │ └── sipdroid_ext_enum.rb │ │ │ │ ├── smb │ │ │ │ │ ├── impacket │ │ │ │ │ │ ├── _msf_impacket.py │ │ │ │ │ │ ├── dcomexec.py │ │ │ │ │ │ ├── secretsdump.py │ │ │ │ │ │ └── wmiexec.py │ │ │ │ │ ├── pipe_auditor.rb │ │ │ │ │ ├── pipe_dcerpc_auditor.rb │ │ │ │ │ ├── psexec_loggedin_users.rb │ │ │ │ │ ├── smb_enum_gpp.rb │ │ │ │ │ ├── smb_enumshares.rb │ │ │ │ │ ├── smb_enumusers.rb │ │ │ │ │ ├── smb_enumusers_domain.rb │ │ │ │ │ ├── smb_login.rb │ │ │ │ │ ├── smb_lookupsid.rb │ │ │ │ │ ├── smb_ms17_010.rb │ │ │ │ │ ├── smb_uninit_cred.rb │ │ │ │ │ └── smb_version.rb │ │ │ │ ├── smtp │ │ │ │ │ ├── smtp_enum.rb │ │ │ │ │ ├── smtp_ntlm_domain.rb │ │ │ │ │ ├── smtp_relay.rb │ │ │ │ │ └── smtp_version.rb │ │ │ │ ├── snmp │ │ │ │ │ ├── aix_version.rb │ │ │ │ │ ├── arris_dg950.rb │ │ │ │ │ ├── brocade_enumhash.rb │ │ │ │ │ ├── cisco_config_tftp.rb │ │ │ │ │ ├── cisco_upload_file.rb │ │ │ │ │ ├── cnpilot_r_snmp_loot.rb │ │ │ │ │ ├── epmp1000_snmp_loot.rb │ │ │ │ │ ├── netopia_enum.rb │ │ │ │ │ ├── sbg6580_enum.rb │ │ │ │ │ ├── snmp_enum.rb │ │ │ │ │ ├── snmp_enum_hp_laserjet.rb │ │ │ │ │ ├── snmp_enumshares.rb │ │ │ │ │ ├── snmp_enumusers.rb │ │ │ │ │ ├── snmp_login.rb │ │ │ │ │ ├── snmp_set.rb │ │ │ │ │ ├── ubee_ddw3611.rb │ │ │ │ │ └── xerox_workcentre_enumusers.rb │ │ │ │ ├── ssh │ │ │ │ │ ├── apache_karaf_command_execution.rb │ │ │ │ │ ├── cerberus_sftp_enumusers.rb │ │ │ │ │ ├── detect_kippo.rb │ │ │ │ │ ├── eaton_xpert_backdoor.rb │ │ │ │ │ ├── fortinet_backdoor.rb │ │ │ │ │ ├── juniper_backdoor.rb │ │ │ │ │ ├── karaf_login.rb │ │ │ │ │ ├── libssh_auth_bypass.rb │ │ │ │ │ ├── ssh_enum_git_keys.rb │ │ │ │ │ ├── ssh_enumusers.rb │ │ │ │ │ ├── ssh_identify_pubkeys.rb │ │ │ │ │ ├── ssh_login.rb │ │ │ │ │ ├── ssh_login_pubkey.rb │ │ │ │ │ └── ssh_version.rb │ │ │ │ ├── ssl │ │ │ │ │ ├── bleichenbacher_oracle.py │ │ │ │ │ ├── openssl_ccs.rb │ │ │ │ │ ├── openssl_heartbleed.rb │ │ │ │ │ └── ssl_version.rb │ │ │ │ ├── steam │ │ │ │ │ └── server_info.rb │ │ │ │ ├── telephony │ │ │ │ │ └── wardial.rb │ │ │ │ ├── telnet │ │ │ │ │ ├── brocade_enable_login.rb │ │ │ │ │ ├── lantronix_telnet_password.rb │ │ │ │ │ ├── lantronix_telnet_version.rb │ │ │ │ │ ├── satel_cmd_exec.rb │ │ │ │ │ ├── telnet_encrypt_overflow.rb │ │ │ │ │ ├── telnet_login.rb │ │ │ │ │ ├── telnet_ruggedcom.rb │ │ │ │ │ └── telnet_version.rb │ │ │ │ ├── teradata │ │ │ │ │ └── teradata_odbc_login.py │ │ │ │ ├── tftp │ │ │ │ │ ├── ipswitch_whatsupgold_tftp.rb │ │ │ │ │ ├── netdecision_tftp.rb │ │ │ │ │ └── tftpbrute.rb │ │ │ │ ├── ubiquiti │ │ │ │ │ └── ubiquiti_discover.rb │ │ │ │ ├── udp │ │ │ │ │ ├── example.rb │ │ │ │ │ └── udp_amplification.rb │ │ │ │ ├── upnp │ │ │ │ │ ├── ssdp_amp.rb │ │ │ │ │ └── ssdp_msearch.rb │ │ │ │ ├── varnish │ │ │ │ │ ├── varnish_cli_file_read.rb │ │ │ │ │ └── varnish_cli_login.rb │ │ │ │ ├── vmware │ │ │ │ │ ├── esx_fingerprint.rb │ │ │ │ │ ├── vmauthd_login.rb │ │ │ │ │ ├── vmauthd_version.rb │ │ │ │ │ ├── vmware_enum_permissions.rb │ │ │ │ │ ├── vmware_enum_sessions.rb │ │ │ │ │ ├── vmware_enum_users.rb │ │ │ │ │ ├── vmware_enum_vms.rb │ │ │ │ │ ├── vmware_host_details.rb │ │ │ │ │ ├── vmware_http_login.rb │ │ │ │ │ ├── vmware_screenshot_stealer.rb │ │ │ │ │ ├── vmware_server_dir_trav.rb │ │ │ │ │ └── vmware_update_manager_traversal.rb │ │ │ │ ├── vnc │ │ │ │ │ ├── ard_root_pw.rb │ │ │ │ │ ├── vnc_login.rb │ │ │ │ │ └── vnc_none_auth.rb │ │ │ │ ├── voice │ │ │ │ │ └── recorder.rb │ │ │ │ ├── vxworks │ │ │ │ │ ├── urgent11_check.rb │ │ │ │ │ ├── wdbrpc_bootline.rb │ │ │ │ │ └── wdbrpc_version.rb │ │ │ │ ├── winrm │ │ │ │ │ ├── winrm_auth_methods.rb │ │ │ │ │ ├── winrm_cmd.rb │ │ │ │ │ ├── winrm_login.rb │ │ │ │ │ └── winrm_wql.rb │ │ │ │ ├── wproxy │ │ │ │ │ └── att_open_proxy.py │ │ │ │ ├── wsdd │ │ │ │ │ └── wsdd_query.rb │ │ │ │ └── x11 │ │ │ │ │ └── open_x11.rb │ │ │ ├── server │ │ │ │ ├── android_browsable_msf_launch.rb │ │ │ │ ├── android_mercury_parseuri.rb │ │ │ │ ├── browser_autopwn.rb │ │ │ │ ├── browser_autopwn2.rb │ │ │ │ ├── capture │ │ │ │ │ ├── drda.rb │ │ │ │ │ ├── ftp.rb │ │ │ │ │ ├── http.rb │ │ │ │ │ ├── http_basic.rb │ │ │ │ │ ├── http_javascript_keylogger.rb │ │ │ │ │ ├── http_ntlm.rb │ │ │ │ │ ├── imap.rb │ │ │ │ │ ├── mssql.rb │ │ │ │ │ ├── mysql.rb │ │ │ │ │ ├── pop3.rb │ │ │ │ │ ├── postgresql.rb │ │ │ │ │ ├── printjob_capture.rb │ │ │ │ │ ├── sip.rb │ │ │ │ │ ├── smb.rb │ │ │ │ │ ├── smtp.rb │ │ │ │ │ ├── telnet.rb │ │ │ │ │ └── vnc.rb │ │ │ │ ├── dhclient_bash_env.rb │ │ │ │ ├── dhcp.rb │ │ │ │ ├── dns │ │ │ │ │ ├── native_server.rb │ │ │ │ │ └── spoofhelper.rb │ │ │ │ ├── fakedns.rb │ │ │ │ ├── ftp.rb │ │ │ │ ├── http_ntlmrelay.rb │ │ │ │ ├── icmp_exfil.rb │ │ │ │ ├── jsse_skiptls_mitm_proxy.rb │ │ │ │ ├── ldap.rb │ │ │ │ ├── local_hwbridge.rb │ │ │ │ ├── ms15_134_mcl_leak.rb │ │ │ │ ├── netbios_spoof_nat.rb │ │ │ │ ├── openssl_altchainsforgery_mitm_proxy.rb │ │ │ │ ├── openssl_heartbeat_client_memory.rb │ │ │ │ ├── pxeexploit.rb │ │ │ │ ├── regsvr32_command_delivery_server.rb │ │ │ │ ├── socks_proxy.rb │ │ │ │ ├── socks_unc.rb │ │ │ │ ├── teamviewer_uri_smb_redirect.rb │ │ │ │ ├── tftp.rb │ │ │ │ ├── webkit_xslt_dropper.rb │ │ │ │ ├── wget_symlink_file_write.rb │ │ │ │ └── wpad.rb │ │ │ ├── sniffer │ │ │ │ └── psnuffle.rb │ │ │ ├── spoof │ │ │ │ ├── arp │ │ │ │ │ └── arp_poisoning.rb │ │ │ │ ├── cisco │ │ │ │ │ ├── cdp.rb │ │ │ │ │ └── dtp.rb │ │ │ │ ├── dns │ │ │ │ │ ├── bailiwicked_domain.rb │ │ │ │ │ ├── bailiwicked_host.rb │ │ │ │ │ ├── compare_results.rb │ │ │ │ │ └── native_spoofer.rb │ │ │ │ ├── llmnr │ │ │ │ │ └── llmnr_response.rb │ │ │ │ ├── mdns │ │ │ │ │ └── mdns_response.rb │ │ │ │ ├── nbns │ │ │ │ │ └── nbns_response.rb │ │ │ │ └── replay │ │ │ │ │ └── pcap_replay.rb │ │ │ ├── sqli │ │ │ │ ├── dlink │ │ │ │ │ └── dlink_central_wifimanager_sqli.rb │ │ │ │ ├── openemr │ │ │ │ │ └── openemr_sqli_dump.rb │ │ │ │ └── oracle │ │ │ │ │ ├── dbms_cdc_ipublish.rb │ │ │ │ │ ├── dbms_cdc_publish.rb │ │ │ │ │ ├── dbms_cdc_publish2.rb │ │ │ │ │ ├── dbms_cdc_publish3.rb │ │ │ │ │ ├── dbms_cdc_subscribe_activate_subscription.rb │ │ │ │ │ ├── dbms_export_extension.rb │ │ │ │ │ ├── dbms_metadata_get_granted_xml.rb │ │ │ │ │ ├── dbms_metadata_get_xml.rb │ │ │ │ │ ├── dbms_metadata_open.rb │ │ │ │ │ ├── droptable_trigger.rb │ │ │ │ │ ├── jvm_os_code_10g.rb │ │ │ │ │ ├── jvm_os_code_11g.rb │ │ │ │ │ ├── lt_compressworkspace.rb │ │ │ │ │ ├── lt_findricset_cursor.rb │ │ │ │ │ ├── lt_mergeworkspace.rb │ │ │ │ │ ├── lt_removeworkspace.rb │ │ │ │ │ └── lt_rollbackworkspace.rb │ │ │ ├── voip │ │ │ │ ├── asterisk_login.rb │ │ │ │ ├── cisco_cucdm_call_forward.rb │ │ │ │ ├── cisco_cucdm_speed_dials.rb │ │ │ │ ├── sip_deregister.rb │ │ │ │ ├── sip_invite_spoof.rb │ │ │ │ └── telisca_ips_lock_control.rb │ │ │ └── vsploit │ │ │ │ ├── exploit │ │ │ │ └── .keep │ │ │ │ ├── malware │ │ │ │ └── dns │ │ │ │ │ ├── dns_mariposa.rb │ │ │ │ │ ├── dns_query.rb │ │ │ │ │ └── dns_zeus.rb │ │ │ │ └── pii │ │ │ │ ├── email_pii.rb │ │ │ │ └── web_pii.rb │ │ ├── encoders │ │ │ ├── cmd │ │ │ │ ├── brace.rb │ │ │ │ ├── echo.rb │ │ │ │ ├── generic_sh.rb │ │ │ │ ├── ifs.rb │ │ │ │ ├── perl.rb │ │ │ │ ├── powershell_base64.rb │ │ │ │ └── printf_php_mq.rb │ │ │ ├── generic │ │ │ │ ├── eicar.rb │ │ │ │ └── none.rb │ │ │ ├── mipsbe │ │ │ │ ├── byte_xori.rb │ │ │ │ └── longxor.rb │ │ │ ├── mipsle │ │ │ │ ├── byte_xori.rb │ │ │ │ └── longxor.rb │ │ │ ├── php │ │ │ │ └── base64.rb │ │ │ ├── ppc │ │ │ │ ├── longxor.rb │ │ │ │ └── longxor_tag.rb │ │ │ ├── ruby │ │ │ │ └── base64.rb │ │ │ ├── sparc │ │ │ │ └── longxor_tag.rb │ │ │ ├── x64 │ │ │ │ ├── xor.rb │ │ │ │ ├── xor_context.rb │ │ │ │ ├── xor_dynamic.rb │ │ │ │ └── zutto_dekiru.rb │ │ │ └── x86 │ │ │ │ ├── add_sub.rb │ │ │ │ ├── alpha_mixed.rb │ │ │ │ ├── alpha_upper.rb │ │ │ │ ├── avoid_underscore_tolower.rb │ │ │ │ ├── avoid_utf8_tolower.rb │ │ │ │ ├── bloxor.rb │ │ │ │ ├── bmp_polyglot.rb │ │ │ │ ├── call4_dword_xor.rb │ │ │ │ ├── context_cpuid.rb │ │ │ │ ├── context_stat.rb │ │ │ │ ├── context_time.rb │ │ │ │ ├── countdown.rb │ │ │ │ ├── fnstenv_mov.rb │ │ │ │ ├── jmp_call_additive.rb │ │ │ │ ├── nonalpha.rb │ │ │ │ ├── nonupper.rb │ │ │ │ ├── opt_sub.rb │ │ │ │ ├── service.rb │ │ │ │ ├── shikata_ga_nai.rb │ │ │ │ ├── single_static_bit.rb │ │ │ │ ├── unicode_mixed.rb │ │ │ │ ├── unicode_upper.rb │ │ │ │ ├── xor_dynamic.rb │ │ │ │ └── xor_poly.rb │ │ ├── evasion │ │ │ └── windows │ │ │ │ ├── applocker_evasion_install_util.rb │ │ │ │ ├── applocker_evasion_msbuild.rb │ │ │ │ ├── applocker_evasion_presentationhost.rb │ │ │ │ ├── applocker_evasion_regasm_regsvcs.rb │ │ │ │ ├── applocker_evasion_workflow_compiler.rb │ │ │ │ ├── process_herpaderping.rb │ │ │ │ ├── syscall_inject.rb │ │ │ │ ├── windows_defender_exe.rb │ │ │ │ └── windows_defender_js_hta.rb │ │ ├── exploits │ │ │ ├── aix │ │ │ │ ├── local │ │ │ │ │ ├── ibstat_path.rb │ │ │ │ │ ├── invscout_rpm_priv_esc.rb │ │ │ │ │ └── xorg_x11_server.rb │ │ │ │ ├── rpc_cmsd_opcode21.rb │ │ │ │ └── rpc_ttdbserverd_realpath.rb │ │ │ ├── android │ │ │ │ ├── adb │ │ │ │ │ └── adb_server_exec.rb │ │ │ │ ├── browser │ │ │ │ │ ├── samsung_knox_smdm_url.rb │ │ │ │ │ ├── stagefright_mp4_tx3g_64bit.rb │ │ │ │ │ └── webview_addjavascriptinterface.rb │ │ │ │ ├── fileformat │ │ │ │ │ └── adobe_reader_pdf_js_interface.rb │ │ │ │ └── local │ │ │ │ │ ├── binder_uaf.rb │ │ │ │ │ ├── futex_requeue.rb │ │ │ │ │ ├── janus.rb │ │ │ │ │ ├── put_user_vroot.rb │ │ │ │ │ └── su_exec.rb │ │ │ ├── apple_ios │ │ │ │ ├── browser │ │ │ │ │ ├── safari_jit.rb │ │ │ │ │ ├── safari_libtiff.rb │ │ │ │ │ ├── webkit_createthis.rb │ │ │ │ │ └── webkit_trident.rb │ │ │ │ ├── email │ │ │ │ │ └── mobilemail_libtiff.rb │ │ │ │ └── ssh │ │ │ │ │ └── cydia_default_ssh.rb │ │ │ ├── bsd │ │ │ │ └── finger │ │ │ │ │ └── morris_fingerd_bof.rb │ │ │ ├── bsdi │ │ │ │ └── softcart │ │ │ │ │ └── mercantec_softcart.rb │ │ │ ├── dialup │ │ │ │ └── multi │ │ │ │ │ └── login │ │ │ │ │ └── manyargs.rb │ │ │ ├── example.py │ │ │ ├── example.rb │ │ │ ├── example_linux_priv_esc.rb │ │ │ ├── example_webapp.rb │ │ │ ├── firefox │ │ │ │ └── local │ │ │ │ │ └── exec_shellcode.rb │ │ │ ├── freebsd │ │ │ │ ├── ftp │ │ │ │ │ └── proftp_telnet_iac.rb │ │ │ │ ├── http │ │ │ │ │ ├── citrix_dir_traversal_rce.rb │ │ │ │ │ └── watchguard_cmd_exec.rb │ │ │ │ ├── local │ │ │ │ │ ├── intel_sysret_priv_esc.rb │ │ │ │ │ ├── ip6_setpktopt_uaf_priv_esc.rb │ │ │ │ │ ├── mmap.rb │ │ │ │ │ ├── rtld_execl_priv_esc.rb │ │ │ │ │ └── watchguard_fix_corrupt_mail.rb │ │ │ │ ├── misc │ │ │ │ │ └── citrix_netscaler_soap_bof.rb │ │ │ │ ├── samba │ │ │ │ │ └── trans2open.rb │ │ │ │ ├── tacacs │ │ │ │ │ └── xtacacsd_report.rb │ │ │ │ ├── telnet │ │ │ │ │ └── telnet_encrypt_keyid.rb │ │ │ │ └── webapp │ │ │ │ │ └── spamtitan_unauth_rce.rb │ │ │ ├── hpux │ │ │ │ └── lpd │ │ │ │ │ └── cleanup_exec.rb │ │ │ ├── irix │ │ │ │ └── lpd │ │ │ │ │ └── tagprinter_exec.rb │ │ │ ├── linux │ │ │ │ ├── antivirus │ │ │ │ │ └── escan_password_exec.rb │ │ │ │ ├── browser │ │ │ │ │ └── adobe_flashplayer_aslaunch.rb │ │ │ │ ├── fileformat │ │ │ │ │ └── unrar_cve_2022_30333.rb │ │ │ │ ├── ftp │ │ │ │ │ ├── proftp_sreplace.rb │ │ │ │ │ └── proftp_telnet_iac.rb │ │ │ │ ├── games │ │ │ │ │ └── ut2004_secure.rb │ │ │ │ ├── http │ │ │ │ │ ├── accellion_fta_getstatus_oauth.rb │ │ │ │ │ ├── advantech_switch_bash_env_exec.rb │ │ │ │ │ ├── airties_login_cgi_bof.rb │ │ │ │ │ ├── alcatel_omnipcx_mastercgi_exec.rb │ │ │ │ │ ├── alienvault_exec.rb │ │ │ │ │ ├── alienvault_sqli_exec.rb │ │ │ │ │ ├── apache_continuum_cmd_exec.rb │ │ │ │ │ ├── apache_couchdb_cmd_exec.rb │ │ │ │ │ ├── apache_druid_js_rce.rb │ │ │ │ │ ├── apache_ofbiz_deserialization.rb │ │ │ │ │ ├── apache_ofbiz_deserialization_soap.rb │ │ │ │ │ ├── apache_spark_rce_cve_2022_33891.rb │ │ │ │ │ ├── artica_proxy_auth_bypass_service_cmds_peform_command_injection.rb │ │ │ │ │ ├── astium_sqli_upload.rb │ │ │ │ │ ├── asuswrt_lan_rce.rb │ │ │ │ │ ├── atutor_filemanager_traversal.rb │ │ │ │ │ ├── axis_app_install.rb │ │ │ │ │ ├── axis_srv_parhand_rce.rb │ │ │ │ │ ├── belkin_login_bof.rb │ │ │ │ │ ├── bitbucket_git_cmd_injection.rb │ │ │ │ │ ├── bludit_upload_images_exec.rb │ │ │ │ │ ├── cacti_unauthenticated_cmd_injection.rb │ │ │ │ │ ├── cayin_cms_ntp.rb │ │ │ │ │ ├── centreon_pollers_auth_rce.rb │ │ │ │ │ ├── centreon_sqli_exec.rb │ │ │ │ │ ├── centreon_useralias_exec.rb │ │ │ │ │ ├── cfme_manageiq_evm_upload_exec.rb │ │ │ │ │ ├── cisco_asax_sfr_rce.rb │ │ │ │ │ ├── cisco_firepower_useradd.rb │ │ │ │ │ ├── cisco_hyperflex_file_upload_rce.rb │ │ │ │ │ ├── cisco_hyperflex_hx_data_platform_cmd_exec.rb │ │ │ │ │ ├── cisco_prime_inf_rce.rb │ │ │ │ │ ├── cisco_rv32x_rce.rb │ │ │ │ │ ├── cisco_rv340_lan.rb │ │ │ │ │ ├── cisco_rv_series_authbypass_and_rce.rb │ │ │ │ │ ├── cisco_ucs_cloupia_script_rce.rb │ │ │ │ │ ├── cisco_ucs_rce.rb │ │ │ │ │ ├── control_web_panel_login_cmd_exec.rb │ │ │ │ │ ├── cpi_tararchive_upload.rb │ │ │ │ │ ├── crypttech_cryptolog_login_exec.rb │ │ │ │ │ ├── cve_2019_1663_cisco_rmi_rce.rb │ │ │ │ │ ├── dcos_marathon.rb │ │ │ │ │ ├── ddwrt_cgibin_exec.rb │ │ │ │ │ ├── denyall_waf_exec.rb │ │ │ │ │ ├── dlink_authentication_cgi_bof.rb │ │ │ │ │ ├── dlink_command_php_exec_noauth.rb │ │ │ │ │ ├── dlink_dcs931l_upload.rb │ │ │ │ │ ├── dlink_dcs_930l_authenticated_remote_command_execution.rb │ │ │ │ │ ├── dlink_diagnostic_exec_noauth.rb │ │ │ │ │ ├── dlink_dir300_exec_telnet.rb │ │ │ │ │ ├── dlink_dir605l_captcha_bof.rb │ │ │ │ │ ├── dlink_dir615_up_exec.rb │ │ │ │ │ ├── dlink_dir850l_unauth_exec.rb │ │ │ │ │ ├── dlink_dsl2750b_exec_noauth.rb │ │ │ │ │ ├── dlink_dspw110_cookie_noauth_exec.rb │ │ │ │ │ ├── dlink_dspw215_info_cgi_bof.rb │ │ │ │ │ ├── dlink_dwl_2600_command_injection.rb │ │ │ │ │ ├── dlink_hedwig_cgi_bof.rb │ │ │ │ │ ├── dlink_hnap_bof.rb │ │ │ │ │ ├── dlink_hnap_header_exec_noauth.rb │ │ │ │ │ ├── dlink_hnap_login_bof.rb │ │ │ │ │ ├── dlink_upnp_exec_noauth.rb │ │ │ │ │ ├── dnalims_admin_exec.rb │ │ │ │ │ ├── docker_daemon_tcp.rb │ │ │ │ │ ├── dolibarr_cmd_exec.rb │ │ │ │ │ ├── dreambox_openpli_shell.rb │ │ │ │ │ ├── efw_chpasswd_exec.rb │ │ │ │ │ ├── elfinder_archive_cmd_injection.rb │ │ │ │ │ ├── empire_skywalker.rb │ │ │ │ │ ├── esva_exec.rb │ │ │ │ │ ├── eyesofnetwork_autodiscovery_rce.rb │ │ │ │ │ ├── f5_bigip_tmui_rce.rb │ │ │ │ │ ├── f5_icall_cmd.rb │ │ │ │ │ ├── f5_icontrol_exec.rb │ │ │ │ │ ├── f5_icontrol_rce.rb │ │ │ │ │ ├── f5_icontrol_rest_ssrf_rce.rb │ │ │ │ │ ├── f5_icontrol_rpmspec_rce_cve_2022_41800.rb │ │ │ │ │ ├── f5_icontrol_soap_csrf_rce_cve_2022_41622.rb │ │ │ │ │ ├── flir_ax8_unauth_rce_cve_2022_37061.rb │ │ │ │ │ ├── foreman_openstack_satellite_code_exec.rb │ │ │ │ │ ├── fortinac_keyupload_file_write.rb │ │ │ │ │ ├── fortinet_authentication_bypass_cve_2022_40684.rb │ │ │ │ │ ├── fritzbox_echo_exec.rb │ │ │ │ │ ├── froxlor_log_path_rce.rb │ │ │ │ │ ├── geutebruck_cmdinject_cve_2021_335xx.rb │ │ │ │ │ ├── geutebruck_instantrec_bof.rb │ │ │ │ │ ├── geutebruck_testaction_exec.rb │ │ │ │ │ ├── github_enterprise_secret.rb │ │ │ │ │ ├── gitlist_exec.rb │ │ │ │ │ ├── glpi_htmlawed_php_injection.rb │ │ │ │ │ ├── goahead_ldpreload.rb │ │ │ │ │ ├── goautodial_3_rce_command_injection.rb │ │ │ │ │ ├── gpsd_format_string.rb │ │ │ │ │ ├── grandstream_gxv31xx_settimezone_unauth_cmd_exec.rb │ │ │ │ │ ├── grandstream_ucm62xx_sendemail_rce.rb │ │ │ │ │ ├── gravcms_exec.rb │ │ │ │ │ ├── groundwork_monarch_cmd_exec.rb │ │ │ │ │ ├── hadoop_unauth_exec.rb │ │ │ │ │ ├── hikvision_cve_2021_36260_blind.rb │ │ │ │ │ ├── hp_system_management.rb │ │ │ │ │ ├── hp_van_sdn_cmd_inject.rb │ │ │ │ │ ├── huawei_hg532n_cmdinject.rb │ │ │ │ │ ├── ibm_drm_rce.rb │ │ │ │ │ ├── ibm_qradar_unauth_rce.rb │ │ │ │ │ ├── imperva_securesphere_exec.rb │ │ │ │ │ ├── ipfire_bashbug_exec.rb │ │ │ │ │ ├── ipfire_oinkcode_exec.rb │ │ │ │ │ ├── ipfire_pakfire_exec.rb │ │ │ │ │ ├── ipfire_proxy_exec.rb │ │ │ │ │ ├── ivanti_csa_unauth_rce_cve_2021_44529.rb │ │ │ │ │ ├── jenkins_cli_deserialization.rb │ │ │ │ │ ├── kaltura_unserialize_cookie_rce.rb │ │ │ │ │ ├── kaltura_unserialize_rce.rb │ │ │ │ │ ├── klog_server_authenticate_user_unauth_command_injection.rb │ │ │ │ │ ├── kloxo_sqli.rb │ │ │ │ │ ├── librenms_addhost_cmd_inject.rb │ │ │ │ │ ├── librenms_collectd_cmd_inject.rb │ │ │ │ │ ├── lifesize_uvc_ping_rce.rb │ │ │ │ │ ├── linear_emerge_unauth_rce_cve_2019_7256.rb │ │ │ │ │ ├── linksys_apply_cgi.rb │ │ │ │ │ ├── linksys_e1500_apply_exec.rb │ │ │ │ │ ├── linksys_themoon_exec.rb │ │ │ │ │ ├── linksys_wrt110_cmd_exec.rb │ │ │ │ │ ├── linksys_wrt160nv2_apply_exec.rb │ │ │ │ │ ├── linksys_wrt54gl_apply_exec.rb │ │ │ │ │ ├── linksys_wvbr0_user_agent_exec_noauth.rb │ │ │ │ │ ├── linuxki_rce.rb │ │ │ │ │ ├── logsign_exec.rb │ │ │ │ │ ├── lucee_admin_imgprocess_file_write.rb │ │ │ │ │ ├── mailcleaner_exec.rb │ │ │ │ │ ├── microfocus_obr_cmd_injection.rb │ │ │ │ │ ├── microfocus_secure_messaging_gateway.rb │ │ │ │ │ ├── mida_solutions_eframework_ajaxreq_rce.rb │ │ │ │ │ ├── mobileiron_core_log4shell.rb │ │ │ │ │ ├── mobileiron_mdm_hessian_rce.rb │ │ │ │ │ ├── multi_ncc_ping_exec.rb │ │ │ │ │ ├── mutiny_frontend_upload.rb │ │ │ │ │ ├── mvpower_dvr_shell_exec.rb │ │ │ │ │ ├── nagios_xi_autodiscovery_webshell.rb │ │ │ │ │ ├── nagios_xi_chained_rce.rb │ │ │ │ │ ├── nagios_xi_chained_rce_2_electric_boogaloo.rb │ │ │ │ │ ├── nagios_xi_configwizards_authenticated_rce.rb │ │ │ │ │ ├── nagios_xi_magpie_debug.rb │ │ │ │ │ ├── nagios_xi_mibs_authenticated_rce.rb │ │ │ │ │ ├── nagios_xi_plugins_check_plugin_authenticated_rce.rb │ │ │ │ │ ├── nagios_xi_plugins_filename_authenticated_rce.rb │ │ │ │ │ ├── nagios_xi_snmptrap_authenticated_rce.rb │ │ │ │ │ ├── netgear_dgn1000_setup_unauth_exec.rb │ │ │ │ │ ├── netgear_dgn1000b_setup_exec.rb │ │ │ │ │ ├── netgear_dgn2200b_pppoe_exec.rb │ │ │ │ │ ├── netgear_dnslookup_cmd_exec.rb │ │ │ │ │ ├── netgear_r7000_cgibin_exec.rb │ │ │ │ │ ├── netgear_readynas_exec.rb │ │ │ │ │ ├── netgear_unauth_exec.rb │ │ │ │ │ ├── netgear_wnr2000_rce.rb │ │ │ │ │ ├── netsweeper_webadmin_unixlogin.rb │ │ │ │ │ ├── nexus_repo_manager_el_injection.rb │ │ │ │ │ ├── nginx_chunked_size.rb │ │ │ │ │ ├── nuuo_nvrmini_auth_rce.rb │ │ │ │ │ ├── nuuo_nvrmini_unauth_rce.rb │ │ │ │ │ ├── op5_config_exec.rb │ │ │ │ │ ├── openfiler_networkcard_exec.rb │ │ │ │ │ ├── opentsdb_yrange_cmd_injection.rb │ │ │ │ │ ├── optergy_bms_backdoor_rce_cve_2019_7276.rb │ │ │ │ │ ├── oracle_ebs_rce_cve_2022_21587.rb │ │ │ │ │ ├── pandora_fms_events_exec.rb │ │ │ │ │ ├── pandora_fms_exec.rb │ │ │ │ │ ├── pandora_fms_sqli.rb │ │ │ │ │ ├── pandora_ping_cmd_exec.rb │ │ │ │ │ ├── panos_op_cmd_exec.rb │ │ │ │ │ ├── panos_readsessionvars.rb │ │ │ │ │ ├── peercast_url.rb │ │ │ │ │ ├── php_imap_open_rce.rb │ │ │ │ │ ├── pineapp_ldapsyncnow_exec.rb │ │ │ │ │ ├── pineapp_livelog_exec.rb │ │ │ │ │ ├── pineapp_test_li_conn_exec.rb │ │ │ │ │ ├── pineapple_bypass_cmdinject.rb │ │ │ │ │ ├── pineapple_preconfig_cmdinject.rb │ │ │ │ │ ├── piranha_passwd_exec.rb │ │ │ │ │ ├── pulse_secure_cmd_exec.rb │ │ │ │ │ ├── pulse_secure_gzip_rce.rb │ │ │ │ │ ├── pyload_js2py_exec.rb │ │ │ │ │ ├── qnap_qcenter_change_passwd_exec.rb │ │ │ │ │ ├── raidsonic_nas_ib5220_exec_noauth.rb │ │ │ │ │ ├── railo_cfml_rfi.rb │ │ │ │ │ ├── rancher_server.rb │ │ │ │ │ ├── rconfig_ajaxarchivefiles_rce.rb │ │ │ │ │ ├── rconfig_vendors_auth_file_upload_rce.rb │ │ │ │ │ ├── realtek_miniigd_upnp_exec_noauth.rb │ │ │ │ │ ├── riverbed_netprofiler_netexpress_exec.rb │ │ │ │ │ ├── roxy_wi_exec.rb │ │ │ │ │ ├── saltstack_salt_api_cmd_exec.rb │ │ │ │ │ ├── saltstack_salt_wheel_async_rce.rb │ │ │ │ │ ├── samsung_srv_1670d_upload_exec.rb │ │ │ │ │ ├── seagate_nas_php_exec_noauth.rb │ │ │ │ │ ├── smt_ipmi_close_window_bof.rb │ │ │ │ │ ├── sonicwall_cve_2021_20039.rb │ │ │ │ │ ├── sophos_utm_webadmin_sid_cmd_injection.rb │ │ │ │ │ ├── sophos_wpa_iface_exec.rb │ │ │ │ │ ├── sophos_wpa_sblistpack_exec.rb │ │ │ │ │ ├── sourcegraph_gitserver_sshcmd.rb │ │ │ │ │ ├── spark_unauth_rce.rb │ │ │ │ │ ├── spring_cloud_gateway_rce.rb │ │ │ │ │ ├── suitecrm_log_file_rce.rb │ │ │ │ │ ├── supervisor_xmlrpc_exec.rb │ │ │ │ │ ├── symantec_messaging_gateway_exec.rb │ │ │ │ │ ├── symantec_web_gateway_exec.rb │ │ │ │ │ ├── symantec_web_gateway_file_upload.rb │ │ │ │ │ ├── symantec_web_gateway_lfi.rb │ │ │ │ │ ├── symantec_web_gateway_pbcontrol.rb │ │ │ │ │ ├── symantec_web_gateway_restore.rb │ │ │ │ │ ├── symmetricom_syncserver_rce.rb │ │ │ │ │ ├── synology_dsm_sliceupload_exec_noauth.rb │ │ │ │ │ ├── synology_dsm_smart_exec_auth.rb │ │ │ │ │ ├── terramaster_unauth_rce_cve_2020_35665.rb │ │ │ │ │ ├── terramaster_unauth_rce_cve_2021_45837.rb │ │ │ │ │ ├── terramaster_unauth_rce_cve_2022_24990.rb │ │ │ │ │ ├── tiki_calendar_exec.rb │ │ │ │ │ ├── tp_link_ncxxx_bonjour_command_injection.rb │ │ │ │ │ ├── tp_link_sc2020n_authenticated_telnet_injection.rb │ │ │ │ │ ├── tr064_ntpserver_cmdinject.rb │ │ │ │ │ ├── trend_micro_imsva_exec.rb │ │ │ │ │ ├── trendmicro_imsva_widget_exec.rb │ │ │ │ │ ├── trendmicro_sps_exec.rb │ │ │ │ │ ├── trendmicro_websecurity_exec.rb │ │ │ │ │ ├── trueonline_billion_5200w_rce.rb │ │ │ │ │ ├── trueonline_p660hn_v1_rce.rb │ │ │ │ │ ├── trueonline_p660hn_v2_rce.rb │ │ │ │ │ ├── ubiquiti_airos_file_upload.rb │ │ │ │ │ ├── ueb_api_rce.rb │ │ │ │ │ ├── unraid_auth_bypass_exec.rb │ │ │ │ │ ├── vap2500_tools_command_exec.rb │ │ │ │ │ ├── vcms_upload.rb │ │ │ │ │ ├── vestacp_exec.rb │ │ │ │ │ ├── vmware_nsxmgr_xstream_rce_cve_2021_39144.rb │ │ │ │ │ ├── vmware_vcenter_analytics_file_upload.rb │ │ │ │ │ ├── vmware_vcenter_vsan_health_rce.rb │ │ │ │ │ ├── vmware_view_planner_4_6_uploadlog_rce.rb │ │ │ │ │ ├── vmware_vrni_rce_cve_2023_20887.rb │ │ │ │ │ ├── vmware_vrops_mgr_ssrf_rce.rb │ │ │ │ │ ├── vmware_workspace_one_access_cve_2022_22954.rb │ │ │ │ │ ├── vmware_workspace_one_access_vmsa_2022_0011_chain.rb │ │ │ │ │ ├── wanem_exec.rb │ │ │ │ │ ├── wd_mycloud_multiupload_upload.rb │ │ │ │ │ ├── wd_mycloud_unauthenticated_cmd_injection.rb │ │ │ │ │ ├── webcalendar_settings_exec.rb │ │ │ │ │ ├── webid_converter.rb │ │ │ │ │ ├── webmin_backdoor.rb │ │ │ │ │ ├── webmin_file_manager_rce.rb │ │ │ │ │ ├── webmin_package_updates_rce.rb │ │ │ │ │ ├── webmin_packageup_rce.rb │ │ │ │ │ ├── wepresent_cmd_injection.rb │ │ │ │ │ ├── wipg1000_cmd_injection.rb │ │ │ │ │ ├── xplico_exec.rb │ │ │ │ │ ├── zabbix_sqli.rb │ │ │ │ │ ├── zen_load_balancer_exec.rb │ │ │ │ │ ├── zenoss_showdaemonxmlconfig_exec.rb │ │ │ │ │ ├── zimbra_cpio_cve_2022_41352.rb │ │ │ │ │ ├── zimbra_mboximport_cve_2022_27925.rb │ │ │ │ │ ├── zimbra_unrar_cve_2022_30333.rb │ │ │ │ │ ├── zimbra_xxe_rce.rb │ │ │ │ │ ├── zyxel_lfi_unauth_ssh_rce.rb │ │ │ │ │ └── zyxel_ztp_rce.rb │ │ │ │ ├── ids │ │ │ │ │ ├── alienvault_centerd_soap_exec.rb │ │ │ │ │ └── snortbopre.rb │ │ │ │ ├── imap │ │ │ │ │ └── imap_uw_lsub.rb │ │ │ │ ├── local │ │ │ │ │ ├── abrt_raceabrt_priv_esc.rb │ │ │ │ │ ├── abrt_sosreport_priv_esc.rb │ │ │ │ │ ├── af_packet_chocobo_root_priv_esc.rb │ │ │ │ │ ├── af_packet_packet_set_ring_priv_esc.rb │ │ │ │ │ ├── apport_abrt_chroot_priv_esc.rb │ │ │ │ │ ├── apt_package_manager_persistence.rb │ │ │ │ │ ├── asan_suid_executable_priv_esc.rb │ │ │ │ │ ├── autostart_persistence.rb │ │ │ │ │ ├── bash_profile_persistence.rb │ │ │ │ │ ├── blueman_set_dhcp_handler_dbus_priv_esc.rb │ │ │ │ │ ├── bpf_priv_esc.rb │ │ │ │ │ ├── bpf_sign_extension_priv_esc.rb │ │ │ │ │ ├── cpi_runrshell_priv_esc.rb │ │ │ │ │ ├── cron_persistence.rb │ │ │ │ │ ├── cve_2021_3490_ebpf_alu32_bounds_check_lpe.rb │ │ │ │ │ ├── cve_2021_3493_overlayfs.rb │ │ │ │ │ ├── cve_2021_38648_omigod.rb │ │ │ │ │ ├── cve_2021_4034_pwnkit_lpe_pkexec.rb │ │ │ │ │ ├── cve_2022_0847_dirtypipe.rb │ │ │ │ │ ├── cve_2022_0995_watch_queue.rb │ │ │ │ │ ├── cve_2022_1043_io_uring_priv_esc.rb │ │ │ │ │ ├── desktop_privilege_escalation.rb │ │ │ │ │ ├── diamorphine_rootkit_signal_priv_esc.rb │ │ │ │ │ ├── docker_daemon_privilege_escalation.rb │ │ │ │ │ ├── docker_privileged_container_escape.rb │ │ │ │ │ ├── docker_runc_escape.rb │ │ │ │ │ ├── exim4_deliver_message_priv_esc.rb │ │ │ │ │ ├── f5_create_user.rb │ │ │ │ │ ├── glibc_ld_audit_dso_load_priv_esc.rb │ │ │ │ │ ├── glibc_origin_expansion_priv_esc.rb │ │ │ │ │ ├── glibc_realpath_priv_esc.rb │ │ │ │ │ ├── hp_smhstart.rb │ │ │ │ │ ├── hp_xglance_priv_esc.rb │ │ │ │ │ ├── juju_run_agent_priv_esc.rb │ │ │ │ │ ├── kloxo_lxsuexec.rb │ │ │ │ │ ├── ktsuss_suid_priv_esc.rb │ │ │ │ │ ├── lastore_daemon_dbus_priv_esc.rb │ │ │ │ │ ├── libuser_roothelper_priv_esc.rb │ │ │ │ │ ├── nested_namespace_idmap_limit_priv_esc.rb │ │ │ │ │ ├── netfilter_nft_set_elem_init_privesc.rb │ │ │ │ │ ├── netfilter_priv_esc_ipv4.rb │ │ │ │ │ ├── netfilter_xtables_heap_oob_write_priv_esc.rb │ │ │ │ │ ├── network_manager_vpnc_username_priv_esc.rb │ │ │ │ │ ├── ntfs3g_priv_esc.rb │ │ │ │ │ ├── omniresolve_suid_priv_esc.rb │ │ │ │ │ ├── overlayfs_priv_esc.rb │ │ │ │ │ ├── pihole_remove_commands_lpe.rb │ │ │ │ │ ├── pkexec.rb │ │ │ │ │ ├── polkit_dbus_auth_bypass.rb │ │ │ │ │ ├── ptrace_sudo_token_priv_esc.rb │ │ │ │ │ ├── ptrace_traceme_pkexec_helper.rb │ │ │ │ │ ├── rc_local_persistence.rb │ │ │ │ │ ├── rds_atomic_free_op_null_pointer_deref_priv_esc.rb │ │ │ │ │ ├── rds_rds_page_copy_user_priv_esc.rb │ │ │ │ │ ├── recvmmsg_priv_esc.rb │ │ │ │ │ ├── reptile_rootkit_reptile_cmd_priv_esc.rb │ │ │ │ │ ├── service_persistence.rb │ │ │ │ │ ├── servu_ftp_server_prepareinstallation_priv_esc.rb │ │ │ │ │ ├── sock_sendpage.rb │ │ │ │ │ ├── sophos_wpa_clear_keys.rb │ │ │ │ │ ├── su_login.rb │ │ │ │ │ ├── sudo_baron_samedit.rb │ │ │ │ │ ├── sudoedit_bypass_priv_esc.rb │ │ │ │ │ ├── systemtap_modprobe_options_priv_esc.rb │ │ │ │ │ ├── tomcat_rhel_based_temp_priv_esc.rb │ │ │ │ │ ├── tomcat_ubuntu_log_init_priv_esc.rb │ │ │ │ │ ├── ubuntu_enlightenment_mount_priv_esc.rb │ │ │ │ │ ├── udev_netlink.rb │ │ │ │ │ ├── ueb_bpserverd_privesc.rb │ │ │ │ │ ├── ufo_privilege_escalation.rb │ │ │ │ │ ├── vcenter_java_wrapper_vmon_priv_esc.rb │ │ │ │ │ ├── vmware_alsa_config.rb │ │ │ │ │ ├── vmware_mount.rb │ │ │ │ │ ├── vmware_workspace_one_access_certproxy_lpe.rb │ │ │ │ │ ├── vmware_workspace_one_access_cve_2022_22960.rb │ │ │ │ │ ├── vmwgfx_fd_priv_esc.rb │ │ │ │ │ ├── yum_package_manager_persistence.rb │ │ │ │ │ ├── zimbra_postfix_priv_esc.rb │ │ │ │ │ ├── zimbra_slapper_priv_esc.rb │ │ │ │ │ ├── zpanel_zsudo.rb │ │ │ │ │ └── zyxel_suid_cp_lpe.rb │ │ │ │ ├── misc │ │ │ │ │ ├── accellion_fta_mpipe2.rb │ │ │ │ │ ├── aerospike_database_udf_cmd_exec.rb │ │ │ │ │ ├── asus_infosvr_auth_bypass_exec.rb │ │ │ │ │ ├── cisco_rv340_sslvpn.rb │ │ │ │ │ ├── cve_2020_13160_anydesk.rb │ │ │ │ │ ├── cve_2021_38647_omigod.rb │ │ │ │ │ ├── gld_postfix.rb │ │ │ │ │ ├── hid_discoveryd_command_blink_on_unauth_rce.rb │ │ │ │ │ ├── hikvision_rtsp_bof.rb │ │ │ │ │ ├── hp_data_protector_cmd_exec.rb │ │ │ │ │ ├── hp_jetdirect_path_traversal.rb │ │ │ │ │ ├── hp_nnmi_pmd_bof.rb │ │ │ │ │ ├── hp_vsa_login_bof.rb │ │ │ │ │ ├── hplip_hpssd_exec.rb │ │ │ │ │ ├── ib_inet_connect.rb │ │ │ │ │ ├── ib_jrd8_create_database.rb │ │ │ │ │ ├── ib_open_marker_file.rb │ │ │ │ │ ├── ib_pwd_db_aliased.rb │ │ │ │ │ ├── igel_command_injection.rb │ │ │ │ │ ├── jenkins_java_deserialize.rb │ │ │ │ │ ├── jenkins_ldap_deserialize.rb │ │ │ │ │ ├── lprng_format_string.rb │ │ │ │ │ ├── mongod_native_helper.rb │ │ │ │ │ ├── nagios_nrpe_arguments.rb │ │ │ │ │ ├── netcore_udp_53413_backdoor.rb │ │ │ │ │ ├── netsupport_manager_agent.rb │ │ │ │ │ ├── nimbus_gettopologyhistory_cmd_exec.rb │ │ │ │ │ ├── novell_edirectory_ncp_bof.rb │ │ │ │ │ ├── opennms_java_serialize.rb │ │ │ │ │ ├── qnap_transcode_server.rb │ │ │ │ │ ├── quest_pmmasterd_bof.rb │ │ │ │ │ ├── saltstack_salt_unauth_rce.rb │ │ │ │ │ ├── sercomm_exec.rb │ │ │ │ │ ├── tplink_archer_a7_c7_lan_rce.rb │ │ │ │ │ ├── ueb9_bpserverd.rb │ │ │ │ │ ├── unidata_udadmin_auth_bypass.rb │ │ │ │ │ ├── unidata_udadmin_password_stack_overflow.rb │ │ │ │ │ ├── zabbix_server_exec.rb │ │ │ │ │ ├── zyxel_ike_decoder_rce_cve_2023_28771.rb │ │ │ │ │ └── zyxel_multiple_devices_zhttp_lan_rce.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 │ │ │ │ ├── redis │ │ │ │ │ ├── redis_debian_sandbox_escape.rb │ │ │ │ │ └── redis_replication_cmd_exec.rb │ │ │ │ ├── samba │ │ │ │ │ ├── chain_reply.rb │ │ │ │ │ ├── is_known_pipename.rb │ │ │ │ │ ├── lsa_transnames_heap.rb │ │ │ │ │ ├── setinfopolicy_heap.rb │ │ │ │ │ └── trans2open.rb │ │ │ │ ├── smtp │ │ │ │ │ ├── apache_james_exec.rb │ │ │ │ │ ├── exim4_dovecot_exec.rb │ │ │ │ │ ├── exim_gethostbyname_bof.rb │ │ │ │ │ └── haraka.py │ │ │ │ ├── snmp │ │ │ │ │ ├── awind_snmp_exec.rb │ │ │ │ │ └── net_snmpd_rw_access.rb │ │ │ │ ├── ssh │ │ │ │ │ ├── ceragon_fibeair_known_privkey.rb │ │ │ │ │ ├── cisco_ucs_scpuser.rb │ │ │ │ │ ├── exagrid_known_privkey.rb │ │ │ │ │ ├── f5_bigip_known_privkey.rb │ │ │ │ │ ├── ibm_drm_a3user.rb │ │ │ │ │ ├── loadbalancerorg_enterprise_known_privkey.rb │ │ │ │ │ ├── mercurial_ssh_exec.rb │ │ │ │ │ ├── microfocus_obr_shrboadmin.rb │ │ │ │ │ ├── quantum_dxi_known_privkey.rb │ │ │ │ │ ├── quantum_vmpro_backdoor.rb │ │ │ │ │ ├── solarwinds_lem_exec.rb │ │ │ │ │ ├── symantec_smg_ssh.rb │ │ │ │ │ ├── vmware_vdp_known_privkey.rb │ │ │ │ │ └── vyos_restricted_shell_privesc.rb │ │ │ │ ├── telnet │ │ │ │ │ ├── netgear_telnetenable.rb │ │ │ │ │ └── telnet_encrypt_keyid.rb │ │ │ │ └── upnp │ │ │ │ │ ├── belkin_wemo_upnp_exec.rb │ │ │ │ │ ├── dlink_dir859_exec_ssdpcgi.rb │ │ │ │ │ ├── dlink_dir859_subscribe_exec.rb │ │ │ │ │ ├── dlink_upnp_msearch_exec.rb │ │ │ │ │ └── miniupnpd_soap_bof.rb │ │ │ ├── mainframe │ │ │ │ └── ftp │ │ │ │ │ └── ftp_jcl_creds.rb │ │ │ ├── multi │ │ │ │ ├── browser │ │ │ │ │ ├── adobe_flash_hacking_team_uaf.rb │ │ │ │ │ ├── adobe_flash_nellymoser_bof.rb │ │ │ │ │ ├── adobe_flash_net_connection_confusion.rb │ │ │ │ │ ├── adobe_flash_opaque_background_uaf.rb │ │ │ │ │ ├── adobe_flash_pixel_bender_bof.rb │ │ │ │ │ ├── adobe_flash_shader_drawing_fill.rb │ │ │ │ │ ├── adobe_flash_shader_job_overflow.rb │ │ │ │ │ ├── adobe_flash_uncompress_zlib_uaf.rb │ │ │ │ │ ├── chrome_array_map.rb │ │ │ │ │ ├── chrome_cve_2021_21220_v8_insufficient_validation.rb │ │ │ │ │ ├── chrome_jscreate_sideeffect.rb │ │ │ │ │ ├── chrome_object_create.rb │ │ │ │ │ ├── chrome_simplifiedlowering_overflow.rb │ │ │ │ │ ├── firefox_escape_retval.rb │ │ │ │ │ ├── firefox_jit_use_after_free.rb │ │ │ │ │ ├── firefox_pdfjs_privilege_escalation.rb │ │ │ │ │ ├── firefox_proto_crmfrequest.rb │ │ │ │ │ ├── firefox_proxy_prototype.rb │ │ │ │ │ ├── firefox_queryinterface.rb │ │ │ │ │ ├── firefox_svg_plugin.rb │ │ │ │ │ ├── firefox_tostring_console_injection.rb │ │ │ │ │ ├── firefox_webidl_injection.rb │ │ │ │ │ ├── firefox_xpi_bootstrapped_addon.rb │ │ │ │ │ ├── itms_overflow.rb │ │ │ │ │ ├── java_atomicreferencearray.rb │ │ │ │ │ ├── java_calendar_deserialize.rb │ │ │ │ │ ├── java_getsoundbank_bof.rb │ │ │ │ │ ├── java_jre17_driver_manager.rb │ │ │ │ │ ├── java_jre17_exec.rb │ │ │ │ │ ├── java_jre17_glassfish_averagerangestatisticimpl.rb │ │ │ │ │ ├── java_jre17_jaxws.rb │ │ │ │ │ ├── java_jre17_jmxbean.rb │ │ │ │ │ ├── java_jre17_jmxbean_2.rb │ │ │ │ │ ├── java_jre17_method_handle.rb │ │ │ │ │ ├── java_jre17_provider_skeleton.rb │ │ │ │ │ ├── java_jre17_reflection_types.rb │ │ │ │ │ ├── java_rhino.rb │ │ │ │ │ ├── java_rmi_connection_impl.rb │ │ │ │ │ ├── java_setdifficm_bof.rb │ │ │ │ │ ├── java_signed_applet.rb │ │ │ │ │ ├── java_storeimagearray.rb │ │ │ │ │ ├── java_trusted_chain.rb │ │ │ │ │ ├── java_verifier_field_access.rb │ │ │ │ │ ├── mozilla_compareto.rb │ │ │ │ │ ├── mozilla_navigatorjava.rb │ │ │ │ │ ├── msfd_rce_browser.rb │ │ │ │ │ ├── opera_configoverwrite.rb │ │ │ │ │ ├── opera_historysearch.rb │ │ │ │ │ └── qtjava_pointer.rb │ │ │ │ ├── elasticsearch │ │ │ │ │ ├── script_mvel_rce.rb │ │ │ │ │ └── search_groovy_script.rb │ │ │ │ ├── fileformat │ │ │ │ │ ├── adobe_u3d_meshcont.rb │ │ │ │ │ ├── archive_tar_arb_file_write.rb │ │ │ │ │ ├── evince_cbt_cmd_injection.rb │ │ │ │ │ ├── ghostscript_failed_restore.rb │ │ │ │ │ ├── js_unpacker_eval_injection.rb │ │ │ │ │ ├── libreoffice_logo_exec.rb │ │ │ │ │ ├── libreoffice_macro_exec.rb │ │ │ │ │ ├── maple_maplet.rb │ │ │ │ │ ├── nodejs_js_yaml_load_code_exec.rb │ │ │ │ │ ├── office_word_macro.rb │ │ │ │ │ ├── peazip_command_injection.rb │ │ │ │ │ ├── swagger_param_inject.rb │ │ │ │ │ └── zip_slip.rb │ │ │ │ ├── ftp │ │ │ │ │ ├── pureftpd_bash_env_exec.rb │ │ │ │ │ └── wuftpd_site_exec_format.rb │ │ │ │ ├── gdb │ │ │ │ │ └── gdb_server_exec.rb │ │ │ │ ├── hams │ │ │ │ │ └── steamed.rb │ │ │ │ ├── handler.rb │ │ │ │ ├── http │ │ │ │ │ ├── activecollab_chat.rb │ │ │ │ │ ├── adobe_coldfusion_rce_cve_2023_26360.rb │ │ │ │ │ ├── agent_tesla_panel_rce.rb │ │ │ │ │ ├── ajaxplorer_checkinstall_exec.rb │ │ │ │ │ ├── apache_activemq_upload_jsp.rb │ │ │ │ │ ├── apache_apisix_api_default_token_rce.rb │ │ │ │ │ ├── apache_couchdb_erlang_rce.rb │ │ │ │ │ ├── apache_druid_cve_2023_25194.rb │ │ │ │ │ ├── apache_flink_jar_upload_exec.rb │ │ │ │ │ ├── apache_jetspeed_file_upload.rb │ │ │ │ │ ├── apache_mod_cgi_bash_env_exec.rb │ │ │ │ │ ├── apache_nifi_processor_rce.rb │ │ │ │ │ ├── apache_normalize_path_rce.rb │ │ │ │ │ ├── apache_rocketmq_update_config.rb │ │ │ │ │ ├── apache_roller_ognl_injection.rb │ │ │ │ │ ├── apprain_upload_exec.rb │ │ │ │ │ ├── atlassian_confluence_namespace_ognl_injection.rb │ │ │ │ │ ├── atlassian_confluence_webwork_ognl_injection.rb │ │ │ │ │ ├── atlassian_crowd_pdkinstall_plugin_upload_rce.rb │ │ │ │ │ ├── atutor_sqli.rb │ │ │ │ │ ├── atutor_upload_traversal.rb │ │ │ │ │ ├── auxilium_upload_exec.rb │ │ │ │ │ ├── axis2_deployer.rb │ │ │ │ │ ├── baldr_upload_exec.rb │ │ │ │ │ ├── bassmaster_js_injection.rb │ │ │ │ │ ├── bitbucket_env_var_rce.rb │ │ │ │ │ ├── bolt_file_upload.rb │ │ │ │ │ ├── builderengine_upload_exec.rb │ │ │ │ │ ├── caidao_php_backdoor_exec.rb │ │ │ │ │ ├── churchinfo_upload_exec.rb │ │ │ │ │ ├── cisco_dcnm_upload.rb │ │ │ │ │ ├── cisco_dcnm_upload_2019.rb │ │ │ │ │ ├── clipbucket_fileupload_exec.rb │ │ │ │ │ ├── cmsms_object_injection_rce.rb │ │ │ │ │ ├── cmsms_showtime2_rce.rb │ │ │ │ │ ├── cmsms_upload_rename_rce.rb │ │ │ │ │ ├── cockpit_cms_rce.rb │ │ │ │ │ ├── coldfusion_ckeditor_file_upload.rb │ │ │ │ │ ├── coldfusion_rds_auth_bypass.rb │ │ │ │ │ ├── confluence_widget_connector.rb │ │ │ │ │ ├── cups_bash_env_exec.rb │ │ │ │ │ ├── cuteflow_upload_exec.rb │ │ │ │ │ ├── cve_2021_35464_forgerock_openam.rb │ │ │ │ │ ├── dexter_casinoloader_exec.rb │ │ │ │ │ ├── dotcms_file_upload_rce.rb │ │ │ │ │ ├── drupal_drupageddon.rb │ │ │ │ │ ├── eaton_nsm_code_exec.rb │ │ │ │ │ ├── eventlog_file_upload.rb │ │ │ │ │ ├── extplorer_upload_exec.rb │ │ │ │ │ ├── familycms_less_exec.rb │ │ │ │ │ ├── fortra_goanywhere_rce_cve_2023_0669.rb │ │ │ │ │ ├── freenas_exec_raw.rb │ │ │ │ │ ├── gestioip_exec.rb │ │ │ │ │ ├── getsimplecms_unauth_code_exec.rb │ │ │ │ │ ├── git_client_command_exec.rb │ │ │ │ │ ├── git_lfs_clone_command_exec.rb │ │ │ │ │ ├── git_submodule_command_exec.rb │ │ │ │ │ ├── git_submodule_url_exec.rb │ │ │ │ │ ├── gitea_git_fetch_rce.rb │ │ │ │ │ ├── gitea_git_hooks_rce.rb │ │ │ │ │ ├── gitlab_exif_rce.rb │ │ │ │ │ ├── gitlab_file_read_rce.rb │ │ │ │ │ ├── gitlab_github_import_rce_cve_2022_2992.rb │ │ │ │ │ ├── gitlab_shell_exec.rb │ │ │ │ │ ├── gitlist_arg_injection.rb │ │ │ │ │ ├── gitorious_graph.rb │ │ │ │ │ ├── glassfish_deployer.rb │ │ │ │ │ ├── glossword_upload_exec.rb │ │ │ │ │ ├── glpi_install_rce.rb │ │ │ │ │ ├── gogs_git_hooks_rce.rb │ │ │ │ │ ├── horde_csv_rce.rb │ │ │ │ │ ├── horde_form_file_upload.rb │ │ │ │ │ ├── horde_href_backdoor.rb │ │ │ │ │ ├── horizontcms_upload_exec.rb │ │ │ │ │ ├── hp_sitescope_issuesiebelcmd.rb │ │ │ │ │ ├── hp_sitescope_uploadfileshandler.rb │ │ │ │ │ ├── hp_sys_mgmt_exec.rb │ │ │ │ │ ├── hyperic_hq_script_console.rb │ │ │ │ │ ├── ibm_openadmin_tool_soap_welcomeserver_exec.rb │ │ │ │ │ ├── ispconfig_php_exec.rb │ │ │ │ │ ├── jboss_bshdeployer.rb │ │ │ │ │ ├── jboss_deploymentfilerepository.rb │ │ │ │ │ ├── jboss_invoke_deploy.rb │ │ │ │ │ ├── jboss_maindeployer.rb │ │ │ │ │ ├── jboss_seam_upload_exec.rb │ │ │ │ │ ├── jenkins_metaprogramming.rb │ │ │ │ │ ├── jenkins_script_console.rb │ │ │ │ │ ├── jenkins_xstream_deserialize.rb │ │ │ │ │ ├── jira_hipchat_template.rb │ │ │ │ │ ├── jira_plugin_upload.rb │ │ │ │ │ ├── joomla_http_header_rce.rb │ │ │ │ │ ├── kong_gateway_admin_api_rce.rb │ │ │ │ │ ├── kordil_edms_upload_exec.rb │ │ │ │ │ ├── lcms_php_exec.rb │ │ │ │ │ ├── liferay_java_unmarshalling.rb │ │ │ │ │ ├── log1cms_ajax_create_folder.rb │ │ │ │ │ ├── log4shell_header_injection.rb │ │ │ │ │ ├── lucee_scheduled_job.rb │ │ │ │ │ ├── magento_unserialize.rb │ │ │ │ │ ├── makoserver_cmd_exec.rb │ │ │ │ │ ├── manage_engine_dc_pmp_sqli.rb │ │ │ │ │ ├── manageengine_adselfservice_plus_saml_rce_cve_2022_47966.rb │ │ │ │ │ ├── manageengine_auth_upload.rb │ │ │ │ │ ├── manageengine_sd_uploader.rb │ │ │ │ │ ├── manageengine_search_sqli.rb │ │ │ │ │ ├── manageengine_servicedesk_plus_saml_rce_cve_2022_47966.rb │ │ │ │ │ ├── mantisbt_manage_proj_page_rce.rb │ │ │ │ │ ├── mantisbt_php_exec.rb │ │ │ │ │ ├── maracms_upload_exec.rb │ │ │ │ │ ├── mediawiki_syntaxhighlight.rb │ │ │ │ │ ├── mediawiki_thumb.rb │ │ │ │ │ ├── metasploit_static_secret_key_base.rb │ │ │ │ │ ├── metasploit_webui_console_command_execution.rb │ │ │ │ │ ├── microfocus_obm_auth_rce.rb │ │ │ │ │ ├── microfocus_ucmdb_unauth_deser.rb │ │ │ │ │ ├── mma_backdoor_upload.rb │ │ │ │ │ ├── mobilecartly_upload_exec.rb │ │ │ │ │ ├── monitorr_webshell_rce_cve_2020_28871.rb │ │ │ │ │ ├── monstra_fileupload_exec.rb │ │ │ │ │ ├── moodle_admin_shell_upload.rb │ │ │ │ │ ├── moodle_spelling_binary_rce.rb │ │ │ │ │ ├── moodle_spelling_path_rce.rb │ │ │ │ │ ├── moodle_teacher_enrollment_priv_esc_to_rce.rb │ │ │ │ │ ├── movabletype_upgrade_exec.rb │ │ │ │ │ ├── mutiny_subnetmask_exec.rb │ │ │ │ │ ├── mybb_rce_cve_2022_24734.rb │ │ │ │ │ ├── nas4free_php_exec.rb │ │ │ │ │ ├── navigate_cms_rce.rb │ │ │ │ │ ├── netwin_surgeftp_exec.rb │ │ │ │ │ ├── nibbleblog_file_upload.rb │ │ │ │ │ ├── nostromo_code_exec.rb │ │ │ │ │ ├── novell_servicedesk_rce.rb │ │ │ │ │ ├── nuuo_nvrmini_upgrade_rce.rb │ │ │ │ │ ├── october_upload_bypass_exec.rb │ │ │ │ │ ├── op5_license.rb │ │ │ │ │ ├── op5_welcome.rb │ │ │ │ │ ├── open_web_analytics_rce.rb │ │ │ │ │ ├── openfire_auth_bypass.rb │ │ │ │ │ ├── openfire_auth_bypass_rce_cve_2023_32315.rb │ │ │ │ │ ├── openmediavault_cmd_exec.rb │ │ │ │ │ ├── openmrs_deserialization.rb │ │ │ │ │ ├── openx_backdoor_php.rb │ │ │ │ │ ├── opmanager_socialit_file_upload.rb │ │ │ │ │ ├── opmanager_sumpdu_deserialization.rb │ │ │ │ │ ├── oracle_ats_file_upload.rb │ │ │ │ │ ├── oracle_reports_rce.rb │ │ │ │ │ ├── oracle_weblogic_wsat_deserialization_rce.rb │ │ │ │ │ ├── orientdb_exec.rb │ │ │ │ │ ├── oscommerce_installer_unauth_code_exec.rb │ │ │ │ │ ├── pandora_upload_exec.rb │ │ │ │ │ ├── papercut_ng_auth_bypass.rb │ │ │ │ │ ├── pentaho_business_server_authbypass_and_ssti.rb │ │ │ │ │ ├── phoenix_exec.rb │ │ │ │ │ ├── php_cgi_arg_injection.rb │ │ │ │ │ ├── php_fpm_rce.rb │ │ │ │ │ ├── php_utility_belt_rce.rb │ │ │ │ │ ├── php_volunteer_upload_exec.rb │ │ │ │ │ ├── phpfilemanager_rce.rb │ │ │ │ │ ├── phpldapadmin_query_engine.rb │ │ │ │ │ ├── phpmailer_arg_injection.rb │ │ │ │ │ ├── phpmoadmin_exec.rb │ │ │ │ │ ├── phpmyadmin_3522_backdoor.rb │ │ │ │ │ ├── phpmyadmin_lfi_rce.rb │ │ │ │ │ ├── phpmyadmin_null_termination_exec.rb │ │ │ │ │ ├── phpmyadmin_preg_replace.rb │ │ │ │ │ ├── phpscheduleit_start_date.rb │ │ │ │ │ ├── phpstudy_backdoor_rce.rb │ │ │ │ │ ├── phptax_exec.rb │ │ │ │ │ ├── phpwiki_ploticus_exec.rb │ │ │ │ │ ├── pimcore_unserialize_rce.rb │ │ │ │ │ ├── playsms_filename_exec.rb │ │ │ │ │ ├── playsms_template_injection.rb │ │ │ │ │ ├── playsms_uploadcsv_exec.rb │ │ │ │ │ ├── plone_popen2.rb │ │ │ │ │ ├── pmwiki_pagelist.rb │ │ │ │ │ ├── polarcms_upload_exec.rb │ │ │ │ │ ├── processmaker_exec.rb │ │ │ │ │ ├── processmaker_plugin_upload.rb │ │ │ │ │ ├── qdpm_authenticated_rce.rb │ │ │ │ │ ├── qdpm_upload_exec.rb │ │ │ │ │ ├── rails_actionpack_inline_exec.rb │ │ │ │ │ ├── rails_double_tap.rb │ │ │ │ │ ├── rails_dynamic_render_code_exec.rb │ │ │ │ │ ├── rails_json_yaml_code_exec.rb │ │ │ │ │ ├── rails_secret_deserialization.rb │ │ │ │ │ ├── rails_web_console_v2_code_exec.rb │ │ │ │ │ ├── rails_xml_yaml_code_exec.rb │ │ │ │ │ ├── rocket_servergraph_file_requestor_rce.rb │ │ │ │ │ ├── rudder_server_sqli_rce.rb │ │ │ │ │ ├── sflog_upload_exec.rb │ │ │ │ │ ├── shiro_rememberme_v124_deserialize.rb │ │ │ │ │ ├── shopware_createinstancefromnamedarguments_rce.rb │ │ │ │ │ ├── simple_backdoors_exec.rb │ │ │ │ │ ├── sit_file_upload.rb │ │ │ │ │ ├── snortreport_exec.rb │ │ │ │ │ ├── solarwinds_store_manager_auth_filter.rb │ │ │ │ │ ├── solr_velocity_rce.rb │ │ │ │ │ ├── sonicwall_gms_upload.rb │ │ │ │ │ ├── sonicwall_scrutinizer_methoddetail_sqli.rb │ │ │ │ │ ├── splunk_mappy_exec.rb │ │ │ │ │ ├── splunk_upload_app_exec.rb │ │ │ │ │ ├── spree_search_exec.rb │ │ │ │ │ ├── spree_searchlogic_exec.rb │ │ │ │ │ ├── spring_cloud_function_spel_injection.rb │ │ │ │ │ ├── spring_framework_rce_spring4shell.rb │ │ │ │ │ ├── struts2_code_exec_showcase.rb │ │ │ │ │ ├── struts2_content_type_ognl.rb │ │ │ │ │ ├── struts2_multi_eval_ognl.rb │ │ │ │ │ ├── struts2_namespace_ognl.rb │ │ │ │ │ ├── struts2_rest_xstream.rb │ │ │ │ │ ├── struts_code_exec.rb │ │ │ │ │ ├── struts_code_exec_classloader.rb │ │ │ │ │ ├── struts_code_exec_exception_delegator.rb │ │ │ │ │ ├── struts_code_exec_parameters.rb │ │ │ │ │ ├── struts_default_action_mapper.rb │ │ │ │ │ ├── struts_dev_mode.rb │ │ │ │ │ ├── struts_dmi_exec.rb │ │ │ │ │ ├── struts_dmi_rest_exec.rb │ │ │ │ │ ├── struts_include_params.rb │ │ │ │ │ ├── stunshell_eval.rb │ │ │ │ │ ├── stunshell_exec.rb │ │ │ │ │ ├── sugarcrm_webshell_cve_2023_22952.rb │ │ │ │ │ ├── sun_jsws_dav_options.rb │ │ │ │ │ ├── sysaid_auth_file_upload.rb │ │ │ │ │ ├── sysaid_rdslogs_file_upload.rb │ │ │ │ │ ├── testlink_upload_exec.rb │ │ │ │ │ ├── tomcat_jsp_upload_bypass.rb │ │ │ │ │ ├── tomcat_mgr_deploy.rb │ │ │ │ │ ├── tomcat_mgr_upload.rb │ │ │ │ │ ├── totaljs_cms_widget_exec.rb │ │ │ │ │ ├── traq_plugin_exec.rb │ │ │ │ │ ├── trendmicro_threat_discovery_admin_sys_time_cmdi.rb │ │ │ │ │ ├── ubiquiti_unifi_log4shell.rb │ │ │ │ │ ├── uptime_file_upload_1.rb │ │ │ │ │ ├── uptime_file_upload_2.rb │ │ │ │ │ ├── v0pcr3w_exec.rb │ │ │ │ │ ├── vbseo_proc_deutf.rb │ │ │ │ │ ├── vbulletin_getindexablecontent.rb │ │ │ │ │ ├── vbulletin_unserialize.rb │ │ │ │ │ ├── vbulletin_widget_template_rce.rb │ │ │ │ │ ├── vbulletin_widgetconfig_rce.rb │ │ │ │ │ ├── visual_mining_netcharts_upload.rb │ │ │ │ │ ├── vmware_vcenter_log4shell.rb │ │ │ │ │ ├── vmware_vcenter_uploadova_rce.rb │ │ │ │ │ ├── vtiger_install_rce.rb │ │ │ │ │ ├── vtiger_logo_upload_exec.rb │ │ │ │ │ ├── vtiger_php_exec.rb │ │ │ │ │ ├── vtiger_soap_upload.rb │ │ │ │ │ ├── weblogic_admin_handle_rce.rb │ │ │ │ │ ├── webnms_file_upload.rb │ │ │ │ │ ├── webpagetest_upload_exec.rb │ │ │ │ │ ├── werkzeug_debug_rce.rb │ │ │ │ │ ├── wikka_spam_exec.rb │ │ │ │ │ ├── wp_ait_csv_rce.rb │ │ │ │ │ ├── wp_catch_themes_demo_import.rb │ │ │ │ │ ├── wp_crop_rce.rb │ │ │ │ │ ├── wp_db_backup_rce.rb │ │ │ │ │ ├── wp_dnd_mul_file_rce.rb │ │ │ │ │ ├── wp_file_manager_rce.rb │ │ │ │ │ ├── wp_ninja_forms_unauthenticated_file_upload.rb │ │ │ │ │ ├── wp_plugin_backup_guard_rce.rb │ │ │ │ │ ├── wp_plugin_elementor_auth_upload_rce.rb │ │ │ │ │ ├── wp_plugin_fma_shortcode_unauth_rce.rb │ │ │ │ │ ├── wp_plugin_modern_events_calendar_rce.rb │ │ │ │ │ ├── wp_plugin_sp_project_document_rce.rb │ │ │ │ │ ├── wp_popular_posts_rce.rb │ │ │ │ │ ├── wp_responsive_thumbnail_slider_upload.rb │ │ │ │ │ ├── wp_simple_file_list_rce.rb │ │ │ │ │ ├── wso2_file_upload_rce.rb │ │ │ │ │ ├── x7chat2_php_exec.rb │ │ │ │ │ ├── zabbix_script_exec.rb │ │ │ │ │ ├── zemra_panel_rce.rb │ │ │ │ │ ├── zenworks_configuration_management_upload.rb │ │ │ │ │ ├── zenworks_control_center_upload.rb │ │ │ │ │ └── zpanel_information_disclosure_rce.rb │ │ │ │ ├── ids │ │ │ │ │ └── snort_dce_rpc.rb │ │ │ │ ├── iiop │ │ │ │ │ └── cve_2023_21839_weblogic_rce.rb │ │ │ │ ├── kubernetes │ │ │ │ │ └── exec.rb │ │ │ │ ├── local │ │ │ │ │ ├── allwinner_backdoor.rb │ │ │ │ │ ├── magnicomp_sysinfo_mcsiwrapper_priv_esc.rb │ │ │ │ │ ├── vagrant_synced_folder_vagrantfile_breakout.rb │ │ │ │ │ ├── xorg_x11_suid_server.rb │ │ │ │ │ └── xorg_x11_suid_server_modulepath.rb │ │ │ │ ├── misc │ │ │ │ │ ├── arkeia_agent_exec.rb │ │ │ │ │ ├── batik_svg_java.rb │ │ │ │ │ ├── bmc_patrol_cmd_exec.rb │ │ │ │ │ ├── bmc_server_automation_rscd_nsh_rce.rb │ │ │ │ │ ├── claymore_dual_miner_remote_manager_rce.rb │ │ │ │ │ ├── consul_rexec_exec.rb │ │ │ │ │ ├── consul_service_exec.rb │ │ │ │ │ ├── erlang_cookie_rce.rb │ │ │ │ │ ├── freeswitch_event_socket_cmd_exec.rb │ │ │ │ │ ├── hp_data_protector_exec_integutil.rb │ │ │ │ │ ├── hp_vsa_exec.rb │ │ │ │ │ ├── ibm_tm1_unauth_rce.rb │ │ │ │ │ ├── indesign_server_soap.rb │ │ │ │ │ ├── java_jdwp_debugger.rb │ │ │ │ │ ├── java_jmx_server.rb │ │ │ │ │ ├── java_rmi_server.rb │ │ │ │ │ ├── jboss_remoting_unified_invoker_rce.rb │ │ │ │ │ ├── legend_bot_exec.rb │ │ │ │ │ ├── msf_rpc_console.rb │ │ │ │ │ ├── msfd_rce_remote.rb │ │ │ │ │ ├── nodejs_v8_debugger.rb │ │ │ │ │ ├── nomad_exec.rb │ │ │ │ │ ├── openoffice_document_macro.rb │ │ │ │ │ ├── openview_omniback_exec.rb │ │ │ │ │ ├── osgi_console_exec.rb │ │ │ │ │ ├── pbot_exec.rb │ │ │ │ │ ├── persistent_hpca_radexec_exec.rb │ │ │ │ │ ├── qemu_monitor_hmp_migrate_cmd_exec.rb │ │ │ │ │ ├── ra1nx_pubcall_exec.rb │ │ │ │ │ ├── teamcity_agent_xmlrpc_exec.rb │ │ │ │ │ ├── veritas_netbackup_cmdexec.rb │ │ │ │ │ ├── w3tw0rk_exec.rb │ │ │ │ │ ├── weblogic_deserialize.rb │ │ │ │ │ ├── weblogic_deserialize_asyncresponseservice.rb │ │ │ │ │ ├── weblogic_deserialize_badattr_extcomp.rb │ │ │ │ │ ├── weblogic_deserialize_badattrval.rb │ │ │ │ │ ├── weblogic_deserialize_marshalledobject.rb │ │ │ │ │ ├── weblogic_deserialize_rawobject.rb │ │ │ │ │ ├── weblogic_deserialize_unicastref.rb │ │ │ │ │ ├── wireshark_lwres_getaddrbyname.rb │ │ │ │ │ ├── wireshark_lwres_getaddrbyname_loop.rb │ │ │ │ │ ├── xdh_x_exec.rb │ │ │ │ │ └── zend_java_bridge.rb │ │ │ │ ├── mysql │ │ │ │ │ └── mysql_udf_payload.rb │ │ │ │ ├── ntp │ │ │ │ │ └── ntp_overflow.rb │ │ │ │ ├── php │ │ │ │ │ ├── ignition_laravel_debug_rce.rb │ │ │ │ │ ├── php_unserialize_zval_cookie.rb │ │ │ │ │ └── wp_duplicator_code_inject.rb │ │ │ │ ├── postgres │ │ │ │ │ ├── postgres_copy_from_program_cmd_exec.rb │ │ │ │ │ └── postgres_createlang.rb │ │ │ │ ├── realserver │ │ │ │ │ └── describe.rb │ │ │ │ ├── samba │ │ │ │ │ ├── nttrans.rb │ │ │ │ │ └── usermap_script.rb │ │ │ │ ├── sap │ │ │ │ │ ├── cve_2020_6207_solman_rs.rb │ │ │ │ │ ├── sap_mgmt_con_osexec_payload.rb │ │ │ │ │ ├── sap_soap_rfc_sxpg_call_system_exec.rb │ │ │ │ │ └── sap_soap_rfc_sxpg_command_exec.rb │ │ │ │ ├── scada │ │ │ │ │ └── inductive_ignition_rce.rb │ │ │ │ ├── script │ │ │ │ │ └── web_delivery.rb │ │ │ │ ├── ssh │ │ │ │ │ └── sshexec.rb │ │ │ │ ├── svn │ │ │ │ │ └── svnserve_date.rb │ │ │ │ ├── upnp │ │ │ │ │ └── libupnp_ssdp_overflow.rb │ │ │ │ ├── veritas │ │ │ │ │ └── beagent_sha_auth_rce.rb │ │ │ │ ├── vnc │ │ │ │ │ └── vnc_keyboard_exec.rb │ │ │ │ ├── vpn │ │ │ │ │ └── tincd_bof.rb │ │ │ │ └── wyse │ │ │ │ │ └── hagent_untrusted_hsdata.rb │ │ │ ├── netware │ │ │ │ ├── smb │ │ │ │ │ └── lsass_cifs.rb │ │ │ │ └── sunrpc │ │ │ │ │ └── pkernel_callit.rb │ │ │ ├── openbsd │ │ │ │ └── local │ │ │ │ │ └── dynamic_loader_chpass_privesc.rb │ │ │ ├── osx │ │ │ │ ├── afp │ │ │ │ │ └── loginext.rb │ │ │ │ ├── arkeia │ │ │ │ │ └── type77.rb │ │ │ │ ├── browser │ │ │ │ │ ├── adobe_flash_delete_range_tl_op.rb │ │ │ │ │ ├── mozilla_mchannel.rb │ │ │ │ │ ├── osx_gatekeeper_bypass.rb │ │ │ │ │ ├── safari_file_policy.rb │ │ │ │ │ ├── safari_in_operator_side_effect.rb │ │ │ │ │ ├── safari_metadata_archive.rb │ │ │ │ │ ├── safari_proxy_object_type_confusion.rb │ │ │ │ │ ├── safari_user_assisted_applescript_exec.rb │ │ │ │ │ ├── safari_user_assisted_download_launch.rb │ │ │ │ │ └── software_update.rb │ │ │ │ ├── email │ │ │ │ │ └── mailapp_image_exec.rb │ │ │ │ ├── ftp │ │ │ │ │ └── webstar_ftp_user.rb │ │ │ │ ├── http │ │ │ │ │ └── evocam_webserver.rb │ │ │ │ ├── local │ │ │ │ │ ├── acronis_trueimage_xpc_privesc.rb │ │ │ │ │ ├── cfprefsd_race_condition.rb │ │ │ │ │ ├── dyld_print_to_file_root.rb │ │ │ │ │ ├── feedback_assistant_root.rb │ │ │ │ │ ├── iokit_keyboard_root.rb │ │ │ │ │ ├── libxpc_mitm_ssudo.rb │ │ │ │ │ ├── mac_dirty_cow.rb │ │ │ │ │ ├── nfs_mount_root.rb │ │ │ │ │ ├── persistence.rb │ │ │ │ │ ├── root_no_password.rb │ │ │ │ │ ├── rootpipe.rb │ │ │ │ │ ├── rootpipe_entitlements.rb │ │ │ │ │ ├── rsh_libmalloc.rb │ │ │ │ │ ├── setuid_tunnelblick.rb │ │ │ │ │ ├── setuid_viscosity.rb │ │ │ │ │ ├── sudo_password_bypass.rb │ │ │ │ │ ├── timemachine_cmd_injection.rb │ │ │ │ │ ├── tpwn.rb │ │ │ │ │ ├── vmware_bash_function_root.rb │ │ │ │ │ └── vmware_fusion_lpe.rb │ │ │ │ ├── mdns │ │ │ │ │ └── upnp_location.rb │ │ │ │ ├── misc │ │ │ │ │ └── ufo_ai.rb │ │ │ │ ├── rtsp │ │ │ │ │ └── quicktime_rtsp_content_type.rb │ │ │ │ └── samba │ │ │ │ │ ├── lsa_transnames_heap.rb │ │ │ │ │ └── trans2open.rb │ │ │ ├── qnx │ │ │ │ ├── local │ │ │ │ │ └── ifwatchd_priv_esc.rb │ │ │ │ └── qconn │ │ │ │ │ └── qconn_exec.rb │ │ │ ├── solaris │ │ │ │ ├── dtspcd │ │ │ │ │ └── heap_noir.rb │ │ │ │ ├── local │ │ │ │ │ ├── extremeparr_dtappgather_priv_esc.rb │ │ │ │ │ ├── libnspr_nspr_log_file_priv_esc.rb │ │ │ │ │ ├── rsh_stack_clash_priv_esc.rb │ │ │ │ │ └── xscreensaver_log_priv_esc.rb │ │ │ │ ├── lpd │ │ │ │ │ └── sendmail_exec.rb │ │ │ │ ├── samba │ │ │ │ │ ├── lsa_transnames_heap.rb │ │ │ │ │ └── trans2open.rb │ │ │ │ ├── ssh │ │ │ │ │ └── pam_username_bof.rb │ │ │ │ ├── sunrpc │ │ │ │ │ ├── sadmind_adm_build_path.rb │ │ │ │ │ ├── sadmind_exec.rb │ │ │ │ │ └── ypupdated_exec.rb │ │ │ │ └── telnet │ │ │ │ │ ├── fuser.rb │ │ │ │ │ └── ttyprompt.rb │ │ │ ├── unix │ │ │ │ ├── dhcp │ │ │ │ │ ├── bash_environment.rb │ │ │ │ │ └── rhel_dhcp_client_command_injection.rb │ │ │ │ ├── fileformat │ │ │ │ │ ├── exiftool_djvu_ant_perl_injection.rb │ │ │ │ │ ├── ghostscript_type_confusion.rb │ │ │ │ │ ├── imagemagick_delegate.rb │ │ │ │ │ ├── metasploit_libnotify_cmd_injection.rb │ │ │ │ │ └── metasploit_msfvenom_apk_template_cmd_injection.rb │ │ │ │ ├── ftp │ │ │ │ │ ├── proftpd_133c_backdoor.rb │ │ │ │ │ ├── proftpd_modcopy_exec.rb │ │ │ │ │ └── vsftpd_234_backdoor.rb │ │ │ │ ├── http │ │ │ │ │ ├── cacti_filter_sqli_rce.rb │ │ │ │ │ ├── contentkeeperweb_mimencode.rb │ │ │ │ │ ├── ctek_skyrouter.rb │ │ │ │ │ ├── dell_kace_k1000_upload.rb │ │ │ │ │ ├── epmp1000_get_chart_cmd_shell.rb │ │ │ │ │ ├── epmp1000_ping_cmd_shell.rb │ │ │ │ │ ├── freepbx_callmenum.rb │ │ │ │ │ ├── laravel_token_unserialize_exec.rb │ │ │ │ │ ├── lifesize_room.rb │ │ │ │ │ ├── pfsense_clickjacking.rb │ │ │ │ │ ├── pfsense_config_data_exec.rb │ │ │ │ │ ├── pfsense_diag_routes_webshell.rb │ │ │ │ │ ├── pfsense_graph_injection_exec.rb │ │ │ │ │ ├── pfsense_group_member_exec.rb │ │ │ │ │ ├── pfsense_pfblockerng_webshell.rb │ │ │ │ │ ├── pihole_blocklist_exec.rb │ │ │ │ │ ├── pihole_dhcp_mac_exec.rb │ │ │ │ │ ├── pihole_whitelist_exec.rb │ │ │ │ │ ├── quest_kace_systems_management_rce.rb │ │ │ │ │ ├── schneider_electric_net55xx_encoder.rb │ │ │ │ │ ├── syncovery_linux_rce_2022_36534.rb │ │ │ │ │ ├── tnftp_savefile.rb │ │ │ │ │ ├── twiki_debug_plugins.rb │ │ │ │ │ ├── vmturbo_vmtadmin_exec_noauth.rb │ │ │ │ │ ├── xdebug_unauth_exec.rb │ │ │ │ │ └── zivif_ipcheck_exec.rb │ │ │ │ ├── irc │ │ │ │ │ └── unreal_ircd_3281_backdoor.rb │ │ │ │ ├── local │ │ │ │ │ ├── at_persistence.rb │ │ │ │ │ ├── chkrootkit.rb │ │ │ │ │ ├── emacs_movemail.rb │ │ │ │ │ ├── exim_perl_startup.rb │ │ │ │ │ ├── netbsd_mail_local.rb │ │ │ │ │ ├── opensmtpd_oob_read_lpe.rb │ │ │ │ │ └── setuid_nmap.rb │ │ │ │ ├── misc │ │ │ │ │ ├── distcc_exec.rb │ │ │ │ │ ├── polycom_hdx_auth_bypass.rb │ │ │ │ │ ├── polycom_hdx_traceroute_exec.rb │ │ │ │ │ ├── spamassassin_exec.rb │ │ │ │ │ ├── xerox_mfp.rb │ │ │ │ │ └── zabbix_agent_exec.rb │ │ │ │ ├── smtp │ │ │ │ │ ├── clamav_milter_blackhole.rb │ │ │ │ │ ├── exim4_string_format.rb │ │ │ │ │ ├── morris_sendmail_debug.rb │ │ │ │ │ ├── opensmtpd_mail_from_rce.rb │ │ │ │ │ └── qmail_bash_env_exec.rb │ │ │ │ ├── sonicwall │ │ │ │ │ └── sonicwall_xmlrpc_rce.rb │ │ │ │ ├── ssh │ │ │ │ │ ├── arista_tacplus_shell.rb │ │ │ │ │ ├── array_vxag_vapv_privkey_privesc.rb │ │ │ │ │ └── tectia_passwd_changereq.rb │ │ │ │ ├── webapp │ │ │ │ │ ├── actualanalyzer_ant_cookie_exec.rb │ │ │ │ │ ├── aerohive_netconfig_lfi_log_poison_rce.rb │ │ │ │ │ ├── ajenti_auth_username_cmd_injection.rb │ │ │ │ │ ├── arkeia_upload_exec.rb │ │ │ │ │ ├── awstats_configdir_exec.rb │ │ │ │ │ ├── awstats_migrate_exec.rb │ │ │ │ │ ├── awstatstotals_multisort.rb │ │ │ │ │ ├── barracuda_img_exec.rb │ │ │ │ │ ├── base_qry_common.rb │ │ │ │ │ ├── basilic_diff_exec.rb │ │ │ │ │ ├── bolt_authenticated_rce.rb │ │ │ │ │ ├── cacti_graphimage_exec.rb │ │ │ │ │ ├── cakephp_cache_corruption.rb │ │ │ │ │ ├── carberp_backdoor_exec.rb │ │ │ │ │ ├── citrix_access_gateway_exec.rb │ │ │ │ │ ├── clipbucket_upload_exec.rb │ │ │ │ │ ├── coppermine_piceditor.rb │ │ │ │ │ ├── datalife_preview_exec.rb │ │ │ │ │ ├── dogfood_spell_exec.rb │ │ │ │ │ ├── drupal_coder_exec.rb │ │ │ │ │ ├── drupal_drupalgeddon2.rb │ │ │ │ │ ├── drupal_restws_exec.rb │ │ │ │ │ ├── drupal_restws_unserialize.rb │ │ │ │ │ ├── egallery_upload_exec.rb │ │ │ │ │ ├── elfinder_php_connector_exiftran_cmd_injection.rb │ │ │ │ │ ├── flashchat_upload_exec.rb │ │ │ │ │ ├── foswiki_maketext.rb │ │ │ │ │ ├── freepbx_config_exec.rb │ │ │ │ │ ├── fusionpbx_exec_cmd_exec.rb │ │ │ │ │ ├── fusionpbx_operator_panel_exec_cmd_exec.rb │ │ │ │ │ ├── generic_exec.rb │ │ │ │ │ ├── get_simple_cms_upload_exec.rb │ │ │ │ │ ├── google_proxystylesheet_exec.rb │ │ │ │ │ ├── graphite_pickle_exec.rb │ │ │ │ │ ├── guestbook_ssi_exec.rb │ │ │ │ │ ├── hastymail_exec.rb │ │ │ │ │ ├── havalite_upload_exec.rb │ │ │ │ │ ├── horde_unserialize_exec.rb │ │ │ │ │ ├── hybridauth_install_php_exec.rb │ │ │ │ │ ├── instantcms_exec.rb │ │ │ │ │ ├── invision_pboard_unserialize_exec.rb │ │ │ │ │ ├── joomla_akeeba_unserialize.rb │ │ │ │ │ ├── joomla_comfields_sqli_rce.rb │ │ │ │ │ ├── joomla_comjce_imgmanager.rb │ │ │ │ │ ├── joomla_contenthistory_sqli_rce.rb │ │ │ │ │ ├── joomla_media_upload_exec.rb │ │ │ │ │ ├── joomla_tinybrowser.rb │ │ │ │ │ ├── jquery_file_upload.rb │ │ │ │ │ ├── kimai_sqli.rb │ │ │ │ │ ├── libretto_upload_exec.rb │ │ │ │ │ ├── maarch_letterbox_file_upload.rb │ │ │ │ │ ├── mambo_cache_lite.rb │ │ │ │ │ ├── mitel_awc_exec.rb │ │ │ │ │ ├── moinmoin_twikidraw.rb │ │ │ │ │ ├── mybb_backdoor.rb │ │ │ │ │ ├── nagios3_history_cgi.rb │ │ │ │ │ ├── nagios3_statuswml_ping.rb │ │ │ │ │ ├── nagios_graph_explorer.rb │ │ │ │ │ ├── narcissus_backend_exec.rb │ │ │ │ │ ├── open_flash_chart_upload_exec.rb │ │ │ │ │ ├── openemr_sqli_privesc_upload.rb │ │ │ │ │ ├── openemr_upload_exec.rb │ │ │ │ │ ├── openmediavault_rpc_rce.rb │ │ │ │ │ ├── opennetadmin_ping_cmd_injection.rb │ │ │ │ │ ├── opensis_chain_exec.rb │ │ │ │ │ ├── opensis_modname_exec.rb │ │ │ │ │ ├── openview_connectednodes_exec.rb │ │ │ │ │ ├── openx_banner_edit.rb │ │ │ │ │ ├── oracle_vm_agent_utl.rb │ │ │ │ │ ├── oscommerce_filemanager.rb │ │ │ │ │ ├── pajax_remote_exec.rb │ │ │ │ │ ├── php_charts_exec.rb │ │ │ │ │ ├── php_eval.rb │ │ │ │ │ ├── php_include.rb │ │ │ │ │ ├── php_vbulletin_template.rb │ │ │ │ │ ├── php_xmlrpc_eval.rb │ │ │ │ │ ├── phpbb_highlight.rb │ │ │ │ │ ├── phpcollab_upload_exec.rb │ │ │ │ │ ├── phpmyadmin_config.rb │ │ │ │ │ ├── piwik_superuser_plugin_upload.rb │ │ │ │ │ ├── projectpier_upload_exec.rb │ │ │ │ │ ├── projectsend_upload_exec.rb │ │ │ │ │ ├── qtss_parse_xml_exec.rb │ │ │ │ │ ├── rconfig_install_cmd_exec.rb │ │ │ │ │ ├── redmine_scm_exec.rb │ │ │ │ │ ├── seportal_sqli_exec.rb │ │ │ │ │ ├── simple_e_document_upload_exec.rb │ │ │ │ │ ├── sixapart_movabletype_storable_exec.rb │ │ │ │ │ ├── skybluecanvas_exec.rb │ │ │ │ │ ├── sphpblog_file_upload.rb │ │ │ │ │ ├── spip_connect_exec.rb │ │ │ │ │ ├── spip_rce_form.rb │ │ │ │ │ ├── squash_yaml_exec.rb │ │ │ │ │ ├── squirrelmail_pgp_plugin.rb │ │ │ │ │ ├── sugarcrm_rest_unserialize_exec.rb │ │ │ │ │ ├── sugarcrm_unserialize_exec.rb │ │ │ │ │ ├── thinkphp_rce.rb │ │ │ │ │ ├── tikiwiki_graph_formula_exec.rb │ │ │ │ │ ├── tikiwiki_jhot_exec.rb │ │ │ │ │ ├── tikiwiki_unserialize_exec.rb │ │ │ │ │ ├── tikiwiki_upload_exec.rb │ │ │ │ │ ├── trixbox_ce_endpoint_devicemap_rce.rb │ │ │ │ │ ├── trixbox_langchoice.rb │ │ │ │ │ ├── tuleap_rest_unserialize_exec.rb │ │ │ │ │ ├── tuleap_unserialize_exec.rb │ │ │ │ │ ├── twiki_history.rb │ │ │ │ │ ├── twiki_maketext.rb │ │ │ │ │ ├── twiki_search.rb │ │ │ │ │ ├── vbulletin_vote_sqli_exec.rb │ │ │ │ │ ├── vicidial_manager_send_cmd_exec.rb │ │ │ │ │ ├── vicidial_user_authorization_unauth_cmd_exec.rb │ │ │ │ │ ├── webmin_show_cgi_exec.rb │ │ │ │ │ ├── webmin_upload_exec.rb │ │ │ │ │ ├── webtester_exec.rb │ │ │ │ │ ├── wp_admin_shell_upload.rb │ │ │ │ │ ├── wp_advanced_custom_fields_exec.rb │ │ │ │ │ ├── wp_ajax_load_more_file_upload.rb │ │ │ │ │ ├── wp_asset_manager_upload_exec.rb │ │ │ │ │ ├── wp_creativecontactform_file_upload.rb │ │ │ │ │ ├── wp_downloadmanager_upload.rb │ │ │ │ │ ├── wp_easycart_unrestricted_file_upload.rb │ │ │ │ │ ├── wp_foxypress_upload.rb │ │ │ │ │ ├── wp_frontend_editor_file_upload.rb │ │ │ │ │ ├── wp_google_document_embedder_exec.rb │ │ │ │ │ ├── wp_holding_pattern_file_upload.rb │ │ │ │ │ ├── wp_inboundio_marketing_file_upload.rb │ │ │ │ │ ├── wp_infinitewp_auth_bypass.rb │ │ │ │ │ ├── wp_infusionsoft_upload.rb │ │ │ │ │ ├── wp_lastpost_exec.rb │ │ │ │ │ ├── wp_mobile_detector_upload_execute.rb │ │ │ │ │ ├── wp_nmediawebsite_file_upload.rb │ │ │ │ │ ├── wp_optimizepress_upload.rb │ │ │ │ │ ├── wp_photo_gallery_unrestricted_file_upload.rb │ │ │ │ │ ├── wp_phpmailer_host_header.rb │ │ │ │ │ ├── wp_pie_register_bypass_rce.rb │ │ │ │ │ ├── wp_pixabay_images_upload.rb │ │ │ │ │ ├── wp_plainview_activity_monitor_rce.rb │ │ │ │ │ ├── wp_platform_exec.rb │ │ │ │ │ ├── wp_property_upload_exec.rb │ │ │ │ │ ├── wp_reflexgallery_file_upload.rb │ │ │ │ │ ├── wp_revslider_upload_execute.rb │ │ │ │ │ ├── wp_slideshowgallery_upload.rb │ │ │ │ │ ├── wp_symposium_shell_upload.rb │ │ │ │ │ ├── wp_total_cache_exec.rb │ │ │ │ │ ├── wp_worktheflow_upload.rb │ │ │ │ │ ├── wp_wpdiscuz_unauthenticated_file_upload.rb │ │ │ │ │ ├── wp_wpshop_ecommerce_file_upload.rb │ │ │ │ │ ├── wp_wptouch_file_upload.rb │ │ │ │ │ ├── wp_wysija_newsletters_upload.rb │ │ │ │ │ ├── xoda_file_upload.rb │ │ │ │ │ ├── xymon_useradm_cmd_exec.rb │ │ │ │ │ ├── zeroshell_exec.rb │ │ │ │ │ ├── zimbra_lfi.rb │ │ │ │ │ ├── zoneminder_lang_exec.rb │ │ │ │ │ ├── zoneminder_packagecontrol_exec.rb │ │ │ │ │ └── zpanel_username_exec.rb │ │ │ │ └── x11 │ │ │ │ │ └── x11_keyboard_exec.rb │ │ │ └── windows │ │ │ │ ├── antivirus │ │ │ │ ├── ams_hndlrsvc.rb │ │ │ │ ├── ams_xfr.rb │ │ │ │ ├── symantec_endpoint_manager_rce.rb │ │ │ │ ├── symantec_iao.rb │ │ │ │ ├── symantec_rtvscan.rb │ │ │ │ ├── symantec_workspace_streaming_exec.rb │ │ │ │ ├── trendmicro_serverprotect.rb │ │ │ │ ├── trendmicro_serverprotect_createbinding.rb │ │ │ │ └── trendmicro_serverprotect_earthagent.rb │ │ │ │ ├── arkeia │ │ │ │ └── type77.rb │ │ │ │ ├── backdoor │ │ │ │ └── energizer_duo_payload.rb │ │ │ │ ├── backupexec │ │ │ │ ├── name_service.rb │ │ │ │ ├── remote_agent.rb │ │ │ │ └── ssl_uaf.rb │ │ │ │ ├── brightstor │ │ │ │ ├── ca_arcserve_342.rb │ │ │ │ ├── discovery_tcp.rb │ │ │ │ ├── discovery_udp.rb │ │ │ │ ├── etrust_itm_alert.rb │ │ │ │ ├── hsmserver.rb │ │ │ │ ├── lgserver.rb │ │ │ │ ├── lgserver_multi.rb │ │ │ │ ├── lgserver_rxrlogin.rb │ │ │ │ ├── lgserver_rxssetdatagrowthscheduleandfilter.rb │ │ │ │ ├── lgserver_rxsuselicenseini.rb │ │ │ │ ├── license_gcr.rb │ │ │ │ ├── mediasrv_sunrpc.rb │ │ │ │ ├── message_engine.rb │ │ │ │ ├── message_engine_72.rb │ │ │ │ ├── message_engine_heap.rb │ │ │ │ ├── sql_agent.rb │ │ │ │ ├── tape_engine.rb │ │ │ │ ├── tape_engine_0x8a.rb │ │ │ │ └── universal_agent.rb │ │ │ │ ├── browser │ │ │ │ ├── adobe_cooltype_sing.rb │ │ │ │ ├── adobe_flash_avm2.rb │ │ │ │ ├── adobe_flash_casi32_int_overflow.rb │ │ │ │ ├── adobe_flash_copy_pixels_to_byte_array.rb │ │ │ │ ├── adobe_flash_domain_memory_uaf.rb │ │ │ │ ├── adobe_flash_filters_type_confusion.rb │ │ │ │ ├── adobe_flash_mp4_cprt.rb │ │ │ │ ├── adobe_flash_otf_font.rb │ │ │ │ ├── adobe_flash_pcre.rb │ │ │ │ ├── adobe_flash_regex_value.rb │ │ │ │ ├── adobe_flash_rtmp.rb │ │ │ │ ├── adobe_flash_sps.rb │ │ │ │ ├── adobe_flash_uncompress_zlib_uninitialized.rb │ │ │ │ ├── adobe_flash_worker_byte_array_uaf.rb │ │ │ │ ├── adobe_flashplayer_arrayindexing.rb │ │ │ │ ├── adobe_flashplayer_avm.rb │ │ │ │ ├── adobe_flashplayer_flash10o.rb │ │ │ │ ├── adobe_flashplayer_newfunction.rb │ │ │ │ ├── adobe_flatedecode_predictor02.rb │ │ │ │ ├── adobe_geticon.rb │ │ │ │ ├── adobe_jbig2decode.rb │ │ │ │ ├── adobe_media_newplayer.rb │ │ │ │ ├── adobe_shockwave_rcsl_corruption.rb │ │ │ │ ├── adobe_toolbutton.rb │ │ │ │ ├── adobe_utilprintf.rb │ │ │ │ ├── advantech_webaccess_dvs_getcolor.rb │ │ │ │ ├── aim_goaway.rb │ │ │ │ ├── aladdin_choosefilepath_bof.rb │ │ │ │ ├── amaya_bdo.rb │ │ │ │ ├── aol_ampx_convertfile.rb │ │ │ │ ├── aol_icq_downloadagent.rb │ │ │ │ ├── apple_itunes_playlist.rb │ │ │ │ ├── apple_quicktime_marshaled_punk.rb │ │ │ │ ├── apple_quicktime_mime_type.rb │ │ │ │ ├── apple_quicktime_rdrf.rb │ │ │ │ ├── apple_quicktime_rtsp.rb │ │ │ │ ├── apple_quicktime_smil_debug.rb │ │ │ │ ├── apple_quicktime_texml_font_table.rb │ │ │ │ ├── ask_shortformat.rb │ │ │ │ ├── asus_net4switch_ipswcom.rb │ │ │ │ ├── athocgov_completeinstallation.rb │ │ │ │ ├── autodesk_idrop.rb │ │ │ │ ├── aventail_epi_activex.rb │ │ │ │ ├── awingsoft_web3d_bof.rb │ │ │ │ ├── awingsoft_winds3d_sceneurl.rb │ │ │ │ ├── baofeng_storm_onbeforevideodownload.rb │ │ │ │ ├── barcode_ax49.rb │ │ │ │ ├── blackice_downloadimagefileurl.rb │ │ │ │ ├── c6_messenger_downloaderactivex.rb │ │ │ │ ├── ca_brightstor_addcolumn.rb │ │ │ │ ├── chilkat_crypt_writefile.rb │ │ │ │ ├── chrome_filereader_uaf.rb │ │ │ │ ├── cisco_anyconnect_exec.rb │ │ │ │ ├── cisco_playerpt_setsource.rb │ │ │ │ ├── cisco_playerpt_setsource_surl.rb │ │ │ │ ├── cisco_webex_ext.rb │ │ │ │ ├── citrix_gateway_actx.rb │ │ │ │ ├── clear_quest_cqole.rb │ │ │ │ ├── communicrypt_mail_activex.rb │ │ │ │ ├── creative_software_cachefolder.rb │ │ │ │ ├── crystal_reports_printcontrol.rb │ │ │ │ ├── dell_webcam_crazytalk.rb │ │ │ │ ├── dxstudio_player_exec.rb │ │ │ │ ├── ea_checkrequirements.rb │ │ │ │ ├── ebook_flipviewer_fviewerloading.rb │ │ │ │ ├── enjoysapgui_comp_download.rb │ │ │ │ ├── enjoysapgui_preparetoposthtml.rb │ │ │ │ ├── example.rb │ │ │ │ ├── exodus.rb │ │ │ │ ├── facebook_extractiptc.rb │ │ │ │ ├── firefox_smil_uaf.rb │ │ │ │ ├── foxit_reader_plugin_url_bof.rb │ │ │ │ ├── getgodm_http_response_bof.rb │ │ │ │ ├── gom_openurl.rb │ │ │ │ ├── greendam_url.rb │ │ │ │ ├── honeywell_hscremotedeploy_exec.rb │ │ │ │ ├── honeywell_tema_exec.rb │ │ │ │ ├── hp_alm_xgo_setshapenodetype_exec.rb │ │ │ │ ├── hp_easy_printer_care_xmlcachemgr.rb │ │ │ │ ├── hp_easy_printer_care_xmlsimpleaccessor.rb │ │ │ │ ├── hp_loadrunner_addfile.rb │ │ │ │ ├── hp_loadrunner_addfolder.rb │ │ │ │ ├── hp_loadrunner_writefilebinary.rb │ │ │ │ ├── hp_loadrunner_writefilestring.rb │ │ │ │ ├── hpmqc_progcolor.rb │ │ │ │ ├── hyleos_chemviewx_activex.rb │ │ │ │ ├── ibm_spss_c1sizer.rb │ │ │ │ ├── ibm_tivoli_pme_activex_bof.rb │ │ │ │ ├── ibmegath_getxmlvalue.rb │ │ │ │ ├── ibmlotusdomino_dwa_uploadmodule.rb │ │ │ │ ├── ie_cbutton_uaf.rb │ │ │ │ ├── ie_cgenericelement_uaf.rb │ │ │ │ ├── ie_createobject.rb │ │ │ │ ├── ie_execcommand_uaf.rb │ │ │ │ ├── ie_iscomponentinstalled.rb │ │ │ │ ├── ie_setmousecapture_uaf.rb │ │ │ │ ├── ie_unsafe_scripting.rb │ │ │ │ ├── imgeviewer_tifmergemultifiles.rb │ │ │ │ ├── indusoft_issymbol_internationalseparator.rb │ │ │ │ ├── inotes_dwa85w_bof.rb │ │ │ │ ├── intrust_annotatex_add.rb │ │ │ │ ├── java_basicservice_impl.rb │ │ │ │ ├── java_cmm.rb │ │ │ │ ├── java_codebase_trust.rb │ │ │ │ ├── java_docbase_bof.rb │ │ │ │ ├── java_mixer_sequencer.rb │ │ │ │ ├── java_ws_arginject_altjvm.rb │ │ │ │ ├── java_ws_double_quote.rb │ │ │ │ ├── java_ws_vmargs.rb │ │ │ │ ├── juniper_sslvpn_ive_setupdll.rb │ │ │ │ ├── kazaa_altnet_heap.rb │ │ │ │ ├── keyhelp_launchtripane_exec.rb │ │ │ │ ├── logitechvideocall_start.rb │ │ │ │ ├── lpviewer_url.rb │ │ │ │ ├── macrovision_downloadandexecute.rb │ │ │ │ ├── macrovision_unsafe.rb │ │ │ │ ├── malwarebytes_update_exec.rb │ │ │ │ ├── maxthon_history_xcs.rb │ │ │ │ ├── mcafee_mcsubmgr_vsprintf.rb │ │ │ │ ├── mcafee_mvt_exec.rb │ │ │ │ ├── mcafeevisualtrace_tracetarget.rb │ │ │ │ ├── mirc_irc_url.rb │ │ │ │ ├── mozilla_attribchildremoved.rb │ │ │ │ ├── mozilla_firefox_onreadystatechange.rb │ │ │ │ ├── mozilla_firefox_xmlserializer.rb │ │ │ │ ├── mozilla_interleaved_write.rb │ │ │ │ ├── mozilla_mchannel.rb │ │ │ │ ├── mozilla_nssvgvalue.rb │ │ │ │ ├── mozilla_nstreerange.rb │ │ │ │ ├── mozilla_reduceright.rb │ │ │ │ ├── ms03_020_ie_objecttype.rb │ │ │ │ ├── ms05_054_onload.rb │ │ │ │ ├── ms06_001_wmf_setabortproc.rb │ │ │ │ ├── ms06_013_createtextrange.rb │ │ │ │ ├── ms06_055_vml_method.rb │ │ │ │ ├── ms06_057_webview_setslice.rb │ │ │ │ ├── ms06_067_keyframe.rb │ │ │ │ ├── ms06_071_xml_core.rb │ │ │ │ ├── ms07_017_ani_loadimage_chunksize.rb │ │ │ │ ├── ms08_041_snapshotviewer.rb │ │ │ │ ├── ms08_053_mediaencoder.rb │ │ │ │ ├── ms08_070_visual_studio_msmask.rb │ │ │ │ ├── ms08_078_xml_corruption.rb │ │ │ │ ├── ms09_002_memory_corruption.rb │ │ │ │ ├── ms09_043_owc_htmlurl.rb │ │ │ │ ├── ms09_043_owc_msdso.rb │ │ │ │ ├── ms09_072_style_object.rb │ │ │ │ ├── ms10_002_aurora.rb │ │ │ │ ├── ms10_002_ie_object.rb │ │ │ │ ├── ms10_018_ie_behaviors.rb │ │ │ │ ├── ms10_018_ie_tabular_activex.rb │ │ │ │ ├── ms10_022_ie_vbscript_winhlp32.rb │ │ │ │ ├── ms10_026_avi_nsamplespersec.rb │ │ │ │ ├── ms10_042_helpctr_xss_cmd_exec.rb │ │ │ │ ├── ms10_046_shortcut_icon_dllloader.rb │ │ │ │ ├── ms10_090_ie_css_clip.rb │ │ │ │ ├── ms11_003_ie_css_import.rb │ │ │ │ ├── ms11_050_mshtml_cobjectelement.rb │ │ │ │ ├── ms11_081_option.rb │ │ │ │ ├── ms11_093_ole32.rb │ │ │ │ ├── ms12_004_midi.rb │ │ │ │ ├── ms12_037_ie_colspan.rb │ │ │ │ ├── ms12_037_same_id.rb │ │ │ │ ├── ms13_009_ie_slayoutrun_uaf.rb │ │ │ │ ├── ms13_022_silverlight_script_object.rb │ │ │ │ ├── ms13_037_svg_dashstyle.rb │ │ │ │ ├── ms13_055_canchor.rb │ │ │ │ ├── ms13_059_cflatmarkuppointer.rb │ │ │ │ ├── ms13_069_caret.rb │ │ │ │ ├── ms13_080_cdisplaypointer.rb │ │ │ │ ├── ms13_090_cardspacesigninhelper.rb │ │ │ │ ├── ms14_012_cmarkup_uaf.rb │ │ │ │ ├── ms14_012_textrange.rb │ │ │ │ ├── ms14_064_ole_code_execution.rb │ │ │ │ ├── ms16_051_vbscript.rb │ │ │ │ ├── msvidctl_mpeg2.rb │ │ │ │ ├── mswhale_checkforupdates.rb │ │ │ │ ├── msxml_get_definition_code_exec.rb │ │ │ │ ├── nctaudiofile2_setformatlikesample.rb │ │ │ │ ├── nis2004_antispam.rb │ │ │ │ ├── nis2004_get.rb │ │ │ │ ├── notes_handler_cmdinject.rb │ │ │ │ ├── novell_groupwise_gwcls1_actvx.rb │ │ │ │ ├── novelliprint_callbackurl.rb │ │ │ │ ├── novelliprint_datetime.rb │ │ │ │ ├── novelliprint_executerequest.rb │ │ │ │ ├── novelliprint_executerequest_dbg.rb │ │ │ │ ├── novelliprint_getdriversettings.rb │ │ │ │ ├── novelliprint_getdriversettings_2.rb │ │ │ │ ├── novelliprint_target_frame.rb │ │ │ │ ├── ntr_activex_check_bof.rb │ │ │ │ ├── ntr_activex_stopmodule.rb │ │ │ │ ├── oracle_autovue_setmarkupmode.rb │ │ │ │ ├── oracle_dc_submittoexpress.rb │ │ │ │ ├── oracle_webcenter_checkoutandopen.rb │ │ │ │ ├── orbit_connecting.rb │ │ │ │ ├── ovftool_format_string.rb │ │ │ │ ├── pcvue_func.rb │ │ │ │ ├── persits_xupload_traversal.rb │ │ │ │ ├── quickr_qp2_bof.rb │ │ │ │ ├── real_arcade_installerdlg.rb │ │ │ │ ├── realplayer_cdda_uri.rb │ │ │ │ ├── realplayer_console.rb │ │ │ │ ├── realplayer_import.rb │ │ │ │ ├── realplayer_qcp.rb │ │ │ │ ├── realplayer_smil.rb │ │ │ │ ├── roxio_cineplayer.rb │ │ │ │ ├── safari_xslt_output.rb │ │ │ │ ├── samsung_neti_wiewer_backuptoavi_bof.rb │ │ │ │ ├── samsung_security_manager_put.rb │ │ │ │ ├── sapgui_saveviewtosessionfile.rb │ │ │ │ ├── siemens_solid_edge_selistctrlx.rb │ │ │ │ ├── softartisans_getdrivename.rb │ │ │ │ ├── sonicwall_addrouteentry.rb │ │ │ │ ├── symantec_altirisdeployment_downloadandinstall.rb │ │ │ │ ├── symantec_altirisdeployment_runcmd.rb │ │ │ │ ├── symantec_appstream_unsafe.rb │ │ │ │ ├── symantec_backupexec_pvcalendar.rb │ │ │ │ ├── symantec_consoleutilities_browseandsavefile.rb │ │ │ │ ├── synactis_connecttosynactis_bof.rb │ │ │ │ ├── systemrequirementslab_unsafe.rb │ │ │ │ ├── teechart_pro.rb │ │ │ │ ├── tom_sawyer_tsgetx71ex552.rb │ │ │ │ ├── trendmicro_extsetowner.rb │ │ │ │ ├── trendmicro_officescan.rb │ │ │ │ ├── tumbleweed_filetransfer.rb │ │ │ │ ├── ubisoft_uplay_cmd_exec.rb │ │ │ │ ├── ultramjcam_openfiledig_bof.rb │ │ │ │ ├── ultraoffice_httpupload.rb │ │ │ │ ├── verypdf_pdfview.rb │ │ │ │ ├── viscom_movieplayer_drawtext.rb │ │ │ │ ├── vlc_amv.rb │ │ │ │ ├── vlc_mms_bof.rb │ │ │ │ ├── webdav_dll_hijacker.rb │ │ │ │ ├── webex_ucf_newobject.rb │ │ │ │ ├── wellintech_kingscada_kxclientdownload.rb │ │ │ │ ├── winamp_playlist_unc.rb │ │ │ │ ├── winamp_ultravox.rb │ │ │ │ ├── windvd7_applicationtype.rb │ │ │ │ ├── winzip_fileview.rb │ │ │ │ ├── wmi_admintools.rb │ │ │ │ ├── x360_video_player_set_text_bof.rb │ │ │ │ ├── xmplay_asx.rb │ │ │ │ ├── yahoomessenger_fvcom.rb │ │ │ │ ├── yahoomessenger_server.rb │ │ │ │ ├── zenturiprogramchecker_unsafe.rb │ │ │ │ └── zenworks_helplauncher_exec.rb │ │ │ │ ├── dcerpc │ │ │ │ ├── cve_2021_1675_printnightmare.rb │ │ │ │ ├── ms03_026_dcom.rb │ │ │ │ ├── ms05_017_msmq.rb │ │ │ │ ├── ms07_029_msdns_zonename.rb │ │ │ │ └── ms07_065_msmq.rb │ │ │ │ ├── email │ │ │ │ ├── ms07_017_ani_loadimage_chunksize.rb │ │ │ │ ├── ms10_045_outlook_ref_only.rb │ │ │ │ └── ms10_045_outlook_ref_resolve.rb │ │ │ │ ├── emc │ │ │ │ ├── alphastor_agent.rb │ │ │ │ ├── alphastor_device_manager_exec.rb │ │ │ │ ├── networker_format_string.rb │ │ │ │ └── replication_manager_exec.rb │ │ │ │ ├── fileformat │ │ │ │ ├── a_pdf_wav_to_mp3.rb │ │ │ │ ├── abbs_amp_lst.rb │ │ │ │ ├── acdsee_fotoslate_string.rb │ │ │ │ ├── acdsee_xpm.rb │ │ │ │ ├── actfax_import_users_bof.rb │ │ │ │ ├── activepdf_webgrabber.rb │ │ │ │ ├── adobe_collectemailinfo.rb │ │ │ │ ├── adobe_cooltype_sing.rb │ │ │ │ ├── adobe_flashplayer_button.rb │ │ │ │ ├── adobe_flashplayer_newfunction.rb │ │ │ │ ├── adobe_flatedecode_predictor02.rb │ │ │ │ ├── adobe_geticon.rb │ │ │ │ ├── adobe_illustrator_v14_eps.rb │ │ │ │ ├── adobe_jbig2decode.rb │ │ │ │ ├── adobe_libtiff.rb │ │ │ │ ├── adobe_media_newplayer.rb │ │ │ │ ├── adobe_pdf_embedded_exe.rb │ │ │ │ ├── adobe_pdf_embedded_exe_nojs.rb │ │ │ │ ├── adobe_reader_u3d.rb │ │ │ │ ├── adobe_toolbutton.rb │ │ │ │ ├── adobe_u3d_meshdecl.rb │ │ │ │ ├── adobe_utilprintf.rb │ │ │ │ ├── allplayer_m3u_bof.rb │ │ │ │ ├── altap_salamander_pdb.rb │ │ │ │ ├── aol_desktop_linktag.rb │ │ │ │ ├── aol_phobos_bof.rb │ │ │ │ ├── apple_quicktime_pnsize.rb │ │ │ │ ├── apple_quicktime_rdrf.rb │ │ │ │ ├── apple_quicktime_texml.rb │ │ │ │ ├── audio_coder_m3u.rb │ │ │ │ ├── audio_wkstn_pls.rb │ │ │ │ ├── audiotran_pls.rb │ │ │ │ ├── audiotran_pls_1424.rb │ │ │ │ ├── aviosoft_plf_buf.rb │ │ │ │ ├── bacnet_csv.rb │ │ │ │ ├── beetel_netconfig_ini_bof.rb │ │ │ │ ├── blazedvd_hdtv_bof.rb │ │ │ │ ├── blazedvd_plf.rb │ │ │ │ ├── boxoft_wav_to_mp3.rb │ │ │ │ ├── bpftp_client_bps_bof.rb │ │ │ │ ├── bsplayer_m3u.rb │ │ │ │ ├── ca_cab.rb │ │ │ │ ├── cain_abel_4918_rdp.rb │ │ │ │ ├── ccmplayer_m3u_bof.rb │ │ │ │ ├── chasys_draw_ies_bmp_bof.rb │ │ │ │ ├── coolpdf_image_stream_bof.rb │ │ │ │ ├── corelpdf_fusion_bof.rb │ │ │ │ ├── csound_getnum_bof.rb │ │ │ │ ├── cutezip_bof.rb │ │ │ │ ├── cve_2017_8464_lnk_rce.rb │ │ │ │ ├── cyberlink_lpp_bof.rb │ │ │ │ ├── cyberlink_p2g_bof.rb │ │ │ │ ├── cytel_studio_cy3.rb │ │ │ │ ├── deepburner_path.rb │ │ │ │ ├── destinymediaplayer16.rb │ │ │ │ ├── digital_music_pad_pls.rb │ │ │ │ ├── djstudio_pls_bof.rb │ │ │ │ ├── djvu_imageurl.rb │ │ │ │ ├── documalis_pdf_editor_and_scanner.rb │ │ │ │ ├── dupscout_xml.rb │ │ │ │ ├── dvdx_plf_bof.rb │ │ │ │ ├── easycdda_pls_bof.rb │ │ │ │ ├── emc_appextender_keyworks.rb │ │ │ │ ├── erdas_er_viewer_bof.rb │ │ │ │ ├── erdas_er_viewer_rf_report_error.rb │ │ │ │ ├── esignal_styletemplate_bof.rb │ │ │ │ ├── etrust_pestscan.rb │ │ │ │ ├── ezip_wizard_bof.rb │ │ │ │ ├── fatplayer_wav.rb │ │ │ │ ├── fdm_torrent.rb │ │ │ │ ├── feeddemon_opml.rb │ │ │ │ ├── foxit_reader_filewrite.rb │ │ │ │ ├── foxit_reader_launch.rb │ │ │ │ ├── foxit_reader_uaf.rb │ │ │ │ ├── foxit_title_bof.rb │ │ │ │ ├── free_mp3_ripper_wav.rb │ │ │ │ ├── galan_fileformat_bof.rb │ │ │ │ ├── gsm_sim.rb │ │ │ │ ├── gta_samp.rb │ │ │ │ ├── hhw_hhp_compiledfile_bof.rb │ │ │ │ ├── hhw_hhp_contentfile_bof.rb │ │ │ │ ├── hhw_hhp_indexfile_bof.rb │ │ │ │ ├── homm3_h3m.rb │ │ │ │ ├── ht_mp3player_ht3_bof.rb │ │ │ │ ├── ibm_forms_viewer_fontname.rb │ │ │ │ ├── ibm_pcm_ws.rb │ │ │ │ ├── icofx_bof.rb │ │ │ │ ├── ideal_migration_ipj.rb │ │ │ │ ├── iftp_schedule_bof.rb │ │ │ │ ├── irfanview_jpeg2000_bof.rb │ │ │ │ ├── ispvm_xcf_ispxcf.rb │ │ │ │ ├── kingview_kingmess_kvl.rb │ │ │ │ ├── lattice_pac_bof.rb │ │ │ │ ├── lotusnotes_lzh.rb │ │ │ │ ├── magix_musikmaker_16_mmm.rb │ │ │ │ ├── mcafee_hercules_deletesnapshot.rb │ │ │ │ ├── mcafee_showreport_exec.rb │ │ │ │ ├── mediacoder_m3u.rb │ │ │ │ ├── mediajukebox.rb │ │ │ │ ├── microp_mppl.rb │ │ │ │ ├── microsoft_windows_contact.rb │ │ │ │ ├── millenium_mp3_pls.rb │ │ │ │ ├── mini_stream_pls_bof.rb │ │ │ │ ├── mjm_coreplayer2011_s3m.rb │ │ │ │ ├── mjm_quickplayer_s3m.rb │ │ │ │ ├── moxa_mediadbplayback.rb │ │ │ │ ├── mplayer_m3u_bof.rb │ │ │ │ ├── mplayer_sami_bof.rb │ │ │ │ ├── ms09_067_excel_featheader.rb │ │ │ │ ├── ms10_004_textbytesatom.rb │ │ │ │ ├── ms10_038_excel_obj_bof.rb │ │ │ │ ├── ms10_087_rtf_pfragments_bof.rb │ │ │ │ ├── ms11_006_createsizeddibsection.rb │ │ │ │ ├── ms11_021_xlb_bof.rb │ │ │ │ ├── ms12_005.rb │ │ │ │ ├── ms12_027_mscomctl_bof.rb │ │ │ │ ├── ms13_071_theme.rb │ │ │ │ ├── ms14_017_rtf.rb │ │ │ │ ├── ms14_060_sandworm.rb │ │ │ │ ├── ms14_064_packager_python.rb │ │ │ │ ├── ms14_064_packager_run_as_admin.rb │ │ │ │ ├── ms15_020_shortcut_icon_dllloader.rb │ │ │ │ ├── ms15_100_mcl_exe.rb │ │ │ │ ├── ms_visual_basic_vbp.rb │ │ │ │ ├── mswin_tiff_overflow.rb │ │ │ │ ├── msworks_wkspictureinterface.rb │ │ │ │ ├── mymp3player_m3u.rb │ │ │ │ ├── netop.rb │ │ │ │ ├── nitro_reader_jsapi.rb │ │ │ │ ├── nuance_pdf_launch_overflow.rb │ │ │ │ ├── office_dde_delivery.rb │ │ │ │ ├── office_excel_slk.rb │ │ │ │ ├── office_ms17_11882.rb │ │ │ │ ├── office_ole_multiple_dll_hijack.rb │ │ │ │ ├── office_word_hta.rb │ │ │ │ ├── openoffice_ole.rb │ │ │ │ ├── orbit_download_failed_bof.rb │ │ │ │ ├── orbital_viewer_orb.rb │ │ │ │ ├── ovf_format_string.rb │ │ │ │ ├── proshow_cellimage_bof.rb │ │ │ │ ├── proshow_load_bof.rb │ │ │ │ ├── publishit_pui.rb │ │ │ │ ├── real_networks_netzip_bof.rb │ │ │ │ ├── real_player_url_property_bof.rb │ │ │ │ ├── realplayer_ver_attribute_bof.rb │ │ │ │ ├── safenet_softremote_groupname.rb │ │ │ │ ├── sascam_get.rb │ │ │ │ ├── scadaphone_zip.rb │ │ │ │ ├── shadow_stream_recorder_bof.rb │ │ │ │ ├── shaper_pdf_bof.rb │ │ │ │ ├── somplplayer_m3u.rb │ │ │ │ ├── subtitle_processor_m3u_bof.rb │ │ │ │ ├── syncbreeze_xml.rb │ │ │ │ ├── tfm_mmplayer_m3u_ppl_bof.rb │ │ │ │ ├── total_video_player_ini_bof.rb │ │ │ │ ├── tugzip.rb │ │ │ │ ├── ultraiso_ccd.rb │ │ │ │ ├── ultraiso_cue.rb │ │ │ │ ├── ursoft_w32dasm.rb │ │ │ │ ├── varicad_dwb.rb │ │ │ │ ├── videocharge_studio.rb │ │ │ │ ├── videolan_tivo.rb │ │ │ │ ├── videospirit_visprj.rb │ │ │ │ ├── visio_dxf_bof.rb │ │ │ │ ├── visiwave_vwr_type.rb │ │ │ │ ├── vlc_mkv.rb │ │ │ │ ├── vlc_modplug_s3m.rb │ │ │ │ ├── vlc_realtext.rb │ │ │ │ ├── vlc_smb_uri.rb │ │ │ │ ├── vlc_webm.rb │ │ │ │ ├── vuplayer_cue.rb │ │ │ │ ├── vuplayer_m3u.rb │ │ │ │ ├── watermark_master.rb │ │ │ │ ├── winamp_maki_bof.rb │ │ │ │ ├── winrar_ace.rb │ │ │ │ ├── winrar_name_spoofing.rb │ │ │ │ ├── wireshark_mpeg_overflow.rb │ │ │ │ ├── wireshark_packet_dect.rb │ │ │ │ ├── wm_downloader_m3u.rb │ │ │ │ ├── word_msdtjs_rce.rb │ │ │ │ ├── word_mshtml_rce.rb │ │ │ │ ├── xenorate_xpl_bof.rb │ │ │ │ ├── xion_m3u_sehbof.rb │ │ │ │ ├── xradio_xrl_sehbof.rb │ │ │ │ ├── zahir_enterprise_plus_csv.rb │ │ │ │ └── zinfaudioplayer221_pls.rb │ │ │ │ ├── firewall │ │ │ │ ├── blackice_pam_icq.rb │ │ │ │ └── kerio_auth.rb │ │ │ │ ├── ftp │ │ │ │ ├── 32bitftp_list_reply.rb │ │ │ │ ├── 3cdaemon_ftp_user.rb │ │ │ │ ├── aasync_list_reply.rb │ │ │ │ ├── ability_server_stor.rb │ │ │ │ ├── absolute_ftp_list_bof.rb │ │ │ │ ├── ayukov_nftp.rb │ │ │ │ ├── bison_ftp_bof.rb │ │ │ │ ├── cesarftp_mkd.rb │ │ │ │ ├── comsnd_ftpd_fmtstr.rb │ │ │ │ ├── dreamftp_format.rb │ │ │ │ ├── easyfilesharing_pass.rb │ │ │ │ ├── easyftp_cwd_fixret.rb │ │ │ │ ├── easyftp_list_fixret.rb │ │ │ │ ├── easyftp_mkd_fixret.rb │ │ │ │ ├── filecopa_list_overflow.rb │ │ │ │ ├── filewrangler_list_reply.rb │ │ │ │ ├── freefloatftp_user.rb │ │ │ │ ├── freefloatftp_wbem.rb │ │ │ │ ├── freeftpd_pass.rb │ │ │ │ ├── freeftpd_user.rb │ │ │ │ ├── ftpgetter_pwd_reply.rb │ │ │ │ ├── ftppad_list_reply.rb │ │ │ │ ├── ftpshell51_pwd_reply.rb │ │ │ │ ├── ftpshell_cli_bof.rb │ │ │ │ ├── ftpsynch_list_reply.rb │ │ │ │ ├── gekkomgr_list_reply.rb │ │ │ │ ├── globalscapeftp_input.rb │ │ │ │ ├── goldenftp_pass_bof.rb │ │ │ │ ├── httpdx_tolog_format.rb │ │ │ │ ├── kmftp_utility_cwd.rb │ │ │ │ ├── labf_nfsaxe.rb │ │ │ │ ├── leapftp_list_reply.rb │ │ │ │ ├── leapftp_pasv_reply.rb │ │ │ │ ├── ms09_053_ftpd_nlst.rb │ │ │ │ ├── netterm_netftpd_user.rb │ │ │ │ ├── odin_list_reply.rb │ │ │ │ ├── open_ftpd_wbem.rb │ │ │ │ ├── oracle9i_xdb_ftp_pass.rb │ │ │ │ ├── oracle9i_xdb_ftp_unlock.rb │ │ │ │ ├── pcman_put.rb │ │ │ │ ├── pcman_stor.rb │ │ │ │ ├── proftp_banner.rb │ │ │ │ ├── quickshare_traversal_write.rb │ │ │ │ ├── ricoh_dl_bof.rb │ │ │ │ ├── sami_ftpd_list.rb │ │ │ │ ├── sami_ftpd_user.rb │ │ │ │ ├── sasser_ftpd_port.rb │ │ │ │ ├── scriptftp_list.rb │ │ │ │ ├── seagull_list_reply.rb │ │ │ │ ├── servu_chmod.rb │ │ │ │ ├── servu_mdtm.rb │ │ │ │ ├── slimftpd_list_concat.rb │ │ │ │ ├── trellian_client_pasv.rb │ │ │ │ ├── turboftp_port.rb │ │ │ │ ├── vermillion_ftpd_port.rb │ │ │ │ ├── warftpd_165_pass.rb │ │ │ │ ├── warftpd_165_user.rb │ │ │ │ ├── wftpd_size.rb │ │ │ │ ├── winaxe_server_ready.rb │ │ │ │ ├── wing_ftp_admin_exec.rb │ │ │ │ ├── wsftp_server_503_mkd.rb │ │ │ │ ├── wsftp_server_505_xmd5.rb │ │ │ │ ├── xftp_client_pwd.rb │ │ │ │ ├── xlink_client.rb │ │ │ │ └── xlink_server.rb │ │ │ │ ├── games │ │ │ │ ├── mohaa_getinfo.rb │ │ │ │ ├── racer_503beta5.rb │ │ │ │ └── ut2004_secure.rb │ │ │ │ ├── http │ │ │ │ ├── adobe_robohelper_authbypass.rb │ │ │ │ ├── advantech_iview_networkservlet_cmd_inject.rb │ │ │ │ ├── advantech_iview_unauth_rce.rb │ │ │ │ ├── altn_securitygateway.rb │ │ │ │ ├── altn_webadmin.rb │ │ │ │ ├── amlibweb_webquerydll_app.rb │ │ │ │ ├── apache_activemq_traversal_upload.rb │ │ │ │ ├── apache_chunked.rb │ │ │ │ ├── apache_mod_rewrite_ldap.rb │ │ │ │ ├── apache_modjk_overflow.rb │ │ │ │ ├── apache_tika_jp2_jscript.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 │ │ │ │ ├── cayin_xpost_sql_rce.rb │ │ │ │ ├── cogent_datahub_command.rb │ │ │ │ ├── cogent_datahub_request_headers_bof.rb │ │ │ │ ├── coldfusion_fckeditor.rb │ │ │ │ ├── cyclope_ess_sqli.rb │ │ │ │ ├── desktopcentral_deserialization.rb │ │ │ │ ├── desktopcentral_file_upload.rb │ │ │ │ ├── desktopcentral_statusupdate_upload.rb │ │ │ │ ├── disk_pulse_enterprise_bof.rb │ │ │ │ ├── disk_pulse_enterprise_get.rb │ │ │ │ ├── diskboss_get_bof.rb │ │ │ │ ├── disksavvy_get_bof.rb │ │ │ │ ├── disksorter_bof.rb │ │ │ │ ├── dlink_central_wifimanager_rce.rb │ │ │ │ ├── dnn_cookie_deserialization_rce.rb │ │ │ │ ├── dup_scout_enterprise_login_bof.rb │ │ │ │ ├── dupscts_bof.rb │ │ │ │ ├── easychatserver_seh.rb │ │ │ │ ├── easyfilesharing_post.rb │ │ │ │ ├── easyfilesharing_seh.rb │ │ │ │ ├── easyftp_list.rb │ │ │ │ ├── edirectory_host.rb │ │ │ │ ├── edirectory_imonitor.rb │ │ │ │ ├── efs_easychatserver_username.rb │ │ │ │ ├── efs_fmws_userid_bof.rb │ │ │ │ ├── ektron_xslt_exec.rb │ │ │ │ ├── ektron_xslt_exec_ws.rb │ │ │ │ ├── ericom_access_now_bof.rb │ │ │ │ ├── exchange_chainedserializationbinder_rce.rb │ │ │ │ ├── exchange_ecp_dlp_policy.rb │ │ │ │ ├── exchange_ecp_viewstate.rb │ │ │ │ ├── exchange_proxylogon_rce.rb │ │ │ │ ├── exchange_proxynotshell_rce.rb │ │ │ │ ├── exchange_proxyshell_rce.rb │ │ │ │ ├── ezserver_http.rb │ │ │ │ ├── fdm_auth_header.rb │ │ │ │ ├── file_sharing_wizard_seh.rb │ │ │ │ ├── flexdotnetcms_upload_exec.rb │ │ │ │ ├── fortilogger_arbitrary_fileupload.rb │ │ │ │ ├── generic_http_dll_injection.rb │ │ │ │ ├── geutebrueck_gcore_x64_rce_bo.rb │ │ │ │ ├── git_lfs_rce.rb │ │ │ │ ├── gitstack_rce.rb │ │ │ │ ├── hp_autopass_license_traversal.rb │ │ │ │ ├── hp_imc_bims_upload.rb │ │ │ │ ├── hp_imc_java_deserialize.rb │ │ │ │ ├── hp_imc_mibfileupload.rb │ │ │ │ ├── hp_loadrunner_copyfiletoserver.rb │ │ │ │ ├── hp_mpa_job_acct.rb │ │ │ │ ├── hp_nnm_getnnmdata_hostname.rb │ │ │ │ ├── hp_nnm_getnnmdata_icount.rb │ │ │ │ ├── hp_nnm_getnnmdata_maxage.rb │ │ │ │ ├── hp_nnm_nnmrptconfig_nameparams.rb │ │ │ │ ├── hp_nnm_nnmrptconfig_schdparams.rb │ │ │ │ ├── hp_nnm_openview5.rb │ │ │ │ ├── hp_nnm_ovalarm_lang.rb │ │ │ │ ├── hp_nnm_ovas.rb │ │ │ │ ├── hp_nnm_ovbuildpath_textfile.rb │ │ │ │ ├── hp_nnm_ovwebhelp.rb │ │ │ │ ├── hp_nnm_ovwebsnmpsrv_main.rb │ │ │ │ ├── hp_nnm_ovwebsnmpsrv_ovutil.rb │ │ │ │ ├── hp_nnm_ovwebsnmpsrv_uro.rb │ │ │ │ ├── hp_nnm_snmp.rb │ │ │ │ ├── hp_nnm_snmpviewer_actapp.rb │ │ │ │ ├── hp_nnm_toolbar_01.rb │ │ │ │ ├── hp_nnm_toolbar_02.rb │ │ │ │ ├── hp_nnm_webappmon_execvp.rb │ │ │ │ ├── hp_nnm_webappmon_ovjavalocale.rb │ │ │ │ ├── hp_openview_insight_backdoor.rb │ │ │ │ ├── hp_pcm_snac_update_certificates.rb │ │ │ │ ├── hp_pcm_snac_update_domain.rb │ │ │ │ ├── hp_power_manager_filename.rb │ │ │ │ ├── hp_power_manager_login.rb │ │ │ │ ├── hp_sitescope_dns_tool.rb │ │ │ │ ├── hp_sitescope_runomagentcommand.rb │ │ │ │ ├── hpe_sim_76_amf_deserialization.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 │ │ │ │ ├── ivanti_avalanche_filestoreconfig_upload.rb │ │ │ │ ├── jira_collector_traversal.rb │ │ │ │ ├── kaseya_uploader.rb │ │ │ │ ├── kaseya_uploadimage_file_upload.rb │ │ │ │ ├── kentico_staging_syncserver.rb │ │ │ │ ├── kolibri_http.rb │ │ │ │ ├── landesk_thinkmanagement_upload_asp.rb │ │ │ │ ├── lexmark_markvision_gfd_upload.rb │ │ │ │ ├── mailenable_auth_header.rb │ │ │ │ ├── manage_engine_opmanager_rce.rb │ │ │ │ ├── manageengine_adaudit_plus_authenticated_rce.rb │ │ │ │ ├── manageengine_adaudit_plus_cve_2022_28219.rb │ │ │ │ ├── manageengine_admanager_plus_cve_2023_29084_auth_cmd_injection.rb │ │ │ │ ├── manageengine_adselfservice_plus_cve_2021_40539.rb │ │ │ │ ├── manageengine_adselfservice_plus_cve_2022_28810.rb │ │ │ │ ├── manageengine_adshacluster_rce.rb │ │ │ │ ├── manageengine_appmanager_exec.rb │ │ │ │ ├── manageengine_apps_mngr.rb │ │ │ │ ├── manageengine_connectionid_write.rb │ │ │ │ ├── manageengine_endpoint_central_saml_rce_cve_2022_47966.rb │ │ │ │ ├── manageengine_servicedesk_plus_cve_2021_44077.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 │ │ │ │ ├── moveit_cve_2023_34362.rb │ │ │ │ ├── navicopa_get_overflow.rb │ │ │ │ ├── netdecision_http_bof.rb │ │ │ │ ├── netgear_nms_rce.rb │ │ │ │ ├── netmotion_mobility_mvcutil_deserialization.rb │ │ │ │ ├── novell_imanager_upload.rb │ │ │ │ ├── novell_mdm_lfi.rb │ │ │ │ ├── novell_messenger_acceptlang.rb │ │ │ │ ├── nowsms.rb │ │ │ │ ├── nscp_authenticated_rce.rb │ │ │ │ ├── oats_weblogic_console.rb │ │ │ │ ├── octopusdeploy_deploy.rb │ │ │ │ ├── oracle9i_xdb_pass.rb │ │ │ │ ├── oracle_beehive_evaluation.rb │ │ │ │ ├── oracle_beehive_prepareaudiotoplay.rb │ │ │ │ ├── oracle_btm_writetofile.rb │ │ │ │ ├── oracle_endeca_exec.rb │ │ │ │ ├── oracle_event_processing_upload.rb │ │ │ │ ├── osb_uname_jlist.rb │ │ │ │ ├── peercast_url.rb │ │ │ │ ├── php_apache_request_headers_bof.rb │ │ │ │ ├── plesk_mylittleadmin_viewstate.rb │ │ │ │ ├── plex_unpickle_dict_rce.rb │ │ │ │ ├── privatewire_gateway.rb │ │ │ │ ├── prtg_authenticated_rce.rb │ │ │ │ ├── psoproxy91_overflow.rb │ │ │ │ ├── rabidhamster_r4_log.rb │ │ │ │ ├── rejetto_hfs_exec.rb │ │ │ │ ├── sambar6_search_results.rb │ │ │ │ ├── sap_configservlet_exec_noauth.rb │ │ │ │ ├── sap_host_control_cmd_exec.rb │ │ │ │ ├── sapdb_webtools.rb │ │ │ │ ├── savant_31_overflow.rb │ │ │ │ ├── sepm_auth_bypass_rce.rb │ │ │ │ ├── serviio_checkstreamurl_cmd_exec.rb │ │ │ │ ├── servu_session_cookie.rb │ │ │ │ ├── sharepoint_data_deserialization.rb │ │ │ │ ├── sharepoint_ssi_viewstate.rb │ │ │ │ ├── sharepoint_unsafe_control.rb │ │ │ │ ├── sharepoint_workflows_xoml.rb │ │ │ │ ├── shoutcast_format.rb │ │ │ │ ├── shttpd_post.rb │ │ │ │ ├── sitecore_xp_cve_2021_42237.rb │ │ │ │ ├── smartermail_rce.rb │ │ │ │ ├── solarwinds_fsm_userlogin.rb │ │ │ │ ├── solarwinds_storage_manager_sql.rb │ │ │ │ ├── sonicwall_scrutinizer_sqli.rb │ │ │ │ ├── ssrs_navcorrector_viewstate.rb │ │ │ │ ├── steamcast_useragent.rb │ │ │ │ ├── sws_connection_bof.rb │ │ │ │ ├── sybase_easerver.rb │ │ │ │ ├── syncbreeze_bof.rb │ │ │ │ ├── sysax_create_folder.rb │ │ │ │ ├── telerik_rau_deserialization.rb │ │ │ │ ├── tomcat_cgi_cmdlineargs.rb │ │ │ │ ├── trackercam_phparg_overflow.rb │ │ │ │ ├── trackit_file_upload.rb │ │ │ │ ├── trendmicro_officescan.rb │ │ │ │ ├── trendmicro_officescan_widget_exec.rb │ │ │ │ ├── ultraminihttp_bof.rb │ │ │ │ ├── umbraco_upload_aspx.rb │ │ │ │ ├── vmware_vcenter_chargeback_upload.rb │ │ │ │ ├── vxsrchs_bof.rb │ │ │ │ ├── webster_http.rb │ │ │ │ ├── xampp_webdav_upload_php.rb │ │ │ │ ├── xitami_if_mod_since.rb │ │ │ │ ├── zentao_pro_rce.rb │ │ │ │ ├── zenworks_assetmgmt_uploadservlet.rb │ │ │ │ ├── zenworks_uploadservlet.rb │ │ │ │ └── zoho_password_manager_pro_xml_rpc_rce.rb │ │ │ │ ├── ibm │ │ │ │ └── ibm_was_dmgr_java_deserialization_rce.rb │ │ │ │ ├── iis │ │ │ │ ├── iis_webdav_scstoragepathfromurl.rb │ │ │ │ ├── iis_webdav_upload_asp.rb │ │ │ │ ├── ms01_023_printer.rb │ │ │ │ ├── ms01_026_dbldecode.rb │ │ │ │ ├── ms01_033_idq.rb │ │ │ │ ├── ms02_018_htr.rb │ │ │ │ ├── ms02_065_msadc.rb │ │ │ │ ├── ms03_007_ntdll_webdav.rb │ │ │ │ └── msadc.rb │ │ │ │ ├── imap │ │ │ │ ├── eudora_list.rb │ │ │ │ ├── imail_delete.rb │ │ │ │ ├── ipswitch_search.rb │ │ │ │ ├── mailenable_login.rb │ │ │ │ ├── mailenable_status.rb │ │ │ │ ├── mailenable_w3c_select.rb │ │ │ │ ├── mdaemon_cram_md5.rb │ │ │ │ ├── mdaemon_fetch.rb │ │ │ │ ├── mercur_imap_select_overflow.rb │ │ │ │ ├── mercur_login.rb │ │ │ │ ├── mercury_login.rb │ │ │ │ ├── mercury_rename.rb │ │ │ │ ├── novell_netmail_append.rb │ │ │ │ ├── novell_netmail_auth.rb │ │ │ │ ├── novell_netmail_status.rb │ │ │ │ └── novell_netmail_subscribe.rb │ │ │ │ ├── isapi │ │ │ │ ├── ms00_094_pbserver.rb │ │ │ │ ├── ms03_022_nsiislog_post.rb │ │ │ │ ├── ms03_051_fp30reg_chunked.rb │ │ │ │ ├── rsa_webagent_redirect.rb │ │ │ │ └── w3who_query.rb │ │ │ │ ├── ldap │ │ │ │ ├── imail_thc.rb │ │ │ │ └── pgp_keyserver7.rb │ │ │ │ ├── license │ │ │ │ ├── calicclnt_getconfig.rb │ │ │ │ ├── calicserv_getconfig.rb │ │ │ │ ├── flexnet_lmgrd_bof.rb │ │ │ │ └── sentinel_lm7_udp.rb │ │ │ │ ├── local │ │ │ │ ├── adobe_sandbox_adobecollabsync.rb │ │ │ │ ├── agnitum_outpost_acs.rb │ │ │ │ ├── alpc_taskscheduler.rb │ │ │ │ ├── always_install_elevated.rb │ │ │ │ ├── anyconnect_lpe.rb │ │ │ │ ├── applocker_bypass.rb │ │ │ │ ├── appxsvc_hard_link_privesc.rb │ │ │ │ ├── ask.rb │ │ │ │ ├── bits_ntlm_token_impersonation.rb │ │ │ │ ├── bthpan.rb │ │ │ │ ├── bypassuac.rb │ │ │ │ ├── bypassuac_comhijack.rb │ │ │ │ ├── bypassuac_dotnet_profiler.rb │ │ │ │ ├── bypassuac_eventvwr.rb │ │ │ │ ├── bypassuac_fodhelper.rb │ │ │ │ ├── bypassuac_injection.rb │ │ │ │ ├── bypassuac_injection_winsxs.rb │ │ │ │ ├── bypassuac_sdclt.rb │ │ │ │ ├── bypassuac_silentcleanup.rb │ │ │ │ ├── bypassuac_sluihijack.rb │ │ │ │ ├── bypassuac_vbs.rb │ │ │ │ ├── bypassuac_windows_store_filesys.rb │ │ │ │ ├── bypassuac_windows_store_reg.rb │ │ │ │ ├── canon_driver_privesc.rb │ │ │ │ ├── capcom_sys_exec.rb │ │ │ │ ├── comahawk.rb │ │ │ │ ├── current_user_psexec.rb │ │ │ │ ├── cve_2017_8464_lnk_lpe.rb │ │ │ │ ├── cve_2018_8453_win32k_priv_esc.rb │ │ │ │ ├── cve_2019_1458_wizardopium.rb │ │ │ │ ├── cve_2020_0668_service_tracing.rb │ │ │ │ ├── cve_2020_0787_bits_arbitrary_file_move.rb │ │ │ │ ├── cve_2020_0796_smbghost.rb │ │ │ │ ├── cve_2020_1048_printerdemon.rb │ │ │ │ ├── cve_2020_1054_drawiconex_lpe.rb │ │ │ │ ├── cve_2020_1313_system_orchestrator.rb │ │ │ │ ├── cve_2020_1337_printerdemon.rb │ │ │ │ ├── cve_2020_17136.rb │ │ │ │ ├── cve_2021_21551_dbutil_memmove.rb │ │ │ │ ├── cve_2021_40449.rb │ │ │ │ ├── cve_2022_21882_win32k.rb │ │ │ │ ├── cve_2022_21999_spoolfool_privesc.rb │ │ │ │ ├── cve_2022_26904_superprofile.rb │ │ │ │ ├── cve_2022_3699_lenovo_diagnostics_driver.rb │ │ │ │ ├── cve_2023_21768_afd_lpe.rb │ │ │ │ ├── dnsadmin_serverlevelplugindll.rb │ │ │ │ ├── docker_credential_wincred.rb │ │ │ │ ├── druva_insync_insynccphwnet64_rcp_type_5_priv_esc.rb │ │ │ │ ├── gog_galaxyclientservice_privesc.rb │ │ │ │ ├── ikeext_service.rb │ │ │ │ ├── ipass_launch_app.rb │ │ │ │ ├── lenovo_systemupdate.rb │ │ │ │ ├── lexmark_driver_privesc.rb │ │ │ │ ├── microfocus_operations_privesc.rb │ │ │ │ ├── mov_ss.rb │ │ │ │ ├── mqac_write.rb │ │ │ │ ├── ms10_015_kitrap0d.rb │ │ │ │ ├── ms10_092_schelevator.rb │ │ │ │ ├── ms11_080_afdjoinleaf.rb │ │ │ │ ├── ms13_005_hwnd_broadcast.rb │ │ │ │ ├── ms13_053_schlamperei.rb │ │ │ │ ├── ms13_081_track_popup_menu.rb │ │ │ │ ├── ms13_097_ie_registry_symlink.rb │ │ │ │ ├── ms14_009_ie_dfsvc.rb │ │ │ │ ├── ms14_058_track_popup_menu.rb │ │ │ │ ├── ms14_070_tcpip_ioctl.rb │ │ │ │ ├── ms15_004_tswbproxy.rb │ │ │ │ ├── ms15_051_client_copy_image.rb │ │ │ │ ├── ms15_078_atmfd_bof.rb │ │ │ │ ├── ms16_014_wmi_recv_notif.rb │ │ │ │ ├── ms16_016_webdav.rb │ │ │ │ ├── ms16_032_secondary_logon_handle_privesc.rb │ │ │ │ ├── ms16_075_reflection.rb │ │ │ │ ├── ms16_075_reflection_juicy.rb │ │ │ │ ├── ms18_8120_win32k_privesc.rb │ │ │ │ ├── ms_ndproxy.rb │ │ │ │ ├── novell_client_nicm.rb │ │ │ │ ├── novell_client_nwfs.rb │ │ │ │ ├── nscp_pe.rb │ │ │ │ ├── ntapphelpcachecontrol.rb │ │ │ │ ├── ntusermndragover.rb │ │ │ │ ├── nvidia_nvsvc.rb │ │ │ │ ├── panda_psevents.rb │ │ │ │ ├── payload_inject.rb │ │ │ │ ├── persistence.rb │ │ │ │ ├── persistence_image_exec_options.rb │ │ │ │ ├── persistence_service.rb │ │ │ │ ├── plantronics_hub_spokesupdateservice_privesc.rb │ │ │ │ ├── powershell_cmd_upgrade.rb │ │ │ │ ├── powershell_remoting.rb │ │ │ │ ├── ppr_flatten_rec.rb │ │ │ │ ├── ps_persist.rb │ │ │ │ ├── ps_wmi_exec.rb │ │ │ │ ├── pxeexploit.rb │ │ │ │ ├── razer_zwopenprocess.rb │ │ │ │ ├── registry_persistence.rb │ │ │ │ ├── ricoh_driver_privesc.rb │ │ │ │ ├── run_as.rb │ │ │ │ ├── s4u_persistence.rb │ │ │ │ ├── service_permissions.rb │ │ │ │ ├── srclient_dll_hijacking.rb │ │ │ │ ├── tokenmagic.rb │ │ │ │ ├── unquoted_service_path.rb │ │ │ │ ├── virtual_box_guest_additions.rb │ │ │ │ ├── virtual_box_opengl_escape.rb │ │ │ │ ├── vss_persistence.rb │ │ │ │ ├── webexec.rb │ │ │ │ ├── windscribe_windscribeservice_priv_esc.rb │ │ │ │ ├── wmi.rb │ │ │ │ └── wmi_persistence.rb │ │ │ │ ├── lotus │ │ │ │ ├── domino_http_accept_language.rb │ │ │ │ ├── domino_icalendar_organizer.rb │ │ │ │ ├── domino_sametime_stmux.rb │ │ │ │ └── lotusnotes_lzh.rb │ │ │ │ ├── lpd │ │ │ │ ├── hummingbird_exceed.rb │ │ │ │ ├── niprint.rb │ │ │ │ ├── saplpd.rb │ │ │ │ └── wincomlpd_admin.rb │ │ │ │ ├── misc │ │ │ │ ├── achat_bof.rb │ │ │ │ ├── actfax_raw_server_bof.rb │ │ │ │ ├── agentxpp_receive_agentx.rb │ │ │ │ ├── ahsay_backup_fileupload.rb │ │ │ │ ├── ais_esel_server_rce.rb │ │ │ │ ├── allmediaserver_bof.rb │ │ │ │ ├── altiris_ds_sqli.rb │ │ │ │ ├── apple_quicktime_rtsp_response.rb │ │ │ │ ├── asus_dpcproxy_overflow.rb │ │ │ │ ├── avaya_winpmd_unihostrouter.rb │ │ │ │ ├── avidphoneticindexer.rb │ │ │ │ ├── bakbone_netvault_heap.rb │ │ │ │ ├── bcaaa_bof.rb │ │ │ │ ├── bigant_server.rb │ │ │ │ ├── bigant_server_250.rb │ │ │ │ ├── bigant_server_dupf_upload.rb │ │ │ │ ├── bigant_server_sch_dupf_bof.rb │ │ │ │ ├── bigant_server_usv.rb │ │ │ │ ├── bomberclone_overflow.rb │ │ │ │ ├── bopup_comm.rb │ │ │ │ ├── borland_interbase.rb │ │ │ │ ├── borland_starteam.rb │ │ │ │ ├── citrix_streamprocess.rb │ │ │ │ ├── citrix_streamprocess_data_msg.rb │ │ │ │ ├── citrix_streamprocess_get_boot_record_request.rb │ │ │ │ ├── citrix_streamprocess_get_footer.rb │ │ │ │ ├── citrix_streamprocess_get_objects.rb │ │ │ │ ├── cloudme_sync.rb │ │ │ │ ├── commvault_cmd_exec.rb │ │ │ │ ├── crosschex_device_bof.rb │ │ │ │ ├── cve_2022_28381_allmediaserver_bof.rb │ │ │ │ ├── delta_electronics_infrasuite_deserialization.rb │ │ │ │ ├── disk_savvy_adm.rb │ │ │ │ ├── doubletake.rb │ │ │ │ ├── eiqnetworks_esa.rb │ │ │ │ ├── eiqnetworks_esa_topology.rb │ │ │ │ ├── enterasys_netsight_syslog_bof.rb │ │ │ │ ├── eureka_mail_err.rb │ │ │ │ ├── fb_cnct_group.rb │ │ │ │ ├── fb_isc_attach_database.rb │ │ │ │ ├── fb_isc_create_database.rb │ │ │ │ ├── fb_svc_attach.rb │ │ │ │ ├── gh0st.rb │ │ │ │ ├── gimp_script_fu.rb │ │ │ │ ├── hp_dataprotector_cmd_exec.rb │ │ │ │ ├── hp_dataprotector_crs.rb │ │ │ │ ├── hp_dataprotector_dtbclslogin.rb │ │ │ │ ├── hp_dataprotector_encrypted_comms.rb │ │ │ │ ├── hp_dataprotector_exec_bar.rb │ │ │ │ ├── hp_dataprotector_install_service.rb │ │ │ │ ├── hp_dataprotector_new_folder.rb │ │ │ │ ├── hp_dataprotector_traversal.rb │ │ │ │ ├── hp_imc_dbman_restartdb_unauth_rce.rb │ │ │ │ ├── hp_imc_dbman_restoredbase_unauth_rce.rb │ │ │ │ ├── hp_imc_uam.rb │ │ │ │ ├── hp_loadrunner_magentproc.rb │ │ │ │ ├── hp_loadrunner_magentproc_cmdexec.rb │ │ │ │ ├── hp_magentservice.rb │ │ │ │ ├── hp_omniinet_1.rb │ │ │ │ ├── hp_omniinet_2.rb │ │ │ │ ├── hp_omniinet_3.rb │ │ │ │ ├── hp_omniinet_4.rb │ │ │ │ ├── hp_operations_agent_coda_34.rb │ │ │ │ ├── hp_operations_agent_coda_8c.rb │ │ │ │ ├── hp_ovtrace.rb │ │ │ │ ├── hta_server.rb │ │ │ │ ├── ib_isc_attach_database.rb │ │ │ │ ├── ib_isc_create_database.rb │ │ │ │ ├── ib_svc_attach.rb │ │ │ │ ├── ibm_cognos_tm1admsd_bof.rb │ │ │ │ ├── ibm_director_cim_dllinject.rb │ │ │ │ ├── ibm_tsm_cad_ping.rb │ │ │ │ ├── ibm_tsm_rca_dicugetidentify.rb │ │ │ │ ├── ibm_websphere_java_deserialize.rb │ │ │ │ ├── itunes_extm3u_bof.rb │ │ │ │ ├── landesk_aolnsrvr.rb │ │ │ │ ├── lianja_db_net.rb │ │ │ │ ├── manageengine_eventlog_analyzer_rce.rb │ │ │ │ ├── mercury_phonebook.rb │ │ │ │ ├── mini_stream.rb │ │ │ │ ├── mirc_privmsg_server.rb │ │ │ │ ├── mobile_mouse_rce.rb │ │ │ │ ├── ms07_064_sami.rb │ │ │ │ ├── ms10_104_sharepoint.rb │ │ │ │ ├── netcat110_nt.rb │ │ │ │ ├── nettransport.rb │ │ │ │ ├── nvidia_mental_ray.rb │ │ │ │ ├── plugx.rb │ │ │ │ ├── poisonivy_21x_bof.rb │ │ │ │ ├── poisonivy_bof.rb │ │ │ │ ├── poppeeper_date.rb │ │ │ │ ├── poppeeper_uidl.rb │ │ │ │ ├── realtek_playlist.rb │ │ │ │ ├── remote_control_collection_rce.rb │ │ │ │ ├── remote_mouse_rce.rb │ │ │ │ ├── sap_2005_license.rb │ │ │ │ ├── sap_netweaver_dispatcher.rb │ │ │ │ ├── shixxnote_font.rb │ │ │ │ ├── solarwinds_amqp_deserialization.rb │ │ │ │ ├── solidworks_workgroup_pdmwservice_file_write.rb │ │ │ │ ├── splayer_content_type.rb │ │ │ │ ├── stream_down_bof.rb │ │ │ │ ├── talkative_response.rb │ │ │ │ ├── tiny_identd_overflow.rb │ │ │ │ ├── trendmicro_cmdprocessor_addtask.rb │ │ │ │ ├── ufo_ai.rb │ │ │ │ ├── unified_remote_rce.rb │ │ │ │ ├── veeam_one_agent_deserialization.rb │ │ │ │ ├── vmhgfs_webdav_dll_sideload.rb │ │ │ │ ├── webdav_delivery.rb │ │ │ │ ├── wifi_mouse_rce.rb │ │ │ │ ├── windows_rsh.rb │ │ │ │ ├── wireshark_lua.rb │ │ │ │ └── wireshark_packet_dect.rb │ │ │ │ ├── mmsp │ │ │ │ └── ms10_025_wmss_connect_funnel.rb │ │ │ │ ├── motorola │ │ │ │ └── timbuktu_fileupload.rb │ │ │ │ ├── mssql │ │ │ │ ├── lyris_listmanager_weak_pass.rb │ │ │ │ ├── ms02_039_slammer.rb │ │ │ │ ├── ms02_056_hello.rb │ │ │ │ ├── ms09_004_sp_replwritetovarbin.rb │ │ │ │ ├── ms09_004_sp_replwritetovarbin_sqli.rb │ │ │ │ ├── mssql_clr_payload.rb │ │ │ │ ├── mssql_linkcrawler.rb │ │ │ │ ├── mssql_payload.rb │ │ │ │ └── mssql_payload_sqli.rb │ │ │ │ ├── mysql │ │ │ │ ├── mysql_mof.rb │ │ │ │ ├── mysql_start_up.rb │ │ │ │ ├── mysql_yassl_hello.rb │ │ │ │ └── scrutinizer_upload_exec.rb │ │ │ │ ├── nfs │ │ │ │ └── xlink_nfsd.rb │ │ │ │ ├── nimsoft │ │ │ │ └── nimcontroller_bof.rb │ │ │ │ ├── nntp │ │ │ │ └── ms05_030_nntp.rb │ │ │ │ ├── novell │ │ │ │ ├── file_reporter_fsfui_upload.rb │ │ │ │ ├── groupwisemessenger_client.rb │ │ │ │ ├── netiq_pum_eval.rb │ │ │ │ ├── nmap_stor.rb │ │ │ │ ├── zenworks_desktop_agent.rb │ │ │ │ ├── zenworks_preboot_op21_bof.rb │ │ │ │ ├── zenworks_preboot_op4c_bof.rb │ │ │ │ ├── zenworks_preboot_op6_bof.rb │ │ │ │ └── zenworks_preboot_op6c_bof.rb │ │ │ │ ├── nuuo │ │ │ │ ├── nuuo_cms_fu.rb │ │ │ │ └── nuuo_cms_sqli.rb │ │ │ │ ├── oracle │ │ │ │ ├── client_system_analyzer_upload.rb │ │ │ │ ├── extjob.rb │ │ │ │ ├── osb_ndmp_auth.rb │ │ │ │ ├── tns_arguments.rb │ │ │ │ ├── tns_auth_sesskey.rb │ │ │ │ └── tns_service_name.rb │ │ │ │ ├── pop3 │ │ │ │ └── seattlelab_pass.rb │ │ │ │ ├── postgres │ │ │ │ └── postgres_payload.rb │ │ │ │ ├── proxy │ │ │ │ ├── bluecoat_winproxy_host.rb │ │ │ │ ├── ccproxy_telnet_ping.rb │ │ │ │ ├── proxypro_http_get.rb │ │ │ │ └── qbik_wingate_wwwproxy.rb │ │ │ │ ├── rdp │ │ │ │ ├── cve_2019_0708_bluekeep_rce.rb │ │ │ │ └── rdp_doublepulsar_rce.rb │ │ │ │ ├── sage │ │ │ │ └── x3_adxsrv_auth_bypass_cmd_exec.rb │ │ │ │ ├── scada │ │ │ │ ├── abb_wserver_exec.rb │ │ │ │ ├── advantech_webaccess_dashboard_file_upload.rb │ │ │ │ ├── advantech_webaccess_webvrpcs_bof.rb │ │ │ │ ├── citect_scada_odbc.rb │ │ │ │ ├── codesys_gateway_server_traversal.rb │ │ │ │ ├── codesys_web_server.rb │ │ │ │ ├── daq_factory_bof.rb │ │ │ │ ├── delta_ia_commgr_bof.rb │ │ │ │ ├── factorylink_csservice.rb │ │ │ │ ├── factorylink_vrn_09.rb │ │ │ │ ├── ge_proficy_cimplicity_gefebt.rb │ │ │ │ ├── iconics_genbroker.rb │ │ │ │ ├── iconics_webhmi_setactivexguid.rb │ │ │ │ ├── igss9_igssdataserver_listall.rb │ │ │ │ ├── igss9_igssdataserver_rename.rb │ │ │ │ ├── igss9_misc.rb │ │ │ │ ├── igss_exec_17.rb │ │ │ │ ├── indusoft_webstudio_exec.rb │ │ │ │ ├── moxa_mdmtool.rb │ │ │ │ ├── procyon_core_server.rb │ │ │ │ ├── realwin.rb │ │ │ │ ├── realwin_on_fc_binfile_a.rb │ │ │ │ ├── realwin_on_fcs_login.rb │ │ │ │ ├── realwin_scpc_initialize.rb │ │ │ │ ├── realwin_scpc_initialize_rf.rb │ │ │ │ ├── realwin_scpc_txtevent.rb │ │ │ │ ├── rockwell_factorytalk_rce.rb │ │ │ │ ├── scadapro_cmdexe.rb │ │ │ │ ├── sunway_force_control_netdbsrv.rb │ │ │ │ ├── winlog_runtime.rb │ │ │ │ ├── winlog_runtime_2.rb │ │ │ │ ├── yokogawa_bkbcopyd_bof.rb │ │ │ │ ├── yokogawa_bkesimmgr_bof.rb │ │ │ │ ├── yokogawa_bkfsim_vhfd.rb │ │ │ │ └── yokogawa_bkhodeq_bof.rb │ │ │ │ ├── sip │ │ │ │ ├── aim_triton_cseq.rb │ │ │ │ ├── sipxezphone_cseq.rb │ │ │ │ └── sipxphone_cseq.rb │ │ │ │ ├── smb │ │ │ │ ├── cve_2020_0796_smbghost.rb │ │ │ │ ├── generic_smb_dll_injection.rb │ │ │ │ ├── group_policy_startup.rb │ │ │ │ ├── ipass_pipe_exec.rb │ │ │ │ ├── ms03_049_netapi.rb │ │ │ │ ├── ms04_007_killbill.rb │ │ │ │ ├── ms04_011_lsass.rb │ │ │ │ ├── ms04_031_netdde.rb │ │ │ │ ├── ms05_039_pnp.rb │ │ │ │ ├── ms06_025_rasmans_reg.rb │ │ │ │ ├── ms06_025_rras.rb │ │ │ │ ├── ms06_040_netapi.rb │ │ │ │ ├── ms06_066_nwapi.rb │ │ │ │ ├── ms06_066_nwwks.rb │ │ │ │ ├── ms06_070_wkssvc.rb │ │ │ │ ├── ms07_029_msdns_zonename.rb │ │ │ │ ├── ms08_067_netapi.rb │ │ │ │ ├── ms09_050_smb2_negotiate_func_index.rb │ │ │ │ ├── ms10_046_shortcut_icon_dllloader.rb │ │ │ │ ├── ms10_061_spoolss.rb │ │ │ │ ├── ms15_020_shortcut_icon_dllloader.rb │ │ │ │ ├── ms17_010_eternalblue.rb │ │ │ │ ├── ms17_010_psexec.rb │ │ │ │ ├── netidentity_xtierrpcpipe.rb │ │ │ │ ├── psexec.rb │ │ │ │ ├── smb_delivery.rb │ │ │ │ ├── smb_doublepulsar_rce.rb │ │ │ │ ├── smb_relay.rb │ │ │ │ ├── smb_rras_erraticgopher.rb │ │ │ │ ├── smb_shadow.rb │ │ │ │ ├── timbuktu_plughntcommand_bof.rb │ │ │ │ └── webexec.rb │ │ │ │ ├── smtp │ │ │ │ ├── mailcarrier_smtp_ehlo.rb │ │ │ │ ├── mercury_cram_md5.rb │ │ │ │ ├── ms03_046_exchange2000_xexch50.rb │ │ │ │ ├── njstar_smtp_bof.rb │ │ │ │ ├── sysgauge_client_bof.rb │ │ │ │ ├── wmailserver.rb │ │ │ │ └── ypops_overflow1.rb │ │ │ │ ├── ssh │ │ │ │ ├── freeftpd_key_exchange.rb │ │ │ │ ├── freesshd_authbypass.rb │ │ │ │ ├── freesshd_key_exchange.rb │ │ │ │ ├── putty_msg_debug.rb │ │ │ │ ├── securecrt_ssh1.rb │ │ │ │ └── sysax_ssh_username.rb │ │ │ │ ├── ssl │ │ │ │ └── ms04_011_pct.rb │ │ │ │ ├── telnet │ │ │ │ ├── gamsoft_telsrv_username.rb │ │ │ │ └── goodtech_telnet.rb │ │ │ │ ├── tftp │ │ │ │ ├── attftp_long_filename.rb │ │ │ │ ├── distinct_tftp_traversal.rb │ │ │ │ ├── dlink_long_filename.rb │ │ │ │ ├── futuresoft_transfermode.rb │ │ │ │ ├── netdecision_tftp_traversal.rb │ │ │ │ ├── opentftp_error_code.rb │ │ │ │ ├── quick_tftp_pro_mode.rb │ │ │ │ ├── tftpd32_long_filename.rb │ │ │ │ ├── tftpdwin_long_filename.rb │ │ │ │ ├── tftpserver_wrq_bof.rb │ │ │ │ └── threectftpsvc_long_mode.rb │ │ │ │ ├── unicenter │ │ │ │ └── cam_log_security.rb │ │ │ │ ├── vnc │ │ │ │ ├── realvnc_client.rb │ │ │ │ ├── ultravnc_client.rb │ │ │ │ ├── ultravnc_viewer_bof.rb │ │ │ │ └── winvnc_http_get.rb │ │ │ │ ├── vpn │ │ │ │ └── safenet_ike_11.rb │ │ │ │ ├── winrm │ │ │ │ └── winrm_script_exec.rb │ │ │ │ └── wins │ │ │ │ └── ms04_045_wins.rb │ │ ├── nops │ │ │ ├── aarch64 │ │ │ │ └── simple.rb │ │ │ ├── armle │ │ │ │ └── simple.rb │ │ │ ├── cmd │ │ │ │ └── generic.rb │ │ │ ├── mipsbe │ │ │ │ └── better.rb │ │ │ ├── php │ │ │ │ └── generic.rb │ │ │ ├── ppc │ │ │ │ └── simple.rb │ │ │ ├── sparc │ │ │ │ └── random.rb │ │ │ ├── tty │ │ │ │ └── generic.rb │ │ │ ├── x64 │ │ │ │ └── simple.rb │ │ │ └── x86 │ │ │ │ ├── opty2.rb │ │ │ │ └── single_byte.rb │ │ ├── payloads │ │ │ ├── adapters │ │ │ │ └── cmd │ │ │ │ │ ├── linux │ │ │ │ │ ├── http │ │ │ │ │ │ ├── mips64.rb │ │ │ │ │ │ ├── x64.rb │ │ │ │ │ │ └── x86.rb │ │ │ │ │ ├── https │ │ │ │ │ │ ├── mips64.rb │ │ │ │ │ │ ├── x64.rb │ │ │ │ │ │ └── x86.rb │ │ │ │ │ └── tftp │ │ │ │ │ │ ├── mips64.rb │ │ │ │ │ │ ├── x64.rb │ │ │ │ │ │ └── x86.rb │ │ │ │ │ ├── unix │ │ │ │ │ └── python.rb │ │ │ │ │ └── windows │ │ │ │ │ ├── http │ │ │ │ │ └── x64.rb │ │ │ │ │ ├── https │ │ │ │ │ └── x64.rb │ │ │ │ │ ├── powershell.rb │ │ │ │ │ ├── powershell │ │ │ │ │ └── x64.rb │ │ │ │ │ ├── python.rb │ │ │ │ │ └── tftp │ │ │ │ │ └── x64.rb │ │ │ ├── singles │ │ │ │ ├── aix │ │ │ │ │ └── ppc │ │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ │ ├── shell_find_port.rb │ │ │ │ │ │ ├── shell_interact.rb │ │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ ├── android │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ └── meterpreter_reverse_tcp.rb │ │ │ │ ├── apple_ios │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ │ └── armle │ │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ │ └── meterpreter_reverse_tcp.rb │ │ │ │ ├── bsd │ │ │ │ │ ├── sparc │ │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ │ ├── vax │ │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ │ ├── x64 │ │ │ │ │ │ ├── exec.rb │ │ │ │ │ │ ├── shell_bind_ipv6_tcp.rb │ │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ │ ├── shell_bind_tcp_small.rb │ │ │ │ │ │ ├── shell_reverse_ipv6_tcp.rb │ │ │ │ │ │ ├── shell_reverse_tcp.rb │ │ │ │ │ │ └── shell_reverse_tcp_small.rb │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── exec.rb │ │ │ │ │ │ ├── metsvc_bind_tcp.rb │ │ │ │ │ │ ├── metsvc_reverse_tcp.rb │ │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ │ ├── shell_bind_tcp_ipv6.rb │ │ │ │ │ │ ├── shell_find_port.rb │ │ │ │ │ │ ├── shell_find_tag.rb │ │ │ │ │ │ ├── shell_reverse_tcp.rb │ │ │ │ │ │ └── shell_reverse_tcp_ipv6.rb │ │ │ │ ├── bsdi │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ │ ├── shell_find_port.rb │ │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ ├── cmd │ │ │ │ │ ├── mainframe │ │ │ │ │ │ ├── apf_privesc_jcl.rb │ │ │ │ │ │ ├── bind_shell_jcl.rb │ │ │ │ │ │ ├── generic_jcl.rb │ │ │ │ │ │ └── reverse_shell_jcl.rb │ │ │ │ │ ├── unix │ │ │ │ │ │ ├── adduser.rb │ │ │ │ │ │ ├── bind_awk.rb │ │ │ │ │ │ ├── bind_busybox_telnetd.rb │ │ │ │ │ │ ├── bind_inetd.rb │ │ │ │ │ │ ├── bind_jjs.rb │ │ │ │ │ │ ├── bind_lua.rb │ │ │ │ │ │ ├── bind_netcat.rb │ │ │ │ │ │ ├── bind_netcat_gaping.rb │ │ │ │ │ │ ├── bind_netcat_gaping_ipv6.rb │ │ │ │ │ │ ├── bind_nodejs.rb │ │ │ │ │ │ ├── bind_perl.rb │ │ │ │ │ │ ├── bind_perl_ipv6.rb │ │ │ │ │ │ ├── bind_r.rb │ │ │ │ │ │ ├── bind_ruby.rb │ │ │ │ │ │ ├── bind_ruby_ipv6.rb │ │ │ │ │ │ ├── bind_socat_sctp.rb │ │ │ │ │ │ ├── bind_socat_udp.rb │ │ │ │ │ │ ├── bind_stub.rb │ │ │ │ │ │ ├── bind_zsh.rb │ │ │ │ │ │ ├── generic.rb │ │ │ │ │ │ ├── interact.rb │ │ │ │ │ │ ├── pingback_bind.rb │ │ │ │ │ │ ├── pingback_reverse.rb │ │ │ │ │ │ ├── reverse.rb │ │ │ │ │ │ ├── reverse_awk.rb │ │ │ │ │ │ ├── reverse_bash.rb │ │ │ │ │ │ ├── reverse_bash_telnet_ssl.rb │ │ │ │ │ │ ├── reverse_bash_udp.rb │ │ │ │ │ │ ├── reverse_jjs.rb │ │ │ │ │ │ ├── reverse_ksh.rb │ │ │ │ │ │ ├── reverse_lua.rb │ │ │ │ │ │ ├── reverse_ncat_ssl.rb │ │ │ │ │ │ ├── reverse_netcat.rb │ │ │ │ │ │ ├── reverse_netcat_gaping.rb │ │ │ │ │ │ ├── reverse_nodejs.rb │ │ │ │ │ │ ├── reverse_openssl.rb │ │ │ │ │ │ ├── reverse_perl.rb │ │ │ │ │ │ ├── reverse_perl_ssl.rb │ │ │ │ │ │ ├── reverse_php_ssl.rb │ │ │ │ │ │ ├── reverse_python.rb │ │ │ │ │ │ ├── reverse_python_ssl.rb │ │ │ │ │ │ ├── reverse_r.rb │ │ │ │ │ │ ├── reverse_ruby.rb │ │ │ │ │ │ ├── reverse_ruby_ssl.rb │ │ │ │ │ │ ├── reverse_socat_sctp.rb │ │ │ │ │ │ ├── reverse_socat_udp.rb │ │ │ │ │ │ ├── reverse_ssh.rb │ │ │ │ │ │ ├── reverse_ssl_double_telnet.rb │ │ │ │ │ │ ├── reverse_stub.rb │ │ │ │ │ │ ├── reverse_tclsh.rb │ │ │ │ │ │ └── reverse_zsh.rb │ │ │ │ │ └── windows │ │ │ │ │ │ ├── adduser.rb │ │ │ │ │ │ ├── bind_lua.rb │ │ │ │ │ │ ├── bind_perl.rb │ │ │ │ │ │ ├── bind_perl_ipv6.rb │ │ │ │ │ │ ├── bind_ruby.rb │ │ │ │ │ │ ├── download_eval_vbs.rb │ │ │ │ │ │ ├── download_exec_vbs.rb │ │ │ │ │ │ ├── generic.rb │ │ │ │ │ │ ├── jjs_reverse_tcp.rb │ │ │ │ │ │ ├── powershell_bind_tcp.rb │ │ │ │ │ │ ├── powershell_reverse_tcp.rb │ │ │ │ │ │ ├── powershell_reverse_tcp_ssl.rb │ │ │ │ │ │ ├── reverse_lua.rb │ │ │ │ │ │ ├── reverse_perl.rb │ │ │ │ │ │ ├── reverse_powershell.rb │ │ │ │ │ │ └── reverse_ruby.rb │ │ │ │ ├── firefox │ │ │ │ │ ├── exec.rb │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ ├── generic │ │ │ │ │ ├── custom.rb │ │ │ │ │ ├── debug_trap.rb │ │ │ │ │ ├── shell_bind_aws_ssm.rb │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ ├── shell_reverse_tcp.rb │ │ │ │ │ ├── ssh │ │ │ │ │ │ └── interact.rb │ │ │ │ │ └── tight_loop.rb │ │ │ │ ├── java │ │ │ │ │ ├── jsp_shell_bind_tcp.rb │ │ │ │ │ ├── jsp_shell_reverse_tcp.rb │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ ├── linux │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ │ ├── armbe │ │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ │ │ └── shell_bind_tcp.rb │ │ │ │ │ ├── armle │ │ │ │ │ │ ├── adduser.rb │ │ │ │ │ │ ├── exec.rb │ │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ │ ├── mips64 │ │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ │ └── meterpreter_reverse_tcp.rb │ │ │ │ │ ├── mipsbe │ │ │ │ │ │ ├── exec.rb │ │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ │ │ ├── reboot.rb │ │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ │ ├── mipsle │ │ │ │ │ │ ├── exec.rb │ │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ │ │ ├── reboot.rb │ │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ │ ├── ppc │ │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ │ ├── shell_find_port.rb │ │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ │ ├── ppc64 │ │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ │ ├── shell_find_port.rb │ │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ │ ├── ppc64le │ │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ │ └── meterpreter_reverse_tcp.rb │ │ │ │ │ ├── ppce500v2 │ │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ │ └── meterpreter_reverse_tcp.rb │ │ │ │ │ ├── x64 │ │ │ │ │ │ ├── exec.rb │ │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ │ │ ├── pingback_bind_tcp.rb │ │ │ │ │ │ ├── pingback_reverse_tcp.rb │ │ │ │ │ │ ├── shell_bind_ipv6_tcp.rb │ │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ │ ├── shell_bind_tcp_random_port.rb │ │ │ │ │ │ ├── shell_find_port.rb │ │ │ │ │ │ ├── shell_reverse_ipv6_tcp.rb │ │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ │ ├── x86 │ │ │ │ │ │ ├── adduser.rb │ │ │ │ │ │ ├── chmod.rb │ │ │ │ │ │ ├── exec.rb │ │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ │ │ ├── metsvc_bind_tcp.rb │ │ │ │ │ │ ├── metsvc_reverse_tcp.rb │ │ │ │ │ │ ├── read_file.rb │ │ │ │ │ │ ├── shell_bind_ipv6_tcp.rb │ │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ │ ├── shell_bind_tcp_random_port.rb │ │ │ │ │ │ ├── shell_find_port.rb │ │ │ │ │ │ ├── shell_find_tag.rb │ │ │ │ │ │ ├── shell_reverse_tcp.rb │ │ │ │ │ │ └── shell_reverse_tcp_ipv6.rb │ │ │ │ │ └── zarch │ │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ │ └── meterpreter_reverse_tcp.rb │ │ │ │ ├── mainframe │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ ├── nodejs │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ ├── shell_reverse_tcp.rb │ │ │ │ │ └── shell_reverse_tcp_ssl.rb │ │ │ │ ├── osx │ │ │ │ │ ├── armle │ │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ │ ├── shell_reverse_tcp.rb │ │ │ │ │ │ └── vibrate.rb │ │ │ │ │ ├── ppc │ │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ │ ├── x64 │ │ │ │ │ │ ├── exec.rb │ │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ │ │ ├── say.rb │ │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ │ ├── shell_find_tag.rb │ │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── exec.rb │ │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ │ ├── shell_find_port.rb │ │ │ │ │ │ ├── shell_reverse_tcp.rb │ │ │ │ │ │ ├── vforkshell_bind_tcp.rb │ │ │ │ │ │ └── vforkshell_reverse_tcp.rb │ │ │ │ ├── php │ │ │ │ │ ├── bind_perl.rb │ │ │ │ │ ├── bind_perl_ipv6.rb │ │ │ │ │ ├── bind_php.rb │ │ │ │ │ ├── bind_php_ipv6.rb │ │ │ │ │ ├── download_exec.rb │ │ │ │ │ ├── exec.rb │ │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ │ ├── reverse_perl.rb │ │ │ │ │ ├── reverse_php.rb │ │ │ │ │ └── shell_findsock.rb │ │ │ │ ├── python │ │ │ │ │ ├── meterpreter_bind_tcp.rb │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ │ ├── pingback_bind_tcp.rb │ │ │ │ │ ├── pingback_reverse_tcp.rb │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ ├── shell_reverse_sctp.rb │ │ │ │ │ ├── shell_reverse_tcp.rb │ │ │ │ │ ├── shell_reverse_tcp_ssl.rb │ │ │ │ │ └── shell_reverse_udp.rb │ │ │ │ ├── r │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ │ ├── ruby │ │ │ │ │ ├── pingback_bind_tcp.rb │ │ │ │ │ ├── pingback_reverse_tcp.rb │ │ │ │ │ ├── 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 │ │ │ │ │ ├── encrypted_shell_reverse_tcp.rb │ │ │ │ │ ├── exec.rb │ │ │ │ │ ├── format_all_drives.rb │ │ │ │ │ ├── loadlibrary.rb │ │ │ │ │ ├── messagebox.rb │ │ │ │ │ ├── meterpreter_bind_named_pipe.rb │ │ │ │ │ ├── meterpreter_bind_tcp.rb │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ ├── meterpreter_reverse_ipv6_tcp.rb │ │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ │ ├── metsvc_bind_tcp.rb │ │ │ │ │ ├── metsvc_reverse_tcp.rb │ │ │ │ │ ├── pingback_bind_tcp.rb │ │ │ │ │ ├── pingback_reverse_tcp.rb │ │ │ │ │ ├── powershell_bind_tcp.rb │ │ │ │ │ ├── powershell_reverse_tcp.rb │ │ │ │ │ ├── powershell_reverse_tcp_ssl.rb │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ ├── shell_bind_tcp_xpfw.rb │ │ │ │ │ ├── shell_hidden_bind_tcp.rb │ │ │ │ │ ├── shell_reverse_tcp.rb │ │ │ │ │ ├── speak_pwned.rb │ │ │ │ │ └── x64 │ │ │ │ │ ├── encrypted_shell_reverse_tcp.rb │ │ │ │ │ ├── exec.rb │ │ │ │ │ ├── loadlibrary.rb │ │ │ │ │ ├── messagebox.rb │ │ │ │ │ ├── meterpreter_bind_named_pipe.rb │ │ │ │ │ ├── meterpreter_bind_tcp.rb │ │ │ │ │ ├── meterpreter_reverse_http.rb │ │ │ │ │ ├── meterpreter_reverse_https.rb │ │ │ │ │ ├── meterpreter_reverse_ipv6_tcp.rb │ │ │ │ │ ├── meterpreter_reverse_tcp.rb │ │ │ │ │ ├── pingback_reverse_tcp.rb │ │ │ │ │ ├── powershell_bind_tcp.rb │ │ │ │ │ ├── powershell_reverse_tcp.rb │ │ │ │ │ ├── powershell_reverse_tcp_ssl.rb │ │ │ │ │ ├── shell_bind_tcp.rb │ │ │ │ │ └── shell_reverse_tcp.rb │ │ │ ├── stagers │ │ │ │ ├── android │ │ │ │ │ ├── reverse_http.rb │ │ │ │ │ ├── reverse_https.rb │ │ │ │ │ └── reverse_tcp.rb │ │ │ │ ├── bsd │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── bind_ipv6_tcp.rb │ │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ │ ├── find_tag.rb │ │ │ │ │ │ ├── reverse_ipv6_tcp.rb │ │ │ │ │ │ └── reverse_tcp.rb │ │ │ │ ├── bsdi │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ │ └── reverse_tcp.rb │ │ │ │ ├── java │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ ├── reverse_http.rb │ │ │ │ │ ├── reverse_https.rb │ │ │ │ │ └── reverse_tcp.rb │ │ │ │ ├── linux │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ └── reverse_tcp.rb │ │ │ │ │ ├── armle │ │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ │ └── reverse_tcp.rb │ │ │ │ │ ├── mipsbe │ │ │ │ │ │ └── reverse_tcp.rb │ │ │ │ │ ├── mipsle │ │ │ │ │ │ └── reverse_tcp.rb │ │ │ │ │ ├── x64 │ │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ │ ├── reverse_sctp.rb │ │ │ │ │ │ └── reverse_tcp.rb │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── bind_ipv6_tcp.rb │ │ │ │ │ │ ├── bind_ipv6_tcp_uuid.rb │ │ │ │ │ │ ├── bind_nonx_tcp.rb │ │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ │ ├── bind_tcp_uuid.rb │ │ │ │ │ │ ├── find_tag.rb │ │ │ │ │ │ ├── reverse_ipv6_tcp.rb │ │ │ │ │ │ ├── reverse_nonx_tcp.rb │ │ │ │ │ │ ├── reverse_tcp.rb │ │ │ │ │ │ └── reverse_tcp_uuid.rb │ │ │ │ ├── multi │ │ │ │ │ ├── reverse_http.rb │ │ │ │ │ └── reverse_https.rb │ │ │ │ ├── netware │ │ │ │ │ └── reverse_tcp.rb │ │ │ │ ├── osx │ │ │ │ │ ├── armle │ │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ │ └── reverse_tcp.rb │ │ │ │ │ ├── ppc │ │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ │ ├── find_tag.rb │ │ │ │ │ │ └── reverse_tcp.rb │ │ │ │ │ ├── x64 │ │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ │ ├── reverse_tcp.rb │ │ │ │ │ │ └── reverse_tcp_uuid.rb │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ │ └── reverse_tcp.rb │ │ │ │ ├── php │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ ├── bind_tcp_ipv6.rb │ │ │ │ │ ├── bind_tcp_ipv6_uuid.rb │ │ │ │ │ ├── bind_tcp_uuid.rb │ │ │ │ │ ├── reverse_tcp.rb │ │ │ │ │ └── reverse_tcp_uuid.rb │ │ │ │ ├── python │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ ├── bind_tcp_uuid.rb │ │ │ │ │ ├── reverse_http.rb │ │ │ │ │ ├── reverse_https.rb │ │ │ │ │ ├── reverse_tcp.rb │ │ │ │ │ ├── reverse_tcp_ssl.rb │ │ │ │ │ └── reverse_tcp_uuid.rb │ │ │ │ └── windows │ │ │ │ │ ├── bind_hidden_ipknock_tcp.rb │ │ │ │ │ ├── bind_hidden_tcp.rb │ │ │ │ │ ├── bind_ipv6_tcp.rb │ │ │ │ │ ├── bind_ipv6_tcp_uuid.rb │ │ │ │ │ ├── bind_named_pipe.rb │ │ │ │ │ ├── bind_nonx_tcp.rb │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ ├── bind_tcp_rc4.rb │ │ │ │ │ ├── bind_tcp_uuid.rb │ │ │ │ │ ├── encrypted_reverse_tcp.rb │ │ │ │ │ ├── findtag_ord.rb │ │ │ │ │ ├── reverse_hop_http.rb │ │ │ │ │ ├── reverse_http.rb │ │ │ │ │ ├── reverse_http_proxy_pstore.rb │ │ │ │ │ ├── reverse_https.rb │ │ │ │ │ ├── reverse_https_proxy.rb │ │ │ │ │ ├── reverse_ipv6_tcp.rb │ │ │ │ │ ├── reverse_named_pipe.rb │ │ │ │ │ ├── reverse_nonx_tcp.rb │ │ │ │ │ ├── reverse_ord_tcp.rb │ │ │ │ │ ├── reverse_tcp.rb │ │ │ │ │ ├── reverse_tcp_allports.rb │ │ │ │ │ ├── reverse_tcp_dns.rb │ │ │ │ │ ├── reverse_tcp_rc4.rb │ │ │ │ │ ├── reverse_tcp_rc4_dns.rb │ │ │ │ │ ├── reverse_tcp_uuid.rb │ │ │ │ │ ├── reverse_udp.rb │ │ │ │ │ ├── reverse_winhttp.rb │ │ │ │ │ ├── reverse_winhttps.rb │ │ │ │ │ └── x64 │ │ │ │ │ ├── bind_ipv6_tcp.rb │ │ │ │ │ ├── bind_ipv6_tcp_uuid.rb │ │ │ │ │ ├── bind_named_pipe.rb │ │ │ │ │ ├── bind_tcp.rb │ │ │ │ │ ├── bind_tcp_rc4.rb │ │ │ │ │ ├── bind_tcp_uuid.rb │ │ │ │ │ ├── encrypted_reverse_tcp.rb │ │ │ │ │ ├── reverse_http.rb │ │ │ │ │ ├── reverse_https.rb │ │ │ │ │ ├── reverse_named_pipe.rb │ │ │ │ │ ├── reverse_tcp.rb │ │ │ │ │ ├── reverse_tcp_rc4.rb │ │ │ │ │ ├── reverse_tcp_uuid.rb │ │ │ │ │ ├── reverse_winhttp.rb │ │ │ │ │ └── reverse_winhttps.rb │ │ │ └── stages │ │ │ │ ├── android │ │ │ │ ├── meterpreter.rb │ │ │ │ └── shell.rb │ │ │ │ ├── bsd │ │ │ │ └── x86 │ │ │ │ │ └── shell.rb │ │ │ │ ├── bsdi │ │ │ │ └── x86 │ │ │ │ │ └── shell.rb │ │ │ │ ├── java │ │ │ │ ├── meterpreter.rb │ │ │ │ └── shell.rb │ │ │ │ ├── linux │ │ │ │ ├── aarch64 │ │ │ │ │ ├── meterpreter.rb │ │ │ │ │ └── shell.rb │ │ │ │ ├── armle │ │ │ │ │ ├── meterpreter.rb │ │ │ │ │ └── shell.rb │ │ │ │ ├── mipsbe │ │ │ │ │ ├── meterpreter.rb │ │ │ │ │ └── shell.rb │ │ │ │ ├── mipsle │ │ │ │ │ ├── meterpreter.rb │ │ │ │ │ └── shell.rb │ │ │ │ ├── x64 │ │ │ │ │ ├── meterpreter.rb │ │ │ │ │ └── shell.rb │ │ │ │ └── x86 │ │ │ │ │ ├── meterpreter.rb │ │ │ │ │ └── shell.rb │ │ │ │ ├── multi │ │ │ │ └── meterpreter.rb │ │ │ │ ├── netware │ │ │ │ └── shell.rb │ │ │ │ ├── osx │ │ │ │ ├── armle │ │ │ │ │ ├── execute.rb │ │ │ │ │ └── shell.rb │ │ │ │ ├── ppc │ │ │ │ │ └── shell.rb │ │ │ │ ├── x64 │ │ │ │ │ ├── dupandexecve.rb │ │ │ │ │ └── meterpreter.rb │ │ │ │ └── x86 │ │ │ │ │ ├── bundleinject.rb │ │ │ │ │ ├── isight.rb │ │ │ │ │ └── vforkshell.rb │ │ │ │ ├── php │ │ │ │ └── meterpreter.rb │ │ │ │ ├── python │ │ │ │ └── meterpreter.rb │ │ │ │ └── windows │ │ │ │ ├── custom.rb │ │ │ │ ├── dllinject.rb │ │ │ │ ├── encrypted_shell.rb │ │ │ │ ├── meterpreter.rb │ │ │ │ ├── patchupdllinject.rb │ │ │ │ ├── patchupmeterpreter.rb │ │ │ │ ├── peinject.rb │ │ │ │ ├── shell.rb │ │ │ │ ├── upexec.rb │ │ │ │ ├── vncinject.rb │ │ │ │ └── x64 │ │ │ │ ├── custom.rb │ │ │ │ ├── encrypted_shell.rb │ │ │ │ ├── meterpreter.rb │ │ │ │ ├── peinject.rb │ │ │ │ ├── shell.rb │ │ │ │ └── vncinject.rb │ │ └── post │ │ │ ├── aix │ │ │ └── hashdump.rb │ │ │ ├── android │ │ │ ├── capture │ │ │ │ └── screen.rb │ │ │ ├── gather │ │ │ │ ├── hashdump.rb │ │ │ │ ├── sub_info.rb │ │ │ │ └── wireless_ap.rb │ │ │ ├── local │ │ │ │ └── koffee.rb │ │ │ └── manage │ │ │ │ ├── remove_lock.rb │ │ │ │ └── remove_lock_root.rb │ │ │ ├── apple_ios │ │ │ └── gather │ │ │ │ ├── ios_image_gather.rb │ │ │ │ └── ios_text_gather.rb │ │ │ ├── bsd │ │ │ └── gather │ │ │ │ └── hashdump.rb │ │ │ ├── firefox │ │ │ ├── gather │ │ │ │ ├── cookies.rb │ │ │ │ ├── history.rb │ │ │ │ ├── passwords.rb │ │ │ │ └── xss.rb │ │ │ └── manage │ │ │ │ └── webcam_chat.rb │ │ │ ├── hardware │ │ │ ├── automotive │ │ │ │ ├── can_flood.rb │ │ │ │ ├── canprobe.rb │ │ │ │ ├── diagnostic_state.rb │ │ │ │ ├── ecu_hard_reset.rb │ │ │ │ ├── getvinfo.rb │ │ │ │ ├── identifymodules.rb │ │ │ │ ├── malibu_overheat.rb │ │ │ │ ├── mazda_ic_mover.rb │ │ │ │ └── pdt.rb │ │ │ ├── rftransceiver │ │ │ │ ├── rfpwnon.rb │ │ │ │ └── transmitter.rb │ │ │ └── zigbee │ │ │ │ └── zstumbler.rb │ │ │ ├── linux │ │ │ ├── busybox │ │ │ │ ├── enum_connections.rb │ │ │ │ ├── enum_hosts.rb │ │ │ │ ├── jailbreak.rb │ │ │ │ ├── ping_net.rb │ │ │ │ ├── set_dmz.rb │ │ │ │ ├── set_dns.rb │ │ │ │ ├── smb_share_root.rb │ │ │ │ └── wget_exec.rb │ │ │ ├── dos │ │ │ │ └── xen_420_dos.rb │ │ │ ├── gather │ │ │ │ ├── checkcontainer.rb │ │ │ │ ├── checkvm.rb │ │ │ │ ├── ecryptfs_creds.rb │ │ │ │ ├── enum_commands.rb │ │ │ │ ├── enum_configs.rb │ │ │ │ ├── enum_containers.rb │ │ │ │ ├── enum_nagios_xi.rb │ │ │ │ ├── enum_network.rb │ │ │ │ ├── enum_protections.rb │ │ │ │ ├── enum_psk.rb │ │ │ │ ├── enum_system.rb │ │ │ │ ├── enum_users_history.rb │ │ │ │ ├── f5_loot_mcp.rb │ │ │ │ ├── gnome_commander_creds.rb │ │ │ │ ├── gnome_keyring_dump.rb │ │ │ │ ├── haserl_read.rb │ │ │ │ ├── hashdump.rb │ │ │ │ ├── manageengine_password_manager_creds.rb │ │ │ │ ├── mimipenguin.rb │ │ │ │ ├── mount_cifs_creds.rb │ │ │ │ ├── openvpn_credentials.rb │ │ │ │ ├── phpmyadmin_credsteal.rb │ │ │ │ ├── pptpd_chap_secrets.rb │ │ │ │ ├── tor_hiddenservices.rb │ │ │ │ └── vcenter_secrets_dump.rb │ │ │ └── manage │ │ │ │ ├── disable_clamav.rb │ │ │ │ ├── dns_spoofing.rb │ │ │ │ ├── download_exec.rb │ │ │ │ ├── geutebruck_post_exp.rb │ │ │ │ ├── iptables_removal.rb │ │ │ │ ├── pseudo_shell.rb │ │ │ │ └── sshkey_persistence.rb │ │ │ ├── multi │ │ │ ├── escalate │ │ │ │ ├── aws_create_iam_user.rb │ │ │ │ ├── cups_root_file_read.rb │ │ │ │ └── metasploit_pcaplog.rb │ │ │ ├── gather │ │ │ │ ├── apple_ios_backup.rb │ │ │ │ ├── aws_ec2_instance_metadata.rb │ │ │ │ ├── aws_keys.rb │ │ │ │ ├── check_malware.rb │ │ │ │ ├── chrome_cookies.rb │ │ │ │ ├── dbeaver.rb │ │ │ │ ├── dbvis_enum.rb │ │ │ │ ├── dns_bruteforce.rb │ │ │ │ ├── dns_reverse_lookup.rb │ │ │ │ ├── dns_srv_lookup.rb │ │ │ │ ├── docker_creds.rb │ │ │ │ ├── enum_hexchat.rb │ │ │ │ ├── enum_software_versions.rb │ │ │ │ ├── enum_vbox.rb │ │ │ │ ├── env.rb │ │ │ │ ├── fetchmailrc_creds.rb │ │ │ │ ├── filezilla_client_cred.rb │ │ │ │ ├── find_vmx.rb │ │ │ │ ├── firefox_creds.rb │ │ │ │ ├── gpg_creds.rb │ │ │ │ ├── grub_creds.rb │ │ │ │ ├── irssi_creds.rb │ │ │ │ ├── jboss_gather.rb │ │ │ │ ├── jenkins_gather.rb │ │ │ │ ├── lastpass_creds.rb │ │ │ │ ├── maven_creds.rb │ │ │ │ ├── minio_client.rb │ │ │ │ ├── multi_command.rb │ │ │ │ ├── netrc_creds.rb │ │ │ │ ├── pgpass_creds.rb │ │ │ │ ├── pidgin_cred.rb │ │ │ │ ├── ping_sweep.rb │ │ │ │ ├── remmina_creds.rb │ │ │ │ ├── resolve_hosts.rb │ │ │ │ ├── rsyncd_creds.rb │ │ │ │ ├── rubygems_api_key.rb │ │ │ │ ├── run_console_rc_file.rb │ │ │ │ ├── saltstack_salt.rb │ │ │ │ ├── skype_enum.rb │ │ │ │ ├── ssh_creds.rb │ │ │ │ ├── thunderbird_creds.rb │ │ │ │ ├── tomcat_gather.rb │ │ │ │ ├── ubiquiti_unifi_backup.rb │ │ │ │ ├── unix_cached_ad_hashes.rb │ │ │ │ ├── unix_kerberos_tickets.rb │ │ │ │ ├── wlan_geolocate.rb │ │ │ │ └── wowza_streaming_engine_creds.rb │ │ │ ├── general │ │ │ │ ├── close.rb │ │ │ │ ├── execute.rb │ │ │ │ └── wall.rb │ │ │ ├── manage │ │ │ │ ├── autoroute.rb │ │ │ │ ├── dbvis_add_db_admin.rb │ │ │ │ ├── dbvis_query.rb │ │ │ │ ├── fileshare.rb │ │ │ │ ├── hsts_eraser.rb │ │ │ │ ├── multi_post.rb │ │ │ │ ├── open.rb │ │ │ │ ├── play_youtube.rb │ │ │ │ ├── record_mic.rb │ │ │ │ ├── screensaver.rb │ │ │ │ ├── screenshare.rb │ │ │ │ ├── set_wallpaper.rb │ │ │ │ ├── shell_to_meterpreter.rb │ │ │ │ ├── sudo.rb │ │ │ │ ├── system_session.rb │ │ │ │ ├── upload_exec.rb │ │ │ │ └── zip.rb │ │ │ ├── recon │ │ │ │ ├── local_exploit_suggester.rb │ │ │ │ ├── multiport_egress_traffic.rb │ │ │ │ ├── reverse_lookup.rb │ │ │ │ └── sudo_commands.rb │ │ │ └── sap │ │ │ │ └── smdagent_get_properties.rb │ │ │ ├── networking │ │ │ └── gather │ │ │ │ ├── enum_brocade.rb │ │ │ │ ├── enum_cisco.rb │ │ │ │ ├── enum_f5.rb │ │ │ │ ├── enum_juniper.rb │ │ │ │ ├── enum_mikrotik.rb │ │ │ │ └── enum_vyos.rb │ │ │ ├── osx │ │ │ ├── admin │ │ │ │ └── say.rb │ │ │ ├── capture │ │ │ │ ├── keylog_recorder.rb │ │ │ │ └── screen.rb │ │ │ ├── escalate │ │ │ │ └── tccbypass.rb │ │ │ ├── gather │ │ │ │ ├── apfs_encrypted_volume_passwd.rb │ │ │ │ ├── autologin_password.rb │ │ │ │ ├── enum_adium.rb │ │ │ │ ├── enum_airport.rb │ │ │ │ ├── enum_chicken_vnc_profile.rb │ │ │ │ ├── enum_colloquy.rb │ │ │ │ ├── enum_keychain.rb │ │ │ │ ├── enum_messages.rb │ │ │ │ ├── enum_osx.rb │ │ │ │ ├── gitignore.rb │ │ │ │ ├── hashdump.rb │ │ │ │ ├── password_prompt_spoof.rb │ │ │ │ ├── safari_lastsession.rb │ │ │ │ └── vnc_password_osx.rb │ │ │ └── manage │ │ │ │ ├── mount_share.rb │ │ │ │ ├── record_mic.rb │ │ │ │ ├── sonic_pi.rb │ │ │ │ ├── vpn.rb │ │ │ │ └── webcam.rb │ │ │ ├── solaris │ │ │ ├── escalate │ │ │ │ ├── pfexec.rb │ │ │ │ └── srsexec_readline.rb │ │ │ └── gather │ │ │ │ ├── checkvm.rb │ │ │ │ ├── enum_packages.rb │ │ │ │ ├── enum_services.rb │ │ │ │ └── hashdump.rb │ │ │ └── windows │ │ │ ├── capture │ │ │ ├── keylog_recorder.rb │ │ │ └── lockout_keylogger.rb │ │ │ ├── escalate │ │ │ ├── droplnk.rb │ │ │ ├── getsystem.rb │ │ │ ├── golden_ticket.rb │ │ │ ├── ms10_073_kbdlayout.rb │ │ │ ├── screen_unlock.rb │ │ │ └── unmarshal_cmd_exec.rb │ │ │ ├── gather │ │ │ ├── ad_to_sqlite.rb │ │ │ ├── arp_scanner.rb │ │ │ ├── avast_memory_dump.rb │ │ │ ├── bitcoin_jacker.rb │ │ │ ├── bitlocker_fvek.rb │ │ │ ├── bloodhound.rb │ │ │ ├── cachedump.rb │ │ │ ├── checkvm.rb │ │ │ ├── credentials │ │ │ │ ├── aim.rb │ │ │ │ ├── avira_password.rb │ │ │ │ ├── bulletproof_ftp.rb │ │ │ │ ├── chrome.rb │ │ │ │ ├── comodo.rb │ │ │ │ ├── coolnovo.rb │ │ │ │ ├── coreftp.rb │ │ │ │ ├── credential_collector.rb │ │ │ │ ├── digsby.rb │ │ │ │ ├── domain_hashdump.rb │ │ │ │ ├── dynazip_log.rb │ │ │ │ ├── dyndns.rb │ │ │ │ ├── enum_cred_store.rb │ │ │ │ ├── enum_laps.rb │ │ │ │ ├── enum_picasa_pwds.rb │ │ │ │ ├── epo_sql.rb │ │ │ │ ├── filezilla_server.rb │ │ │ │ ├── flashfxp.rb │ │ │ │ ├── flock.rb │ │ │ │ ├── ftpnavigator.rb │ │ │ │ ├── ftpx.rb │ │ │ │ ├── gadugadu.rb │ │ │ │ ├── gpp.rb │ │ │ │ ├── heidisql.rb │ │ │ │ ├── icq.rb │ │ │ │ ├── idm.rb │ │ │ │ ├── ie.rb │ │ │ │ ├── imail.rb │ │ │ │ ├── imvu.rb │ │ │ │ ├── incredimail.rb │ │ │ │ ├── kakaotalk.rb │ │ │ │ ├── kmeleon.rb │ │ │ │ ├── line.rb │ │ │ │ ├── maxthon.rb │ │ │ │ ├── mcafee_vse_hashdump.rb │ │ │ │ ├── mdaemon_cred_collector.rb │ │ │ │ ├── meebo.rb │ │ │ │ ├── miranda.rb │ │ │ │ ├── moba_xterm.rb │ │ │ │ ├── mremote.rb │ │ │ │ ├── mssql_local_hashdump.rb │ │ │ │ ├── navicat.rb │ │ │ │ ├── nimbuzz.rb │ │ │ │ ├── opera.rb │ │ │ │ ├── operamail.rb │ │ │ │ ├── outlook.rb │ │ │ │ ├── postbox.rb │ │ │ │ ├── pulse_secure.rb │ │ │ │ ├── purevpn_cred_collector.rb │ │ │ │ ├── qq.rb │ │ │ │ ├── razer_synapse.rb │ │ │ │ ├── razorsql.rb │ │ │ │ ├── rdc_manager_creds.rb │ │ │ │ ├── redis_desktop_manager.rb │ │ │ │ ├── safari.rb │ │ │ │ ├── seamonkey.rb │ │ │ │ ├── securecrt.rb │ │ │ │ ├── skype.rb │ │ │ │ ├── smartermail.rb │ │ │ │ ├── smartftp.rb │ │ │ │ ├── solarwinds_orion_dump.rb │ │ │ │ ├── spark_im.rb │ │ │ │ ├── srware.rb │ │ │ │ ├── sso.rb │ │ │ │ ├── steam.rb │ │ │ │ ├── tango.rb │ │ │ │ ├── teamviewer_passwords.rb │ │ │ │ ├── thunderbird.rb │ │ │ │ ├── thycotic_secretserver_dump.rb │ │ │ │ ├── tlen.rb │ │ │ │ ├── tortoisesvn.rb │ │ │ │ ├── total_commander.rb │ │ │ │ ├── trillian.rb │ │ │ │ ├── veeam_credential_dump.rb │ │ │ │ ├── viber.rb │ │ │ │ ├── vnc.rb │ │ │ │ ├── whatsupgold_credential_dump.rb │ │ │ │ ├── windows_autologin.rb │ │ │ │ ├── windows_sam_hivenightmare.rb │ │ │ │ ├── windowslivemail.rb │ │ │ │ ├── winscp.rb │ │ │ │ ├── wsftp_client.rb │ │ │ │ ├── xchat.rb │ │ │ │ └── xshell_xftp_password.rb │ │ │ ├── dnscache_dump.rb │ │ │ ├── dumplinks.rb │ │ │ ├── enum_ad_bitlocker.rb │ │ │ ├── enum_ad_computers.rb │ │ │ ├── enum_ad_groups.rb │ │ │ ├── enum_ad_managedby_groups.rb │ │ │ ├── enum_ad_service_principal_names.rb │ │ │ ├── enum_ad_to_wordlist.rb │ │ │ ├── enum_ad_user_comments.rb │ │ │ ├── enum_ad_users.rb │ │ │ ├── enum_applications.rb │ │ │ ├── enum_artifacts.rb │ │ │ ├── enum_av.rb │ │ │ ├── enum_av_excluded.rb │ │ │ ├── enum_chocolatey_applications.rb │ │ │ ├── enum_chrome.rb │ │ │ ├── enum_computers.rb │ │ │ ├── enum_db.rb │ │ │ ├── enum_devices.rb │ │ │ ├── enum_dirperms.rb │ │ │ ├── enum_domain.rb │ │ │ ├── enum_domain_group_users.rb │ │ │ ├── enum_domain_tokens.rb │ │ │ ├── enum_domain_users.rb │ │ │ ├── enum_domains.rb │ │ │ ├── enum_emet.rb │ │ │ ├── enum_files.rb │ │ │ ├── enum_hostfile.rb │ │ │ ├── enum_hyperv_vms.rb │ │ │ ├── enum_ie.rb │ │ │ ├── enum_logged_on_users.rb │ │ │ ├── enum_ms_product_keys.rb │ │ │ ├── enum_muicache.rb │ │ │ ├── enum_onedrive.rb │ │ │ ├── enum_patches.rb │ │ │ ├── enum_powershell_env.rb │ │ │ ├── enum_prefetch.rb │ │ │ ├── enum_proxy.rb │ │ │ ├── enum_putty_saved_sessions.rb │ │ │ ├── enum_services.rb │ │ │ ├── enum_shares.rb │ │ │ ├── enum_snmp.rb │ │ │ ├── enum_termserv.rb │ │ │ ├── enum_tokens.rb │ │ │ ├── enum_tomcat.rb │ │ │ ├── enum_trusted_locations.rb │ │ │ ├── enum_unattend.rb │ │ │ ├── exchange.rb │ │ │ ├── file_from_raw_ntfs.rb │ │ │ ├── forensics │ │ │ │ ├── browser_history.rb │ │ │ │ ├── duqu_check.rb │ │ │ │ ├── enum_drives.rb │ │ │ │ ├── fanny_bmp_check.rb │ │ │ │ ├── imager.rb │ │ │ │ ├── nbd_server.rb │ │ │ │ └── recovery_files.rb │ │ │ ├── get_bookmarks.rb │ │ │ ├── hashdump.rb │ │ │ ├── local_admin_search_enum.rb │ │ │ ├── lsa_secrets.rb │ │ │ ├── make_csv_orgchart.rb │ │ │ ├── memory_dump.rb │ │ │ ├── memory_grep.rb │ │ │ ├── netlm_downgrade.rb │ │ │ ├── ntds_grabber.rb │ │ │ ├── ntds_location.rb │ │ │ ├── outlook.rb │ │ │ ├── phish_windows_credentials.rb │ │ │ ├── psreadline_history.rb │ │ │ ├── resolve_sid.rb │ │ │ ├── screen_spy.rb │ │ │ ├── smart_hashdump.rb │ │ │ ├── tcpnetstat.rb │ │ │ ├── usb_history.rb │ │ │ ├── win_privs.rb │ │ │ ├── wmic_command.rb │ │ │ └── word_unc_injector.rb │ │ │ ├── manage │ │ │ ├── add_user.rb │ │ │ ├── archmigrate.rb │ │ │ ├── change_password.rb │ │ │ ├── clone_proxy_settings.rb │ │ │ ├── delete_user.rb │ │ │ ├── dell_memory_protect.rb │ │ │ ├── download_exec.rb │ │ │ ├── driver_loader.rb │ │ │ ├── enable_rdp.rb │ │ │ ├── enable_support_account.rb │ │ │ ├── exec_powershell.rb │ │ │ ├── execute_dotnet_assembly.rb │ │ │ ├── forward_pageant.rb │ │ │ ├── hashcarve.rb │ │ │ ├── ie_proxypac.rb │ │ │ ├── inject_ca.rb │ │ │ ├── inject_host.rb │ │ │ ├── install_python.rb │ │ │ ├── install_ssh.rb │ │ │ ├── killav.rb │ │ │ ├── make_token.rb │ │ │ ├── migrate.rb │ │ │ ├── mssql_local_auth_bypass.rb │ │ │ ├── multi_meterpreter_inject.rb │ │ │ ├── nbd_server.rb │ │ │ ├── peinjector.rb │ │ │ ├── persistence_exe.rb │ │ │ ├── portproxy.rb │ │ │ ├── powershell │ │ │ │ ├── build_net_code.rb │ │ │ │ ├── exec_powershell.rb │ │ │ │ └── load_script.rb │ │ │ ├── pptp_tunnel.rb │ │ │ ├── priv_migrate.rb │ │ │ ├── pxeexploit.rb │ │ │ ├── reflective_dll_inject.rb │ │ │ ├── remove_ca.rb │ │ │ ├── remove_host.rb │ │ │ ├── rid_hijack.rb │ │ │ ├── rollback_defender_signatures.rb │ │ │ ├── rpcapd_start.rb │ │ │ ├── run_as.rb │ │ │ ├── run_as_psh.rb │ │ │ ├── sdel.rb │ │ │ ├── shellcode_inject.rb │ │ │ ├── sshkey_persistence.rb │ │ │ ├── sticky_keys.rb │ │ │ ├── vmdk_mount.rb │ │ │ ├── vss.rb │ │ │ ├── wdigest_caching.rb │ │ │ └── webcam.rb │ │ │ ├── recon │ │ │ ├── computer_browser_discovery.rb │ │ │ └── outbound_ports.rb │ │ │ └── wlan │ │ │ ├── wlan_bss_list.rb │ │ │ ├── wlan_current_connection.rb │ │ │ ├── wlan_disconnect.rb │ │ │ ├── wlan_probe_request.rb │ │ │ └── wlan_profile.rb │ └── msfvenom └── msfvenom.bat ├── msf_poc └── .msfpoc ├── payload.txt └── tool └── custom_dll.exe /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/config.yaml -------------------------------------------------------------------------------- /dlls/.dlls: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eBSploit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/eBSploit.exe -------------------------------------------------------------------------------- /exploit_eternalpulse/Doublepulsar-1.3.1.Skeleton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/Doublepulsar-1.3.1.Skeleton.xml -------------------------------------------------------------------------------- /exploit_eternalpulse/Doublepulsar-1.3.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/Doublepulsar-1.3.1.exe -------------------------------------------------------------------------------- /exploit_eternalpulse/Doublepulsar-1.3.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/Doublepulsar-1.3.1.xml -------------------------------------------------------------------------------- /exploit_eternalpulse/EternalPulse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/EternalPulse -------------------------------------------------------------------------------- /exploit_eternalpulse/Eternalblue-2.2.0.Skeleton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/Eternalblue-2.2.0.Skeleton.xml -------------------------------------------------------------------------------- /exploit_eternalpulse/Eternalblue-2.2.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/Eternalblue-2.2.0.exe -------------------------------------------------------------------------------- /exploit_eternalpulse/Eternalblue-2.2.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/Eternalblue-2.2.0.xml -------------------------------------------------------------------------------- /exploit_eternalpulse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/README.md -------------------------------------------------------------------------------- /exploit_eternalpulse/_pytrch.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/_pytrch.pyd -------------------------------------------------------------------------------- /exploit_eternalpulse/adfw-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/adfw-2.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/adfw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/adfw.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/cnli-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/cnli-0.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/cnli-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/cnli-1.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/coli-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/coli-0.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/crli-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/crli-0.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/dmgd-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/dmgd-1.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/dmgd-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/dmgd-4.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/esco-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/esco-0.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/eternalpulse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/eternalpulse.rb -------------------------------------------------------------------------------- /exploit_eternalpulse/exma-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/exma-1.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/exma.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/exma.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/iconv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/iconv.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/libcurl.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/libeay32.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/libiconv-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/libiconv-2.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/libxml2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/libxml2.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/pcla-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/pcla-0.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/pcre-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/pcre-0.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/pcrecpp-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/pcrecpp-0.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/pcreposix-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/pcreposix-0.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/posh-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/posh-0.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/posh.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/posh.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/pytrch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/pytrch.py -------------------------------------------------------------------------------- /exploit_eternalpulse/pytrch.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/pytrch.pyc -------------------------------------------------------------------------------- /exploit_eternalpulse/riar-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/riar-2.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/riar.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/riar.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/ssleay32.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/tibe-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/tibe-1.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/tibe-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/tibe-2.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/tibe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/tibe.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/trch-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/trch-0.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/trch-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/trch-1.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/trch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/trch.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/trfo-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/trfo-0.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/trfo-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/trfo-2.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/trfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/trfo.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/tucl-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/tucl-1.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/tucl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/tucl.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/ucl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/ucl.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/xdvl-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/xdvl-0.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/zibe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/zibe.dll -------------------------------------------------------------------------------- /exploit_eternalpulse/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/exploit_eternalpulse/zlib1.dll -------------------------------------------------------------------------------- /images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/header.png -------------------------------------------------------------------------------- /images/image-20240817155056436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817155056436.png -------------------------------------------------------------------------------- /images/image-20240817163810191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817163810191.png -------------------------------------------------------------------------------- /images/image-20240817163830990.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817163830990.png -------------------------------------------------------------------------------- /images/image-20240817164008249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817164008249.png -------------------------------------------------------------------------------- /images/image-20240817164028291.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817164028291.png -------------------------------------------------------------------------------- /images/image-20240817164124976.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817164124976.png -------------------------------------------------------------------------------- /images/image-20240817164407513.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817164407513.png -------------------------------------------------------------------------------- /images/image-20240817165617525.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817165617525.png -------------------------------------------------------------------------------- /images/image-20240817165709553.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817165709553.png -------------------------------------------------------------------------------- /images/image-20240817165908697.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817165908697.png -------------------------------------------------------------------------------- /images/image-20240817170940918.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817170940918.png -------------------------------------------------------------------------------- /images/image-20240817171504669.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817171504669.png -------------------------------------------------------------------------------- /images/image-20240817171550660.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817171550660.png -------------------------------------------------------------------------------- /images/image-20240817171640616.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817171640616.png -------------------------------------------------------------------------------- /images/image-20240817171651874.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817171651874.png -------------------------------------------------------------------------------- /images/image-20240817171706529.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817171706529.png -------------------------------------------------------------------------------- /images/image-20240817171749532.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817171749532.png -------------------------------------------------------------------------------- /images/image-20240817171829426.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817171829426.png -------------------------------------------------------------------------------- /images/image-20240817172905976.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817172905976.png -------------------------------------------------------------------------------- /images/image-20240817172915556.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817172915556.png -------------------------------------------------------------------------------- /images/image-20240817172954360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817172954360.png -------------------------------------------------------------------------------- /images/image-20240817173100657.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817173100657.png -------------------------------------------------------------------------------- /images/image-20240817173215258.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817173215258.png -------------------------------------------------------------------------------- /images/image-20240817173224017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817173224017.png -------------------------------------------------------------------------------- /images/image-20240817173306341.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817173306341.png -------------------------------------------------------------------------------- /images/image-20240817173322714.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817173322714.png -------------------------------------------------------------------------------- /images/image-20240817173328886.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817173328886.png -------------------------------------------------------------------------------- /images/image-20240817223040654.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817223040654.png -------------------------------------------------------------------------------- /images/image-20240817223057415.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817223057415.png -------------------------------------------------------------------------------- /images/image-20240817223146713.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817223146713.png -------------------------------------------------------------------------------- /images/image-20240817223235883.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817223235883.png -------------------------------------------------------------------------------- /images/image-20240817223236718.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817223236718.png -------------------------------------------------------------------------------- /images/image-20240817223238022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817223238022.png -------------------------------------------------------------------------------- /images/image-20240817223433487.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817223433487.png -------------------------------------------------------------------------------- /images/image-20240817224014967.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817224014967.png -------------------------------------------------------------------------------- /images/image-20240817224111732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817224111732.png -------------------------------------------------------------------------------- /images/image-20240817224352514.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817224352514.png -------------------------------------------------------------------------------- /images/image-20240817224401506.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817224401506.png -------------------------------------------------------------------------------- /images/image-20240817224406043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817224406043.png -------------------------------------------------------------------------------- /images/image-20240817224723017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/images/image-20240817224723017.png -------------------------------------------------------------------------------- /metasploit-framework/framework/.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/.github/SECURITY.md -------------------------------------------------------------------------------- /metasploit-framework/framework/.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/.github/workflows/docs.yml -------------------------------------------------------------------------------- /metasploit-framework/framework/.github/workflows/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/.github/workflows/labels.yml -------------------------------------------------------------------------------- /metasploit-framework/framework/.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/.github/workflows/lint.yml -------------------------------------------------------------------------------- /metasploit-framework/framework/.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/.github/workflows/verify.yml -------------------------------------------------------------------------------- /metasploit-framework/framework/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/Gemfile -------------------------------------------------------------------------------- /metasploit-framework/framework/Gemfile.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/Gemfile.local.example -------------------------------------------------------------------------------- /metasploit-framework/framework/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/Gemfile.lock -------------------------------------------------------------------------------- /metasploit-framework/framework/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/app/README.md -------------------------------------------------------------------------------- /metasploit-framework/framework/app/validators/metasploit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/app/validators/metasploit.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/config/README.md -------------------------------------------------------------------------------- /metasploit-framework/framework/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/config/application.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/config/boot.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/config/cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/config/cucumber.yml -------------------------------------------------------------------------------- /metasploit-framework/framework/config/database.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/config/database.yml.example -------------------------------------------------------------------------------- /metasploit-framework/framework/config/database.yml.vagrant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/config/database.yml.vagrant -------------------------------------------------------------------------------- /metasploit-framework/framework/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/config/environment.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/config/openssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/config/openssl.conf -------------------------------------------------------------------------------- /metasploit-framework/framework/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/README.md -------------------------------------------------------------------------------- /metasploit-framework/framework/data/capture_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/capture_config.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/eicar.com: -------------------------------------------------------------------------------- 1 | X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H* -------------------------------------------------------------------------------- /metasploit-framework/framework/data/eicar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/eicar.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/emailer_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/emailer_config.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/exchange_versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/exchange_versions.json -------------------------------------------------------------------------------- /metasploit-framework/framework/data/f5-mcp-objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/f5-mcp-objects.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/isight.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/isight.bundle -------------------------------------------------------------------------------- /metasploit-framework/framework/data/mime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/mime.yml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/passivex/passivex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/passivex/passivex.dll -------------------------------------------------------------------------------- /metasploit-framework/framework/data/php/hop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/php/hop.php -------------------------------------------------------------------------------- /metasploit-framework/framework/data/post/SharpHound.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/post/SharpHound.exe -------------------------------------------------------------------------------- /metasploit-framework/framework/data/post/bypassuac-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/post/bypassuac-x64.dll -------------------------------------------------------------------------------- /metasploit-framework/framework/data/post/bypassuac-x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/post/bypassuac-x64.exe -------------------------------------------------------------------------------- /metasploit-framework/framework/data/post/bypassuac-x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/post/bypassuac-x86.dll -------------------------------------------------------------------------------- /metasploit-framework/framework/data/post/bypassuac-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/post/bypassuac-x86.exe -------------------------------------------------------------------------------- /metasploit-framework/framework/data/post/powershell/msflag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/post/powershell/msflag.ps1 -------------------------------------------------------------------------------- /metasploit-framework/framework/data/post/sonic_pi_example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/post/sonic_pi_example.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/data/post/zip/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/post/zip/zip.js -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/ADSL-TC-MIB.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | adsltcmib: 1.3.6.1.2.1.10.94.2 3 | -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/AGENTX-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/AGENTX-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/APM-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/APM-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/APPC-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/APPC-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/APPN-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/APPN-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/APS-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/APS-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/ATM-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/ATM-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/ATM-TC-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/ATM-TC-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/ATM2-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/ATM2-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/BGP4-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/BGP4-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/BRIDGE-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/BRIDGE-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/CLNS-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/CLNS-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/DIFFSERV-DSCP-TC.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | diffServDSCPTC: 1.3.6.1.2.1.96 3 | -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/DLSW-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/DLSW-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/DOCS-IF-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/DOCS-IF-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/DS0-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/DS0-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/DS1-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/DS1-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/DS3-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/DS3-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/DSA-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/DSA-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/DSMON-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/DSMON-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/EBN-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/EBN-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/ENTITY-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/ENTITY-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/ETHER-WIS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/ETHER-WIS.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/FR-MFR-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/FR-MFR-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/FRSLD-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/FRSLD-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/GSMP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/GSMP-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/HC-PerfHist-TC-MIB.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | hcPerfHistTCMIB: 1.3.6.1.2.1.107 3 | -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/HC-RMON-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/HC-RMON-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/HCNUM-TC.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | hcnumTC: 1.3.6.1.2.1.78 3 | -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/HPR-IP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/HPR-IP-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/HPR-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/HPR-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/IF-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/IF-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/INET-ADDRESS-MIB.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | inetAddressMIB: 1.3.6.1.2.1.76 3 | -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/IP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/IP-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/IPOA-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/IPOA-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/IPV6-FLOW-LABEL-MIB.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | ipv6FlowLabelMIB: 1.3.6.1.2.1.103 3 | -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/IPV6-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/IPV6-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/ISDN-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/ISDN-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/L2TP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/L2TP-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/MALLOC-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/MALLOC-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/MAU-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/MAU-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/MIOX25-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/MIOX25-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/MIP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/MIP-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/MTA-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/MTA-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/Modem-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/Modem-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/NHRP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/NHRP-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/OPT-IF-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/OPT-IF-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/OSPF-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/OSPF-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/PIM-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/PIM-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/PINT-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/PINT-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/PPP-LCP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/PPP-LCP-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/PPP-SEC-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/PPP-SEC-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/PTOPO-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/PTOPO-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/PerfHist-TC-MIB.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | perfHistTCMIB: 1.3.6.1.2.1.58 3 | -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/Printer-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/Printer-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RDBMS-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RDBMS-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RFC1065-SMI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RFC1065-SMI.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RFC1155-SMI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RFC1155-SMI.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RFC1158-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RFC1158-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RFC1213-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RFC1213-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RFC1269-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RFC1269-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RFC1271-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RFC1271-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RFC1285-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RFC1285-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RFC1316-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RFC1316-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RFC1381-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RFC1381-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RFC1382-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RFC1382-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RFC1414-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RFC1414-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RIPv2-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RIPv2-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RMON-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RMON-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RMON2-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RMON2-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/ROHC-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/ROHC-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RS-232-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RS-232-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RSVP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RSVP-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/RTP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/RTP-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/SFLOW-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/SFLOW-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/SIP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/SIP-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/SLAPM-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/SLAPM-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/SMON-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/SMON-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/SNA-NAU-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/SNA-NAU-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/SNMPv2-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/SNMPv2-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/SNMPv2-SMI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/SNMPv2-SMI.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/SNMPv2-TM.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/SNMPv2-TM.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/SONET-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/SONET-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/SYSAPPL-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/SYSAPPL-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/TCP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/TCP-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/TCPIPX-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/TCPIPX-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/TN3270E-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/TN3270E-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/TUNNEL-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/TUNNEL-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/UDP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/UDP-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/UPS-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/UPS-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/VRRP-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/VRRP-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/snmp/mibs/WWW-MIB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/snmp/mibs/WWW-MIB.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/sounds/aiff2wav.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/sounds/aiff2wav.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/data/sounds/gensounds_mac.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/sounds/gensounds_mac.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/data/templates/dotnetmem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/templates/dotnetmem.dll -------------------------------------------------------------------------------- /metasploit-framework/framework/data/templates/src/msi/buffer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/templates/src/msi/buffer -------------------------------------------------------------------------------- /metasploit-framework/framework/data/templates/src/pe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/templates/src/pe/README.md -------------------------------------------------------------------------------- /metasploit-framework/framework/data/templates/src/pe/dll_mixed_mode/template.cpp: -------------------------------------------------------------------------------- 1 | #pragma unmanaged 2 | #include "template.c" 3 | -------------------------------------------------------------------------------- /metasploit-framework/framework/data/unirpc-errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/unirpc-errors.yaml -------------------------------------------------------------------------------- /metasploit-framework/framework/data/vncdll.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/vncdll.x64.dll -------------------------------------------------------------------------------- /metasploit-framework/framework/data/vncdll.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/vncdll.x86.dll -------------------------------------------------------------------------------- /metasploit-framework/framework/data/webcam/answerer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/webcam/answerer.html -------------------------------------------------------------------------------- /metasploit-framework/framework/data/webcam/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/webcam/api.js -------------------------------------------------------------------------------- /metasploit-framework/framework/data/webcam/offerer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/webcam/offerer.html -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wmap/whaler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wmap/whaler.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wmap/wmap_404s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wmap/wmap_404s.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wmap/wmap_dirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wmap/wmap_dirs.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wmap/wmap_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wmap/wmap_files.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/common_roots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/common_roots.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/dangerzone_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/dangerzone_a.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/dangerzone_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/dangerzone_b.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/idrac_default_pass.txt: -------------------------------------------------------------------------------- 1 | calvin 2 | 123456 3 | password 4 | user1234 5 | -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/idrac_default_user.txt: -------------------------------------------------------------------------------- 1 | root 2 | user1 3 | admin 4 | -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/ipmi_users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/ipmi_users.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/joomla.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/joomla.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/mirai_pass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/mirai_pass.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/mirai_user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/mirai_user.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/multi_vendor_cctv_dvr_users.txt: -------------------------------------------------------------------------------- 1 | admin 2 | user 3 | -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/named_pipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/named_pipes.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/namelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/namelist.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/password.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/password.lst -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/postgres_default_pass.txt: -------------------------------------------------------------------------------- 1 | 2 | tiger 3 | postgres 4 | password 5 | admin 6 | -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/postgres_default_user.txt: -------------------------------------------------------------------------------- 1 | 2 | postgres 3 | scott 4 | admin 5 | -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/rpc_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/rpc_names.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/rservices_from_users.txt: -------------------------------------------------------------------------------- 1 | root 2 | daemon 3 | bin 4 | nobody 5 | + 6 | guest 7 | mail 8 | -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/sap_common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/sap_common.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/sap_default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/sap_default.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/sid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/sid.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/tftp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/tftp.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/unix_users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/unix_users.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/vnc_passwords.txt: -------------------------------------------------------------------------------- 1 | password 2 | -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/wp-exploitable-themes.txt: -------------------------------------------------------------------------------- 1 | holding_pattern 2 | wplms 3 | -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/wp-plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/wp-plugins.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/wordlists/wp-themes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/wordlists/wp-themes.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/data/ysoserial_payloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/data/ysoserial_payloads.json -------------------------------------------------------------------------------- /metasploit-framework/framework/db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/db/README.md -------------------------------------------------------------------------------- /metasploit-framework/framework/db/migrate/.git-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metasploit-framework/framework/db/modules_metadata_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/db/modules_metadata_base.json -------------------------------------------------------------------------------- /metasploit-framework/framework/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/db/schema.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/docker/README.md -------------------------------------------------------------------------------- /metasploit-framework/framework/docker/bin/msfconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/docker/bin/msfconsole -------------------------------------------------------------------------------- /metasploit-framework/framework/docker/bin/msfvenom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/docker/bin/msfvenom -------------------------------------------------------------------------------- /metasploit-framework/framework/docker/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/docker/database.yml -------------------------------------------------------------------------------- /metasploit-framework/framework/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/docker/entrypoint.sh -------------------------------------------------------------------------------- /metasploit-framework/framework/docker/msfconsole.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/docker/msfconsole.rc -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/README.md -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/cli.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/cli/count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/cli/count.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/cli/cron.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/cli/cron.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/cli/pagedepth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/cli/pagedepth.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/cli/serialize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/cli/serialize.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/cli/url_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/cli/url_list.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/cookie_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/cookie_store.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/core.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/docs/CHANGELOG.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/docs/CHANGELOG.rdoc -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/docs/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/docs/CONTRIBUTORS -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/docs/LICENSE.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/docs/MODIFIED.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/docs/MODIFIED.txt -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/docs/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/docs/README.rdoc -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/docs/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/docs/Rakefile -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/docs/VERSION: -------------------------------------------------------------------------------- 1 | 0.5.0 2 | -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/exceptions.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/extractors/forms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/extractors/forms.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/extractors/links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/extractors/links.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/http.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/page.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/page_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/page_store.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/rex_http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/rex_http.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/storage.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/storage/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/storage/base.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/storage/mongodb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/storage/mongodb.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/storage/pstore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/storage/pstore.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/storage/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/storage/redis.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/anemone/tentacle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/anemone/tentacle.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/enumerable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/enumerable.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/expect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/expect.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/metasploit/framework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/metasploit/framework.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/metasploit/framework/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/metasploit/framework/api.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/LICENSE: -------------------------------------------------------------------------------- 1 | This code is provided under the Metasploit Framework License. 2 | -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/base.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/base/README.md -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/base/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/base/config.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/base/logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/base/logging.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/base/serializer/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/base/serializer/json.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/base/sessions/custom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/base/sessions/custom.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/base/sessions/tty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/base/sessions/tty.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/base/simple.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | 3 | module Msf::Simple 4 | 5 | end -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/base/simple/buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/base/simple/buffer.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/base/simple/encoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/base/simple/encoder.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/base/simple/evasion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/base/simple/evasion.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/base/simple/exploit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/base/simple/exploit.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/base/simple/module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/base/simple/module.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/base/simple/nop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/base/simple/nop.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/base/simple/payload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/base/simple/payload.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/base/simple/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/base/simple/post.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/README.md -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/analyze.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/analyze.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/analyze/result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/analyze/result.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/author.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/author.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/cisco.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/cisco.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/crand.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/crand.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/dos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/dos.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/drdos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/drdos.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/epmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/epmp.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/etcd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/etcd.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/f5.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/f5.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/iax2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/iax2.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/llmnr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/llmnr.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/login.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/mdns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/mdns.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/mms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/mms.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/mqtt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/mqtt.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/nfs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/nfs.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/nmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/nmap.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/ntp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/ntp.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/pii.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/pii.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/redis.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/sms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/sms.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/timed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/timed.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/vyos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/vyos.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/auxiliary/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/auxiliary/web.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/cert_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/cert_provider.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/constants.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/data_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/data_store.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/database_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/database_event.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/db_connector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/db_connector.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/db_export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/db_export.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/db_import_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/db_import_error.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/db_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/db_manager.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/db_manager/cred.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/db_manager/cred.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/db_manager/host.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/db_manager/host.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/db_manager/loot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/db_manager/loot.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/db_manager/note.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/db_manager/note.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/db_manager/ref.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/db_manager/ref.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/db_manager/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/db_manager/task.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/db_manager/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/db_manager/user.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/db_manager/vuln.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/db_manager/vuln.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/db_manager/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/db_manager/web.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/db_manager/wmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/db_manager/wmap.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/encoded_payload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/encoded_payload.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/encoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/encoder.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/encoder/xor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/encoder/xor.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/encoding/xor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/encoding/xor.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/evasion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/evasion.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/evasion_driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/evasion_driver.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exception.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/android.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/android.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/brute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/brute.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/capture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/capture.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/exe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/exe.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/git.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/git/lfs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/git/lfs.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/http.rb: -------------------------------------------------------------------------------- 1 | 2 | module Msf::Exploit::HTTP 3 | 4 | end -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/java.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/java.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/jsobfu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/jsobfu.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/local.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/local.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/ntlm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/ntlm.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/omelet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/omelet.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/oracle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/oracle.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/pdf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/pdf.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/php_exe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/php_exe.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/remote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/remote.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/remote/http/gitlab/form.rb: -------------------------------------------------------------------------------- 1 | module Msf::Exploit::Remote::HTTP::Gitlab::Form 2 | end 3 | -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/retry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/retry.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/riff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/riff.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/rop_db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/rop_db.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/seh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/seh.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/sqli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit/sqli.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit/sqli/mssqli.rb: -------------------------------------------------------------------------------- 1 | module Msf::Exploit::SQLi::Mssqli 2 | end 3 | -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit_driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit_driver.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/exploit_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/exploit_event.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/feature_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/feature_manager.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/framework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/framework.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/handler.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/handler/generic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/handler/generic.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/handler/none.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/handler/none.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/handler/reverse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/handler/reverse.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/host_state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/host_state.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module/alert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module/alert.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module/arch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module/arch.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module/auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module/auth.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module/author.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module/author.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module/external.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module/external.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module/failure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module/failure.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module/network.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module/network.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module/options.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module/platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module/platform.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module/ranking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module/ranking.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module/target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module/target.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module/type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module/type.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module/ui.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module/ui/line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module/ui/line.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module/uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module/uuid.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module_manager.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/module_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/module_set.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/modules.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/modules.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/modules/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/modules/error.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/modules/external/python/metasploit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/modules/loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/modules/loader.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/nop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/nop.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/opt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/opt.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/opt_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/opt_address.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/opt_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/opt_base.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/opt_bool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/opt_bool.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/opt_condition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/opt_condition.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/opt_enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/opt_enum.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/opt_float.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/opt_float.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/opt_int.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/opt_int.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/opt_path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/opt_path.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/opt_port.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/opt_port.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/opt_raw.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/opt_raw.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/opt_regexp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/opt_regexp.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/opt_rhosts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/opt_rhosts.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/opt_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/opt_string.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/adapter.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/aix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/aix.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/android.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/android.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/apk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/apk.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/bsd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/bsd.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/bsd/x86.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/bsd/x86.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/custom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/custom.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/firefox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/firefox.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/generic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/generic.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/java.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/java.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/jsp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/jsp.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/linux.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/linux.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/macho.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/macho.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/multi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/multi.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/netware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/netware.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/nodejs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/nodejs.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/osx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/osx.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/php.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/php.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/python.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/python.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/r.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/r.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/ruby.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/single.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/single.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/solaris.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/solaris.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/stager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/stager.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/uuid.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload/windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload/windows.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/payload_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/payload_set.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/platform.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/plugin.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/plugin_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/plugin_manager.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/post.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/post/android.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | 3 | module Msf::Post::Android 4 | 5 | end 6 | -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/post/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/post/common.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/post/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/post/file.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/post/hardware.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | module Msf::Post::Hardware 3 | end 4 | -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/post/linux.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | module Msf::Post::Linux 3 | end 4 | -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/post/linux/priv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/post/linux/priv.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/post/osx.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | 3 | module Msf::Post::OSX 4 | end 5 | -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/post/osx/priv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/post/osx/priv.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/post/osx/system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/post/osx/system.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/post/process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/post/process.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/post/solaris.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | module Msf::Post::Solaris 3 | end 4 | -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/post/unix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/post/unix.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/post/vcenter.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | 3 | module Msf::Post::Vcenter 4 | end 5 | -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/post/webrtc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/post/webrtc.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/post/windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/post/windows.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/post_mixin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/post_mixin.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/reference.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/rhosts_walker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/rhosts_walker.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/rpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/rpc.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/rpc/json/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/rpc/json/client.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/rpc/json/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/rpc/json/error.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/rpc/v10/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/rpc/v10/client.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/service_state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/service_state.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/session.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/session/basic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/session/basic.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/session/comm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/session/comm.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/session_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/session_event.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/core/target.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/core/web_services.rb: -------------------------------------------------------------------------------- 1 | module Msf::WebServices 2 | 3 | end 4 | -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/ui/banner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/ui/banner.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/ui/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/ui/common.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/ui/console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/ui/console.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/ui/console/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/ui/console/driver.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/ui/console/table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/ui/console/table.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/ui/debug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/ui/debug.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/ui/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/ui/driver.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/ui/formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/ui/formatter.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/ui/tip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/ui/tip.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/ui/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/ui/web.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/ui/web/comm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/ui/web/comm.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/ui/web/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/ui/web/driver.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/ui/web/web_console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/ui/web/web_console.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/util/db_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/util/db_manager.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/util/exe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/util/exe.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/util/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/util/helper.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/util/host.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/util/host.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf/windows_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf/windows_error.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msf_autoload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msf_autoload.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msfdb_helpers/pg_ctl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msfdb_helpers/pg_ctl.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/msfenv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/msfenv.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | require "net/dns/resolver" 3 | -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/README -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/dns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/dns.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/header.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/names/names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/names/names.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/packet.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/question.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/resolver.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/resolver/socks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/resolver/socks.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/rr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/rr.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/rr/a.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/rr/a.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/rr/aaaa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/rr/aaaa.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/rr/classes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/rr/classes.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/rr/cname.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/rr/cname.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/rr/hinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/rr/hinfo.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/rr/mr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/rr/mr.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/rr/mx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/rr/mx.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/rr/ns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/rr/ns.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/rr/null.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/rr/null.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/rr/ptr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/rr/ptr.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/rr/soa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/rr/soa.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/rr/srv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/rr/srv.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/rr/txt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/rr/txt.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/dns/rr/types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/dns/rr/types.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/ssh/command_stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/ssh/command_stream.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/winrm/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/winrm/connection.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/winrm/ctrl_c.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/winrm/ctrl_c.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/net/winrm/stdin_shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/net/winrm/stdin_shell.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/postgres/binary_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/postgres/binary_reader.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/postgres/binary_writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/postgres/binary_writer.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/postgres/buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/postgres/buffer.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/postgres/byteorder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/postgres/byteorder.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/postgres_msf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/postgres_msf.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rabal/tree.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rabal/tree.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rbmysql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rbmysql.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rbmysql/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rbmysql/README -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rbmysql/charset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rbmysql/charset.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rbmysql/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rbmysql/constants.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rbmysql/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rbmysql/error.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rbmysql/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rbmysql/packet.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rbmysql/protocol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rbmysql/protocol.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/LICENSE -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/crypto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/crypto.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/crypto/aes256.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/crypto/aes256.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/crypto/chacha20.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/crypto/chacha20.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/crypto/rc4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/crypto/rc4.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/ext_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/ext_time.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/google/geolocation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/google/geolocation.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/io/gram_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/io/gram_server.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/job.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/job_container.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/job_container.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/json_hash_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/json_hash_file.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/logging.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/logging/log_sink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/logging/log_sink.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/oui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/oui.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/parser.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/parser/arguments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/parser/arguments.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/parser/ci_document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/parser/ci_document.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/parser/dbeaver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/parser/dbeaver.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/parser/fs/ntfs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/parser/fs/ntfs.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/parser/graphml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/parser/graphml.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/parser/ini.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/parser/ini.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/parser/ip360_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/parser/ip360_xml.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/parser/nessus_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/parser/nessus_xml.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/parser/net_sarang.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/parser/net_sarang.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/parser/nexpose_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/parser/nexpose_xml.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/parser/nmap_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/parser/nmap_xml.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/parser/retina_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/parser/retina_xml.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/parser/unattend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/parser/unattend.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/parser/winscp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/parser/winscp.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/payloads.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | module Rex::Payloads 3 | 4 | end 5 | -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/payloads/shuffle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/payloads/shuffle.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/post.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/post/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/post/channel.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/post/dir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/post/dir.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/post/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/post/file.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/post/file_stat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/post/file_stat.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/post/hwbridge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/post/hwbridge.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/post/io.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/post/io.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/post/meterpreter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/post/meterpreter.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/post/meterpreter/channels/streams/.cvskeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/post/meterpreter/dependencies.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: binary -*- 2 | 3 | require 'rex/post/permission' 4 | -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/post/permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/post/permission.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/post/process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/post/process.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/post/thread.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/post/thread.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/post/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/post/ui.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/acpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/acpp.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/acpp/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/acpp/client.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/acpp/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/acpp/message.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/adb/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/adb/client.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/adb/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/adb/message.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/addp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/addp.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/amqp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/amqp.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/amqp/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/amqp/error.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/crypto_asn1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/crypto_asn1.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/dcerpc/ndr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/dcerpc/ndr.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/dcerpc/uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/dcerpc/uuid.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/dhcp/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/dhcp/server.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/dns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/dns.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/dns/cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/dns/cache.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/dns/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/dns/packet.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/dns/resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/dns/resolver.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/dns/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/dns/server.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/drda.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/drda.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/drda/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/drda/packet.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/drda/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/drda/utils.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/ftp/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/ftp/client.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/gss.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/gss.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/gss/asn1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/gss/asn1.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/http/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/http/client.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/http/handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/http/handler.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/http/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/http/packet.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/http/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/http/request.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/http/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/http/server.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/iax2/call.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/iax2/call.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/iax2/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/iax2/client.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/ipmi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/ipmi.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/ipmi/rakp2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/ipmi/rakp2.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/ipmi/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/ipmi/utils.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/kademlia.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/kademlia.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/kerberos/pac.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/kerberos/pac.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/ldap.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/ldap/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/ldap/server.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/mms/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/mms/client.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/mms/model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/mms/model.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/mqtt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/mqtt.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/mqtt/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/mqtt/client.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/ms_crtd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/ms_crtd.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/ms_dtyp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/ms_dtyp.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/natpmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/natpmp.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/ntlm/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/ntlm/base.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/ntlm/crypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/ntlm/crypt.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/ntlm/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/ntlm/message.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/ntlm/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/ntlm/utils.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/ntp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/ntp.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/ntp/modes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/ntp/modes.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/nuuo/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/nuuo/client.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/pjl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/pjl.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/pjl/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/pjl/client.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/quake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/quake.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/rfb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/rfb.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/rfb/cipher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/rfb/cipher.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/rfb/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/rfb/client.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/rmi/model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/rmi/model.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/sip/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/sip/response.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/smb/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/smb/client.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/smb/crypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/smb/crypt.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/smb/evasions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/smb/evasions.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/smb/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/smb/utils.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/sms/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/sms/client.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/sms/model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/sms/model.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/ssh/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/ssh/server.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/steam.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/steam.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/tftp/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/tftp/client.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/tftp/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/tftp/server.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/proto/thrift.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/proto/thrift.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/script.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/script/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/script/base.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/script/meterpreter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/script/meterpreter.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/script/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/script/shell.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/service.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/service_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/service_manager.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/tar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/tar.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/thread_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/thread_factory.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/transformer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/transformer.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/ui/interactive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/ui/interactive.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/ui/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/ui/output.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/ui/output/none.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/ui/output/none.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/ui/subscriber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/ui/subscriber.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/ui/text/input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/ui/text/input.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/ui/text/irb_shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/ui/text/irb_shell.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/ui/text/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/ui/text/output.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/ui/text/output/tee.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/ui/text/output/tee.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/ui/text/resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/ui/text/resource.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/ui/text/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/ui/text/shell.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/user_agent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/user_agent.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/rex/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/rex/version.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/robots.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/robots.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/snmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/snmp.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/snmp/agent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/snmp/agent.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/snmp/ber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/snmp/ber.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/snmp/manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/snmp/manager.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/snmp/mib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/snmp/mib.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/snmp/pdu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/snmp/pdu.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/snmp/varbind.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/snmp/varbind.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/sqlmap/sqlmap_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/sqlmap/sqlmap_manager.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/sqlmap/sqlmap_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/sqlmap/sqlmap_session.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/tasks/databases.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/tasks/databases.rake -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/telephony.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/telephony.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/lib/telephony/modem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/lib/telephony/modem.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/metasploit-framework.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/metasploit-framework.gemspec -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/README.md -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/auxiliary/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/auxiliary/example.py -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/auxiliary/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/auxiliary/example.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/auxiliary/vsploit/exploit/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/encoders/cmd/brace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/encoders/cmd/brace.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/encoders/cmd/echo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/encoders/cmd/echo.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/encoders/cmd/ifs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/encoders/cmd/ifs.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/encoders/cmd/perl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/encoders/cmd/perl.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/encoders/x64/xor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/encoders/x64/xor.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/exploits/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/exploits/example.py -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/exploits/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/exploits/example.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/nops/armle/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/nops/armle/simple.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/nops/cmd/generic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/nops/cmd/generic.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/nops/mipsbe/better.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/nops/mipsbe/better.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/nops/php/generic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/nops/php/generic.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/nops/ppc/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/nops/ppc/simple.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/nops/sparc/random.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/nops/sparc/random.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/nops/tty/generic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/nops/tty/generic.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/nops/x64/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/nops/x64/simple.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/nops/x86/opty2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/nops/x86/opty2.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/post/aix/hashdump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/post/aix/hashdump.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/modules/post/osx/admin/say.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/modules/post/osx/admin/say.rb -------------------------------------------------------------------------------- /metasploit-framework/framework/msfvenom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/metasploit-framework/framework/msfvenom -------------------------------------------------------------------------------- /metasploit-framework/msfvenom.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | ruby framework\\msfvenom %* 4 | -------------------------------------------------------------------------------- /msf_poc/.msfpoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /payload.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tool/custom_dll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anyyy111/eBSploit/HEAD/tool/custom_dll.exe --------------------------------------------------------------------------------