├── .github └── workflows │ └── verify.yml ├── .gitignore ├── .gitmodules ├── .ruby-version ├── Berksfile ├── Gemfile ├── Gemfile.lock ├── Makefile ├── README.md ├── USAGE.md ├── config ├── patches │ ├── gdbm │ │ └── v1.8.3-Makefile.in.patch │ ├── jemalloc │ │ └── jemalloc-centos-fix.patch │ ├── libedit │ │ ├── freebsd-vi-fix.patch │ │ └── openbsd-weak-alias-fix.patch │ ├── libffi │ │ └── libffi-3.2.1-disable-multi-os-directory.patch │ ├── libiconv │ │ ├── libiconv-1.14_srclib_stdio.in.h-remove-gets-declarations.patch │ │ └── v1.14.ppc64le-ldemulation.patch │ ├── libxslt │ │ ├── libxslt-cve-2015-7995.patch │ │ ├── libxslt-mingw32.patch │ │ ├── libxslt-solaris-configure.patch │ │ ├── libxslt-windows-relocate-1.1.30.patch │ │ └── libxslt-windows-relocate.patch │ ├── libyaml │ │ └── v0.1.6.windows-configure.patch │ ├── ncurses │ │ ├── ncurses-5.9-gcc-5.patch │ │ ├── ncurses-5.9-solaris-xopen_source_extended-detection.patch │ │ ├── ncurses-clang.patch │ │ ├── patch-aa │ │ ├── patch-ab │ │ ├── patch-ac │ │ ├── patch-ad │ │ ├── patch-cxx_cursesf.h │ │ ├── patch-cxx_cursesm.h │ │ └── patch-ncurses_tinfo_lib__baudrate.c │ ├── openssl │ │ ├── openssl-1.0.1f-do-not-build-docs.patch │ │ ├── openssl-1.0.1j-windows-relocate-dll.patch │ │ ├── openssl-1.0.1q-fix-compiler-flags-table-for-msys.patch │ │ ├── openssl-1.0.2k-no-bang.patch │ │ ├── openssl-1.0.2x-darwin-arm64.patch │ │ └── openssl-1.1.0f-do-not-install-docs.patch │ ├── pkg-config │ │ └── openbsd-charset.patch │ ├── ruby │ │ ├── patch-configure │ │ ├── remove_nano.patch │ │ ├── ruby-2.6.4-bug14834.patch │ │ ├── ruby-2.6.7_c99.patch │ │ ├── ruby-2.7.1-rubygemsperf.patch │ │ ├── ruby-3.0.1-configure.patch │ │ ├── ruby-3.0.2-configure.patch │ │ ├── ruby-aix-atomic.patch │ │ ├── ruby-aix-configure_26_and_later.patch │ │ ├── ruby-aix-vm-core.patch │ │ ├── ruby-fast-load_26.patch │ │ ├── ruby-fast-load_31.patch │ │ ├── ruby-faster-load_26.patch │ │ ├── ruby-faster-load_27.patch │ │ ├── ruby-faster-load_33.patch │ │ ├── ruby-faster-load_34.patch │ │ ├── ruby-mkmf.patch │ │ ├── ruby-no-stack-protector-strong.patch │ │ ├── ruby-no-stack-protector.patch │ │ ├── ruby-win32_warning_removal.patch │ │ ├── ruby_aix_openssl.patch │ │ ├── ruby_aix_ssl_EAGAIN.patch │ │ └── rvm-cflags.patch │ ├── rubygems │ │ └── rubygems-3.5.10.patch │ └── zlib │ │ └── zlib-windows-relocate.patch ├── projects │ └── metasploit-framework.rb ├── software │ ├── bundler.rb │ ├── cacerts.rb │ ├── config_guess.rb │ ├── gdbm.rb │ ├── jemalloc.rb │ ├── john.rb │ ├── libedit.rb │ ├── libffi.rb │ ├── libiconv.rb │ ├── liblzma.rb │ ├── libossp-uuid.rb │ ├── libpcap.rb │ ├── libtool.rb │ ├── libuuid.rb │ ├── libxml2.rb │ ├── libxslt.rb │ ├── libyaml-windows.rb │ ├── libyaml.rb │ ├── makedepend.rb │ ├── metasploit-framework-wrappers-windows.rb │ ├── metasploit-framework-wrappers.rb │ ├── metasploit-framework.rb │ ├── ncurses.rb │ ├── nmap.rb │ ├── nokogiri.rb │ ├── openssl-windows.rb │ ├── openssl.rb │ ├── pcaprub.rb │ ├── pkg-config-lite.rb │ ├── pkg-config.rb │ ├── postgresql-prev.rb │ ├── postgresql-windows-prev.rb │ ├── postgresql-windows.rb │ ├── postgresql.rb │ ├── ruby-windows-devkit.rb │ ├── ruby-windows-msys2.rb │ ├── ruby-windows.rb │ ├── ruby.rb │ ├── rubygems.rb │ ├── util-macros.rb │ ├── winpcap-devpack.rb │ ├── xproto.rb │ └── zlib.rb └── templates │ ├── metasploit-framework-wrappers-windows │ ├── msfdb.bat.erb │ ├── msfremove.bat.erb │ ├── msfremove.ps1.erb │ ├── msfupdate.bat.erb │ ├── msfupdate.ps1.erb │ └── msfwrapper.bat.erb │ ├── metasploit-framework-wrappers │ ├── msfdb.erb │ ├── msfremove.erb │ ├── msfupdate.erb │ └── msfwrapper.erb │ └── metasploit-framework │ ├── msfdb-kali.erb │ ├── msfdb.erb │ └── version.yml.erb ├── cortex.yaml ├── docker ├── centos6-x64 │ ├── .dockerignore │ ├── Dockerfile │ └── yum.repos.d │ │ ├── CentOS-Base.repo │ │ ├── CentOS-SCLo-scl.repo │ │ └── CentOS-fasttrack.repo ├── debian-aarch64 │ ├── .dockerignore │ ├── Dockerfile │ └── apt │ │ └── sources.list ├── debian-armv7 │ ├── .dockerignore │ ├── Dockerfile │ └── apt │ │ └── sources.list ├── fedora30-x64 │ └── Dockerfile ├── kali109-x64 │ └── Dockerfile ├── ubuntu1204-x64 │ └── Dockerfile ├── ubuntu1204-x86 │ └── Dockerfile └── ubuntu1804-x64 │ └── Dockerfile ├── omnibus.rb ├── package-scripts └── metasploit-framework │ ├── postinst │ ├── postrm │ ├── preinst │ └── prerm ├── packer ├── configure_ami.sh ├── ubuntu-amd64-ami.json └── ubuntu-arm64-ami.json ├── pkg └── .gitignore └── resources └── metasploit-framework ├── msi ├── assets │ ├── LICENSE.rtf │ ├── banner_background.bmp │ ├── dialog_background.bmp │ ├── project.ico │ ├── project_16x16.ico │ └── project_32x32.ico ├── localization-en-us.wxl.erb ├── parameters.wxi.erb └── source.wxs.erb └── pkg ├── background.png ├── distribution.xml.erb ├── license.html.erb └── welcome.html.erb /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/.gitmodules -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.5 2 | -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/Berksfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/README.md -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/USAGE.md -------------------------------------------------------------------------------- /config/patches/gdbm/v1.8.3-Makefile.in.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/gdbm/v1.8.3-Makefile.in.patch -------------------------------------------------------------------------------- /config/patches/jemalloc/jemalloc-centos-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/jemalloc/jemalloc-centos-fix.patch -------------------------------------------------------------------------------- /config/patches/libedit/freebsd-vi-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/libedit/freebsd-vi-fix.patch -------------------------------------------------------------------------------- /config/patches/libedit/openbsd-weak-alias-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/libedit/openbsd-weak-alias-fix.patch -------------------------------------------------------------------------------- /config/patches/libffi/libffi-3.2.1-disable-multi-os-directory.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/libffi/libffi-3.2.1-disable-multi-os-directory.patch -------------------------------------------------------------------------------- /config/patches/libiconv/libiconv-1.14_srclib_stdio.in.h-remove-gets-declarations.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/libiconv/libiconv-1.14_srclib_stdio.in.h-remove-gets-declarations.patch -------------------------------------------------------------------------------- /config/patches/libiconv/v1.14.ppc64le-ldemulation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/libiconv/v1.14.ppc64le-ldemulation.patch -------------------------------------------------------------------------------- /config/patches/libxslt/libxslt-cve-2015-7995.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/libxslt/libxslt-cve-2015-7995.patch -------------------------------------------------------------------------------- /config/patches/libxslt/libxslt-mingw32.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/libxslt/libxslt-mingw32.patch -------------------------------------------------------------------------------- /config/patches/libxslt/libxslt-solaris-configure.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/libxslt/libxslt-solaris-configure.patch -------------------------------------------------------------------------------- /config/patches/libxslt/libxslt-windows-relocate-1.1.30.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/libxslt/libxslt-windows-relocate-1.1.30.patch -------------------------------------------------------------------------------- /config/patches/libxslt/libxslt-windows-relocate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/libxslt/libxslt-windows-relocate.patch -------------------------------------------------------------------------------- /config/patches/libyaml/v0.1.6.windows-configure.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/libyaml/v0.1.6.windows-configure.patch -------------------------------------------------------------------------------- /config/patches/ncurses/ncurses-5.9-gcc-5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ncurses/ncurses-5.9-gcc-5.patch -------------------------------------------------------------------------------- /config/patches/ncurses/ncurses-5.9-solaris-xopen_source_extended-detection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ncurses/ncurses-5.9-solaris-xopen_source_extended-detection.patch -------------------------------------------------------------------------------- /config/patches/ncurses/ncurses-clang.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ncurses/ncurses-clang.patch -------------------------------------------------------------------------------- /config/patches/ncurses/patch-aa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ncurses/patch-aa -------------------------------------------------------------------------------- /config/patches/ncurses/patch-ab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ncurses/patch-ab -------------------------------------------------------------------------------- /config/patches/ncurses/patch-ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ncurses/patch-ac -------------------------------------------------------------------------------- /config/patches/ncurses/patch-ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ncurses/patch-ad -------------------------------------------------------------------------------- /config/patches/ncurses/patch-cxx_cursesf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ncurses/patch-cxx_cursesf.h -------------------------------------------------------------------------------- /config/patches/ncurses/patch-cxx_cursesm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ncurses/patch-cxx_cursesm.h -------------------------------------------------------------------------------- /config/patches/ncurses/patch-ncurses_tinfo_lib__baudrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ncurses/patch-ncurses_tinfo_lib__baudrate.c -------------------------------------------------------------------------------- /config/patches/openssl/openssl-1.0.1f-do-not-build-docs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/openssl/openssl-1.0.1f-do-not-build-docs.patch -------------------------------------------------------------------------------- /config/patches/openssl/openssl-1.0.1j-windows-relocate-dll.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/openssl/openssl-1.0.1j-windows-relocate-dll.patch -------------------------------------------------------------------------------- /config/patches/openssl/openssl-1.0.1q-fix-compiler-flags-table-for-msys.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/openssl/openssl-1.0.1q-fix-compiler-flags-table-for-msys.patch -------------------------------------------------------------------------------- /config/patches/openssl/openssl-1.0.2k-no-bang.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/openssl/openssl-1.0.2k-no-bang.patch -------------------------------------------------------------------------------- /config/patches/openssl/openssl-1.0.2x-darwin-arm64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/openssl/openssl-1.0.2x-darwin-arm64.patch -------------------------------------------------------------------------------- /config/patches/openssl/openssl-1.1.0f-do-not-install-docs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/openssl/openssl-1.1.0f-do-not-install-docs.patch -------------------------------------------------------------------------------- /config/patches/pkg-config/openbsd-charset.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/pkg-config/openbsd-charset.patch -------------------------------------------------------------------------------- /config/patches/ruby/patch-configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/patch-configure -------------------------------------------------------------------------------- /config/patches/ruby/remove_nano.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/remove_nano.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-2.6.4-bug14834.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-2.6.4-bug14834.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-2.6.7_c99.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-2.6.7_c99.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-2.7.1-rubygemsperf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-2.7.1-rubygemsperf.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-3.0.1-configure.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-3.0.1-configure.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-3.0.2-configure.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-3.0.2-configure.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-aix-atomic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-aix-atomic.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-aix-configure_26_and_later.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-aix-configure_26_and_later.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-aix-vm-core.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-aix-vm-core.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-fast-load_26.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-fast-load_26.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-fast-load_31.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-fast-load_31.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-faster-load_26.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-faster-load_26.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-faster-load_27.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-faster-load_27.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-faster-load_33.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-faster-load_33.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-faster-load_34.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-faster-load_34.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-mkmf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-mkmf.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-no-stack-protector-strong.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-no-stack-protector-strong.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-no-stack-protector.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-no-stack-protector.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-win32_warning_removal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby-win32_warning_removal.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby_aix_openssl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby_aix_openssl.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby_aix_ssl_EAGAIN.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/ruby_aix_ssl_EAGAIN.patch -------------------------------------------------------------------------------- /config/patches/ruby/rvm-cflags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/ruby/rvm-cflags.patch -------------------------------------------------------------------------------- /config/patches/rubygems/rubygems-3.5.10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/rubygems/rubygems-3.5.10.patch -------------------------------------------------------------------------------- /config/patches/zlib/zlib-windows-relocate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/patches/zlib/zlib-windows-relocate.patch -------------------------------------------------------------------------------- /config/projects/metasploit-framework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/projects/metasploit-framework.rb -------------------------------------------------------------------------------- /config/software/bundler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/bundler.rb -------------------------------------------------------------------------------- /config/software/cacerts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/cacerts.rb -------------------------------------------------------------------------------- /config/software/config_guess.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/config_guess.rb -------------------------------------------------------------------------------- /config/software/gdbm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/gdbm.rb -------------------------------------------------------------------------------- /config/software/jemalloc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/jemalloc.rb -------------------------------------------------------------------------------- /config/software/john.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/john.rb -------------------------------------------------------------------------------- /config/software/libedit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/libedit.rb -------------------------------------------------------------------------------- /config/software/libffi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/libffi.rb -------------------------------------------------------------------------------- /config/software/libiconv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/libiconv.rb -------------------------------------------------------------------------------- /config/software/liblzma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/liblzma.rb -------------------------------------------------------------------------------- /config/software/libossp-uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/libossp-uuid.rb -------------------------------------------------------------------------------- /config/software/libpcap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/libpcap.rb -------------------------------------------------------------------------------- /config/software/libtool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/libtool.rb -------------------------------------------------------------------------------- /config/software/libuuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/libuuid.rb -------------------------------------------------------------------------------- /config/software/libxml2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/libxml2.rb -------------------------------------------------------------------------------- /config/software/libxslt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/libxslt.rb -------------------------------------------------------------------------------- /config/software/libyaml-windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/libyaml-windows.rb -------------------------------------------------------------------------------- /config/software/libyaml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/libyaml.rb -------------------------------------------------------------------------------- /config/software/makedepend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/makedepend.rb -------------------------------------------------------------------------------- /config/software/metasploit-framework-wrappers-windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/metasploit-framework-wrappers-windows.rb -------------------------------------------------------------------------------- /config/software/metasploit-framework-wrappers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/metasploit-framework-wrappers.rb -------------------------------------------------------------------------------- /config/software/metasploit-framework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/metasploit-framework.rb -------------------------------------------------------------------------------- /config/software/ncurses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/ncurses.rb -------------------------------------------------------------------------------- /config/software/nmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/nmap.rb -------------------------------------------------------------------------------- /config/software/nokogiri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/nokogiri.rb -------------------------------------------------------------------------------- /config/software/openssl-windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/openssl-windows.rb -------------------------------------------------------------------------------- /config/software/openssl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/openssl.rb -------------------------------------------------------------------------------- /config/software/pcaprub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/pcaprub.rb -------------------------------------------------------------------------------- /config/software/pkg-config-lite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/pkg-config-lite.rb -------------------------------------------------------------------------------- /config/software/pkg-config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/pkg-config.rb -------------------------------------------------------------------------------- /config/software/postgresql-prev.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/postgresql-prev.rb -------------------------------------------------------------------------------- /config/software/postgresql-windows-prev.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/postgresql-windows-prev.rb -------------------------------------------------------------------------------- /config/software/postgresql-windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/postgresql-windows.rb -------------------------------------------------------------------------------- /config/software/postgresql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/postgresql.rb -------------------------------------------------------------------------------- /config/software/ruby-windows-devkit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/ruby-windows-devkit.rb -------------------------------------------------------------------------------- /config/software/ruby-windows-msys2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/ruby-windows-msys2.rb -------------------------------------------------------------------------------- /config/software/ruby-windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/ruby-windows.rb -------------------------------------------------------------------------------- /config/software/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/ruby.rb -------------------------------------------------------------------------------- /config/software/rubygems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/rubygems.rb -------------------------------------------------------------------------------- /config/software/util-macros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/util-macros.rb -------------------------------------------------------------------------------- /config/software/winpcap-devpack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/winpcap-devpack.rb -------------------------------------------------------------------------------- /config/software/xproto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/xproto.rb -------------------------------------------------------------------------------- /config/software/zlib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/software/zlib.rb -------------------------------------------------------------------------------- /config/templates/metasploit-framework-wrappers-windows/msfdb.bat.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/templates/metasploit-framework-wrappers-windows/msfdb.bat.erb -------------------------------------------------------------------------------- /config/templates/metasploit-framework-wrappers-windows/msfremove.bat.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/templates/metasploit-framework-wrappers-windows/msfremove.bat.erb -------------------------------------------------------------------------------- /config/templates/metasploit-framework-wrappers-windows/msfremove.ps1.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/templates/metasploit-framework-wrappers-windows/msfremove.ps1.erb -------------------------------------------------------------------------------- /config/templates/metasploit-framework-wrappers-windows/msfupdate.bat.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/templates/metasploit-framework-wrappers-windows/msfupdate.bat.erb -------------------------------------------------------------------------------- /config/templates/metasploit-framework-wrappers-windows/msfupdate.ps1.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/templates/metasploit-framework-wrappers-windows/msfupdate.ps1.erb -------------------------------------------------------------------------------- /config/templates/metasploit-framework-wrappers-windows/msfwrapper.bat.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/templates/metasploit-framework-wrappers-windows/msfwrapper.bat.erb -------------------------------------------------------------------------------- /config/templates/metasploit-framework-wrappers/msfdb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/templates/metasploit-framework-wrappers/msfdb.erb -------------------------------------------------------------------------------- /config/templates/metasploit-framework-wrappers/msfremove.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/templates/metasploit-framework-wrappers/msfremove.erb -------------------------------------------------------------------------------- /config/templates/metasploit-framework-wrappers/msfupdate.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/templates/metasploit-framework-wrappers/msfupdate.erb -------------------------------------------------------------------------------- /config/templates/metasploit-framework-wrappers/msfwrapper.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/templates/metasploit-framework-wrappers/msfwrapper.erb -------------------------------------------------------------------------------- /config/templates/metasploit-framework/msfdb-kali.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/templates/metasploit-framework/msfdb-kali.erb -------------------------------------------------------------------------------- /config/templates/metasploit-framework/msfdb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/templates/metasploit-framework/msfdb.erb -------------------------------------------------------------------------------- /config/templates/metasploit-framework/version.yml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/config/templates/metasploit-framework/version.yml.erb -------------------------------------------------------------------------------- /cortex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/cortex.yaml -------------------------------------------------------------------------------- /docker/centos6-x64/.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | 3 | !yum.repos.d 4 | -------------------------------------------------------------------------------- /docker/centos6-x64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/docker/centos6-x64/Dockerfile -------------------------------------------------------------------------------- /docker/centos6-x64/yum.repos.d/CentOS-Base.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/docker/centos6-x64/yum.repos.d/CentOS-Base.repo -------------------------------------------------------------------------------- /docker/centos6-x64/yum.repos.d/CentOS-SCLo-scl.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/docker/centos6-x64/yum.repos.d/CentOS-SCLo-scl.repo -------------------------------------------------------------------------------- /docker/centos6-x64/yum.repos.d/CentOS-fasttrack.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/docker/centos6-x64/yum.repos.d/CentOS-fasttrack.repo -------------------------------------------------------------------------------- /docker/debian-aarch64/.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | 3 | !apt 4 | -------------------------------------------------------------------------------- /docker/debian-aarch64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/docker/debian-aarch64/Dockerfile -------------------------------------------------------------------------------- /docker/debian-aarch64/apt/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/docker/debian-aarch64/apt/sources.list -------------------------------------------------------------------------------- /docker/debian-armv7/.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | 3 | !apt 4 | -------------------------------------------------------------------------------- /docker/debian-armv7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/docker/debian-armv7/Dockerfile -------------------------------------------------------------------------------- /docker/debian-armv7/apt/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/docker/debian-armv7/apt/sources.list -------------------------------------------------------------------------------- /docker/fedora30-x64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/docker/fedora30-x64/Dockerfile -------------------------------------------------------------------------------- /docker/kali109-x64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/docker/kali109-x64/Dockerfile -------------------------------------------------------------------------------- /docker/ubuntu1204-x64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/docker/ubuntu1204-x64/Dockerfile -------------------------------------------------------------------------------- /docker/ubuntu1204-x86/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/docker/ubuntu1204-x86/Dockerfile -------------------------------------------------------------------------------- /docker/ubuntu1804-x64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/docker/ubuntu1804-x64/Dockerfile -------------------------------------------------------------------------------- /omnibus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/omnibus.rb -------------------------------------------------------------------------------- /package-scripts/metasploit-framework/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/package-scripts/metasploit-framework/postinst -------------------------------------------------------------------------------- /package-scripts/metasploit-framework/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/package-scripts/metasploit-framework/postrm -------------------------------------------------------------------------------- /package-scripts/metasploit-framework/preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/package-scripts/metasploit-framework/preinst -------------------------------------------------------------------------------- /package-scripts/metasploit-framework/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/package-scripts/metasploit-framework/prerm -------------------------------------------------------------------------------- /packer/configure_ami.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/packer/configure_ami.sh -------------------------------------------------------------------------------- /packer/ubuntu-amd64-ami.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/packer/ubuntu-amd64-ami.json -------------------------------------------------------------------------------- /packer/ubuntu-arm64-ami.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/packer/ubuntu-arm64-ami.json -------------------------------------------------------------------------------- /pkg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/pkg/.gitignore -------------------------------------------------------------------------------- /resources/metasploit-framework/msi/assets/LICENSE.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/resources/metasploit-framework/msi/assets/LICENSE.rtf -------------------------------------------------------------------------------- /resources/metasploit-framework/msi/assets/banner_background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/resources/metasploit-framework/msi/assets/banner_background.bmp -------------------------------------------------------------------------------- /resources/metasploit-framework/msi/assets/dialog_background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/resources/metasploit-framework/msi/assets/dialog_background.bmp -------------------------------------------------------------------------------- /resources/metasploit-framework/msi/assets/project.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/resources/metasploit-framework/msi/assets/project.ico -------------------------------------------------------------------------------- /resources/metasploit-framework/msi/assets/project_16x16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/resources/metasploit-framework/msi/assets/project_16x16.ico -------------------------------------------------------------------------------- /resources/metasploit-framework/msi/assets/project_32x32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/resources/metasploit-framework/msi/assets/project_32x32.ico -------------------------------------------------------------------------------- /resources/metasploit-framework/msi/localization-en-us.wxl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/resources/metasploit-framework/msi/localization-en-us.wxl.erb -------------------------------------------------------------------------------- /resources/metasploit-framework/msi/parameters.wxi.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/resources/metasploit-framework/msi/parameters.wxi.erb -------------------------------------------------------------------------------- /resources/metasploit-framework/msi/source.wxs.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/resources/metasploit-framework/msi/source.wxs.erb -------------------------------------------------------------------------------- /resources/metasploit-framework/pkg/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/resources/metasploit-framework/pkg/background.png -------------------------------------------------------------------------------- /resources/metasploit-framework/pkg/distribution.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/resources/metasploit-framework/pkg/distribution.xml.erb -------------------------------------------------------------------------------- /resources/metasploit-framework/pkg/license.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/resources/metasploit-framework/pkg/license.html.erb -------------------------------------------------------------------------------- /resources/metasploit-framework/pkg/welcome.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapid7/metasploit-omnibus/HEAD/resources/metasploit-framework/pkg/welcome.html.erb --------------------------------------------------------------------------------