├── .github └── workflows │ └── verify.yml ├── .gitignore ├── .rspec ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── cortex.yaml ├── data ├── exploits │ └── cmdstager │ │ ├── debug_asm │ │ ├── debug_write │ │ ├── vbs_b64 │ │ ├── vbs_b64_adodb │ │ ├── vbs_b64_noquot │ │ └── vbs_b64_sleep ├── js │ ├── detect │ │ ├── ie_addons.js │ │ ├── misc_addons.js │ │ └── os.js │ ├── memory │ │ ├── explib2 │ │ │ ├── lib │ │ │ │ └── explib2.js │ │ │ └── payload │ │ │ │ ├── drop_exec.js │ │ │ │ └── exec.js │ │ ├── heap_spray.js │ │ ├── heaplib2.js │ │ ├── mstime_malloc.js │ │ └── property_spray.js │ ├── network │ │ ├── ajax_download.js │ │ ├── ajax_post.js │ │ └── xhr_shim.js │ └── utils │ │ └── base64.js └── ropdb │ ├── flash.xml │ ├── hxds.xml │ ├── java.xml │ ├── msvcrt.xml │ ├── reader.xml │ ├── samba.xml │ └── stagefright.xml ├── lib └── rex │ ├── exploitation.rb │ └── exploitation │ ├── cmdstager.rb │ ├── cmdstager │ ├── base.rb │ ├── bourne.rb │ ├── certutil.rb │ ├── curl.rb │ ├── debug_asm.rb │ ├── debug_write.rb │ ├── echo.rb │ ├── fetch.rb │ ├── ftp_http.rb │ ├── lwprequest.rb │ ├── printf.rb │ ├── psh_invokewebrequest.rb │ ├── tftp.rb │ ├── vbs.rb │ └── wget.rb │ ├── egghunter.rb │ ├── encryptjs.rb │ ├── heaplib.js.b64 │ ├── heaplib.rb │ ├── js.rb │ ├── js │ ├── detect.rb │ ├── memory.rb │ ├── network.rb │ └── utils.rb │ ├── jsobfu.rb │ ├── obfuscatejs.rb │ ├── omelet.rb │ ├── opcodedb.rb │ ├── ropdb.rb │ ├── seh.rb │ ├── vbsobfuscate.rb │ └── version.rb ├── rex-exploitation.gemspec └── spec ├── lib └── rex │ └── exploitation │ ├── cmdstager │ ├── base_spec.rb │ ├── bourne_spec.rb │ ├── certutil_spec.rb │ ├── curl_spec.rb │ ├── debug_asm_spec.rb │ ├── debug_write_spec.rb │ ├── echo_spec.rb │ ├── fetch_spec.rb │ ├── ftp_http_spec.rb │ ├── lwprequest_spec.rb │ ├── printf_spec.rb │ ├── psh_invokewebrequest_spec.rb │ ├── tftp_spec.rb │ ├── vbs_spec.rb │ └── wget_spec.rb │ ├── egghunter_spec.rb │ ├── encryptjs_spec.rb │ ├── heaplib_spec.rb │ ├── js │ ├── detect_spec.rb │ ├── memory_spec.rb │ ├── network_spec.rb │ └── utils_spec.rb │ ├── jsobfu_spec.rb │ ├── obfuscatejs_spec.rb │ ├── omelet_spec.rb │ ├── ropdb_spec.rb │ └── vbsobfuscate_spec.rb └── spec_helper.rb /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/bin/setup -------------------------------------------------------------------------------- /cortex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/cortex.yaml -------------------------------------------------------------------------------- /data/exploits/cmdstager/debug_asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/exploits/cmdstager/debug_asm -------------------------------------------------------------------------------- /data/exploits/cmdstager/debug_write: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/exploits/cmdstager/debug_write -------------------------------------------------------------------------------- /data/exploits/cmdstager/vbs_b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/exploits/cmdstager/vbs_b64 -------------------------------------------------------------------------------- /data/exploits/cmdstager/vbs_b64_adodb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/exploits/cmdstager/vbs_b64_adodb -------------------------------------------------------------------------------- /data/exploits/cmdstager/vbs_b64_noquot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/exploits/cmdstager/vbs_b64_noquot -------------------------------------------------------------------------------- /data/exploits/cmdstager/vbs_b64_sleep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/exploits/cmdstager/vbs_b64_sleep -------------------------------------------------------------------------------- /data/js/detect/ie_addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/js/detect/ie_addons.js -------------------------------------------------------------------------------- /data/js/detect/misc_addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/js/detect/misc_addons.js -------------------------------------------------------------------------------- /data/js/detect/os.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/js/detect/os.js -------------------------------------------------------------------------------- /data/js/memory/explib2/lib/explib2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/js/memory/explib2/lib/explib2.js -------------------------------------------------------------------------------- /data/js/memory/explib2/payload/drop_exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/js/memory/explib2/payload/drop_exec.js -------------------------------------------------------------------------------- /data/js/memory/explib2/payload/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/js/memory/explib2/payload/exec.js -------------------------------------------------------------------------------- /data/js/memory/heap_spray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/js/memory/heap_spray.js -------------------------------------------------------------------------------- /data/js/memory/heaplib2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/js/memory/heaplib2.js -------------------------------------------------------------------------------- /data/js/memory/mstime_malloc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/js/memory/mstime_malloc.js -------------------------------------------------------------------------------- /data/js/memory/property_spray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/js/memory/property_spray.js -------------------------------------------------------------------------------- /data/js/network/ajax_download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/js/network/ajax_download.js -------------------------------------------------------------------------------- /data/js/network/ajax_post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/js/network/ajax_post.js -------------------------------------------------------------------------------- /data/js/network/xhr_shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/js/network/xhr_shim.js -------------------------------------------------------------------------------- /data/js/utils/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/js/utils/base64.js -------------------------------------------------------------------------------- /data/ropdb/flash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/ropdb/flash.xml -------------------------------------------------------------------------------- /data/ropdb/hxds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/ropdb/hxds.xml -------------------------------------------------------------------------------- /data/ropdb/java.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/ropdb/java.xml -------------------------------------------------------------------------------- /data/ropdb/msvcrt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/ropdb/msvcrt.xml -------------------------------------------------------------------------------- /data/ropdb/reader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/ropdb/reader.xml -------------------------------------------------------------------------------- /data/ropdb/samba.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/ropdb/samba.xml -------------------------------------------------------------------------------- /data/ropdb/stagefright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/data/ropdb/stagefright.xml -------------------------------------------------------------------------------- /lib/rex/exploitation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/cmdstager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/cmdstager.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/cmdstager/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/cmdstager/base.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/cmdstager/bourne.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/cmdstager/bourne.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/cmdstager/certutil.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/cmdstager/certutil.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/cmdstager/curl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/cmdstager/curl.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/cmdstager/debug_asm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/cmdstager/debug_asm.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/cmdstager/debug_write.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/cmdstager/debug_write.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/cmdstager/echo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/cmdstager/echo.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/cmdstager/fetch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/cmdstager/fetch.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/cmdstager/ftp_http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/cmdstager/ftp_http.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/cmdstager/lwprequest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/cmdstager/lwprequest.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/cmdstager/printf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/cmdstager/printf.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/cmdstager/psh_invokewebrequest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/cmdstager/psh_invokewebrequest.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/cmdstager/tftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/cmdstager/tftp.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/cmdstager/vbs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/cmdstager/vbs.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/cmdstager/wget.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/cmdstager/wget.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/egghunter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/egghunter.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/encryptjs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/encryptjs.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/heaplib.js.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/heaplib.js.b64 -------------------------------------------------------------------------------- /lib/rex/exploitation/heaplib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/heaplib.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/js.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/js.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/js/detect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/js/detect.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/js/memory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/js/memory.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/js/network.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/js/network.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/js/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/js/utils.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/jsobfu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/jsobfu.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/obfuscatejs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/obfuscatejs.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/omelet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/omelet.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/opcodedb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/opcodedb.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/ropdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/ropdb.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/seh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/seh.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/vbsobfuscate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/vbsobfuscate.rb -------------------------------------------------------------------------------- /lib/rex/exploitation/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/lib/rex/exploitation/version.rb -------------------------------------------------------------------------------- /rex-exploitation.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/rex-exploitation.gemspec -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/cmdstager/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/cmdstager/base_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/cmdstager/bourne_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/cmdstager/bourne_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/cmdstager/certutil_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/cmdstager/certutil_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/cmdstager/curl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/cmdstager/curl_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/cmdstager/debug_asm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/cmdstager/debug_asm_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/cmdstager/debug_write_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/cmdstager/debug_write_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/cmdstager/echo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/cmdstager/echo_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/cmdstager/fetch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/cmdstager/fetch_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/cmdstager/ftp_http_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/cmdstager/ftp_http_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/cmdstager/lwprequest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/cmdstager/lwprequest_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/cmdstager/printf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/cmdstager/printf_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/cmdstager/psh_invokewebrequest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/cmdstager/psh_invokewebrequest_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/cmdstager/tftp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/cmdstager/tftp_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/cmdstager/vbs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/cmdstager/vbs_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/cmdstager/wget_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/cmdstager/wget_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/egghunter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/egghunter_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/encryptjs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/encryptjs_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/heaplib_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/heaplib_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/js/detect_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/js/detect_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/js/memory_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/js/memory_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/js/network_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/js/network_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/js/utils_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/js/utils_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/jsobfu_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/jsobfu_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/obfuscatejs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/obfuscatejs_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/omelet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/omelet_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/ropdb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/ropdb_spec.rb -------------------------------------------------------------------------------- /spec/lib/rex/exploitation/vbsobfuscate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/lib/rex/exploitation/vbsobfuscate_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/rex-exploitation/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------