diff options
| author | Danilo M. <danix@danix.xyz> | 2026-07-08 19:51:52 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-07-08 19:51:52 +0200 |
| commit | cf770f3ada77cf35e1b620187fb7529dbb84acc6 (patch) | |
| tree | ecd83e155072bf337dab5494312816ce386669bc | |
| parent | aed85b62f0cc5d2805a75820a0d75d28596d548d (diff) | |
| download | slackware-pentesting-suite-cf770f3ada77cf35e1b620187fb7529dbb84acc6.tar.gz slackware-pentesting-suite-cf770f3ada77cf35e1b620187fb7529dbb84acc6.zip | |
metasploit-framework-bin: apply SBo reviewer fixes, add man pages
Christoph Willing's review changes:
- generate /usr/bin launcher symlinks in the SlackBuild and let makepkg
build doinst.sh per-arch, instead of shipping a preloaded doinst.sh.
The preloaded doinst.sh was baked from an x86_64 build; on i386 its
symlink targets did not exist, leaving a stray symlink in / on install.
- cat msfvenom.bash-completion and README.SLACKWARE into place instead of
cp -a, avoiding inserting files with a non-root uid/gid.
Also:
- ship msfconsole.1 and msfvenom.1 man pages from kali (the .deb ships
none of its own), gzipped into /usr/man/man1.
- note in README.SLACKWARE that the completion is a snapshot matching the
shipped MSF version, and that the man pages come from kali.
- document in CLAUDE.md how to regenerate the completion and refresh the
man pages on version bumps.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
| -rw-r--r-- | CLAUDE.md | 38 | ||||
| -rw-r--r-- | metasploit-framework-bin/README.SLACKWARE | 7 | ||||
| -rw-r--r-- | metasploit-framework-bin/doinst.sh | 288 | ||||
| -rw-r--r-- | metasploit-framework-bin/metasploit-framework-bin.SlackBuild | 22 | ||||
| -rw-r--r-- | metasploit-framework-bin/msfconsole.1 | 129 | ||||
| -rw-r--r-- | metasploit-framework-bin/msfvenom.1 | 136 |
6 files changed, 325 insertions, 295 deletions
@@ -58,6 +58,44 @@ archives (SBo convention: `.deb`/binary repacks take a `-bin` suffix): - These packages are x86_64 only; exit with an error for other arches - Strip ELF binaries after extraction +#### `metasploit-framework-bin`: msfvenom bash-completion + +The shipped `msfvenom.bash-completion` is a **pre-generated snapshot**, not a +static file. Upstream (kali) no longer ships it; they generate it at build +time with a ruby script that loads the framework and dumps the live +payload/encoder/arch/platform/format lists. We ship a snapshot instead of +running ruby at build time (hermetic build, no build-time dep). + +**Regenerate it on every version bump.** After building and installing the +new package so `/opt/metasploit-framework` is live, pull the current +generator and run it against the installed framework's bundled ruby: + +```bash +curl -o /tmp/gen.rb \ + https://gitlab.com/kalilinux/packages/metasploit-framework/-/raw/kali/master/debian/generate-msfvenom-bash-completion.rb +/opt/metasploit-framework/embedded/bin/ruby \ + -I/opt/metasploit-framework/embedded/framework/lib /tmp/gen.rb \ + > metasploit-framework-bin/msfvenom.bash-completion +``` + +Verify the output is non-empty and the `%s` slots were filled (grep for real +payload names like `windows/meterpreter`), then commit it with the bump. + +#### `metasploit-framework-bin`: man pages + +The .deb ships **no** metasploit man pages (its `share/man` tree is only for +bundled deps like postgres/ruby). We ship `msfconsole.1` and `msfvenom.1` +from kali, who maintain them by hand (no generator script). The SlackBuild +gzips them into `/usr/man/man1`. **Refresh them on version bumps** in case +kali has updated them: + +```bash +for p in msfconsole msfvenom ; do + curl -o metasploit-framework-bin/$p.1 \ + https://gitlab.com/kalilinux/packages/metasploit-framework/-/raw/kali/master/debian/extra/$p.1 +done +``` + ### 4. Binary repacks — RPM Packages such as `nessus` are repacked from upstream `.rpm` archives: diff --git a/metasploit-framework-bin/README.SLACKWARE b/metasploit-framework-bin/README.SLACKWARE index bcd37af..cabf2ed 100644 --- a/metasploit-framework-bin/README.SLACKWARE +++ b/metasploit-framework-bin/README.SLACKWARE @@ -6,5 +6,10 @@ it's called "msfupdate.sh", there also is a logrotate config file called "msfupdate.logrotate" which can be useful. Inside the /usr/doc/metasploit-framework-bin-${VERSION} directory you'll also find a -bash-completion script for msfvenom, courtesy of kali linux. +bash-completion script for msfvenom, courtesy of kali linux. It is a +snapshot generated from the Metasploit version shipped in this package, +so its payload and encoder lists match this release. + +man pages for msfconsole and msfvenom (also courtesy of kali linux) are +installed under /usr/man/man1. diff --git a/metasploit-framework-bin/doinst.sh b/metasploit-framework-bin/doinst.sh deleted file mode 100644 index 171ae4e..0000000 --- a/metasploit-framework-bin/doinst.sh +++ /dev/null @@ -1,288 +0,0 @@ -( cd opt/metasploit-framework/embedded/bin ; rm -rf captoinfo ) -( cd opt/metasploit-framework/embedded/bin ; ln -sf tic captoinfo ) -( cd opt/metasploit-framework/embedded/bin ; rm -rf infotocap ) -( cd opt/metasploit-framework/embedded/bin ; ln -sf tic infotocap ) -( cd opt/metasploit-framework/embedded/bin ; rm -rf lzcat ) -( cd opt/metasploit-framework/embedded/bin ; ln -sf xz lzcat ) -( cd opt/metasploit-framework/embedded/bin ; rm -rf lzma ) -( cd opt/metasploit-framework/embedded/bin ; ln -sf xz lzma ) -( cd opt/metasploit-framework/embedded/bin ; rm -rf postmaster ) -( cd opt/metasploit-framework/embedded/bin ; ln -sf postgres postmaster ) -( cd opt/metasploit-framework/embedded/bin ; rm -rf reset ) -( cd opt/metasploit-framework/embedded/bin ; ln -sf tset reset ) -( cd opt/metasploit-framework/embedded/bin ; rm -rf unlzma ) -( cd opt/metasploit-framework/embedded/bin ; ln -sf xz unlzma ) -( cd opt/metasploit-framework/embedded/bin ; rm -rf unxz ) -( cd opt/metasploit-framework/embedded/bin ; ln -sf xz unxz ) -( cd opt/metasploit-framework/embedded/bin ; rm -rf xzcat ) -( cd opt/metasploit-framework/embedded/bin ; ln -sf xz xzcat ) -( cd opt/metasploit-framework/embedded/include ; rm -rf ncurses.h ) -( cd opt/metasploit-framework/embedded/include ; ln -sf curses.h ncurses.h ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libcrypto.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libcrypto.so.1.1 libcrypto.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libcurses.a ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libncurses.a libcurses.a ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libcurses.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libncurses.so.6.2 libcurses.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libecpg.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libecpg.so.6.13 libecpg.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libecpg.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libecpg.so.6.13 libecpg.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libecpg_compat.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libecpg_compat.so.3.13 libecpg_compat.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libecpg_compat.so.3 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libecpg_compat.so.3.13 libecpg_compat.so.3 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libedit.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libedit.so.0.0.55 libedit.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libedit.so.0 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libedit.so.0.0.55 libedit.so.0 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libexslt.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libexslt.so.0.8.20 libexslt.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libexslt.so.0 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libexslt.so.0.8.20 libexslt.so.0 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libffi.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libffi.so.8.1.0 libffi.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libffi.so.8 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libffi.so.8.1.0 libffi.so.8 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libform.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libform.so.6 libform.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libform.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libform.so.6.2 libform.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libformw.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libformw.so.6 libformw.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libformw.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libformw.so.6.2 libformw.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libjemalloc.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libjemalloc.so.2 libjemalloc.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf liblzma.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf liblzma.so.5.2.3 liblzma.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf liblzma.so.5 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf liblzma.so.5.2.3 liblzma.so.5 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libmenu.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libmenu.so.6 libmenu.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libmenu.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libmenu.so.6.2 libmenu.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libmenuw.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libmenuw.so.6 libmenuw.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libmenuw.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libmenuw.so.6.2 libmenuw.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libncurses.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libncurses.so.6 libncurses.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libncurses.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libncurses.so.6.2 libncurses.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libncursesw.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libncursesw.so.6 libncursesw.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libncursesw.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libncursesw.so.6.2 libncursesw.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libpanel.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libpanel.so.6 libpanel.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libpanel.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libpanel.so.6.2 libpanel.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libpanelw.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libpanelw.so.6 libpanelw.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libpanelw.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libpanelw.so.6.2 libpanelw.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libpcap.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libpcap.so.1 libpcap.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libpcap.so.1 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libpcap.so.1.6.2 libpcap.so.1 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libpgtypes.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libpgtypes.so.3.13 libpgtypes.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libpgtypes.so.3 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libpgtypes.so.3.13 libpgtypes.so.3 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libpq.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libpq.so.5.13 libpq.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libpq.so.5 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libpq.so.5.13 libpq.so.5 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libruby.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libruby.so.3.4.4 libruby.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libruby.so.3.4 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libruby.so.3.4.4 libruby.so.3.4 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libssl.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libssl.so.1.1 libssl.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libtinfo.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libtinfo.so.6 libtinfo.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libtinfo.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libtinfo.so.6.2 libtinfo.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libtinfow.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libtinfow.so.6 libtinfow.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libtinfow.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libtinfow.so.6.2 libtinfow.so.6 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libuuid.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libuuid.so.1.3.0 libuuid.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libuuid.so.1 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libuuid.so.1.3.0 libuuid.so.1 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libxml2.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libxml2.so.2.9.10 libxml2.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libxml2.so.2 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libxml2.so.2.9.10 libxml2.so.2 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libxslt.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libxslt.so.1.1.34 libxslt.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libxslt.so.1 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libxslt.so.1.1.34 libxslt.so.1 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libyaml-0.so.2 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libyaml-0.so.2.0.5 libyaml-0.so.2 ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libyaml.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libyaml-0.so.2.0.5 libyaml.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libz.so ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libz.so.1.2.11 libz.so ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf libz.so.1 ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf libz.so.1.2.11 libz.so.1 ) -( cd opt/metasploit-framework/embedded/lib/ruby/gems/3.4.0/gems/sqlite3-1.7.3/ext/sqlite3/tmp/x86_64-linux-gnu/ports/sqlite3/3.45.2/sqlite-autoconf-3450200/.libs ; rm -rf libsqlite3.la ) -( cd opt/metasploit-framework/embedded/lib/ruby/gems/3.4.0/gems/sqlite3-1.7.3/ext/sqlite3/tmp/x86_64-linux-gnu/ports/sqlite3/3.45.2/sqlite-autoconf-3450200/.libs ; ln -sf ../libsqlite3.la libsqlite3.la ) -( cd opt/metasploit-framework/embedded/lib ; rm -rf terminfo ) -( cd opt/metasploit-framework/embedded/lib ; ln -sf ../share/terminfo terminfo ) -( cd opt/metasploit-framework/embedded/share/man/man1 ; rm -rf lzcat.1 ) -( cd opt/metasploit-framework/embedded/share/man/man1 ; ln -sf xz.1 lzcat.1 ) -( cd opt/metasploit-framework/embedded/share/man/man1 ; rm -rf lzma.1 ) -( cd opt/metasploit-framework/embedded/share/man/man1 ; ln -sf xz.1 lzma.1 ) -( cd opt/metasploit-framework/embedded/share/man/man1 ; rm -rf lzmadec.1 ) -( cd opt/metasploit-framework/embedded/share/man/man1 ; ln -sf xzdec.1 lzmadec.1 ) -( cd opt/metasploit-framework/embedded/share/man/man1 ; rm -rf unlzma.1 ) -( cd opt/metasploit-framework/embedded/share/man/man1 ; ln -sf xz.1 unlzma.1 ) -( cd opt/metasploit-framework/embedded/share/man/man1 ; rm -rf unxz.1 ) -( cd opt/metasploit-framework/embedded/share/man/man1 ; ln -sf xz.1 unxz.1 ) -( cd opt/metasploit-framework/embedded/share/man/man1 ; rm -rf xzcat.1 ) -( cd opt/metasploit-framework/embedded/share/man/man1 ; ln -sf xz.1 xzcat.1 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_deletestr.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_deletestr.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_end.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_end.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_get.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_get.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_getc.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_getc.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_gets.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_gets.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_init.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_init.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_init_fd.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_init_fd.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_insertstr.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_insertstr.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_line.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_line.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_parse.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_parse.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_push.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_push.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_reset.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_reset.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_resize.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_resize.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_set.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_set.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_source.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_source.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_wdeletestr.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_wdeletestr.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_wget.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_wget.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_wgetc.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_wgetc.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_wgets.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_wgets.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_winsertstr.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_winsertstr.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_wline.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_wline.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_wparse.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_wparse.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_wpush.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_wpush.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf el_wset.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 el_wset.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf history.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 history.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf history_end.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 history_end.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf history_init.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 history_init.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf history_w.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 history_w.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf history_wend.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 history_wend.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf history_winit.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 history_winit.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf pcap_datalink_val_to_description.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf pcap_datalink_val_to_name.3pcap pcap_datalink_val_to_description.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf pcap_dispatch.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf pcap_loop.3pcap pcap_dispatch.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf pcap_dump_fopen.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf pcap_dump_open.3pcap pcap_dump_fopen.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf pcap_fopen_offline.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf pcap_open_offline.3pcap pcap_fopen_offline.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf pcap_fopen_offline_with_tstamp_precision.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf pcap_open_offline.3pcap pcap_fopen_offline_with_tstamp_precision.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf pcap_free_datalinks.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf pcap_list_datalinks.3pcap pcap_free_datalinks.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf pcap_free_tstamp_types.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf pcap_list_tstamp_types.3pcap pcap_free_tstamp_types.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf pcap_freealldevs.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf pcap_findalldevs.3pcap pcap_freealldevs.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf pcap_getnonblock.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf pcap_setnonblock.3pcap pcap_getnonblock.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf pcap_minor_version.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf pcap_major_version.3pcap pcap_minor_version.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf pcap_next.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf pcap_next_ex.3pcap pcap_next.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf pcap_open_dead_with_tstamp_precision.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf pcap_open_dead.3pcap pcap_open_dead_with_tstamp_precision.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf pcap_open_offline_with_tstamp_precision.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf pcap_open_offline.3pcap pcap_open_offline_with_tstamp_precision.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf pcap_perror.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf pcap_geterr.3pcap pcap_perror.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf pcap_sendpacket.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf pcap_inject.3pcap pcap_sendpacket.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf pcap_tstamp_type_val_to_description.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf pcap_tstamp_type_val_to_name.3pcap pcap_tstamp_type_val_to_description.3pcap ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf tok_end.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 tok_end.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf tok_init.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 tok_init.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf tok_line.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 tok_line.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf tok_reset.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 tok_reset.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf tok_str.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 tok_str.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf tok_wend.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 tok_wend.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf tok_winit.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 tok_winit.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf tok_wline.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 tok_wline.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf tok_wreset.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 tok_wreset.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; rm -rf tok_wstr.3 ) -( cd opt/metasploit-framework/embedded/share/man/man3 ; ln -sf editline.3 tok_wstr.3 ) -( cd opt/metasploit-framework/embedded/ssl ; rm -rf cert.pem ) -( cd opt/metasploit-framework/embedded/ssl ; ln -sf certs/cacert.pem cert.pem ) -( cd opt/metasploit-framework/embedded/ssl/misc ; rm -rf tsget ) -( cd opt/metasploit-framework/embedded/ssl/misc ; ln -sf tsget.pl tsget ) -( cd usr/bin ; rm -rf msfbinscan ) -( cd usr/bin ; ln -sf ../../opt/metasploit-framework/bin/msfbinscan msfbinscan ) -( cd usr/bin ; rm -rf msfconsole ) -( cd usr/bin ; ln -sf ../../opt/metasploit-framework/bin/msfconsole msfconsole ) -( cd usr/bin ; rm -rf msfd ) -( cd usr/bin ; ln -sf ../../opt/metasploit-framework/bin/msfd msfd ) -( cd usr/bin ; rm -rf msfdb ) -( cd usr/bin ; ln -sf ../../opt/metasploit-framework/bin/msfdb msfdb ) -( cd usr/bin ; rm -rf msfelfscan ) -( cd usr/bin ; ln -sf ../../opt/metasploit-framework/bin/msfelfscan msfelfscan ) -( cd usr/bin ; rm -rf msfmachscan ) -( cd usr/bin ; ln -sf ../../opt/metasploit-framework/bin/msfmachscan msfmachscan ) -( cd usr/bin ; rm -rf msfpescan ) -( cd usr/bin ; ln -sf ../../opt/metasploit-framework/bin/msfpescan msfpescan ) -( cd usr/bin ; rm -rf msfremove ) -( cd usr/bin ; ln -sf ../../opt/metasploit-framework/bin/msfremove msfremove ) -( cd usr/bin ; rm -rf msfrop ) -( cd usr/bin ; ln -sf ../../opt/metasploit-framework/bin/msfrop msfrop ) -( cd usr/bin ; rm -rf msfrpc ) -( cd usr/bin ; ln -sf ../../opt/metasploit-framework/bin/msfrpc msfrpc ) -( cd usr/bin ; rm -rf msfrpcd ) -( cd usr/bin ; ln -sf ../../opt/metasploit-framework/bin/msfrpcd msfrpcd ) -( cd usr/bin ; rm -rf msfupdate ) -( cd usr/bin ; ln -sf ../../opt/metasploit-framework/bin/msfupdate msfupdate ) -( cd usr/bin ; rm -rf msfvenom ) -( cd usr/bin ; ln -sf ../../opt/metasploit-framework/bin/msfvenom msfvenom ) diff --git a/metasploit-framework-bin/metasploit-framework-bin.SlackBuild b/metasploit-framework-bin/metasploit-framework-bin.SlackBuild index ae81cb2..41d7df0 100644 --- a/metasploit-framework-bin/metasploit-framework-bin.SlackBuild +++ b/metasploit-framework-bin/metasploit-framework-bin.SlackBuild @@ -72,9 +72,6 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -# create soft link for launcher -mkdir -p $PKG/usr/bin - # make bundled payload/exploit ELFs executable (see README) find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs -r chmod 755 @@ -82,18 +79,31 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +# create /usr/bin launcher symlinks; let makepkg build doinst.sh per-arch +mkdir -p $PKG/usr/bin +( cd $PKG/usr/bin && \ + for exe in ../../opt/$SRCNAM/bin/* ; do + ln -s $exe + done +) + mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a $PKG/opt/$SRCNAM/LICENSE $PKG/usr/doc/$PRGNAM-$VERSION cp -a $PKG/opt/$SRCNAM/embedded/framework/README.md $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $CWD/msfvenom.bash-completion $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $CWD/README.SLACKWARE $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/msfvenom.bash-completion > $PKG/usr/doc/$PRGNAM-$VERSION/msfvenom.bash-completion +cat $CWD/README.SLACKWARE > $PKG/usr/doc/$PRGNAM-$VERSION/README.SLACKWARE + +# man pages (maintained by kali, updated per version bump) +mkdir -p $PKG/usr/man/man1 +for page in msfconsole msfvenom ; do + cat $CWD/$page.1 | gzip -9c > $PKG/usr/man/man1/$page.1.gz +done rm -rf $PKG/usr/share/doc cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc -cat $CWD/doinst.sh > $PKG/install/doinst.sh cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/metasploit-framework-bin/msfconsole.1 b/metasploit-framework-bin/msfconsole.1 new file mode 100644 index 0000000..7720779 --- /dev/null +++ b/metasploit-framework-bin/msfconsole.1 @@ -0,0 +1,129 @@ +.TH MSFCONSOLE 1 "July 24, 2015" "4.11.4" "Metasploit Framework Console" +.SH NAME +msfconsole - Metasploit Framework Console +.SH SYNOPSIS +msfconsole [options] +.SH DESCRIPTION +.B +Msfconsole +is probably the most popular interface to the MSF. It provides an "all-in-one" centralized console and allows you efficient access to virtually all of the options available in the Metasploit Framework. Msfconsole may seem intimidating at first, but once you learn the syntax of the commands you will learn to appreciate the power of utilizing this interface. +.SH OPTIONS +.SH Common options +.PP +-E, --environment ENVIRONMENT +.br +The Rails environment. Will use RAIL_ENV environment variable if that is set. Defaults to production if neither option not RAILS_ENV environment variable is set. + +.SH Database options + -M, --migration-path DIRECTORY Specify a directory containing additional DB migrations + -n, --no-database Disable database support + -y, --yaml PATH Specify a YAML file containing database settings + +.SH Framework options + -c FILE Load the specified configuration file + -v, --version Show version + +.SH Module options + --defer-module-loads Defer module loading unless explicitly asked. + -m, --module-path DIRECTORY An additional module path + + +.SH Console options: + -a, --ask Ask before exiting Metasploit or accept 'exit -y' + -d, --defanged Execute the console as defanged + -L, --real-readline Use the system Readline library instead of RbReadline + -o, --output FILE Output to the specified file + -p, --plugin PLUGIN Load a plugin on startup + -q, --quiet Do not print the banner on start up + -r, --resource FILE Execute the specified resource file (- for stdin) + -x, --execute-command COMMAND Execute the specified string as console commands (use ; for multiples) + -h, --help Show help message + +.SH EXAMPLE +.PP +msfconsole -q -x "use auxiliary/scanner/telnet/telnet_login; set USERNAME msfadmin; set PASSWORD msfadmin; set RHOSTS metasploitable; run; exit -y" + +.SH SEE ALSO +msfcli(1) - +.I +deprecated +- +.br +msfvenom(1) +.br +msfpayload(1) - +.I +deprecated +- +.br +msfencode(1) - +.I +deprecated +- +.SH AUTHOR(S) +.TP +.B +Creator +HD Moore - @hdmoore / hdm@metasploit.com +.br +Man Page Author: Kali Linux\*(Tm +File man page bug reports at +.B +https://bugs.kali.org +.TP +.B +Top Contributors, +Joshua J. Drake, +Wei Chen, +James Lee, +Mario Ceballos, +Steve Tornio, +David D. Rude II, +Ramon Valle, +Nathan Keltner, +Tod Beardsley, +Patrick Webster, +Chris Gates, +Jonathan Cran, +Efrain Torres, +Carlos Perez, +Stephen Fewer, +Alexandre Maloteaux, +Chao Mu, +Juan Vazquez, +Brandon Perry, +David Maloney + +.SH NOTES +For a more complete list of contributors run: +.br +/usr/share/metasploit-framework/tools/modules_authors.rb +.br +Or visit: +.br +https://github.com/rapid7/metasploit-framework/graphs/contributors + +.SH COPYRIGHT +Copyright (C) 2006-2015, Rapid7 Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: +.TP +* +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +.TP +* +Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +.TP +* +Neither the name of Rapid7 LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +The Metasploit Framework is provided under the 3-clause BSD license above. + +The copyright on this package is held by Rapid7 LLC. + +This license does not apply to several components within the Metasploit +Framework source tree. For more details see the LICENSE file. diff --git a/metasploit-framework-bin/msfvenom.1 b/metasploit-framework-bin/msfvenom.1 new file mode 100644 index 0000000..841f045 --- /dev/null +++ b/metasploit-framework-bin/msfvenom.1 @@ -0,0 +1,136 @@ +.TH MSFVENOM 1 "July 23, 2015" "4.11.4" "Metasploit Framework - msfvenom" +.SH NAME +msfvenom - Payload Generator and Encoder +.SH SYNOPSIS +msfvenom [options] <var=val> +.SH DESCRIPTION +.B +Msfvenom +is a combination of Msfpayload and Msfencode, putting both of these tools into a single Framework instance. Msfvenom has replaced both msfpayload and msfencode as of +.B +June 8th, 2015. +.SH OPTIONS +.PP +-p, --payload [payload] Payload to use. Specify a '-' or stdin to use custom payloads +.br + --payload-options List the payload's standard options +.TP +-l, --list [module_type] +List a module type example: payloads, encoders, nops, all +.TP +-n, --nopsled [length] +Prepend a nopsled of [length] size on to the payload +.TP +-f, --format [format] +Output format (use --help-formats for a list) +.TP +--help-formats +List available formats +.TP +-e, --encoder [encoder] +The encoder to use +.TP +-a, --arch [architecture] +The architecture to use +.TP +--platform [platform] +The platform of the payload +.br +Cisco or cisco, OSX or osx, Solaris or solaris, BSD or bsd, OpenBSD or openbsd, Firefox or firefox, BSDi or bsdi, NetBSD or netbsd, NodeJS or nodejs, FreeBSD or freebsd, Python or python, AIX or aix, JavaScript or javascript, HPUX or hpux, PHP or php, Irix or irix, Unix or unix, Linux or linux, Ruby or ruby, Java or java, Android or android, Netware or netware, Windows or windows +.PP +-s, --space [length] +The maximum size of the resulting payload +.br + --encoder-space [length] + The maximum size of the encoded payload (defaults to the -s value) +.TP +-b, --bad-chars [list] +The list of characters to avoid example: '\\x00\\xff' +.TP +-i, --iterations [count] +The number of times to encode the payload +.TP +-c, --add-code [path] +Specify an additional win32 shellcode file to include +.TP +-x, --template [path] +Specify a custom executable file to use as a template +.TP +-k, --keep +Preserve the template behavior and inject the payload as a new thread +.TP +-o, --out [path] +Save the payload +.TP +-v, --var-name [name] +Specify a custom variable name to use for certain output formats +.TP +--smallest +Generate the smallest possible payload +.TP +-h, --help +Show this message +.TP +--help-formats +List available formats +.SH EXAMPLE +msfvenom --platform Windows -p windows/shell/bind_tcp -e x86/shikata_ga_nai -b "\\x00" -f python +.br +msfvenom --platform linux -p linux/x86/shell/reverse_tcp LHOST=w.z.y.z LPORT=443 -b "\\x00" -f elf -o file.bin +.br + + +For more examples visit +.B +https://www.offensive-security.com/metasploit-unleashed/msfvenom +.SH SEE ALSO +msfcli(1) - +.I +deprecated +- +.br +msfconsole(1) +.br +msfpayload(1) - +.I +deprecated +- +.br +msfencode(1) - +.I +deprecated +- +.SH AUTHOR(S) +.TP +.B +Creator +HD Moore - @hdmoore / hdm@metasploit.com +.br +Man Page Author: Kali Linux\*(Tm +File man page bug reports at +.B +https://bugs.kali.org +.SH COPYRIGHT +Copyright (C) 2006-2015, Rapid7 Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: +.TP +* +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +.TP +* +Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +.TP +* +Neither the name of Rapid7 LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +The Metasploit Framework is provided under the 3-clause BSD license above. + +The copyright on this package is held by Rapid7 LLC. + +This license does not apply to several components within the Metasploit +Framework source tree. For more details see the LICENSE file. |
