diff options
| author | Danilo M. <danix@danix.xyz> | 2026-07-06 14:24:40 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-07-06 14:24:40 +0200 |
| commit | baac6a99735c552c9d50121c587d175bcc79b952 (patch) | |
| tree | 09c8936e35edfd8b9adfd66f1f1d08b9d0acecde | |
| parent | f4598deecddcb7520a2c1b0a5545155bfa81b5e8 (diff) | |
| download | slackware-pentesting-suite-baac6a99735c552c9d50121c587d175bcc79b952.tar.gz slackware-pentesting-suite-baac6a99735c552c9d50121c587d175bcc79b952.zip | |
metasploit-framework: add i386 support
| -rw-r--r-- | metasploit-framework/metasploit-framework.SlackBuild | 14 | ||||
| -rw-r--r-- | metasploit-framework/metasploit-framework.info | 4 |
2 files changed, 10 insertions, 8 deletions
diff --git a/metasploit-framework/metasploit-framework.SlackBuild b/metasploit-framework/metasploit-framework.SlackBuild index abd29ff..2fb4dc3 100644 --- a/metasploit-framework/metasploit-framework.SlackBuild +++ b/metasploit-framework/metasploit-framework.SlackBuild @@ -47,13 +47,15 @@ if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then exit 0 fi -# Upstream only has binary support for x86_64 at present. -if [ "$ARCH" = "x86_64" ]; then - DEBARCH="amd64" -else - echo "Sorry, the metasploit-framework binaries are currently available for x86_64 only." +# Upstream ships binaries for x86_64 and i386. +case "$ARCH" in + x86_64) DEBARCH="amd64" ;; + i?86) DEBARCH="i386" ;; + *) + echo "Sorry, the metasploit-framework binaries are currently available for x86_64 and i386 only." exit 1 -fi + ;; +esac set -e diff --git a/metasploit-framework/metasploit-framework.info b/metasploit-framework/metasploit-framework.info index 96f6c52..5ac7ae8 100644 --- a/metasploit-framework/metasploit-framework.info +++ b/metasploit-framework/metasploit-framework.info @@ -1,8 +1,8 @@ PRGNAM="metasploit-framework" VERSION="6.4.135" HOMEPAGE="https://www.metasploit.com/" -DOWNLOAD="UNSUPPORTED" -MD5SUM="" +DOWNLOAD="https://apt.metasploit.com/pool/main/m/metasploit-framework/metasploit-framework_6.4.135~20260522055654~1rapid7-1_i386.deb" +MD5SUM="8281ab1bac4a755481a66bb469471960" DOWNLOAD_x86_64="https://apt.metasploit.com/pool/main/m/metasploit-framework/metasploit-framework_6.4.135~20260522060922~1rapid7-1_amd64.deb" MD5SUM_x86_64="56474d60f7f4aa535d796bd7243df2c1" REQUIRES="" |
