diff options
| author | Danilo M. <danix@danix.xyz> | 2026-08-08 13:03:32 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-08-08 13:03:32 +0200 |
| commit | 25742bd9efc32de82eeeeaba0f4b8976c169e7ce (patch) | |
| tree | 5dacbf9207123e6e74733e5d474b28ed34888f61 /network | |
| parent | 998dbd56e53c8c8c8bc1a425cec16b6ccc752e34 (diff) | |
| download | sbo-slackbuilds-25742bd9efc32de82eeeeaba0f4b8976c169e7ce.tar.gz sbo-slackbuilds-25742bd9efc32de82eeeeaba0f4b8976c169e7ce.zip | |
repo: move packages under their SBo category
Mirror SBo's own <category>/<package>/ layout instead of a flat
<package>/ one. The category is now carried by the directory, so
there's no separate map to maintain, and a package exports to the SBo
repo at the identical relative path.
misc: SecLists, exploitdb, nuclei
games: UrbanTerror
network: feroxbuster, ffuf, gobuster, metasploit-framework-bin, r8125
Categories taken from the synced SBo tree, which is authoritative.
This also repairs two things the flat layout had broken:
- test-build's category_of() returned "." for every package, since it
derives the category from the parent directory name.
- post-commit asserted a fixed depth. It now locates a build by the
directory holding the .SlackBuild, and names the archive after the
package with the package dir at the tarball root, as SBo expects.
Drops the exec bit from SecLists.SlackBuild and gobuster.SlackBuild,
flagged by sbolint once the pre-commit hook started running: SBo
requires 0644 and ships both that way.
Diffstat (limited to 'network')
28 files changed, 1251 insertions, 0 deletions
diff --git a/network/feroxbuster/README b/network/feroxbuster/README new file mode 100644 index 0000000..277c41d --- /dev/null +++ b/network/feroxbuster/README @@ -0,0 +1,46 @@ +feroxbuster is a fast, simple, recursive content discovery tool written +in Rust. It performs forced browsing, brute forcing URLs with a wordlist +to enumerate unlinked content (directories, files, backups, and similar +resources) that a web application does not reference but still serves. + +This package is x86_64 only. + +It builds against rust-opt so it works on Slackware -stable, whose +system cargo is too old to read the version 4 Cargo.lock. On -current +the system rust is new enough; rust-opt is still listed as a dependency +for a uniform build but its /opt/rust/bin directory is simply absent +there. + +Because SlackBuilds.org build hosts have no network access at build +time, this script does not let cargo fetch crates from the network. +Instead, a prebuilt vendored-crates tarball +(feroxbuster-$VERSION-vendor.tar.gz) is downloaded as a second source +and extracted alongside the upstream source. The build then runs cargo +in fully offline mode against those vendored crates. The vendored +tarball is generated from the upstream Cargo.lock at the matching +release tag, so the dependency set is reproducible. + +The vendored tarball is regenerated per version with +cargo-vendor-filterer. SOURCE_DATE_EPOCH is pinned to the release tag's +commit date so the archive is byte-for-byte reproducible: + + tar xf feroxbuster-2.13.1.tar.gz && cd feroxbuster-2.13.1 + export SOURCE_DATE_EPOCH="$(date -u -d 2025-12-13T14:09:44Z +%s)" + cargo vendor-filterer \ + --platform=x86_64-unknown-linux-gnu \ + --prefix=vendor \ + --format=tar.gz \ + feroxbuster-2.13.1-vendor.tar.gz + +The tag commit date comes from the GitHub API, field +.commit.committer.date of: + api.github.com/repos/epi052/feroxbuster/commits/v2.13.1 +Then update MD5SUM_x86_64 for the new tarball in feroxbuster.info. + +The sample configuration is installed to: + /etc/feroxbuster/ferox-config.toml.new +Rename it to ferox-config.toml to use it (it is shipped as .new so your +edits are never overwritten on upgrade). + +Shell completions for bash, fish, and zsh are installed if present in +the upstream release tree. diff --git a/network/feroxbuster/doinst.sh b/network/feroxbuster/doinst.sh new file mode 100644 index 0000000..82fe0c0 --- /dev/null +++ b/network/feroxbuster/doinst.sh @@ -0,0 +1,14 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/feroxbuster/ferox-config.toml.new diff --git a/network/feroxbuster/feroxbuster.SlackBuild b/network/feroxbuster/feroxbuster.SlackBuild new file mode 100644 index 0000000..6597cb7 --- /dev/null +++ b/network/feroxbuster/feroxbuster.SlackBuild @@ -0,0 +1,150 @@ +#!/bin/bash + +# Slackware build script for feroxbuster + +# Copyright 2026 danix <danix@danix.xyz> +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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 AUTHOR 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. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=feroxbuster +VERSION=${VERSION:-2.13.1} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +# Name of the vendored crates tarball (hosted by the maintainer). +VENDOR=${PRGNAM}-${VERSION}-vendor + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +# feroxbuster is only meaningfully supported on x86_64. Bail out clearly +# on other arches rather than failing deep in the Rust build. +if [ "$ARCH" != "x86_64" ]; then + echo "$PRGNAM is only supported on x86_64." + exit 1 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +# Rust honors RUSTFLAGS; we don't pass the usual SLKCFLAGS to a C compiler +# here since cargo drives the build. Release profile handles optimization. +SLKCFLAGS="" +LIBDIRSUFFIX="64" + +PKGNAM=$PRGNAM # PRINT_PACKAGE_NAME +if [ "$PRINT_PACKAGE_NAME" ]; then + echo "$PKGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION + +# Unpack the vendored crates alongside the source. The tarball extracts to +# a top-level vendor/ directory. +rm -rf vendor +tar xvf $CWD/$VENDOR.tar.gz + +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \+ -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+ + +# Point cargo at the vendored sources and forbid any network access. +# The directory is relative to the parent of .cargo/, i.e. the source +# root, so this is portable across build hosts (no absolute /tmp paths). +mkdir -p .cargo +cat > .cargo/config.toml <<EOF +[source.crates-io] +replace-with = "vendored-sources" + +[source.vendored-sources] +directory = "vendor" + +[net] +offline = true +EOF + +# On Slackware -stable the system cargo is too old to read the v4 +# Cargo.lock, so we build against rust-opt, which installs its toolchain +# under /opt/rust/bin (it ships no profile.d script). Put it first on +# PATH when present. On -current the system rust is new enough and this +# directory simply won't exist. +if [ -x /opt/rust/bin/cargo ]; then + export PATH="/opt/rust/bin:$PATH" +fi + +# Build release binary fully offline against the vendored crates. +# --locked guarantees Cargo.lock is honored and never rewritten. +export CARGO_HOME="$TMP/$PRGNAM-$VERSION/.cargo" +cargo build --release --offline --locked + +# Install the binary. +install -D -m 0755 target/release/$PRGNAM $PKG/usr/bin/$PRGNAM + +# Shell completions. feroxbuster can emit its own at runtime, but upstream +# also ships generated ones under shell_completions/ in the release tree. +if [ -d shell_completions ]; then + install -D -m 0644 shell_completions/${PRGNAM}.bash \ + $PKG/usr/share/bash-completion/completions/$PRGNAM 2>/dev/null || true + install -D -m 0644 shell_completions/${PRGNAM}.fish \ + $PKG/usr/share/fish/vendor_completions.d/${PRGNAM}.fish 2>/dev/null || true + install -D -m 0644 shell_completions/_${PRGNAM} \ + $PKG/usr/share/zsh/site-functions/_${PRGNAM} 2>/dev/null || true +fi + +# Sample configuration, shipped as .new so it never clobbers user edits. +if [ -f ferox-config.toml.example ]; then + install -D -m 0644 ferox-config.toml.example \ + $PKG/etc/$PRGNAM/ferox-config.toml.new +fi + +# Strip the binary. +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 + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a CHANGELOG.md LICENSE README.md \ + $PKG/usr/doc/$PRGNAM-$VERSION 2>/dev/null || true +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/network/feroxbuster/feroxbuster.info b/network/feroxbuster/feroxbuster.info new file mode 100644 index 0000000..7d0d90e --- /dev/null +++ b/network/feroxbuster/feroxbuster.info @@ -0,0 +1,12 @@ +PRGNAM="feroxbuster" +VERSION="2.13.1" +HOMEPAGE="https://github.com/epi052/feroxbuster" +DOWNLOAD="UNSUPPORTED" +MD5SUM="" +DOWNLOAD_x86_64="https://github.com/epi052/feroxbuster/archive/v2.13.1/feroxbuster-2.13.1.tar.gz \ + https://packages.danix.xyz/sbo/feroxbuster/feroxbuster-2.13.1-vendor.tar.gz" +MD5SUM_x86_64="dc0bfa007f22815875b8094d954c4f60 \ + 1ecbe3e0b6737669548afd595381979d" +REQUIRES="rust-opt" +MAINTAINER="danix" +EMAIL="danix@danix.xyz" diff --git a/network/feroxbuster/slack-desc b/network/feroxbuster/slack-desc new file mode 100644 index 0000000..369eb34 --- /dev/null +++ b/network/feroxbuster/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +feroxbuster: feroxbuster (fast recursive content discovery tool) +feroxbuster: +feroxbuster: feroxbuster is a fast, simple, recursive content discovery tool +feroxbuster: written in Rust. It performs forced browsing: brute forcing URLs +feroxbuster: with a wordlist to find unlinked content such as directories, +feroxbuster: files, backups, and other resources on web servers that are not +feroxbuster: referenced by the application but remain accessible. +feroxbuster: +feroxbuster: Homepage: https://github.com/epi052/feroxbuster +feroxbuster: +feroxbuster: diff --git a/network/ffuf/README b/network/ffuf/README new file mode 100644 index 0000000..c9f5b7f --- /dev/null +++ b/network/ffuf/README @@ -0,0 +1,10 @@ +FFUF - Fuzz Faster U Fool + +ffuf is a fast web fuzzer written in Go. +For example use cases check the README.md in the +/usr/share/doc/ffuf-<VERSION>/ folder. + +A configuration file ffufrc.example file is provided in the same folder. +You can copy it as $HOME/.config/ffuf/ffufrc + +This script requires network access during build. diff --git a/network/ffuf/ffuf.1.gz b/network/ffuf/ffuf.1.gz Binary files differnew file mode 100644 index 0000000..0130034 --- /dev/null +++ b/network/ffuf/ffuf.1.gz diff --git a/network/ffuf/ffuf.SlackBuild b/network/ffuf/ffuf.SlackBuild new file mode 100644 index 0000000..148bece --- /dev/null +++ b/network/ffuf/ffuf.SlackBuild @@ -0,0 +1,110 @@ +#!/bin/bash + +# Slackware build script for ffuf + +# Copyright 2026 danix <danix@danix.xyz> +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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 AUTHOR 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. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=ffuf +VERSION=${VERSION:-2.2.1} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +ARCH=x86_64 + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +export CGO_CPPFLAGS="$SLKCFLAGS" +export CGO_CFLAGS="$SLKCFLAGS" +export CGO_CXXFLAGS="$SLKCFLAGS" + +export GOPATH="$(pwd)/build" +export GOPROXY=https://proxy.golang.org,direct + +export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw \ + -ldflags=-linkmode=external \ + -ldflags=-s \ + -ldflags=-w" + +mkdir -p build + +mkdir -p "$PKG"/usr/bin +go build -o "$PKG"/usr/bin/ ./... + +rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la + +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 + +# the project doesn't have a man page so we borrow it from the Debian +# archive +mkdir -p $PKG/usr/man/man1 +cp $CWD/ffuf.1.gz $PKG/usr/man/man1 + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + ffufrc.example CHANGELOG.md CONTRIBUTORS.md LICENSE README.md \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/network/ffuf/ffuf.info b/network/ffuf/ffuf.info new file mode 100644 index 0000000..0481a3f --- /dev/null +++ b/network/ffuf/ffuf.info @@ -0,0 +1,10 @@ +PRGNAM="ffuf" +VERSION="2.2.1" +HOMEPAGE="https://github.com/ffuf/ffuf" +DOWNLOAD="UNSUPPORTED" +MD5SUM="" +DOWNLOAD_x86_64="https://github.com/ffuf/ffuf/archive/v2.2.1/ffuf-2.2.1.tar.gz" +MD5SUM_x86_64="19db31e0b69039b0d52e069b0a9f7d19" +REQUIRES="google-go-lang" +MAINTAINER="danix" +EMAIL="danix@danix.xyz" diff --git a/network/ffuf/slack-desc b/network/ffuf/slack-desc new file mode 100644 index 0000000..00bd369 --- /dev/null +++ b/network/ffuf/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +ffuf: ffuf (A fast web fuzzer written in Go.) +ffuf: +ffuf: ffuf < Fuzz Faster U Fool > is a fast web fuzzer written in Go. +ffuf: and it's released under MIT license. +ffuf: +ffuf: +ffuf: Home: https://github.com/ffuf/ffuf +ffuf: +ffuf: +ffuf: +ffuf: diff --git a/network/gobuster/README b/network/gobuster/README new file mode 100644 index 0000000..e8e3f48 --- /dev/null +++ b/network/gobuster/README @@ -0,0 +1,27 @@ +Gobuster is a high-performance directory/file, DNS and virtual host +brute-forcing tool written in Go. It's designed to be fast, +reliable, and easy to use for security professionals and +penetration testers. + +Features: + - High Performance: Multi-threaded scanning with configurable + concurrency + - Multiple Modes: Directory, DNS, virtual host, S3, GCS, TFTP, and + fuzzing modes + - Security Focused: Built for penetration testing and security + assessments + - Docker Support: Available as a Docker container + - Extensible: Pattern-based scanning and custom wordlists + +What Can Gobuster Do? + - Web Directory/File Enumeration: Discover hidden directories and + files on web servers + - DNS Subdomain Discovery: Find subdomains with wildcard support + - Virtual Host Detection: Identify virtual hosts on target web + servers + - Cloud Storage Enumeration: Discover open Amazon S3 and Google + Cloud Storage buckets + - TFTP File Discovery: Find files on TFTP servers + - Custom Fuzzing: Flexible fuzzing with customizable parameters + +This script requires network access during build. diff --git a/network/gobuster/gobuster.SlackBuild b/network/gobuster/gobuster.SlackBuild new file mode 100644 index 0000000..d66bcca --- /dev/null +++ b/network/gobuster/gobuster.SlackBuild @@ -0,0 +1,107 @@ +#!/bin/bash + +# Slackware build script for gobuster + +# Copyright <2026> <danix> <danix@danix.xyz> +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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 AUTHOR 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. + + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=gobuster +VERSION=${VERSION:-3.8.2} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +ARCH=x86_64 + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +export CGO_CPPFLAGS="$SLKCFLAGS" +export CGO_CFLAGS="$SLKCFLAGS" +export CGO_CXXFLAGS="$SLKCFLAGS" + +export GOPATH="$(pwd)/build" +export GOPROXY=https://proxy.golang.org,direct + +export GOFLAGS="-buildmode=pie -trimpath -mod=mod -modcacherw \ + -ldflags=-linkmode=external \ + -ldflags=-s \ + -ldflags=-w" + +mkdir -p build + +mkdir -p "$PKG"/usr/bin +go build -o "$PKG"/usr/bin/ ./... + +# Don't ship .la files: +rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la + +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 + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + LICENSE README.md \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/network/gobuster/gobuster.info b/network/gobuster/gobuster.info new file mode 100644 index 0000000..b759230 --- /dev/null +++ b/network/gobuster/gobuster.info @@ -0,0 +1,10 @@ +PRGNAM="gobuster" +VERSION="3.8.2" +HOMEPAGE="https://github.com/OJ/gobuster" +DOWNLOAD="UNSUPPORTED" +MD5SUM="" +DOWNLOAD_x86_64="https://github.com/OJ/gobuster/archive/v3.8.2/gobuster-3.8.2.tar.gz" +MD5SUM_x86_64="456f3772e47415e1927522bfe32d0388" +REQUIRES="google-go-lang" +MAINTAINER="danix" +EMAIL="danix@danix.xyz" diff --git a/network/gobuster/slack-desc b/network/gobuster/slack-desc new file mode 100644 index 0000000..81b9afc --- /dev/null +++ b/network/gobuster/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +gobuster: gobuster (A fast and flexible brute-forcing tool written in Go) +gobuster: +gobuster: Gobuster is a high-performance directory/file, DNS and virtual +gobuster: host brute-forcing tool written in Go. It's designed to be +gobuster: fast, reliable, and easy to use for security professionals and +gobuster: penetration testers. +gobuster: +gobuster: +gobuster: Home: https://github.com/OJ/gobuster +gobuster: +gobuster: diff --git a/network/metasploit-framework-bin/README b/network/metasploit-framework-bin/README new file mode 100644 index 0000000..fb0a25e --- /dev/null +++ b/network/metasploit-framework-bin/README @@ -0,0 +1,18 @@ +Metasploit Framework + +The world’s most used penetration testing framework + +Knowledge is power, especially when it’s shared. A collaboration +between the open source community and Rapid7, Metasploit helps +security teams do more than just verify vulnerabilities, manage +security assessments, and improve security awareness; + +it empowers and arms defenders to always stay one step (or two) +ahead of the game. + +This is a repackage of the official nightly build of the debian +package by Rapid7 + +Security note: the bundled payload and exploit binaries are shipped +executable, as Metasploit requires. They are delivery artifacts used +against remote targets, not programs meant to be run on the host. diff --git a/network/metasploit-framework-bin/README.SLACKWARE b/network/metasploit-framework-bin/README.SLACKWARE new file mode 100644 index 0000000..cabf2ed --- /dev/null +++ b/network/metasploit-framework-bin/README.SLACKWARE @@ -0,0 +1,15 @@ +Please run the SlackBuild script as root user. + +An optional cron script to keep the framework up to date is +distributed inside the /usr/doc/metasploit-framework-bin-${VERSION} directory and +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. 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/network/metasploit-framework-bin/metasploit-framework-bin.SlackBuild b/network/metasploit-framework-bin/metasploit-framework-bin.SlackBuild new file mode 100644 index 0000000..34c3f28 --- /dev/null +++ b/network/metasploit-framework-bin/metasploit-framework-bin.SlackBuild @@ -0,0 +1,109 @@ +#!/bin/bash + +# Slackware build script for metasploit-framework-bin + +# Copyright 2026 danix < danix@danix.xyz > +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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 AUTHOR 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. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=metasploit-framework-bin +SRCNAM=metasploit-framework +VERSION=${VERSION:-6.5.1} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +# 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 + ;; +esac + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $PKG + +ar p $CWD/${SRCNAM}_${VERSION}~*~1rapid7-1_$DEBARCH.deb data.tar.gz | tar xzv +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +# 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 + +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 +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 + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/network/metasploit-framework-bin/metasploit-framework-bin.info b/network/metasploit-framework-bin/metasploit-framework-bin.info new file mode 100644 index 0000000..53b0e7b --- /dev/null +++ b/network/metasploit-framework-bin/metasploit-framework-bin.info @@ -0,0 +1,10 @@ +PRGNAM="metasploit-framework-bin" +VERSION="6.5.1" +HOMEPAGE="https://www.metasploit.com/" +DOWNLOAD="https://apt.metasploit.com/pool/main/m/metasploit-framework/metasploit-framework_6.5.1~20260802055619~1rapid7-1_i386.deb" +MD5SUM="a6127e73d2cf19e0fa202d1c31a38738" +DOWNLOAD_x86_64="https://apt.metasploit.com/pool/main/m/metasploit-framework/metasploit-framework_6.5.1~20260802055644~1rapid7-1_amd64.deb" +MD5SUM_x86_64="7cf66e76da24d7faf892505fc2d5df3e" +REQUIRES="" +MAINTAINER="danix" +EMAIL="danix@danix.xyz" diff --git a/network/metasploit-framework-bin/msfconsole.1 b/network/metasploit-framework-bin/msfconsole.1 new file mode 100644 index 0000000..7720779 --- /dev/null +++ b/network/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/network/metasploit-framework-bin/msfvenom.1 b/network/metasploit-framework-bin/msfvenom.1 new file mode 100644 index 0000000..841f045 --- /dev/null +++ b/network/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. diff --git a/network/metasploit-framework-bin/msfvenom.bash-completion b/network/metasploit-framework-bin/msfvenom.bash-completion new file mode 100644 index 0000000..180a45b --- /dev/null +++ b/network/metasploit-framework-bin/msfvenom.bash-completion @@ -0,0 +1,44 @@ + +_msfvenom() { + COMPREPLY=() + local cur=$(_get_cword) + local prev=$(_get_pword) + + case $prev in + -l|--list) + COMPREPLY=( $( compgen -W ' payloads encoders nops platforms archs encrypt formats all ' -- "$cur" ) ) + return 0 + ;; + -f|--format) + COMPREPLY=( $( compgen -W ' asp aspx aspx-exe axis2 dll ducky-script-psh elf elf-so exe exe-only exe-service exe-small hta-psh jar jsp loop-vbs macho msi msi-nouac osx-app psh psh-cmd psh-net psh-reflection python-reflection vba vba-exe vba-psh vbs war base32 base64 bash c csharp dw dword go golang hex java js_be js_le masm nim nimlang num octal perl pl powershell ps1 py python raw rb ruby rust rustlang sh vbapplication vbscript zig ' -- "$cur" ) ) + return 0 + ;; + -e|--encoder) + COMPREPLY=( $( compgen -W ' cmd/base64 cmd/brace cmd/echo cmd/generic_sh cmd/ifs cmd/perl cmd/powershell_base64 cmd/printf_php_mq generic/eicar generic/none mipsbe/byte_xori mipsbe/longxor mipsle/byte_xori mipsle/longxor php/base64 php/hex php/minify ppc/longxor ppc/longxor_tag riscv32le/byte_xori riscv32le/longxor riscv32le/longxor_feedback riscv32le/longxor_tag riscv64le/byte_xori riscv64le/longxor riscv64le/longxor_feedback riscv64le/longxor_tag ruby/base64 sparc/longxor_tag x64/xor x64/xor_context x64/xor_dynamic x64/zutto_dekiru x86/add_sub x86/alpha_mixed x86/alpha_upper x86/avoid_underscore_tolower x86/avoid_utf8_tolower x86/bloxor x86/bmp_polyglot x86/call4_dword_xor x86/context_cpuid x86/context_stat x86/context_time x86/countdown x86/fnstenv_mov x86/jmp_call_additive x86/nonalpha x86/nonupper x86/opt_sub x86/service x86/shikata_ga_nai x86/single_static_bit x86/unicode_mixed x86/unicode_upper x86/xor_dynamic x86/xor_poly ' -- "$cur" ) ) + return 0 + ;; + -p|--payload) + COMPREPLY=( $( compgen -W ' aix/ppc/shell_bind_tcp aix/ppc/shell_find_port aix/ppc/shell_interact aix/ppc/shell_reverse_tcp android/meterpreter/reverse_http android/meterpreter/reverse_https android/meterpreter/reverse_tcp android/meterpreter_reverse_http android/meterpreter_reverse_https android/meterpreter_reverse_tcp android/shell/reverse_http android/shell/reverse_https android/shell/reverse_tcp apple_ios/aarch64/meterpreter_reverse_http apple_ios/aarch64/meterpreter_reverse_https apple_ios/aarch64/meterpreter_reverse_tcp apple_ios/aarch64/shell_reverse_tcp apple_ios/armle/meterpreter_reverse_http apple_ios/armle/meterpreter_reverse_https apple_ios/armle/meterpreter_reverse_tcp bsd/sparc/shell_bind_tcp bsd/sparc/shell_reverse_tcp bsd/vax/shell_reverse_tcp bsd/x64/exec bsd/x64/shell_bind_ipv6_tcp bsd/x64/shell_bind_tcp bsd/x64/shell_bind_tcp_small bsd/x64/shell_reverse_ipv6_tcp bsd/x64/shell_reverse_tcp bsd/x64/shell_reverse_tcp_small bsd/x86/exec bsd/x86/metsvc_bind_tcp bsd/x86/metsvc_reverse_tcp bsd/x86/shell/bind_ipv6_tcp bsd/x86/shell/bind_tcp bsd/x86/shell/find_tag bsd/x86/shell/reverse_ipv6_tcp bsd/x86/shell/reverse_tcp bsd/x86/shell_bind_tcp bsd/x86/shell_bind_tcp_ipv6 bsd/x86/shell_find_port bsd/x86/shell_find_tag bsd/x86/shell_reverse_tcp bsd/x86/shell_reverse_tcp_ipv6 bsdi/x86/shell/bind_tcp bsdi/x86/shell/reverse_tcp bsdi/x86/shell_bind_tcp bsdi/x86/shell_find_port bsdi/x86/shell_reverse_tcp cmd/linux/ftp/aarch64/chmod cmd/linux/ftp/aarch64/exec cmd/linux/ftp/aarch64/meterpreter/reverse_tcp cmd/linux/ftp/aarch64/meterpreter_reverse_http cmd/linux/ftp/aarch64/meterpreter_reverse_https cmd/linux/ftp/aarch64/meterpreter_reverse_tcp cmd/linux/ftp/aarch64/shell/reverse_tcp cmd/linux/ftp/aarch64/shell_reverse_tcp cmd/linux/ftp/armbe/meterpreter_reverse_http cmd/linux/ftp/armbe/meterpreter_reverse_https cmd/linux/ftp/armbe/meterpreter_reverse_tcp cmd/linux/ftp/armbe/shell_bind_tcp cmd/linux/ftp/armle/adduser cmd/linux/ftp/armle/chmod cmd/linux/ftp/armle/exec cmd/linux/ftp/armle/meterpreter/bind_tcp cmd/linux/ftp/armle/meterpreter/reverse_tcp cmd/linux/ftp/armle/meterpreter_reverse_http cmd/linux/ftp/armle/meterpreter_reverse_https cmd/linux/ftp/armle/meterpreter_reverse_tcp cmd/linux/ftp/armle/shell/bind_tcp cmd/linux/ftp/armle/shell/reverse_tcp cmd/linux/ftp/armle/shell_bind_tcp cmd/linux/ftp/armle/shell_reverse_tcp cmd/linux/ftp/mips64/meterpreter_reverse_http cmd/linux/ftp/mips64/meterpreter_reverse_https cmd/linux/ftp/mips64/meterpreter_reverse_tcp cmd/linux/ftp/mipsbe/exec cmd/linux/ftp/mipsbe/meterpreter/reverse_tcp cmd/linux/ftp/mipsbe/meterpreter_reverse_http cmd/linux/ftp/mipsbe/meterpreter_reverse_https cmd/linux/ftp/mipsbe/meterpreter_reverse_tcp cmd/linux/ftp/mipsbe/reboot cmd/linux/ftp/mipsbe/shell/reverse_tcp cmd/linux/ftp/mipsbe/shell_bind_tcp cmd/linux/ftp/mipsbe/shell_reverse_tcp cmd/linux/ftp/mipsle/exec cmd/linux/ftp/mipsle/meterpreter/reverse_tcp cmd/linux/ftp/mipsle/meterpreter_reverse_http cmd/linux/ftp/mipsle/meterpreter_reverse_https cmd/linux/ftp/mipsle/meterpreter_reverse_tcp cmd/linux/ftp/mipsle/reboot cmd/linux/ftp/mipsle/shell/reverse_tcp cmd/linux/ftp/mipsle/shell_bind_tcp cmd/linux/ftp/mipsle/shell_reverse_tcp cmd/linux/ftp/ppc/shell_bind_tcp cmd/linux/ftp/ppc/shell_find_port cmd/linux/ftp/ppc/shell_reverse_tcp cmd/linux/ftp/ppc64/shell_bind_tcp cmd/linux/ftp/ppc64/shell_find_port cmd/linux/ftp/ppc64/shell_reverse_tcp cmd/linux/ftp/riscv32le/chmod cmd/linux/ftp/riscv32le/exec cmd/linux/ftp/riscv32le/reboot cmd/linux/ftp/riscv32le/shell/bind_tcp cmd/linux/ftp/riscv32le/shell/reverse_tcp cmd/linux/ftp/riscv32le/shell_bind_tcp cmd/linux/ftp/riscv32le/shell_reverse_tcp cmd/linux/ftp/riscv64le/chmod cmd/linux/ftp/riscv64le/exec cmd/linux/ftp/riscv64le/reboot cmd/linux/ftp/riscv64le/shell/bind_tcp cmd/linux/ftp/riscv64le/shell/reverse_tcp cmd/linux/ftp/riscv64le/shell_bind_tcp cmd/linux/ftp/riscv64le/shell_reverse_tcp cmd/linux/ftp/x64/exec cmd/linux/ftp/x64/meterpreter/bind_tcp cmd/linux/ftp/x64/meterpreter/reverse_sctp cmd/linux/ftp/x64/meterpreter/reverse_tcp cmd/linux/ftp/x64/meterpreter_reverse_http cmd/linux/ftp/x64/meterpreter_reverse_https cmd/linux/ftp/x64/meterpreter_reverse_tcp cmd/linux/ftp/x64/pingback_bind_tcp cmd/linux/ftp/x64/pingback_reverse_tcp cmd/linux/ftp/x64/set_hostname cmd/linux/ftp/x64/shell/bind_tcp cmd/linux/ftp/x64/shell/reverse_sctp cmd/linux/ftp/x64/shell/reverse_tcp cmd/linux/ftp/x64/shell_bind_ipv6_tcp cmd/linux/ftp/x64/shell_bind_tcp cmd/linux/ftp/x64/shell_bind_tcp_random_port cmd/linux/ftp/x64/shell_find_port cmd/linux/ftp/x64/shell_reverse_ipv6_tcp cmd/linux/ftp/x64/shell_reverse_tcp cmd/linux/ftp/x86/adduser cmd/linux/ftp/x86/chmod cmd/linux/ftp/x86/exec cmd/linux/ftp/x86/generic/debug_trap cmd/linux/ftp/x86/generic/tight_loop cmd/linux/ftp/x86/meterpreter/bind_ipv6_tcp cmd/linux/ftp/x86/meterpreter/bind_ipv6_tcp_uuid cmd/linux/ftp/x86/meterpreter/bind_nonx_tcp cmd/linux/ftp/x86/meterpreter/bind_tcp cmd/linux/ftp/x86/meterpreter/bind_tcp_uuid cmd/linux/ftp/x86/meterpreter/find_tag cmd/linux/ftp/x86/meterpreter/reverse_ipv6_tcp cmd/linux/ftp/x86/meterpreter/reverse_nonx_tcp cmd/linux/ftp/x86/meterpreter/reverse_tcp cmd/linux/ftp/x86/meterpreter/reverse_tcp_uuid cmd/linux/ftp/x86/meterpreter_reverse_http cmd/linux/ftp/x86/meterpreter_reverse_https cmd/linux/ftp/x86/meterpreter_reverse_tcp cmd/linux/ftp/x86/metsvc_bind_tcp cmd/linux/ftp/x86/metsvc_reverse_tcp cmd/linux/ftp/x86/read_file cmd/linux/ftp/x86/shell/bind_ipv6_tcp cmd/linux/ftp/x86/shell/bind_ipv6_tcp_uuid cmd/linux/ftp/x86/shell/bind_nonx_tcp cmd/linux/ftp/x86/shell/bind_tcp cmd/linux/ftp/x86/shell/bind_tcp_uuid cmd/linux/ftp/x86/shell/find_tag cmd/linux/ftp/x86/shell/reverse_ipv6_tcp cmd/linux/ftp/x86/shell/reverse_nonx_tcp cmd/linux/ftp/x86/shell/reverse_tcp cmd/linux/ftp/x86/shell/reverse_tcp_uuid cmd/linux/ftp/x86/shell_bind_ipv6_tcp cmd/linux/ftp/x86/shell_bind_tcp cmd/linux/ftp/x86/shell_bind_tcp_random_port cmd/linux/ftp/x86/shell_find_port cmd/linux/ftp/x86/shell_find_tag cmd/linux/ftp/x86/shell_reverse_tcp cmd/linux/ftp/x86/shell_reverse_tcp_ipv6 cmd/linux/http/aarch64/chmod cmd/linux/http/aarch64/exec cmd/linux/http/aarch64/meterpreter/reverse_tcp cmd/linux/http/aarch64/meterpreter_reverse_http cmd/linux/http/aarch64/meterpreter_reverse_https cmd/linux/http/aarch64/meterpreter_reverse_tcp cmd/linux/http/aarch64/shell/reverse_tcp cmd/linux/http/aarch64/shell_reverse_tcp cmd/linux/http/armbe/meterpreter_reverse_http cmd/linux/http/armbe/meterpreter_reverse_https cmd/linux/http/armbe/meterpreter_reverse_tcp cmd/linux/http/armbe/shell_bind_tcp cmd/linux/http/armle/adduser cmd/linux/http/armle/chmod cmd/linux/http/armle/exec cmd/linux/http/armle/meterpreter/bind_tcp cmd/linux/http/armle/meterpreter/reverse_tcp cmd/linux/http/armle/meterpreter_reverse_http cmd/linux/http/armle/meterpreter_reverse_https cmd/linux/http/armle/meterpreter_reverse_tcp cmd/linux/http/armle/shell/bind_tcp cmd/linux/http/armle/shell/reverse_tcp cmd/linux/http/armle/shell_bind_tcp cmd/linux/http/armle/shell_reverse_tcp cmd/linux/http/mips64/meterpreter_reverse_http cmd/linux/http/mips64/meterpreter_reverse_https cmd/linux/http/mips64/meterpreter_reverse_tcp cmd/linux/http/mipsbe/exec cmd/linux/http/mipsbe/meterpreter/reverse_tcp cmd/linux/http/mipsbe/meterpreter_reverse_http cmd/linux/http/mipsbe/meterpreter_reverse_https cmd/linux/http/mipsbe/meterpreter_reverse_tcp cmd/linux/http/mipsbe/reboot cmd/linux/http/mipsbe/shell/reverse_tcp cmd/linux/http/mipsbe/shell_bind_tcp cmd/linux/http/mipsbe/shell_reverse_tcp cmd/linux/http/mipsle/exec cmd/linux/http/mipsle/meterpreter/reverse_tcp cmd/linux/http/mipsle/meterpreter_reverse_http cmd/linux/http/mipsle/meterpreter_reverse_https cmd/linux/http/mipsle/meterpreter_reverse_tcp cmd/linux/http/mipsle/reboot cmd/linux/http/mipsle/shell/reverse_tcp cmd/linux/http/mipsle/shell_bind_tcp cmd/linux/http/mipsle/shell_reverse_tcp cmd/linux/http/multi/meterpreter_reverse_tcp cmd/linux/http/ppc/shell_bind_tcp cmd/linux/http/ppc/shell_find_port cmd/linux/http/ppc/shell_reverse_tcp cmd/linux/http/ppc64/shell_bind_tcp cmd/linux/http/ppc64/shell_find_port cmd/linux/http/ppc64/shell_reverse_tcp cmd/linux/http/riscv32le/chmod cmd/linux/http/riscv32le/exec cmd/linux/http/riscv32le/reboot cmd/linux/http/riscv32le/shell/bind_tcp cmd/linux/http/riscv32le/shell/reverse_tcp cmd/linux/http/riscv32le/shell_bind_tcp cmd/linux/http/riscv32le/shell_reverse_tcp cmd/linux/http/riscv64le/chmod cmd/linux/http/riscv64le/exec cmd/linux/http/riscv64le/reboot cmd/linux/http/riscv64le/shell/bind_tcp cmd/linux/http/riscv64le/shell/reverse_tcp cmd/linux/http/riscv64le/shell_bind_tcp cmd/linux/http/riscv64le/shell_reverse_tcp cmd/linux/http/x64/exec cmd/linux/http/x64/meterpreter/bind_tcp cmd/linux/http/x64/meterpreter/reverse_sctp cmd/linux/http/x64/meterpreter/reverse_tcp cmd/linux/http/x64/meterpreter_reverse_http cmd/linux/http/x64/meterpreter_reverse_https cmd/linux/http/x64/meterpreter_reverse_tcp cmd/linux/http/x64/pingback_bind_tcp cmd/linux/http/x64/pingback_reverse_tcp cmd/linux/http/x64/set_hostname cmd/linux/http/x64/shell/bind_tcp cmd/linux/http/x64/shell/reverse_sctp cmd/linux/http/x64/shell/reverse_tcp cmd/linux/http/x64/shell_bind_ipv6_tcp cmd/linux/http/x64/shell_bind_tcp cmd/linux/http/x64/shell_bind_tcp_random_port cmd/linux/http/x64/shell_find_port cmd/linux/http/x64/shell_reverse_ipv6_tcp cmd/linux/http/x64/shell_reverse_tcp cmd/linux/http/x86/adduser cmd/linux/http/x86/chmod cmd/linux/http/x86/exec cmd/linux/http/x86/generic/debug_trap cmd/linux/http/x86/generic/tight_loop cmd/linux/http/x86/meterpreter/bind_ipv6_tcp cmd/linux/http/x86/meterpreter/bind_ipv6_tcp_uuid cmd/linux/http/x86/meterpreter/bind_nonx_tcp cmd/linux/http/x86/meterpreter/bind_tcp cmd/linux/http/x86/meterpreter/bind_tcp_uuid cmd/linux/http/x86/meterpreter/find_tag cmd/linux/http/x86/meterpreter/reverse_ipv6_tcp cmd/linux/http/x86/meterpreter/reverse_nonx_tcp cmd/linux/http/x86/meterpreter/reverse_tcp cmd/linux/http/x86/meterpreter/reverse_tcp_uuid cmd/linux/http/x86/meterpreter_reverse_http cmd/linux/http/x86/meterpreter_reverse_https cmd/linux/http/x86/meterpreter_reverse_tcp cmd/linux/http/x86/metsvc_bind_tcp cmd/linux/http/x86/metsvc_reverse_tcp cmd/linux/http/x86/read_file cmd/linux/http/x86/shell/bind_ipv6_tcp cmd/linux/http/x86/shell/bind_ipv6_tcp_uuid cmd/linux/http/x86/shell/bind_nonx_tcp cmd/linux/http/x86/shell/bind_tcp cmd/linux/http/x86/shell/bind_tcp_uuid cmd/linux/http/x86/shell/find_tag cmd/linux/http/x86/shell/reverse_ipv6_tcp cmd/linux/http/x86/shell/reverse_nonx_tcp cmd/linux/http/x86/shell/reverse_tcp cmd/linux/http/x86/shell/reverse_tcp_uuid cmd/linux/http/x86/shell_bind_ipv6_tcp cmd/linux/http/x86/shell_bind_tcp cmd/linux/http/x86/shell_bind_tcp_random_port cmd/linux/http/x86/shell_find_port cmd/linux/http/x86/shell_find_tag cmd/linux/http/x86/shell_reverse_tcp cmd/linux/http/x86/shell_reverse_tcp_ipv6 cmd/linux/https/aarch64/chmod cmd/linux/https/aarch64/exec cmd/linux/https/aarch64/meterpreter/reverse_tcp cmd/linux/https/aarch64/meterpreter_reverse_http cmd/linux/https/aarch64/meterpreter_reverse_https cmd/linux/https/aarch64/meterpreter_reverse_tcp cmd/linux/https/aarch64/shell/reverse_tcp cmd/linux/https/aarch64/shell_reverse_tcp cmd/linux/https/armbe/meterpreter_reverse_http cmd/linux/https/armbe/meterpreter_reverse_https cmd/linux/https/armbe/meterpreter_reverse_tcp cmd/linux/https/armbe/shell_bind_tcp cmd/linux/https/armle/adduser cmd/linux/https/armle/chmod cmd/linux/https/armle/exec cmd/linux/https/armle/meterpreter/bind_tcp cmd/linux/https/armle/meterpreter/reverse_tcp cmd/linux/https/armle/meterpreter_reverse_http cmd/linux/https/armle/meterpreter_reverse_https cmd/linux/https/armle/meterpreter_reverse_tcp cmd/linux/https/armle/shell/bind_tcp cmd/linux/https/armle/shell/reverse_tcp cmd/linux/https/armle/shell_bind_tcp cmd/linux/https/armle/shell_reverse_tcp cmd/linux/https/mips64/meterpreter_reverse_http cmd/linux/https/mips64/meterpreter_reverse_https cmd/linux/https/mips64/meterpreter_reverse_tcp cmd/linux/https/mipsbe/exec cmd/linux/https/mipsbe/meterpreter/reverse_tcp cmd/linux/https/mipsbe/meterpreter_reverse_http cmd/linux/https/mipsbe/meterpreter_reverse_https cmd/linux/https/mipsbe/meterpreter_reverse_tcp cmd/linux/https/mipsbe/reboot cmd/linux/https/mipsbe/shell/reverse_tcp cmd/linux/https/mipsbe/shell_bind_tcp cmd/linux/https/mipsbe/shell_reverse_tcp cmd/linux/https/mipsle/exec cmd/linux/https/mipsle/meterpreter/reverse_tcp cmd/linux/https/mipsle/meterpreter_reverse_http cmd/linux/https/mipsle/meterpreter_reverse_https cmd/linux/https/mipsle/meterpreter_reverse_tcp cmd/linux/https/mipsle/reboot cmd/linux/https/mipsle/shell/reverse_tcp cmd/linux/https/mipsle/shell_bind_tcp cmd/linux/https/mipsle/shell_reverse_tcp cmd/linux/https/multi/meterpreter_reverse_tcp cmd/linux/https/ppc/shell_bind_tcp cmd/linux/https/ppc/shell_find_port cmd/linux/https/ppc/shell_reverse_tcp cmd/linux/https/ppc64/shell_bind_tcp cmd/linux/https/ppc64/shell_find_port cmd/linux/https/ppc64/shell_reverse_tcp cmd/linux/https/riscv32le/chmod cmd/linux/https/riscv32le/exec cmd/linux/https/riscv32le/reboot cmd/linux/https/riscv32le/shell/bind_tcp cmd/linux/https/riscv32le/shell/reverse_tcp cmd/linux/https/riscv32le/shell_bind_tcp cmd/linux/https/riscv32le/shell_reverse_tcp cmd/linux/https/riscv64le/chmod cmd/linux/https/riscv64le/exec cmd/linux/https/riscv64le/reboot cmd/linux/https/riscv64le/shell/bind_tcp cmd/linux/https/riscv64le/shell/reverse_tcp cmd/linux/https/riscv64le/shell_bind_tcp cmd/linux/https/riscv64le/shell_reverse_tcp cmd/linux/https/x64/exec cmd/linux/https/x64/meterpreter/bind_tcp cmd/linux/https/x64/meterpreter/reverse_sctp cmd/linux/https/x64/meterpreter/reverse_tcp cmd/linux/https/x64/meterpreter_reverse_http cmd/linux/https/x64/meterpreter_reverse_https cmd/linux/https/x64/meterpreter_reverse_tcp cmd/linux/https/x64/pingback_bind_tcp cmd/linux/https/x64/pingback_reverse_tcp cmd/linux/https/x64/set_hostname cmd/linux/https/x64/shell/bind_tcp cmd/linux/https/x64/shell/reverse_sctp cmd/linux/https/x64/shell/reverse_tcp cmd/linux/https/x64/shell_bind_ipv6_tcp cmd/linux/https/x64/shell_bind_tcp cmd/linux/https/x64/shell_bind_tcp_random_port cmd/linux/https/x64/shell_find_port cmd/linux/https/x64/shell_reverse_ipv6_tcp cmd/linux/https/x64/shell_reverse_tcp cmd/linux/https/x86/adduser cmd/linux/https/x86/chmod cmd/linux/https/x86/exec cmd/linux/https/x86/generic/debug_trap cmd/linux/https/x86/generic/tight_loop cmd/linux/https/x86/meterpreter/bind_ipv6_tcp cmd/linux/https/x86/meterpreter/bind_ipv6_tcp_uuid cmd/linux/https/x86/meterpreter/bind_nonx_tcp cmd/linux/https/x86/meterpreter/bind_tcp cmd/linux/https/x86/meterpreter/bind_tcp_uuid cmd/linux/https/x86/meterpreter/find_tag cmd/linux/https/x86/meterpreter/reverse_ipv6_tcp cmd/linux/https/x86/meterpreter/reverse_nonx_tcp cmd/linux/https/x86/meterpreter/reverse_tcp cmd/linux/https/x86/meterpreter/reverse_tcp_uuid cmd/linux/https/x86/meterpreter_reverse_http cmd/linux/https/x86/meterpreter_reverse_https cmd/linux/https/x86/meterpreter_reverse_tcp cmd/linux/https/x86/metsvc_bind_tcp cmd/linux/https/x86/metsvc_reverse_tcp cmd/linux/https/x86/read_file cmd/linux/https/x86/shell/bind_ipv6_tcp cmd/linux/https/x86/shell/bind_ipv6_tcp_uuid cmd/linux/https/x86/shell/bind_nonx_tcp cmd/linux/https/x86/shell/bind_tcp cmd/linux/https/x86/shell/bind_tcp_uuid cmd/linux/https/x86/shell/find_tag cmd/linux/https/x86/shell/reverse_ipv6_tcp cmd/linux/https/x86/shell/reverse_nonx_tcp cmd/linux/https/x86/shell/reverse_tcp cmd/linux/https/x86/shell/reverse_tcp_uuid cmd/linux/https/x86/shell_bind_ipv6_tcp cmd/linux/https/x86/shell_bind_tcp cmd/linux/https/x86/shell_bind_tcp_random_port cmd/linux/https/x86/shell_find_port cmd/linux/https/x86/shell_find_tag cmd/linux/https/x86/shell_reverse_tcp cmd/linux/https/x86/shell_reverse_tcp_ipv6 cmd/linux/tftp/aarch64/chmod cmd/linux/tftp/aarch64/exec cmd/linux/tftp/aarch64/meterpreter/reverse_tcp cmd/linux/tftp/aarch64/meterpreter_reverse_http cmd/linux/tftp/aarch64/meterpreter_reverse_https cmd/linux/tftp/aarch64/meterpreter_reverse_tcp cmd/linux/tftp/aarch64/shell/reverse_tcp cmd/linux/tftp/aarch64/shell_reverse_tcp cmd/linux/tftp/armbe/meterpreter_reverse_http cmd/linux/tftp/armbe/meterpreter_reverse_https cmd/linux/tftp/armbe/meterpreter_reverse_tcp cmd/linux/tftp/armbe/shell_bind_tcp cmd/linux/tftp/armle/adduser cmd/linux/tftp/armle/chmod cmd/linux/tftp/armle/exec cmd/linux/tftp/armle/meterpreter/bind_tcp cmd/linux/tftp/armle/meterpreter/reverse_tcp cmd/linux/tftp/armle/meterpreter_reverse_http cmd/linux/tftp/armle/meterpreter_reverse_https cmd/linux/tftp/armle/meterpreter_reverse_tcp cmd/linux/tftp/armle/shell/bind_tcp cmd/linux/tftp/armle/shell/reverse_tcp cmd/linux/tftp/armle/shell_bind_tcp cmd/linux/tftp/armle/shell_reverse_tcp cmd/linux/tftp/mips64/meterpreter_reverse_http cmd/linux/tftp/mips64/meterpreter_reverse_https cmd/linux/tftp/mips64/meterpreter_reverse_tcp cmd/linux/tftp/mipsbe/exec cmd/linux/tftp/mipsbe/meterpreter/reverse_tcp cmd/linux/tftp/mipsbe/meterpreter_reverse_http cmd/linux/tftp/mipsbe/meterpreter_reverse_https cmd/linux/tftp/mipsbe/meterpreter_reverse_tcp cmd/linux/tftp/mipsbe/reboot cmd/linux/tftp/mipsbe/shell/reverse_tcp cmd/linux/tftp/mipsbe/shell_bind_tcp cmd/linux/tftp/mipsbe/shell_reverse_tcp cmd/linux/tftp/mipsle/exec cmd/linux/tftp/mipsle/meterpreter/reverse_tcp cmd/linux/tftp/mipsle/meterpreter_reverse_http cmd/linux/tftp/mipsle/meterpreter_reverse_https cmd/linux/tftp/mipsle/meterpreter_reverse_tcp cmd/linux/tftp/mipsle/reboot cmd/linux/tftp/mipsle/shell/reverse_tcp cmd/linux/tftp/mipsle/shell_bind_tcp cmd/linux/tftp/mipsle/shell_reverse_tcp cmd/linux/tftp/ppc/shell_bind_tcp cmd/linux/tftp/ppc/shell_find_port cmd/linux/tftp/ppc/shell_reverse_tcp cmd/linux/tftp/ppc64/shell_bind_tcp cmd/linux/tftp/ppc64/shell_find_port cmd/linux/tftp/ppc64/shell_reverse_tcp cmd/linux/tftp/riscv32le/chmod cmd/linux/tftp/riscv32le/exec cmd/linux/tftp/riscv32le/reboot cmd/linux/tftp/riscv32le/shell/bind_tcp cmd/linux/tftp/riscv32le/shell/reverse_tcp cmd/linux/tftp/riscv32le/shell_bind_tcp cmd/linux/tftp/riscv32le/shell_reverse_tcp cmd/linux/tftp/riscv64le/chmod cmd/linux/tftp/riscv64le/exec cmd/linux/tftp/riscv64le/reboot cmd/linux/tftp/riscv64le/shell/bind_tcp cmd/linux/tftp/riscv64le/shell/reverse_tcp cmd/linux/tftp/riscv64le/shell_bind_tcp cmd/linux/tftp/riscv64le/shell_reverse_tcp cmd/linux/tftp/x64/exec cmd/linux/tftp/x64/meterpreter/bind_tcp cmd/linux/tftp/x64/meterpreter/reverse_sctp cmd/linux/tftp/x64/meterpreter/reverse_tcp cmd/linux/tftp/x64/meterpreter_reverse_http cmd/linux/tftp/x64/meterpreter_reverse_https cmd/linux/tftp/x64/meterpreter_reverse_tcp cmd/linux/tftp/x64/pingback_bind_tcp cmd/linux/tftp/x64/pingback_reverse_tcp cmd/linux/tftp/x64/set_hostname cmd/linux/tftp/x64/shell/bind_tcp cmd/linux/tftp/x64/shell/reverse_sctp cmd/linux/tftp/x64/shell/reverse_tcp cmd/linux/tftp/x64/shell_bind_ipv6_tcp cmd/linux/tftp/x64/shell_bind_tcp cmd/linux/tftp/x64/shell_bind_tcp_random_port cmd/linux/tftp/x64/shell_find_port cmd/linux/tftp/x64/shell_reverse_ipv6_tcp cmd/linux/tftp/x64/shell_reverse_tcp cmd/linux/tftp/x86/adduser cmd/linux/tftp/x86/chmod cmd/linux/tftp/x86/exec cmd/linux/tftp/x86/generic/debug_trap cmd/linux/tftp/x86/generic/tight_loop cmd/linux/tftp/x86/meterpreter/bind_ipv6_tcp cmd/linux/tftp/x86/meterpreter/bind_ipv6_tcp_uuid cmd/linux/tftp/x86/meterpreter/bind_nonx_tcp cmd/linux/tftp/x86/meterpreter/bind_tcp cmd/linux/tftp/x86/meterpreter/bind_tcp_uuid cmd/linux/tftp/x86/meterpreter/find_tag cmd/linux/tftp/x86/meterpreter/reverse_ipv6_tcp cmd/linux/tftp/x86/meterpreter/reverse_nonx_tcp cmd/linux/tftp/x86/meterpreter/reverse_tcp cmd/linux/tftp/x86/meterpreter/reverse_tcp_uuid cmd/linux/tftp/x86/meterpreter_reverse_http cmd/linux/tftp/x86/meterpreter_reverse_https cmd/linux/tftp/x86/meterpreter_reverse_tcp cmd/linux/tftp/x86/metsvc_bind_tcp cmd/linux/tftp/x86/metsvc_reverse_tcp cmd/linux/tftp/x86/read_file cmd/linux/tftp/x86/shell/bind_ipv6_tcp cmd/linux/tftp/x86/shell/bind_ipv6_tcp_uuid cmd/linux/tftp/x86/shell/bind_nonx_tcp cmd/linux/tftp/x86/shell/bind_tcp cmd/linux/tftp/x86/shell/bind_tcp_uuid cmd/linux/tftp/x86/shell/find_tag cmd/linux/tftp/x86/shell/reverse_ipv6_tcp cmd/linux/tftp/x86/shell/reverse_nonx_tcp cmd/linux/tftp/x86/shell/reverse_tcp cmd/linux/tftp/x86/shell/reverse_tcp_uuid cmd/linux/tftp/x86/shell_bind_ipv6_tcp cmd/linux/tftp/x86/shell_bind_tcp cmd/linux/tftp/x86/shell_bind_tcp_random_port cmd/linux/tftp/x86/shell_find_port cmd/linux/tftp/x86/shell_find_tag cmd/linux/tftp/x86/shell_reverse_tcp cmd/linux/tftp/x86/shell_reverse_tcp_ipv6 cmd/mainframe/apf_privesc_jcl cmd/mainframe/bind_shell_jcl cmd/mainframe/generic_jcl cmd/mainframe/reverse_shell_jcl cmd/unix/adduser cmd/unix/bind_awk cmd/unix/bind_aws_instance_connect cmd/unix/bind_busybox_telnetd cmd/unix/bind_inetd cmd/unix/bind_jjs cmd/unix/bind_lua cmd/unix/bind_netcat cmd/unix/bind_netcat_gaping cmd/unix/bind_netcat_gaping_ipv6 cmd/unix/bind_nodejs cmd/unix/bind_perl cmd/unix/bind_perl_ipv6 cmd/unix/bind_r cmd/unix/bind_ruby cmd/unix/bind_ruby_ipv6 cmd/unix/bind_socat_sctp cmd/unix/bind_socat_tcp cmd/unix/bind_socat_udp cmd/unix/bind_stub cmd/unix/bind_zsh cmd/unix/generic cmd/unix/interact cmd/unix/php/bind_php cmd/unix/php/bind_php_ipv6 cmd/unix/php/download_exec cmd/unix/php/exec cmd/unix/php/meterpreter/bind_tcp cmd/unix/php/meterpreter/bind_tcp_ipv6 cmd/unix/php/meterpreter/bind_tcp_ipv6_uuid cmd/unix/php/meterpreter/bind_tcp_uuid cmd/unix/php/meterpreter/reverse_http cmd/unix/php/meterpreter/reverse_https cmd/unix/php/meterpreter/reverse_tcp cmd/unix/php/meterpreter/reverse_tcp_uuid cmd/unix/php/meterpreter_reverse_http cmd/unix/php/meterpreter_reverse_https cmd/unix/php/meterpreter_reverse_tcp cmd/unix/php/reverse_php cmd/unix/php/shell_findsock cmd/unix/pingback_bind cmd/unix/pingback_reverse cmd/unix/python/exec cmd/unix/python/meterpreter/bind_tcp cmd/unix/python/meterpreter/bind_tcp_uuid cmd/unix/python/meterpreter/reverse_http cmd/unix/python/meterpreter/reverse_https cmd/unix/python/meterpreter/reverse_tcp cmd/unix/python/meterpreter/reverse_tcp_ssl cmd/unix/python/meterpreter/reverse_tcp_uuid cmd/unix/python/meterpreter_bind_tcp cmd/unix/python/meterpreter_reverse_http cmd/unix/python/meterpreter_reverse_https cmd/unix/python/meterpreter_reverse_tcp cmd/unix/python/pingback_bind_tcp cmd/unix/python/pingback_reverse_tcp cmd/unix/python/shell_bind_tcp cmd/unix/python/shell_reverse_sctp cmd/unix/python/shell_reverse_tcp cmd/unix/python/shell_reverse_tcp_ssl cmd/unix/python/shell_reverse_udp cmd/unix/reverse cmd/unix/reverse_awk cmd/unix/reverse_bash cmd/unix/reverse_bash_telnet_ssl cmd/unix/reverse_bash_udp cmd/unix/reverse_jjs cmd/unix/reverse_ksh cmd/unix/reverse_lua cmd/unix/reverse_ncat_ssl cmd/unix/reverse_netcat cmd/unix/reverse_netcat_gaping cmd/unix/reverse_nodejs cmd/unix/reverse_openssl cmd/unix/reverse_perl cmd/unix/reverse_perl_ssl cmd/unix/reverse_php_ssl cmd/unix/reverse_python cmd/unix/reverse_python_ssl cmd/unix/reverse_r cmd/unix/reverse_ruby cmd/unix/reverse_ruby_ssl cmd/unix/reverse_socat_sctp cmd/unix/reverse_socat_tcp cmd/unix/reverse_socat_udp cmd/unix/reverse_ssh cmd/unix/reverse_ssl_double_telnet cmd/unix/reverse_stub cmd/unix/reverse_tclsh cmd/unix/reverse_zsh cmd/windows/adduser cmd/windows/bind_lua cmd/windows/bind_perl cmd/windows/bind_perl_ipv6 cmd/windows/bind_ruby cmd/windows/download_eval_vbs cmd/windows/download_exec_vbs cmd/windows/ftp/x64/custom/bind_ipv6_tcp cmd/windows/ftp/x64/custom/bind_ipv6_tcp_uuid cmd/windows/ftp/x64/custom/bind_named_pipe cmd/windows/ftp/x64/custom/bind_tcp cmd/windows/ftp/x64/custom/bind_tcp_rc4 cmd/windows/ftp/x64/custom/bind_tcp_uuid cmd/windows/ftp/x64/custom/reverse_http cmd/windows/ftp/x64/custom/reverse_https cmd/windows/ftp/x64/custom/reverse_named_pipe cmd/windows/ftp/x64/custom/reverse_tcp cmd/windows/ftp/x64/custom/reverse_tcp_rc4 cmd/windows/ftp/x64/custom/reverse_tcp_uuid cmd/windows/ftp/x64/custom/reverse_winhttp cmd/windows/ftp/x64/custom/reverse_winhttps cmd/windows/ftp/x64/download_exec cmd/windows/ftp/x64/exec cmd/windows/ftp/x64/loadlibrary cmd/windows/ftp/x64/messagebox cmd/windows/ftp/x64/meterpreter/bind_ipv6_tcp cmd/windows/ftp/x64/meterpreter/bind_ipv6_tcp_uuid cmd/windows/ftp/x64/meterpreter/bind_named_pipe cmd/windows/ftp/x64/meterpreter/bind_tcp cmd/windows/ftp/x64/meterpreter/bind_tcp_rc4 cmd/windows/ftp/x64/meterpreter/bind_tcp_uuid cmd/windows/ftp/x64/meterpreter/reverse_http cmd/windows/ftp/x64/meterpreter/reverse_https cmd/windows/ftp/x64/meterpreter/reverse_named_pipe cmd/windows/ftp/x64/meterpreter/reverse_tcp cmd/windows/ftp/x64/meterpreter/reverse_tcp_rc4 cmd/windows/ftp/x64/meterpreter/reverse_tcp_uuid cmd/windows/ftp/x64/meterpreter/reverse_winhttp cmd/windows/ftp/x64/meterpreter/reverse_winhttps cmd/windows/ftp/x64/meterpreter_bind_named_pipe cmd/windows/ftp/x64/meterpreter_bind_tcp cmd/windows/ftp/x64/meterpreter_reverse_http cmd/windows/ftp/x64/meterpreter_reverse_https cmd/windows/ftp/x64/meterpreter_reverse_ipv6_tcp cmd/windows/ftp/x64/meterpreter_reverse_tcp cmd/windows/ftp/x64/peinject/bind_ipv6_tcp cmd/windows/ftp/x64/peinject/bind_ipv6_tcp_uuid cmd/windows/ftp/x64/peinject/bind_named_pipe cmd/windows/ftp/x64/peinject/bind_tcp cmd/windows/ftp/x64/peinject/bind_tcp_rc4 cmd/windows/ftp/x64/peinject/bind_tcp_uuid cmd/windows/ftp/x64/peinject/reverse_named_pipe cmd/windows/ftp/x64/peinject/reverse_tcp cmd/windows/ftp/x64/peinject/reverse_tcp_rc4 cmd/windows/ftp/x64/peinject/reverse_tcp_uuid cmd/windows/ftp/x64/pingback_reverse_tcp cmd/windows/ftp/x64/powershell_bind_tcp cmd/windows/ftp/x64/powershell_reverse_tcp cmd/windows/ftp/x64/powershell_reverse_tcp_ssl cmd/windows/ftp/x64/shell/bind_ipv6_tcp cmd/windows/ftp/x64/shell/bind_ipv6_tcp_uuid cmd/windows/ftp/x64/shell/bind_named_pipe cmd/windows/ftp/x64/shell/bind_tcp cmd/windows/ftp/x64/shell/bind_tcp_rc4 cmd/windows/ftp/x64/shell/bind_tcp_uuid cmd/windows/ftp/x64/shell/reverse_tcp cmd/windows/ftp/x64/shell/reverse_tcp_rc4 cmd/windows/ftp/x64/shell/reverse_tcp_uuid cmd/windows/ftp/x64/shell_bind_tcp cmd/windows/ftp/x64/shell_reverse_tcp cmd/windows/ftp/x64/vncinject/bind_ipv6_tcp cmd/windows/ftp/x64/vncinject/bind_ipv6_tcp_uuid cmd/windows/ftp/x64/vncinject/bind_named_pipe cmd/windows/ftp/x64/vncinject/bind_tcp cmd/windows/ftp/x64/vncinject/bind_tcp_rc4 cmd/windows/ftp/x64/vncinject/bind_tcp_uuid cmd/windows/ftp/x64/vncinject/reverse_http cmd/windows/ftp/x64/vncinject/reverse_https cmd/windows/ftp/x64/vncinject/reverse_tcp cmd/windows/ftp/x64/vncinject/reverse_tcp_rc4 cmd/windows/ftp/x64/vncinject/reverse_tcp_uuid cmd/windows/ftp/x64/vncinject/reverse_winhttp cmd/windows/ftp/x64/vncinject/reverse_winhttps cmd/windows/ftp/x86/adduser cmd/windows/ftp/x86/custom/bind_hidden_ipknock_tcp cmd/windows/ftp/x86/custom/bind_hidden_tcp cmd/windows/ftp/x86/custom/bind_ipv6_tcp cmd/windows/ftp/x86/custom/bind_ipv6_tcp_uuid cmd/windows/ftp/x86/custom/bind_named_pipe cmd/windows/ftp/x86/custom/bind_nonx_tcp cmd/windows/ftp/x86/custom/bind_tcp cmd/windows/ftp/x86/custom/bind_tcp_rc4 cmd/windows/ftp/x86/custom/bind_tcp_uuid cmd/windows/ftp/x86/custom/find_tag cmd/windows/ftp/x86/custom/reverse_http cmd/windows/ftp/x86/custom/reverse_http_proxy_pstore cmd/windows/ftp/x86/custom/reverse_https cmd/windows/ftp/x86/custom/reverse_ipv6_tcp cmd/windows/ftp/x86/custom/reverse_named_pipe cmd/windows/ftp/x86/custom/reverse_nonx_tcp cmd/windows/ftp/x86/custom/reverse_ord_tcp cmd/windows/ftp/x86/custom/reverse_tcp cmd/windows/ftp/x86/custom/reverse_tcp_allports cmd/windows/ftp/x86/custom/reverse_tcp_dns cmd/windows/ftp/x86/custom/reverse_tcp_rc4 cmd/windows/ftp/x86/custom/reverse_tcp_rc4_dns cmd/windows/ftp/x86/custom/reverse_tcp_uuid cmd/windows/ftp/x86/custom/reverse_udp cmd/windows/ftp/x86/custom/reverse_winhttp cmd/windows/ftp/x86/custom/reverse_winhttps cmd/windows/ftp/x86/dllinject/bind_hidden_ipknock_tcp cmd/windows/ftp/x86/dllinject/bind_hidden_tcp cmd/windows/ftp/x86/dllinject/bind_ipv6_tcp cmd/windows/ftp/x86/dllinject/bind_ipv6_tcp_uuid cmd/windows/ftp/x86/dllinject/bind_named_pipe cmd/windows/ftp/x86/dllinject/bind_nonx_tcp cmd/windows/ftp/x86/dllinject/bind_tcp cmd/windows/ftp/x86/dllinject/bind_tcp_rc4 cmd/windows/ftp/x86/dllinject/bind_tcp_uuid cmd/windows/ftp/x86/dllinject/find_tag cmd/windows/ftp/x86/dllinject/reverse_http cmd/windows/ftp/x86/dllinject/reverse_http_proxy_pstore cmd/windows/ftp/x86/dllinject/reverse_ipv6_tcp cmd/windows/ftp/x86/dllinject/reverse_nonx_tcp cmd/windows/ftp/x86/dllinject/reverse_ord_tcp cmd/windows/ftp/x86/dllinject/reverse_tcp cmd/windows/ftp/x86/dllinject/reverse_tcp_allports cmd/windows/ftp/x86/dllinject/reverse_tcp_dns cmd/windows/ftp/x86/dllinject/reverse_tcp_rc4 cmd/windows/ftp/x86/dllinject/reverse_tcp_rc4_dns cmd/windows/ftp/x86/dllinject/reverse_tcp_uuid cmd/windows/ftp/x86/dllinject/reverse_winhttp cmd/windows/ftp/x86/dns_txt_query_exec cmd/windows/ftp/x86/download_exec cmd/windows/ftp/x86/exec cmd/windows/ftp/x86/format_all_drives cmd/windows/ftp/x86/generic/debug_trap cmd/windows/ftp/x86/generic/tight_loop cmd/windows/ftp/x86/loadlibrary cmd/windows/ftp/x86/messagebox cmd/windows/ftp/x86/meterpreter/bind_hidden_ipknock_tcp cmd/windows/ftp/x86/meterpreter/bind_hidden_tcp cmd/windows/ftp/x86/meterpreter/bind_ipv6_tcp cmd/windows/ftp/x86/meterpreter/bind_ipv6_tcp_uuid cmd/windows/ftp/x86/meterpreter/bind_named_pipe cmd/windows/ftp/x86/meterpreter/bind_nonx_tcp cmd/windows/ftp/x86/meterpreter/bind_tcp cmd/windows/ftp/x86/meterpreter/bind_tcp_rc4 cmd/windows/ftp/x86/meterpreter/bind_tcp_uuid cmd/windows/ftp/x86/meterpreter/find_tag cmd/windows/ftp/x86/meterpreter/reverse_http cmd/windows/ftp/x86/meterpreter/reverse_http_proxy_pstore cmd/windows/ftp/x86/meterpreter/reverse_https cmd/windows/ftp/x86/meterpreter/reverse_ipv6_tcp cmd/windows/ftp/x86/meterpreter/reverse_named_pipe cmd/windows/ftp/x86/meterpreter/reverse_nonx_tcp cmd/windows/ftp/x86/meterpreter/reverse_ord_tcp cmd/windows/ftp/x86/meterpreter/reverse_tcp cmd/windows/ftp/x86/meterpreter/reverse_tcp_allports cmd/windows/ftp/x86/meterpreter/reverse_tcp_dns cmd/windows/ftp/x86/meterpreter/reverse_tcp_rc4 cmd/windows/ftp/x86/meterpreter/reverse_tcp_rc4_dns cmd/windows/ftp/x86/meterpreter/reverse_tcp_uuid cmd/windows/ftp/x86/meterpreter/reverse_winhttp cmd/windows/ftp/x86/meterpreter/reverse_winhttps cmd/windows/ftp/x86/meterpreter_bind_named_pipe cmd/windows/ftp/x86/meterpreter_bind_tcp cmd/windows/ftp/x86/meterpreter_reverse_http cmd/windows/ftp/x86/meterpreter_reverse_https cmd/windows/ftp/x86/meterpreter_reverse_ipv6_tcp cmd/windows/ftp/x86/meterpreter_reverse_tcp cmd/windows/ftp/x86/metsvc_bind_tcp cmd/windows/ftp/x86/metsvc_reverse_tcp cmd/windows/ftp/x86/patchupdllinject/bind_hidden_ipknock_tcp cmd/windows/ftp/x86/patchupdllinject/bind_hidden_tcp cmd/windows/ftp/x86/patchupdllinject/bind_ipv6_tcp cmd/windows/ftp/x86/patchupdllinject/bind_ipv6_tcp_uuid cmd/windows/ftp/x86/patchupdllinject/bind_named_pipe cmd/windows/ftp/x86/patchupdllinject/bind_nonx_tcp cmd/windows/ftp/x86/patchupdllinject/bind_tcp cmd/windows/ftp/x86/patchupdllinject/bind_tcp_rc4 cmd/windows/ftp/x86/patchupdllinject/bind_tcp_uuid cmd/windows/ftp/x86/patchupdllinject/find_tag cmd/windows/ftp/x86/patchupdllinject/reverse_ipv6_tcp cmd/windows/ftp/x86/patchupdllinject/reverse_nonx_tcp cmd/windows/ftp/x86/patchupdllinject/reverse_ord_tcp cmd/windows/ftp/x86/patchupdllinject/reverse_tcp cmd/windows/ftp/x86/patchupdllinject/reverse_tcp_allports cmd/windows/ftp/x86/patchupdllinject/reverse_tcp_dns cmd/windows/ftp/x86/patchupdllinject/reverse_tcp_rc4 cmd/windows/ftp/x86/patchupdllinject/reverse_tcp_rc4_dns cmd/windows/ftp/x86/patchupdllinject/reverse_tcp_uuid cmd/windows/ftp/x86/patchupmeterpreter/bind_hidden_ipknock_tcp cmd/windows/ftp/x86/patchupmeterpreter/bind_hidden_tcp cmd/windows/ftp/x86/patchupmeterpreter/bind_ipv6_tcp cmd/windows/ftp/x86/patchupmeterpreter/bind_ipv6_tcp_uuid cmd/windows/ftp/x86/patchupmeterpreter/bind_named_pipe cmd/windows/ftp/x86/patchupmeterpreter/bind_nonx_tcp cmd/windows/ftp/x86/patchupmeterpreter/bind_tcp cmd/windows/ftp/x86/patchupmeterpreter/bind_tcp_rc4 cmd/windows/ftp/x86/patchupmeterpreter/bind_tcp_uuid cmd/windows/ftp/x86/patchupmeterpreter/find_tag cmd/windows/ftp/x86/patchupmeterpreter/reverse_ipv6_tcp cmd/windows/ftp/x86/patchupmeterpreter/reverse_nonx_tcp cmd/windows/ftp/x86/patchupmeterpreter/reverse_ord_tcp cmd/windows/ftp/x86/patchupmeterpreter/reverse_tcp cmd/windows/ftp/x86/patchupmeterpreter/reverse_tcp_allports cmd/windows/ftp/x86/patchupmeterpreter/reverse_tcp_dns cmd/windows/ftp/x86/patchupmeterpreter/reverse_tcp_rc4 cmd/windows/ftp/x86/patchupmeterpreter/reverse_tcp_rc4_dns cmd/windows/ftp/x86/patchupmeterpreter/reverse_tcp_uuid cmd/windows/ftp/x86/peinject/bind_hidden_ipknock_tcp cmd/windows/ftp/x86/peinject/bind_hidden_tcp cmd/windows/ftp/x86/peinject/bind_ipv6_tcp cmd/windows/ftp/x86/peinject/bind_ipv6_tcp_uuid cmd/windows/ftp/x86/peinject/bind_named_pipe cmd/windows/ftp/x86/peinject/bind_nonx_tcp cmd/windows/ftp/x86/peinject/bind_tcp cmd/windows/ftp/x86/peinject/bind_tcp_rc4 cmd/windows/ftp/x86/peinject/bind_tcp_uuid cmd/windows/ftp/x86/peinject/find_tag cmd/windows/ftp/x86/peinject/reverse_ipv6_tcp cmd/windows/ftp/x86/peinject/reverse_named_pipe cmd/windows/ftp/x86/peinject/reverse_nonx_tcp cmd/windows/ftp/x86/peinject/reverse_ord_tcp cmd/windows/ftp/x86/peinject/reverse_tcp cmd/windows/ftp/x86/peinject/reverse_tcp_allports cmd/windows/ftp/x86/peinject/reverse_tcp_dns cmd/windows/ftp/x86/peinject/reverse_tcp_rc4 cmd/windows/ftp/x86/peinject/reverse_tcp_rc4_dns cmd/windows/ftp/x86/peinject/reverse_tcp_uuid cmd/windows/ftp/x86/pingback_bind_tcp cmd/windows/ftp/x86/pingback_reverse_tcp cmd/windows/ftp/x86/powershell_bind_tcp cmd/windows/ftp/x86/powershell_reverse_tcp cmd/windows/ftp/x86/powershell_reverse_tcp_ssl cmd/windows/ftp/x86/shell/bind_hidden_ipknock_tcp cmd/windows/ftp/x86/shell/bind_hidden_tcp cmd/windows/ftp/x86/shell/bind_ipv6_tcp cmd/windows/ftp/x86/shell/bind_ipv6_tcp_uuid cmd/windows/ftp/x86/shell/bind_named_pipe cmd/windows/ftp/x86/shell/bind_nonx_tcp cmd/windows/ftp/x86/shell/bind_tcp cmd/windows/ftp/x86/shell/bind_tcp_rc4 cmd/windows/ftp/x86/shell/bind_tcp_uuid cmd/windows/ftp/x86/shell/find_tag cmd/windows/ftp/x86/shell/reverse_ipv6_tcp cmd/windows/ftp/x86/shell/reverse_nonx_tcp cmd/windows/ftp/x86/shell/reverse_ord_tcp cmd/windows/ftp/x86/shell/reverse_tcp cmd/windows/ftp/x86/shell/reverse_tcp_allports cmd/windows/ftp/x86/shell/reverse_tcp_dns cmd/windows/ftp/x86/shell/reverse_tcp_rc4 cmd/windows/ftp/x86/shell/reverse_tcp_rc4_dns cmd/windows/ftp/x86/shell/reverse_tcp_uuid cmd/windows/ftp/x86/shell/reverse_udp cmd/windows/ftp/x86/shell_bind_tcp cmd/windows/ftp/x86/shell_bind_tcp_xpfw cmd/windows/ftp/x86/shell_hidden_bind_tcp cmd/windows/ftp/x86/shell_reverse_tcp cmd/windows/ftp/x86/speak_pwned cmd/windows/ftp/x86/upexec/bind_hidden_ipknock_tcp cmd/windows/ftp/x86/upexec/bind_hidden_tcp cmd/windows/ftp/x86/upexec/bind_ipv6_tcp cmd/windows/ftp/x86/upexec/bind_ipv6_tcp_uuid cmd/windows/ftp/x86/upexec/bind_named_pipe cmd/windows/ftp/x86/upexec/bind_nonx_tcp cmd/windows/ftp/x86/upexec/bind_tcp cmd/windows/ftp/x86/upexec/bind_tcp_rc4 cmd/windows/ftp/x86/upexec/bind_tcp_uuid cmd/windows/ftp/x86/upexec/find_tag cmd/windows/ftp/x86/upexec/reverse_ipv6_tcp cmd/windows/ftp/x86/upexec/reverse_nonx_tcp cmd/windows/ftp/x86/upexec/reverse_ord_tcp cmd/windows/ftp/x86/upexec/reverse_tcp cmd/windows/ftp/x86/upexec/reverse_tcp_allports cmd/windows/ftp/x86/upexec/reverse_tcp_dns cmd/windows/ftp/x86/upexec/reverse_tcp_rc4 cmd/windows/ftp/x86/upexec/reverse_tcp_rc4_dns cmd/windows/ftp/x86/upexec/reverse_tcp_uuid cmd/windows/ftp/x86/upexec/reverse_udp cmd/windows/ftp/x86/vncinject/bind_hidden_ipknock_tcp cmd/windows/ftp/x86/vncinject/bind_hidden_tcp cmd/windows/ftp/x86/vncinject/bind_ipv6_tcp cmd/windows/ftp/x86/vncinject/bind_ipv6_tcp_uuid cmd/windows/ftp/x86/vncinject/bind_named_pipe cmd/windows/ftp/x86/vncinject/bind_nonx_tcp cmd/windows/ftp/x86/vncinject/bind_tcp cmd/windows/ftp/x86/vncinject/bind_tcp_rc4 cmd/windows/ftp/x86/vncinject/bind_tcp_uuid cmd/windows/ftp/x86/vncinject/find_tag cmd/windows/ftp/x86/vncinject/reverse_http cmd/windows/ftp/x86/vncinject/reverse_http_proxy_pstore cmd/windows/ftp/x86/vncinject/reverse_ipv6_tcp cmd/windows/ftp/x86/vncinject/reverse_nonx_tcp cmd/windows/ftp/x86/vncinject/reverse_ord_tcp cmd/windows/ftp/x86/vncinject/reverse_tcp cmd/windows/ftp/x86/vncinject/reverse_tcp_allports cmd/windows/ftp/x86/vncinject/reverse_tcp_dns cmd/windows/ftp/x86/vncinject/reverse_tcp_rc4 cmd/windows/ftp/x86/vncinject/reverse_tcp_rc4_dns cmd/windows/ftp/x86/vncinject/reverse_tcp_uuid cmd/windows/ftp/x86/vncinject/reverse_winhttp cmd/windows/generic cmd/windows/http/x64/custom/bind_ipv6_tcp cmd/windows/http/x64/custom/bind_ipv6_tcp_uuid cmd/windows/http/x64/custom/bind_named_pipe cmd/windows/http/x64/custom/bind_tcp cmd/windows/http/x64/custom/bind_tcp_rc4 cmd/windows/http/x64/custom/bind_tcp_uuid cmd/windows/http/x64/custom/reverse_http cmd/windows/http/x64/custom/reverse_https cmd/windows/http/x64/custom/reverse_named_pipe cmd/windows/http/x64/custom/reverse_tcp cmd/windows/http/x64/custom/reverse_tcp_rc4 cmd/windows/http/x64/custom/reverse_tcp_uuid cmd/windows/http/x64/custom/reverse_winhttp cmd/windows/http/x64/custom/reverse_winhttps cmd/windows/http/x64/download_exec cmd/windows/http/x64/exec cmd/windows/http/x64/loadlibrary cmd/windows/http/x64/messagebox cmd/windows/http/x64/meterpreter/bind_ipv6_tcp cmd/windows/http/x64/meterpreter/bind_ipv6_tcp_uuid cmd/windows/http/x64/meterpreter/bind_named_pipe cmd/windows/http/x64/meterpreter/bind_tcp cmd/windows/http/x64/meterpreter/bind_tcp_rc4 cmd/windows/http/x64/meterpreter/bind_tcp_uuid cmd/windows/http/x64/meterpreter/reverse_http cmd/windows/http/x64/meterpreter/reverse_https cmd/windows/http/x64/meterpreter/reverse_named_pipe cmd/windows/http/x64/meterpreter/reverse_tcp cmd/windows/http/x64/meterpreter/reverse_tcp_rc4 cmd/windows/http/x64/meterpreter/reverse_tcp_uuid cmd/windows/http/x64/meterpreter/reverse_winhttp cmd/windows/http/x64/meterpreter/reverse_winhttps cmd/windows/http/x64/meterpreter_bind_named_pipe cmd/windows/http/x64/meterpreter_bind_tcp cmd/windows/http/x64/meterpreter_reverse_http cmd/windows/http/x64/meterpreter_reverse_https cmd/windows/http/x64/meterpreter_reverse_ipv6_tcp cmd/windows/http/x64/meterpreter_reverse_tcp cmd/windows/http/x64/peinject/bind_ipv6_tcp cmd/windows/http/x64/peinject/bind_ipv6_tcp_uuid cmd/windows/http/x64/peinject/bind_named_pipe cmd/windows/http/x64/peinject/bind_tcp cmd/windows/http/x64/peinject/bind_tcp_rc4 cmd/windows/http/x64/peinject/bind_tcp_uuid cmd/windows/http/x64/peinject/reverse_named_pipe cmd/windows/http/x64/peinject/reverse_tcp cmd/windows/http/x64/peinject/reverse_tcp_rc4 cmd/windows/http/x64/peinject/reverse_tcp_uuid cmd/windows/http/x64/pingback_reverse_tcp cmd/windows/http/x64/powershell_bind_tcp cmd/windows/http/x64/powershell_reverse_tcp cmd/windows/http/x64/powershell_reverse_tcp_ssl cmd/windows/http/x64/shell/bind_ipv6_tcp cmd/windows/http/x64/shell/bind_ipv6_tcp_uuid cmd/windows/http/x64/shell/bind_named_pipe cmd/windows/http/x64/shell/bind_tcp cmd/windows/http/x64/shell/bind_tcp_rc4 cmd/windows/http/x64/shell/bind_tcp_uuid cmd/windows/http/x64/shell/reverse_tcp cmd/windows/http/x64/shell/reverse_tcp_rc4 cmd/windows/http/x64/shell/reverse_tcp_uuid cmd/windows/http/x64/shell_bind_tcp cmd/windows/http/x64/shell_reverse_tcp cmd/windows/http/x64/vncinject/bind_ipv6_tcp cmd/windows/http/x64/vncinject/bind_ipv6_tcp_uuid cmd/windows/http/x64/vncinject/bind_named_pipe cmd/windows/http/x64/vncinject/bind_tcp cmd/windows/http/x64/vncinject/bind_tcp_rc4 cmd/windows/http/x64/vncinject/bind_tcp_uuid cmd/windows/http/x64/vncinject/reverse_http cmd/windows/http/x64/vncinject/reverse_https cmd/windows/http/x64/vncinject/reverse_tcp cmd/windows/http/x64/vncinject/reverse_tcp_rc4 cmd/windows/http/x64/vncinject/reverse_tcp_uuid cmd/windows/http/x64/vncinject/reverse_winhttp cmd/windows/http/x64/vncinject/reverse_winhttps cmd/windows/http/x86/adduser cmd/windows/http/x86/custom/bind_hidden_ipknock_tcp cmd/windows/http/x86/custom/bind_hidden_tcp cmd/windows/http/x86/custom/bind_ipv6_tcp cmd/windows/http/x86/custom/bind_ipv6_tcp_uuid cmd/windows/http/x86/custom/bind_named_pipe cmd/windows/http/x86/custom/bind_nonx_tcp cmd/windows/http/x86/custom/bind_tcp cmd/windows/http/x86/custom/bind_tcp_rc4 cmd/windows/http/x86/custom/bind_tcp_uuid cmd/windows/http/x86/custom/find_tag cmd/windows/http/x86/custom/reverse_http cmd/windows/http/x86/custom/reverse_http_proxy_pstore cmd/windows/http/x86/custom/reverse_https cmd/windows/http/x86/custom/reverse_ipv6_tcp cmd/windows/http/x86/custom/reverse_named_pipe cmd/windows/http/x86/custom/reverse_nonx_tcp cmd/windows/http/x86/custom/reverse_ord_tcp cmd/windows/http/x86/custom/reverse_tcp cmd/windows/http/x86/custom/reverse_tcp_allports cmd/windows/http/x86/custom/reverse_tcp_dns cmd/windows/http/x86/custom/reverse_tcp_rc4 cmd/windows/http/x86/custom/reverse_tcp_rc4_dns cmd/windows/http/x86/custom/reverse_tcp_uuid cmd/windows/http/x86/custom/reverse_udp cmd/windows/http/x86/custom/reverse_winhttp cmd/windows/http/x86/custom/reverse_winhttps cmd/windows/http/x86/dllinject/bind_hidden_ipknock_tcp cmd/windows/http/x86/dllinject/bind_hidden_tcp cmd/windows/http/x86/dllinject/bind_ipv6_tcp cmd/windows/http/x86/dllinject/bind_ipv6_tcp_uuid cmd/windows/http/x86/dllinject/bind_named_pipe cmd/windows/http/x86/dllinject/bind_nonx_tcp cmd/windows/http/x86/dllinject/bind_tcp cmd/windows/http/x86/dllinject/bind_tcp_rc4 cmd/windows/http/x86/dllinject/bind_tcp_uuid cmd/windows/http/x86/dllinject/find_tag cmd/windows/http/x86/dllinject/reverse_http cmd/windows/http/x86/dllinject/reverse_http_proxy_pstore cmd/windows/http/x86/dllinject/reverse_ipv6_tcp cmd/windows/http/x86/dllinject/reverse_nonx_tcp cmd/windows/http/x86/dllinject/reverse_ord_tcp cmd/windows/http/x86/dllinject/reverse_tcp cmd/windows/http/x86/dllinject/reverse_tcp_allports cmd/windows/http/x86/dllinject/reverse_tcp_dns cmd/windows/http/x86/dllinject/reverse_tcp_rc4 cmd/windows/http/x86/dllinject/reverse_tcp_rc4_dns cmd/windows/http/x86/dllinject/reverse_tcp_uuid cmd/windows/http/x86/dllinject/reverse_winhttp cmd/windows/http/x86/dns_txt_query_exec cmd/windows/http/x86/download_exec cmd/windows/http/x86/exec cmd/windows/http/x86/format_all_drives cmd/windows/http/x86/generic/debug_trap cmd/windows/http/x86/generic/tight_loop cmd/windows/http/x86/loadlibrary cmd/windows/http/x86/messagebox cmd/windows/http/x86/meterpreter/bind_hidden_ipknock_tcp cmd/windows/http/x86/meterpreter/bind_hidden_tcp cmd/windows/http/x86/meterpreter/bind_ipv6_tcp cmd/windows/http/x86/meterpreter/bind_ipv6_tcp_uuid cmd/windows/http/x86/meterpreter/bind_named_pipe cmd/windows/http/x86/meterpreter/bind_nonx_tcp cmd/windows/http/x86/meterpreter/bind_tcp cmd/windows/http/x86/meterpreter/bind_tcp_rc4 cmd/windows/http/x86/meterpreter/bind_tcp_uuid cmd/windows/http/x86/meterpreter/find_tag cmd/windows/http/x86/meterpreter/reverse_http cmd/windows/http/x86/meterpreter/reverse_http_proxy_pstore cmd/windows/http/x86/meterpreter/reverse_https cmd/windows/http/x86/meterpreter/reverse_ipv6_tcp cmd/windows/http/x86/meterpreter/reverse_named_pipe cmd/windows/http/x86/meterpreter/reverse_nonx_tcp cmd/windows/http/x86/meterpreter/reverse_ord_tcp cmd/windows/http/x86/meterpreter/reverse_tcp cmd/windows/http/x86/meterpreter/reverse_tcp_allports cmd/windows/http/x86/meterpreter/reverse_tcp_dns cmd/windows/http/x86/meterpreter/reverse_tcp_rc4 cmd/windows/http/x86/meterpreter/reverse_tcp_rc4_dns cmd/windows/http/x86/meterpreter/reverse_tcp_uuid cmd/windows/http/x86/meterpreter/reverse_winhttp cmd/windows/http/x86/meterpreter/reverse_winhttps cmd/windows/http/x86/meterpreter_bind_named_pipe cmd/windows/http/x86/meterpreter_bind_tcp cmd/windows/http/x86/meterpreter_reverse_http cmd/windows/http/x86/meterpreter_reverse_https cmd/windows/http/x86/meterpreter_reverse_ipv6_tcp cmd/windows/http/x86/meterpreter_reverse_tcp cmd/windows/http/x86/metsvc_bind_tcp cmd/windows/http/x86/metsvc_reverse_tcp cmd/windows/http/x86/patchupdllinject/bind_hidden_ipknock_tcp cmd/windows/http/x86/patchupdllinject/bind_hidden_tcp cmd/windows/http/x86/patchupdllinject/bind_ipv6_tcp cmd/windows/http/x86/patchupdllinject/bind_ipv6_tcp_uuid cmd/windows/http/x86/patchupdllinject/bind_named_pipe cmd/windows/http/x86/patchupdllinject/bind_nonx_tcp cmd/windows/http/x86/patchupdllinject/bind_tcp cmd/windows/http/x86/patchupdllinject/bind_tcp_rc4 cmd/windows/http/x86/patchupdllinject/bind_tcp_uuid cmd/windows/http/x86/patchupdllinject/find_tag cmd/windows/http/x86/patchupdllinject/reverse_ipv6_tcp cmd/windows/http/x86/patchupdllinject/reverse_nonx_tcp cmd/windows/http/x86/patchupdllinject/reverse_ord_tcp cmd/windows/http/x86/patchupdllinject/reverse_tcp cmd/windows/http/x86/patchupdllinject/reverse_tcp_allports cmd/windows/http/x86/patchupdllinject/reverse_tcp_dns cmd/windows/http/x86/patchupdllinject/reverse_tcp_rc4 cmd/windows/http/x86/patchupdllinject/reverse_tcp_rc4_dns cmd/windows/http/x86/patchupdllinject/reverse_tcp_uuid cmd/windows/http/x86/patchupmeterpreter/bind_hidden_ipknock_tcp cmd/windows/http/x86/patchupmeterpreter/bind_hidden_tcp cmd/windows/http/x86/patchupmeterpreter/bind_ipv6_tcp cmd/windows/http/x86/patchupmeterpreter/bind_ipv6_tcp_uuid cmd/windows/http/x86/patchupmeterpreter/bind_named_pipe cmd/windows/http/x86/patchupmeterpreter/bind_nonx_tcp cmd/windows/http/x86/patchupmeterpreter/bind_tcp cmd/windows/http/x86/patchupmeterpreter/bind_tcp_rc4 cmd/windows/http/x86/patchupmeterpreter/bind_tcp_uuid cmd/windows/http/x86/patchupmeterpreter/find_tag cmd/windows/http/x86/patchupmeterpreter/reverse_ipv6_tcp cmd/windows/http/x86/patchupmeterpreter/reverse_nonx_tcp cmd/windows/http/x86/patchupmeterpreter/reverse_ord_tcp cmd/windows/http/x86/patchupmeterpreter/reverse_tcp cmd/windows/http/x86/patchupmeterpreter/reverse_tcp_allports cmd/windows/http/x86/patchupmeterpreter/reverse_tcp_dns cmd/windows/http/x86/patchupmeterpreter/reverse_tcp_rc4 cmd/windows/http/x86/patchupmeterpreter/reverse_tcp_rc4_dns cmd/windows/http/x86/patchupmeterpreter/reverse_tcp_uuid cmd/windows/http/x86/peinject/bind_hidden_ipknock_tcp cmd/windows/http/x86/peinject/bind_hidden_tcp cmd/windows/http/x86/peinject/bind_ipv6_tcp cmd/windows/http/x86/peinject/bind_ipv6_tcp_uuid cmd/windows/http/x86/peinject/bind_named_pipe cmd/windows/http/x86/peinject/bind_nonx_tcp cmd/windows/http/x86/peinject/bind_tcp cmd/windows/http/x86/peinject/bind_tcp_rc4 cmd/windows/http/x86/peinject/bind_tcp_uuid cmd/windows/http/x86/peinject/find_tag cmd/windows/http/x86/peinject/reverse_ipv6_tcp cmd/windows/http/x86/peinject/reverse_named_pipe cmd/windows/http/x86/peinject/reverse_nonx_tcp cmd/windows/http/x86/peinject/reverse_ord_tcp cmd/windows/http/x86/peinject/reverse_tcp cmd/windows/http/x86/peinject/reverse_tcp_allports cmd/windows/http/x86/peinject/reverse_tcp_dns cmd/windows/http/x86/peinject/reverse_tcp_rc4 cmd/windows/http/x86/peinject/reverse_tcp_rc4_dns cmd/windows/http/x86/peinject/reverse_tcp_uuid cmd/windows/http/x86/pingback_bind_tcp cmd/windows/http/x86/pingback_reverse_tcp cmd/windows/http/x86/powershell_bind_tcp cmd/windows/http/x86/powershell_reverse_tcp cmd/windows/http/x86/powershell_reverse_tcp_ssl cmd/windows/http/x86/shell/bind_hidden_ipknock_tcp cmd/windows/http/x86/shell/bind_hidden_tcp cmd/windows/http/x86/shell/bind_ipv6_tcp cmd/windows/http/x86/shell/bind_ipv6_tcp_uuid cmd/windows/http/x86/shell/bind_named_pipe cmd/windows/http/x86/shell/bind_nonx_tcp cmd/windows/http/x86/shell/bind_tcp cmd/windows/http/x86/shell/bind_tcp_rc4 cmd/windows/http/x86/shell/bind_tcp_uuid cmd/windows/http/x86/shell/find_tag cmd/windows/http/x86/shell/reverse_ipv6_tcp cmd/windows/http/x86/shell/reverse_nonx_tcp cmd/windows/http/x86/shell/reverse_ord_tcp cmd/windows/http/x86/shell/reverse_tcp cmd/windows/http/x86/shell/reverse_tcp_allports cmd/windows/http/x86/shell/reverse_tcp_dns cmd/windows/http/x86/shell/reverse_tcp_rc4 cmd/windows/http/x86/shell/reverse_tcp_rc4_dns cmd/windows/http/x86/shell/reverse_tcp_uuid cmd/windows/http/x86/shell/reverse_udp cmd/windows/http/x86/shell_bind_tcp cmd/windows/http/x86/shell_bind_tcp_xpfw cmd/windows/http/x86/shell_hidden_bind_tcp cmd/windows/http/x86/shell_reverse_tcp cmd/windows/http/x86/speak_pwned cmd/windows/http/x86/upexec/bind_hidden_ipknock_tcp cmd/windows/http/x86/upexec/bind_hidden_tcp cmd/windows/http/x86/upexec/bind_ipv6_tcp cmd/windows/http/x86/upexec/bind_ipv6_tcp_uuid cmd/windows/http/x86/upexec/bind_named_pipe cmd/windows/http/x86/upexec/bind_nonx_tcp cmd/windows/http/x86/upexec/bind_tcp cmd/windows/http/x86/upexec/bind_tcp_rc4 cmd/windows/http/x86/upexec/bind_tcp_uuid cmd/windows/http/x86/upexec/find_tag cmd/windows/http/x86/upexec/reverse_ipv6_tcp cmd/windows/http/x86/upexec/reverse_nonx_tcp cmd/windows/http/x86/upexec/reverse_ord_tcp cmd/windows/http/x86/upexec/reverse_tcp cmd/windows/http/x86/upexec/reverse_tcp_allports cmd/windows/http/x86/upexec/reverse_tcp_dns cmd/windows/http/x86/upexec/reverse_tcp_rc4 cmd/windows/http/x86/upexec/reverse_tcp_rc4_dns cmd/windows/http/x86/upexec/reverse_tcp_uuid cmd/windows/http/x86/upexec/reverse_udp cmd/windows/http/x86/vncinject/bind_hidden_ipknock_tcp cmd/windows/http/x86/vncinject/bind_hidden_tcp cmd/windows/http/x86/vncinject/bind_ipv6_tcp cmd/windows/http/x86/vncinject/bind_ipv6_tcp_uuid cmd/windows/http/x86/vncinject/bind_named_pipe cmd/windows/http/x86/vncinject/bind_nonx_tcp cmd/windows/http/x86/vncinject/bind_tcp cmd/windows/http/x86/vncinject/bind_tcp_rc4 cmd/windows/http/x86/vncinject/bind_tcp_uuid cmd/windows/http/x86/vncinject/find_tag cmd/windows/http/x86/vncinject/reverse_http cmd/windows/http/x86/vncinject/reverse_http_proxy_pstore cmd/windows/http/x86/vncinject/reverse_ipv6_tcp cmd/windows/http/x86/vncinject/reverse_nonx_tcp cmd/windows/http/x86/vncinject/reverse_ord_tcp cmd/windows/http/x86/vncinject/reverse_tcp cmd/windows/http/x86/vncinject/reverse_tcp_allports cmd/windows/http/x86/vncinject/reverse_tcp_dns cmd/windows/http/x86/vncinject/reverse_tcp_rc4 cmd/windows/http/x86/vncinject/reverse_tcp_rc4_dns cmd/windows/http/x86/vncinject/reverse_tcp_uuid cmd/windows/http/x86/vncinject/reverse_winhttp cmd/windows/https/x64/custom/bind_ipv6_tcp cmd/windows/https/x64/custom/bind_ipv6_tcp_uuid cmd/windows/https/x64/custom/bind_named_pipe cmd/windows/https/x64/custom/bind_tcp cmd/windows/https/x64/custom/bind_tcp_rc4 cmd/windows/https/x64/custom/bind_tcp_uuid cmd/windows/https/x64/custom/reverse_http cmd/windows/https/x64/custom/reverse_https cmd/windows/https/x64/custom/reverse_named_pipe cmd/windows/https/x64/custom/reverse_tcp cmd/windows/https/x64/custom/reverse_tcp_rc4 cmd/windows/https/x64/custom/reverse_tcp_uuid cmd/windows/https/x64/custom/reverse_winhttp cmd/windows/https/x64/custom/reverse_winhttps cmd/windows/https/x64/download_exec cmd/windows/https/x64/exec cmd/windows/https/x64/loadlibrary cmd/windows/https/x64/messagebox cmd/windows/https/x64/meterpreter/bind_ipv6_tcp cmd/windows/https/x64/meterpreter/bind_ipv6_tcp_uuid cmd/windows/https/x64/meterpreter/bind_named_pipe cmd/windows/https/x64/meterpreter/bind_tcp cmd/windows/https/x64/meterpreter/bind_tcp_rc4 cmd/windows/https/x64/meterpreter/bind_tcp_uuid cmd/windows/https/x64/meterpreter/reverse_http cmd/windows/https/x64/meterpreter/reverse_https cmd/windows/https/x64/meterpreter/reverse_named_pipe cmd/windows/https/x64/meterpreter/reverse_tcp cmd/windows/https/x64/meterpreter/reverse_tcp_rc4 cmd/windows/https/x64/meterpreter/reverse_tcp_uuid cmd/windows/https/x64/meterpreter/reverse_winhttp cmd/windows/https/x64/meterpreter/reverse_winhttps cmd/windows/https/x64/meterpreter_bind_named_pipe cmd/windows/https/x64/meterpreter_bind_tcp cmd/windows/https/x64/meterpreter_reverse_http cmd/windows/https/x64/meterpreter_reverse_https cmd/windows/https/x64/meterpreter_reverse_ipv6_tcp cmd/windows/https/x64/meterpreter_reverse_tcp cmd/windows/https/x64/peinject/bind_ipv6_tcp cmd/windows/https/x64/peinject/bind_ipv6_tcp_uuid cmd/windows/https/x64/peinject/bind_named_pipe cmd/windows/https/x64/peinject/bind_tcp cmd/windows/https/x64/peinject/bind_tcp_rc4 cmd/windows/https/x64/peinject/bind_tcp_uuid cmd/windows/https/x64/peinject/reverse_named_pipe cmd/windows/https/x64/peinject/reverse_tcp cmd/windows/https/x64/peinject/reverse_tcp_rc4 cmd/windows/https/x64/peinject/reverse_tcp_uuid cmd/windows/https/x64/pingback_reverse_tcp cmd/windows/https/x64/powershell_bind_tcp cmd/windows/https/x64/powershell_reverse_tcp cmd/windows/https/x64/powershell_reverse_tcp_ssl cmd/windows/https/x64/shell/bind_ipv6_tcp cmd/windows/https/x64/shell/bind_ipv6_tcp_uuid cmd/windows/https/x64/shell/bind_named_pipe cmd/windows/https/x64/shell/bind_tcp cmd/windows/https/x64/shell/bind_tcp_rc4 cmd/windows/https/x64/shell/bind_tcp_uuid cmd/windows/https/x64/shell/reverse_tcp cmd/windows/https/x64/shell/reverse_tcp_rc4 cmd/windows/https/x64/shell/reverse_tcp_uuid cmd/windows/https/x64/shell_bind_tcp cmd/windows/https/x64/shell_reverse_tcp cmd/windows/https/x64/vncinject/bind_ipv6_tcp cmd/windows/https/x64/vncinject/bind_ipv6_tcp_uuid cmd/windows/https/x64/vncinject/bind_named_pipe cmd/windows/https/x64/vncinject/bind_tcp cmd/windows/https/x64/vncinject/bind_tcp_rc4 cmd/windows/https/x64/vncinject/bind_tcp_uuid cmd/windows/https/x64/vncinject/reverse_http cmd/windows/https/x64/vncinject/reverse_https cmd/windows/https/x64/vncinject/reverse_tcp cmd/windows/https/x64/vncinject/reverse_tcp_rc4 cmd/windows/https/x64/vncinject/reverse_tcp_uuid cmd/windows/https/x64/vncinject/reverse_winhttp cmd/windows/https/x64/vncinject/reverse_winhttps cmd/windows/https/x86/adduser cmd/windows/https/x86/custom/bind_hidden_ipknock_tcp cmd/windows/https/x86/custom/bind_hidden_tcp cmd/windows/https/x86/custom/bind_ipv6_tcp cmd/windows/https/x86/custom/bind_ipv6_tcp_uuid cmd/windows/https/x86/custom/bind_named_pipe cmd/windows/https/x86/custom/bind_nonx_tcp cmd/windows/https/x86/custom/bind_tcp cmd/windows/https/x86/custom/bind_tcp_rc4 cmd/windows/https/x86/custom/bind_tcp_uuid cmd/windows/https/x86/custom/find_tag cmd/windows/https/x86/custom/reverse_http cmd/windows/https/x86/custom/reverse_http_proxy_pstore cmd/windows/https/x86/custom/reverse_https cmd/windows/https/x86/custom/reverse_ipv6_tcp cmd/windows/https/x86/custom/reverse_named_pipe cmd/windows/https/x86/custom/reverse_nonx_tcp cmd/windows/https/x86/custom/reverse_ord_tcp cmd/windows/https/x86/custom/reverse_tcp cmd/windows/https/x86/custom/reverse_tcp_allports cmd/windows/https/x86/custom/reverse_tcp_dns cmd/windows/https/x86/custom/reverse_tcp_rc4 cmd/windows/https/x86/custom/reverse_tcp_rc4_dns cmd/windows/https/x86/custom/reverse_tcp_uuid cmd/windows/https/x86/custom/reverse_udp cmd/windows/https/x86/custom/reverse_winhttp cmd/windows/https/x86/custom/reverse_winhttps cmd/windows/https/x86/dllinject/bind_hidden_ipknock_tcp cmd/windows/https/x86/dllinject/bind_hidden_tcp cmd/windows/https/x86/dllinject/bind_ipv6_tcp cmd/windows/https/x86/dllinject/bind_ipv6_tcp_uuid cmd/windows/https/x86/dllinject/bind_named_pipe cmd/windows/https/x86/dllinject/bind_nonx_tcp cmd/windows/https/x86/dllinject/bind_tcp cmd/windows/https/x86/dllinject/bind_tcp_rc4 cmd/windows/https/x86/dllinject/bind_tcp_uuid cmd/windows/https/x86/dllinject/find_tag cmd/windows/https/x86/dllinject/reverse_http cmd/windows/https/x86/dllinject/reverse_http_proxy_pstore cmd/windows/https/x86/dllinject/reverse_ipv6_tcp cmd/windows/https/x86/dllinject/reverse_nonx_tcp cmd/windows/https/x86/dllinject/reverse_ord_tcp cmd/windows/https/x86/dllinject/reverse_tcp cmd/windows/https/x86/dllinject/reverse_tcp_allports cmd/windows/https/x86/dllinject/reverse_tcp_dns cmd/windows/https/x86/dllinject/reverse_tcp_rc4 cmd/windows/https/x86/dllinject/reverse_tcp_rc4_dns cmd/windows/https/x86/dllinject/reverse_tcp_uuid cmd/windows/https/x86/dllinject/reverse_winhttp cmd/windows/https/x86/dns_txt_query_exec cmd/windows/https/x86/download_exec cmd/windows/https/x86/exec cmd/windows/https/x86/format_all_drives cmd/windows/https/x86/generic/debug_trap cmd/windows/https/x86/generic/tight_loop cmd/windows/https/x86/loadlibrary cmd/windows/https/x86/messagebox cmd/windows/https/x86/meterpreter/bind_hidden_ipknock_tcp cmd/windows/https/x86/meterpreter/bind_hidden_tcp cmd/windows/https/x86/meterpreter/bind_ipv6_tcp cmd/windows/https/x86/meterpreter/bind_ipv6_tcp_uuid cmd/windows/https/x86/meterpreter/bind_named_pipe cmd/windows/https/x86/meterpreter/bind_nonx_tcp cmd/windows/https/x86/meterpreter/bind_tcp cmd/windows/https/x86/meterpreter/bind_tcp_rc4 cmd/windows/https/x86/meterpreter/bind_tcp_uuid cmd/windows/https/x86/meterpreter/find_tag cmd/windows/https/x86/meterpreter/reverse_http cmd/windows/https/x86/meterpreter/reverse_http_proxy_pstore cmd/windows/https/x86/meterpreter/reverse_https cmd/windows/https/x86/meterpreter/reverse_ipv6_tcp cmd/windows/https/x86/meterpreter/reverse_named_pipe cmd/windows/https/x86/meterpreter/reverse_nonx_tcp cmd/windows/https/x86/meterpreter/reverse_ord_tcp cmd/windows/https/x86/meterpreter/reverse_tcp cmd/windows/https/x86/meterpreter/reverse_tcp_allports cmd/windows/https/x86/meterpreter/reverse_tcp_dns cmd/windows/https/x86/meterpreter/reverse_tcp_rc4 cmd/windows/https/x86/meterpreter/reverse_tcp_rc4_dns cmd/windows/https/x86/meterpreter/reverse_tcp_uuid cmd/windows/https/x86/meterpreter/reverse_winhttp cmd/windows/https/x86/meterpreter/reverse_winhttps cmd/windows/https/x86/meterpreter_bind_named_pipe cmd/windows/https/x86/meterpreter_bind_tcp cmd/windows/https/x86/meterpreter_reverse_http cmd/windows/https/x86/meterpreter_reverse_https cmd/windows/https/x86/meterpreter_reverse_ipv6_tcp cmd/windows/https/x86/meterpreter_reverse_tcp cmd/windows/https/x86/metsvc_bind_tcp cmd/windows/https/x86/metsvc_reverse_tcp cmd/windows/https/x86/patchupdllinject/bind_hidden_ipknock_tcp cmd/windows/https/x86/patchupdllinject/bind_hidden_tcp cmd/windows/https/x86/patchupdllinject/bind_ipv6_tcp cmd/windows/https/x86/patchupdllinject/bind_ipv6_tcp_uuid cmd/windows/https/x86/patchupdllinject/bind_named_pipe cmd/windows/https/x86/patchupdllinject/bind_nonx_tcp cmd/windows/https/x86/patchupdllinject/bind_tcp cmd/windows/https/x86/patchupdllinject/bind_tcp_rc4 cmd/windows/https/x86/patchupdllinject/bind_tcp_uuid cmd/windows/https/x86/patchupdllinject/find_tag cmd/windows/https/x86/patchupdllinject/reverse_ipv6_tcp cmd/windows/https/x86/patchupdllinject/reverse_nonx_tcp cmd/windows/https/x86/patchupdllinject/reverse_ord_tcp cmd/windows/https/x86/patchupdllinject/reverse_tcp cmd/windows/https/x86/patchupdllinject/reverse_tcp_allports cmd/windows/https/x86/patchupdllinject/reverse_tcp_dns cmd/windows/https/x86/patchupdllinject/reverse_tcp_rc4 cmd/windows/https/x86/patchupdllinject/reverse_tcp_rc4_dns cmd/windows/https/x86/patchupdllinject/reverse_tcp_uuid cmd/windows/https/x86/patchupmeterpreter/bind_hidden_ipknock_tcp cmd/windows/https/x86/patchupmeterpreter/bind_hidden_tcp cmd/windows/https/x86/patchupmeterpreter/bind_ipv6_tcp cmd/windows/https/x86/patchupmeterpreter/bind_ipv6_tcp_uuid cmd/windows/https/x86/patchupmeterpreter/bind_named_pipe cmd/windows/https/x86/patchupmeterpreter/bind_nonx_tcp cmd/windows/https/x86/patchupmeterpreter/bind_tcp cmd/windows/https/x86/patchupmeterpreter/bind_tcp_rc4 cmd/windows/https/x86/patchupmeterpreter/bind_tcp_uuid cmd/windows/https/x86/patchupmeterpreter/find_tag cmd/windows/https/x86/patchupmeterpreter/reverse_ipv6_tcp cmd/windows/https/x86/patchupmeterpreter/reverse_nonx_tcp cmd/windows/https/x86/patchupmeterpreter/reverse_ord_tcp cmd/windows/https/x86/patchupmeterpreter/reverse_tcp cmd/windows/https/x86/patchupmeterpreter/reverse_tcp_allports cmd/windows/https/x86/patchupmeterpreter/reverse_tcp_dns cmd/windows/https/x86/patchupmeterpreter/reverse_tcp_rc4 cmd/windows/https/x86/patchupmeterpreter/reverse_tcp_rc4_dns cmd/windows/https/x86/patchupmeterpreter/reverse_tcp_uuid cmd/windows/https/x86/peinject/bind_hidden_ipknock_tcp cmd/windows/https/x86/peinject/bind_hidden_tcp cmd/windows/https/x86/peinject/bind_ipv6_tcp cmd/windows/https/x86/peinject/bind_ipv6_tcp_uuid cmd/windows/https/x86/peinject/bind_named_pipe cmd/windows/https/x86/peinject/bind_nonx_tcp cmd/windows/https/x86/peinject/bind_tcp cmd/windows/https/x86/peinject/bind_tcp_rc4 cmd/windows/https/x86/peinject/bind_tcp_uuid cmd/windows/https/x86/peinject/find_tag cmd/windows/https/x86/peinject/reverse_ipv6_tcp cmd/windows/https/x86/peinject/reverse_named_pipe cmd/windows/https/x86/peinject/reverse_nonx_tcp cmd/windows/https/x86/peinject/reverse_ord_tcp cmd/windows/https/x86/peinject/reverse_tcp cmd/windows/https/x86/peinject/reverse_tcp_allports cmd/windows/https/x86/peinject/reverse_tcp_dns cmd/windows/https/x86/peinject/reverse_tcp_rc4 cmd/windows/https/x86/peinject/reverse_tcp_rc4_dns cmd/windows/https/x86/peinject/reverse_tcp_uuid cmd/windows/https/x86/pingback_bind_tcp cmd/windows/https/x86/pingback_reverse_tcp cmd/windows/https/x86/powershell_bind_tcp cmd/windows/https/x86/powershell_reverse_tcp cmd/windows/https/x86/powershell_reverse_tcp_ssl cmd/windows/https/x86/shell/bind_hidden_ipknock_tcp cmd/windows/https/x86/shell/bind_hidden_tcp cmd/windows/https/x86/shell/bind_ipv6_tcp cmd/windows/https/x86/shell/bind_ipv6_tcp_uuid cmd/windows/https/x86/shell/bind_named_pipe cmd/windows/https/x86/shell/bind_nonx_tcp cmd/windows/https/x86/shell/bind_tcp cmd/windows/https/x86/shell/bind_tcp_rc4 cmd/windows/https/x86/shell/bind_tcp_uuid cmd/windows/https/x86/shell/find_tag cmd/windows/https/x86/shell/reverse_ipv6_tcp cmd/windows/https/x86/shell/reverse_nonx_tcp cmd/windows/https/x86/shell/reverse_ord_tcp cmd/windows/https/x86/shell/reverse_tcp cmd/windows/https/x86/shell/reverse_tcp_allports cmd/windows/https/x86/shell/reverse_tcp_dns cmd/windows/https/x86/shell/reverse_tcp_rc4 cmd/windows/https/x86/shell/reverse_tcp_rc4_dns cmd/windows/https/x86/shell/reverse_tcp_uuid cmd/windows/https/x86/shell/reverse_udp cmd/windows/https/x86/shell_bind_tcp cmd/windows/https/x86/shell_bind_tcp_xpfw cmd/windows/https/x86/shell_hidden_bind_tcp cmd/windows/https/x86/shell_reverse_tcp cmd/windows/https/x86/speak_pwned cmd/windows/https/x86/upexec/bind_hidden_ipknock_tcp cmd/windows/https/x86/upexec/bind_hidden_tcp cmd/windows/https/x86/upexec/bind_ipv6_tcp cmd/windows/https/x86/upexec/bind_ipv6_tcp_uuid cmd/windows/https/x86/upexec/bind_named_pipe cmd/windows/https/x86/upexec/bind_nonx_tcp cmd/windows/https/x86/upexec/bind_tcp cmd/windows/https/x86/upexec/bind_tcp_rc4 cmd/windows/https/x86/upexec/bind_tcp_uuid cmd/windows/https/x86/upexec/find_tag cmd/windows/https/x86/upexec/reverse_ipv6_tcp cmd/windows/https/x86/upexec/reverse_nonx_tcp cmd/windows/https/x86/upexec/reverse_ord_tcp cmd/windows/https/x86/upexec/reverse_tcp cmd/windows/https/x86/upexec/reverse_tcp_allports cmd/windows/https/x86/upexec/reverse_tcp_dns cmd/windows/https/x86/upexec/reverse_tcp_rc4 cmd/windows/https/x86/upexec/reverse_tcp_rc4_dns cmd/windows/https/x86/upexec/reverse_tcp_uuid cmd/windows/https/x86/upexec/reverse_udp cmd/windows/https/x86/vncinject/bind_hidden_ipknock_tcp cmd/windows/https/x86/vncinject/bind_hidden_tcp cmd/windows/https/x86/vncinject/bind_ipv6_tcp cmd/windows/https/x86/vncinject/bind_ipv6_tcp_uuid cmd/windows/https/x86/vncinject/bind_named_pipe cmd/windows/https/x86/vncinject/bind_nonx_tcp cmd/windows/https/x86/vncinject/bind_tcp cmd/windows/https/x86/vncinject/bind_tcp_rc4 cmd/windows/https/x86/vncinject/bind_tcp_uuid cmd/windows/https/x86/vncinject/find_tag cmd/windows/https/x86/vncinject/reverse_http cmd/windows/https/x86/vncinject/reverse_http_proxy_pstore cmd/windows/https/x86/vncinject/reverse_ipv6_tcp cmd/windows/https/x86/vncinject/reverse_nonx_tcp cmd/windows/https/x86/vncinject/reverse_ord_tcp cmd/windows/https/x86/vncinject/reverse_tcp cmd/windows/https/x86/vncinject/reverse_tcp_allports cmd/windows/https/x86/vncinject/reverse_tcp_dns cmd/windows/https/x86/vncinject/reverse_tcp_rc4 cmd/windows/https/x86/vncinject/reverse_tcp_rc4_dns cmd/windows/https/x86/vncinject/reverse_tcp_uuid cmd/windows/https/x86/vncinject/reverse_winhttp cmd/windows/jjs_reverse_tcp cmd/windows/powershell/adduser cmd/windows/powershell/custom/bind_hidden_ipknock_tcp cmd/windows/powershell/custom/bind_hidden_tcp cmd/windows/powershell/custom/bind_ipv6_tcp cmd/windows/powershell/custom/bind_ipv6_tcp_uuid cmd/windows/powershell/custom/bind_named_pipe cmd/windows/powershell/custom/bind_nonx_tcp cmd/windows/powershell/custom/bind_tcp cmd/windows/powershell/custom/bind_tcp_rc4 cmd/windows/powershell/custom/bind_tcp_uuid cmd/windows/powershell/custom/find_tag cmd/windows/powershell/custom/reverse_http cmd/windows/powershell/custom/reverse_http_proxy_pstore cmd/windows/powershell/custom/reverse_https cmd/windows/powershell/custom/reverse_ipv6_tcp cmd/windows/powershell/custom/reverse_named_pipe cmd/windows/powershell/custom/reverse_nonx_tcp cmd/windows/powershell/custom/reverse_ord_tcp cmd/windows/powershell/custom/reverse_tcp cmd/windows/powershell/custom/reverse_tcp_allports cmd/windows/powershell/custom/reverse_tcp_dns cmd/windows/powershell/custom/reverse_tcp_rc4 cmd/windows/powershell/custom/reverse_tcp_rc4_dns cmd/windows/powershell/custom/reverse_tcp_uuid cmd/windows/powershell/custom/reverse_udp cmd/windows/powershell/custom/reverse_winhttp cmd/windows/powershell/custom/reverse_winhttps cmd/windows/powershell/dllinject/bind_hidden_ipknock_tcp cmd/windows/powershell/dllinject/bind_hidden_tcp cmd/windows/powershell/dllinject/bind_ipv6_tcp cmd/windows/powershell/dllinject/bind_ipv6_tcp_uuid cmd/windows/powershell/dllinject/bind_named_pipe cmd/windows/powershell/dllinject/bind_nonx_tcp cmd/windows/powershell/dllinject/bind_tcp cmd/windows/powershell/dllinject/bind_tcp_rc4 cmd/windows/powershell/dllinject/bind_tcp_uuid cmd/windows/powershell/dllinject/find_tag cmd/windows/powershell/dllinject/reverse_http cmd/windows/powershell/dllinject/reverse_http_proxy_pstore cmd/windows/powershell/dllinject/reverse_ipv6_tcp cmd/windows/powershell/dllinject/reverse_nonx_tcp cmd/windows/powershell/dllinject/reverse_ord_tcp cmd/windows/powershell/dllinject/reverse_tcp cmd/windows/powershell/dllinject/reverse_tcp_allports cmd/windows/powershell/dllinject/reverse_tcp_dns cmd/windows/powershell/dllinject/reverse_tcp_rc4 cmd/windows/powershell/dllinject/reverse_tcp_rc4_dns cmd/windows/powershell/dllinject/reverse_tcp_uuid cmd/windows/powershell/dllinject/reverse_winhttp cmd/windows/powershell/dns_txt_query_exec cmd/windows/powershell/download_exec cmd/windows/powershell/exec cmd/windows/powershell/format_all_drives cmd/windows/powershell/generic/debug_trap cmd/windows/powershell/generic/tight_loop cmd/windows/powershell/loadlibrary cmd/windows/powershell/messagebox cmd/windows/powershell/meterpreter/bind_hidden_ipknock_tcp cmd/windows/powershell/meterpreter/bind_hidden_tcp cmd/windows/powershell/meterpreter/bind_ipv6_tcp cmd/windows/powershell/meterpreter/bind_ipv6_tcp_uuid cmd/windows/powershell/meterpreter/bind_named_pipe cmd/windows/powershell/meterpreter/bind_nonx_tcp cmd/windows/powershell/meterpreter/bind_tcp cmd/windows/powershell/meterpreter/bind_tcp_rc4 cmd/windows/powershell/meterpreter/bind_tcp_uuid cmd/windows/powershell/meterpreter/find_tag cmd/windows/powershell/meterpreter/reverse_http cmd/windows/powershell/meterpreter/reverse_http_proxy_pstore cmd/windows/powershell/meterpreter/reverse_https cmd/windows/powershell/meterpreter/reverse_ipv6_tcp cmd/windows/powershell/meterpreter/reverse_named_pipe cmd/windows/powershell/meterpreter/reverse_nonx_tcp cmd/windows/powershell/meterpreter/reverse_ord_tcp cmd/windows/powershell/meterpreter/reverse_tcp cmd/windows/powershell/meterpreter/reverse_tcp_allports cmd/windows/powershell/meterpreter/reverse_tcp_dns cmd/windows/powershell/meterpreter/reverse_tcp_rc4 cmd/windows/powershell/meterpreter/reverse_tcp_rc4_dns cmd/windows/powershell/meterpreter/reverse_tcp_uuid cmd/windows/powershell/meterpreter/reverse_winhttp cmd/windows/powershell/meterpreter/reverse_winhttps cmd/windows/powershell/meterpreter_reverse_http cmd/windows/powershell/meterpreter_reverse_https cmd/windows/powershell/metsvc_bind_tcp cmd/windows/powershell/metsvc_reverse_tcp cmd/windows/powershell/patchupdllinject/bind_hidden_ipknock_tcp cmd/windows/powershell/patchupdllinject/bind_hidden_tcp cmd/windows/powershell/patchupdllinject/bind_ipv6_tcp cmd/windows/powershell/patchupdllinject/bind_ipv6_tcp_uuid cmd/windows/powershell/patchupdllinject/bind_named_pipe cmd/windows/powershell/patchupdllinject/bind_nonx_tcp cmd/windows/powershell/patchupdllinject/bind_tcp cmd/windows/powershell/patchupdllinject/bind_tcp_rc4 cmd/windows/powershell/patchupdllinject/bind_tcp_uuid cmd/windows/powershell/patchupdllinject/find_tag cmd/windows/powershell/patchupdllinject/reverse_ipv6_tcp cmd/windows/powershell/patchupdllinject/reverse_nonx_tcp cmd/windows/powershell/patchupdllinject/reverse_ord_tcp cmd/windows/powershell/patchupdllinject/reverse_tcp cmd/windows/powershell/patchupdllinject/reverse_tcp_allports cmd/windows/powershell/patchupdllinject/reverse_tcp_dns cmd/windows/powershell/patchupdllinject/reverse_tcp_rc4 cmd/windows/powershell/patchupdllinject/reverse_tcp_rc4_dns cmd/windows/powershell/patchupdllinject/reverse_tcp_uuid cmd/windows/powershell/patchupmeterpreter/bind_hidden_ipknock_tcp cmd/windows/powershell/patchupmeterpreter/bind_hidden_tcp cmd/windows/powershell/patchupmeterpreter/bind_ipv6_tcp cmd/windows/powershell/patchupmeterpreter/bind_ipv6_tcp_uuid cmd/windows/powershell/patchupmeterpreter/bind_named_pipe cmd/windows/powershell/patchupmeterpreter/bind_nonx_tcp cmd/windows/powershell/patchupmeterpreter/bind_tcp cmd/windows/powershell/patchupmeterpreter/bind_tcp_rc4 cmd/windows/powershell/patchupmeterpreter/bind_tcp_uuid cmd/windows/powershell/patchupmeterpreter/find_tag cmd/windows/powershell/patchupmeterpreter/reverse_ipv6_tcp cmd/windows/powershell/patchupmeterpreter/reverse_nonx_tcp cmd/windows/powershell/patchupmeterpreter/reverse_ord_tcp cmd/windows/powershell/patchupmeterpreter/reverse_tcp cmd/windows/powershell/patchupmeterpreter/reverse_tcp_allports cmd/windows/powershell/patchupmeterpreter/reverse_tcp_dns cmd/windows/powershell/patchupmeterpreter/reverse_tcp_rc4 cmd/windows/powershell/patchupmeterpreter/reverse_tcp_rc4_dns cmd/windows/powershell/patchupmeterpreter/reverse_tcp_uuid cmd/windows/powershell/peinject/bind_hidden_ipknock_tcp cmd/windows/powershell/peinject/bind_hidden_tcp cmd/windows/powershell/peinject/bind_ipv6_tcp cmd/windows/powershell/peinject/bind_ipv6_tcp_uuid cmd/windows/powershell/peinject/bind_named_pipe cmd/windows/powershell/peinject/bind_nonx_tcp cmd/windows/powershell/peinject/bind_tcp cmd/windows/powershell/peinject/bind_tcp_rc4 cmd/windows/powershell/peinject/bind_tcp_uuid cmd/windows/powershell/peinject/find_tag cmd/windows/powershell/peinject/reverse_ipv6_tcp cmd/windows/powershell/peinject/reverse_named_pipe cmd/windows/powershell/peinject/reverse_nonx_tcp cmd/windows/powershell/peinject/reverse_ord_tcp cmd/windows/powershell/peinject/reverse_tcp cmd/windows/powershell/peinject/reverse_tcp_allports cmd/windows/powershell/peinject/reverse_tcp_dns cmd/windows/powershell/peinject/reverse_tcp_rc4 cmd/windows/powershell/peinject/reverse_tcp_rc4_dns cmd/windows/powershell/peinject/reverse_tcp_uuid cmd/windows/powershell/pingback_bind_tcp cmd/windows/powershell/pingback_reverse_tcp cmd/windows/powershell/powershell_bind_tcp cmd/windows/powershell/powershell_reverse_tcp cmd/windows/powershell/powershell_reverse_tcp_ssl cmd/windows/powershell/shell/bind_hidden_ipknock_tcp cmd/windows/powershell/shell/bind_hidden_tcp cmd/windows/powershell/shell/bind_ipv6_tcp cmd/windows/powershell/shell/bind_ipv6_tcp_uuid cmd/windows/powershell/shell/bind_named_pipe cmd/windows/powershell/shell/bind_nonx_tcp cmd/windows/powershell/shell/bind_tcp cmd/windows/powershell/shell/bind_tcp_rc4 cmd/windows/powershell/shell/bind_tcp_uuid cmd/windows/powershell/shell/find_tag cmd/windows/powershell/shell/reverse_ipv6_tcp cmd/windows/powershell/shell/reverse_nonx_tcp cmd/windows/powershell/shell/reverse_ord_tcp cmd/windows/powershell/shell/reverse_tcp cmd/windows/powershell/shell/reverse_tcp_allports cmd/windows/powershell/shell/reverse_tcp_dns cmd/windows/powershell/shell/reverse_tcp_rc4 cmd/windows/powershell/shell/reverse_tcp_rc4_dns cmd/windows/powershell/shell/reverse_tcp_uuid cmd/windows/powershell/shell/reverse_udp cmd/windows/powershell/shell_bind_tcp cmd/windows/powershell/shell_bind_tcp_xpfw cmd/windows/powershell/shell_hidden_bind_tcp cmd/windows/powershell/shell_reverse_tcp cmd/windows/powershell/speak_pwned cmd/windows/powershell/upexec/bind_hidden_ipknock_tcp cmd/windows/powershell/upexec/bind_hidden_tcp cmd/windows/powershell/upexec/bind_ipv6_tcp cmd/windows/powershell/upexec/bind_ipv6_tcp_uuid cmd/windows/powershell/upexec/bind_named_pipe cmd/windows/powershell/upexec/bind_nonx_tcp cmd/windows/powershell/upexec/bind_tcp cmd/windows/powershell/upexec/bind_tcp_rc4 cmd/windows/powershell/upexec/bind_tcp_uuid cmd/windows/powershell/upexec/find_tag cmd/windows/powershell/upexec/reverse_ipv6_tcp cmd/windows/powershell/upexec/reverse_nonx_tcp cmd/windows/powershell/upexec/reverse_ord_tcp cmd/windows/powershell/upexec/reverse_tcp cmd/windows/powershell/upexec/reverse_tcp_allports cmd/windows/powershell/upexec/reverse_tcp_dns cmd/windows/powershell/upexec/reverse_tcp_rc4 cmd/windows/powershell/upexec/reverse_tcp_rc4_dns cmd/windows/powershell/upexec/reverse_tcp_uuid cmd/windows/powershell/upexec/reverse_udp cmd/windows/powershell/vncinject/bind_hidden_ipknock_tcp cmd/windows/powershell/vncinject/bind_hidden_tcp cmd/windows/powershell/vncinject/bind_ipv6_tcp cmd/windows/powershell/vncinject/bind_ipv6_tcp_uuid cmd/windows/powershell/vncinject/bind_named_pipe cmd/windows/powershell/vncinject/bind_nonx_tcp cmd/windows/powershell/vncinject/bind_tcp cmd/windows/powershell/vncinject/bind_tcp_rc4 cmd/windows/powershell/vncinject/bind_tcp_uuid cmd/windows/powershell/vncinject/find_tag cmd/windows/powershell/vncinject/reverse_http cmd/windows/powershell/vncinject/reverse_http_proxy_pstore cmd/windows/powershell/vncinject/reverse_ipv6_tcp cmd/windows/powershell/vncinject/reverse_nonx_tcp cmd/windows/powershell/vncinject/reverse_ord_tcp cmd/windows/powershell/vncinject/reverse_tcp cmd/windows/powershell/vncinject/reverse_tcp_allports cmd/windows/powershell/vncinject/reverse_tcp_dns cmd/windows/powershell/vncinject/reverse_tcp_rc4 cmd/windows/powershell/vncinject/reverse_tcp_rc4_dns cmd/windows/powershell/vncinject/reverse_tcp_uuid cmd/windows/powershell/vncinject/reverse_winhttp cmd/windows/powershell/x64/custom/bind_ipv6_tcp cmd/windows/powershell/x64/custom/bind_ipv6_tcp_uuid cmd/windows/powershell/x64/custom/bind_named_pipe cmd/windows/powershell/x64/custom/bind_tcp cmd/windows/powershell/x64/custom/bind_tcp_rc4 cmd/windows/powershell/x64/custom/bind_tcp_uuid cmd/windows/powershell/x64/custom/reverse_http cmd/windows/powershell/x64/custom/reverse_https cmd/windows/powershell/x64/custom/reverse_named_pipe cmd/windows/powershell/x64/custom/reverse_tcp cmd/windows/powershell/x64/custom/reverse_tcp_rc4 cmd/windows/powershell/x64/custom/reverse_tcp_uuid cmd/windows/powershell/x64/custom/reverse_winhttp cmd/windows/powershell/x64/custom/reverse_winhttps cmd/windows/powershell/x64/download_exec cmd/windows/powershell/x64/exec cmd/windows/powershell/x64/loadlibrary cmd/windows/powershell/x64/messagebox cmd/windows/powershell/x64/meterpreter/bind_ipv6_tcp cmd/windows/powershell/x64/meterpreter/bind_ipv6_tcp_uuid cmd/windows/powershell/x64/meterpreter/bind_named_pipe cmd/windows/powershell/x64/meterpreter/bind_tcp cmd/windows/powershell/x64/meterpreter/bind_tcp_rc4 cmd/windows/powershell/x64/meterpreter/bind_tcp_uuid cmd/windows/powershell/x64/meterpreter/reverse_http cmd/windows/powershell/x64/meterpreter/reverse_https cmd/windows/powershell/x64/meterpreter/reverse_named_pipe cmd/windows/powershell/x64/meterpreter/reverse_tcp cmd/windows/powershell/x64/meterpreter/reverse_tcp_rc4 cmd/windows/powershell/x64/meterpreter/reverse_tcp_uuid cmd/windows/powershell/x64/meterpreter/reverse_winhttp cmd/windows/powershell/x64/meterpreter/reverse_winhttps cmd/windows/powershell/x64/meterpreter_reverse_http cmd/windows/powershell/x64/meterpreter_reverse_https cmd/windows/powershell/x64/peinject/bind_ipv6_tcp cmd/windows/powershell/x64/peinject/bind_ipv6_tcp_uuid cmd/windows/powershell/x64/peinject/bind_named_pipe cmd/windows/powershell/x64/peinject/bind_tcp cmd/windows/powershell/x64/peinject/bind_tcp_rc4 cmd/windows/powershell/x64/peinject/bind_tcp_uuid cmd/windows/powershell/x64/peinject/reverse_named_pipe cmd/windows/powershell/x64/peinject/reverse_tcp cmd/windows/powershell/x64/peinject/reverse_tcp_rc4 cmd/windows/powershell/x64/peinject/reverse_tcp_uuid cmd/windows/powershell/x64/pingback_reverse_tcp cmd/windows/powershell/x64/powershell_bind_tcp cmd/windows/powershell/x64/powershell_reverse_tcp cmd/windows/powershell/x64/powershell_reverse_tcp_ssl cmd/windows/powershell/x64/shell/bind_ipv6_tcp cmd/windows/powershell/x64/shell/bind_ipv6_tcp_uuid cmd/windows/powershell/x64/shell/bind_named_pipe cmd/windows/powershell/x64/shell/bind_tcp cmd/windows/powershell/x64/shell/bind_tcp_rc4 cmd/windows/powershell/x64/shell/bind_tcp_uuid cmd/windows/powershell/x64/shell/reverse_tcp cmd/windows/powershell/x64/shell/reverse_tcp_rc4 cmd/windows/powershell/x64/shell/reverse_tcp_uuid cmd/windows/powershell/x64/shell_bind_tcp cmd/windows/powershell/x64/shell_reverse_tcp cmd/windows/powershell/x64/vncinject/bind_ipv6_tcp cmd/windows/powershell/x64/vncinject/bind_ipv6_tcp_uuid cmd/windows/powershell/x64/vncinject/bind_named_pipe cmd/windows/powershell/x64/vncinject/bind_tcp cmd/windows/powershell/x64/vncinject/bind_tcp_rc4 cmd/windows/powershell/x64/vncinject/bind_tcp_uuid cmd/windows/powershell/x64/vncinject/reverse_http cmd/windows/powershell/x64/vncinject/reverse_https cmd/windows/powershell/x64/vncinject/reverse_tcp cmd/windows/powershell/x64/vncinject/reverse_tcp_rc4 cmd/windows/powershell/x64/vncinject/reverse_tcp_uuid cmd/windows/powershell/x64/vncinject/reverse_winhttp cmd/windows/powershell/x64/vncinject/reverse_winhttps cmd/windows/powershell_bind_tcp cmd/windows/powershell_reverse_tcp cmd/windows/powershell_reverse_tcp_ssl cmd/windows/python/exec cmd/windows/python/meterpreter/bind_tcp cmd/windows/python/meterpreter/bind_tcp_uuid cmd/windows/python/meterpreter/reverse_http cmd/windows/python/meterpreter/reverse_https cmd/windows/python/meterpreter/reverse_tcp cmd/windows/python/meterpreter/reverse_tcp_ssl cmd/windows/python/meterpreter/reverse_tcp_uuid cmd/windows/python/meterpreter_bind_tcp cmd/windows/python/meterpreter_reverse_http cmd/windows/python/meterpreter_reverse_https cmd/windows/python/meterpreter_reverse_tcp cmd/windows/python/pingback_bind_tcp cmd/windows/python/pingback_reverse_tcp cmd/windows/python/shell_bind_tcp cmd/windows/python/shell_reverse_sctp cmd/windows/python/shell_reverse_tcp cmd/windows/python/shell_reverse_tcp_ssl cmd/windows/python/shell_reverse_udp cmd/windows/reverse_lua cmd/windows/reverse_perl cmd/windows/reverse_powershell cmd/windows/reverse_ruby cmd/windows/smb/x64/custom/bind_ipv6_tcp cmd/windows/smb/x64/custom/bind_ipv6_tcp_uuid cmd/windows/smb/x64/custom/bind_named_pipe cmd/windows/smb/x64/custom/bind_tcp cmd/windows/smb/x64/custom/bind_tcp_rc4 cmd/windows/smb/x64/custom/bind_tcp_uuid cmd/windows/smb/x64/custom/reverse_http cmd/windows/smb/x64/custom/reverse_https cmd/windows/smb/x64/custom/reverse_named_pipe cmd/windows/smb/x64/custom/reverse_tcp cmd/windows/smb/x64/custom/reverse_tcp_rc4 cmd/windows/smb/x64/custom/reverse_tcp_uuid cmd/windows/smb/x64/custom/reverse_winhttp cmd/windows/smb/x64/custom/reverse_winhttps cmd/windows/smb/x64/download_exec cmd/windows/smb/x64/exec cmd/windows/smb/x64/loadlibrary cmd/windows/smb/x64/messagebox cmd/windows/smb/x64/meterpreter/bind_ipv6_tcp cmd/windows/smb/x64/meterpreter/bind_ipv6_tcp_uuid cmd/windows/smb/x64/meterpreter/bind_named_pipe cmd/windows/smb/x64/meterpreter/bind_tcp cmd/windows/smb/x64/meterpreter/bind_tcp_rc4 cmd/windows/smb/x64/meterpreter/bind_tcp_uuid cmd/windows/smb/x64/meterpreter/reverse_http cmd/windows/smb/x64/meterpreter/reverse_https cmd/windows/smb/x64/meterpreter/reverse_named_pipe cmd/windows/smb/x64/meterpreter/reverse_tcp cmd/windows/smb/x64/meterpreter/reverse_tcp_rc4 cmd/windows/smb/x64/meterpreter/reverse_tcp_uuid cmd/windows/smb/x64/meterpreter/reverse_winhttp cmd/windows/smb/x64/meterpreter/reverse_winhttps cmd/windows/smb/x64/meterpreter_bind_named_pipe cmd/windows/smb/x64/meterpreter_bind_tcp cmd/windows/smb/x64/meterpreter_reverse_http cmd/windows/smb/x64/meterpreter_reverse_https cmd/windows/smb/x64/meterpreter_reverse_ipv6_tcp cmd/windows/smb/x64/meterpreter_reverse_tcp cmd/windows/smb/x64/peinject/bind_ipv6_tcp cmd/windows/smb/x64/peinject/bind_ipv6_tcp_uuid cmd/windows/smb/x64/peinject/bind_named_pipe cmd/windows/smb/x64/peinject/bind_tcp cmd/windows/smb/x64/peinject/bind_tcp_rc4 cmd/windows/smb/x64/peinject/bind_tcp_uuid cmd/windows/smb/x64/peinject/reverse_named_pipe cmd/windows/smb/x64/peinject/reverse_tcp cmd/windows/smb/x64/peinject/reverse_tcp_rc4 cmd/windows/smb/x64/peinject/reverse_tcp_uuid cmd/windows/smb/x64/pingback_reverse_tcp cmd/windows/smb/x64/powershell_bind_tcp cmd/windows/smb/x64/powershell_reverse_tcp cmd/windows/smb/x64/powershell_reverse_tcp_ssl cmd/windows/smb/x64/shell/bind_ipv6_tcp cmd/windows/smb/x64/shell/bind_ipv6_tcp_uuid cmd/windows/smb/x64/shell/bind_named_pipe cmd/windows/smb/x64/shell/bind_tcp cmd/windows/smb/x64/shell/bind_tcp_rc4 cmd/windows/smb/x64/shell/bind_tcp_uuid cmd/windows/smb/x64/shell/reverse_tcp cmd/windows/smb/x64/shell/reverse_tcp_rc4 cmd/windows/smb/x64/shell/reverse_tcp_uuid cmd/windows/smb/x64/shell_bind_tcp cmd/windows/smb/x64/shell_reverse_tcp cmd/windows/smb/x64/vncinject/bind_ipv6_tcp cmd/windows/smb/x64/vncinject/bind_ipv6_tcp_uuid cmd/windows/smb/x64/vncinject/bind_named_pipe cmd/windows/smb/x64/vncinject/bind_tcp cmd/windows/smb/x64/vncinject/bind_tcp_rc4 cmd/windows/smb/x64/vncinject/bind_tcp_uuid cmd/windows/smb/x64/vncinject/reverse_http cmd/windows/smb/x64/vncinject/reverse_https cmd/windows/smb/x64/vncinject/reverse_tcp cmd/windows/smb/x64/vncinject/reverse_tcp_rc4 cmd/windows/smb/x64/vncinject/reverse_tcp_uuid cmd/windows/smb/x64/vncinject/reverse_winhttp cmd/windows/smb/x64/vncinject/reverse_winhttps cmd/windows/tftp/x64/custom/bind_ipv6_tcp cmd/windows/tftp/x64/custom/bind_ipv6_tcp_uuid cmd/windows/tftp/x64/custom/bind_named_pipe cmd/windows/tftp/x64/custom/bind_tcp cmd/windows/tftp/x64/custom/bind_tcp_rc4 cmd/windows/tftp/x64/custom/bind_tcp_uuid cmd/windows/tftp/x64/custom/reverse_http cmd/windows/tftp/x64/custom/reverse_https cmd/windows/tftp/x64/custom/reverse_named_pipe cmd/windows/tftp/x64/custom/reverse_tcp cmd/windows/tftp/x64/custom/reverse_tcp_rc4 cmd/windows/tftp/x64/custom/reverse_tcp_uuid cmd/windows/tftp/x64/custom/reverse_winhttp cmd/windows/tftp/x64/custom/reverse_winhttps cmd/windows/tftp/x64/download_exec cmd/windows/tftp/x64/exec cmd/windows/tftp/x64/loadlibrary cmd/windows/tftp/x64/messagebox cmd/windows/tftp/x64/meterpreter/bind_ipv6_tcp cmd/windows/tftp/x64/meterpreter/bind_ipv6_tcp_uuid cmd/windows/tftp/x64/meterpreter/bind_named_pipe cmd/windows/tftp/x64/meterpreter/bind_tcp cmd/windows/tftp/x64/meterpreter/bind_tcp_rc4 cmd/windows/tftp/x64/meterpreter/bind_tcp_uuid cmd/windows/tftp/x64/meterpreter/reverse_http cmd/windows/tftp/x64/meterpreter/reverse_https cmd/windows/tftp/x64/meterpreter/reverse_named_pipe cmd/windows/tftp/x64/meterpreter/reverse_tcp cmd/windows/tftp/x64/meterpreter/reverse_tcp_rc4 cmd/windows/tftp/x64/meterpreter/reverse_tcp_uuid cmd/windows/tftp/x64/meterpreter/reverse_winhttp cmd/windows/tftp/x64/meterpreter/reverse_winhttps cmd/windows/tftp/x64/meterpreter_bind_named_pipe cmd/windows/tftp/x64/meterpreter_bind_tcp cmd/windows/tftp/x64/meterpreter_reverse_http cmd/windows/tftp/x64/meterpreter_reverse_https cmd/windows/tftp/x64/meterpreter_reverse_ipv6_tcp cmd/windows/tftp/x64/meterpreter_reverse_tcp cmd/windows/tftp/x64/peinject/bind_ipv6_tcp cmd/windows/tftp/x64/peinject/bind_ipv6_tcp_uuid cmd/windows/tftp/x64/peinject/bind_named_pipe cmd/windows/tftp/x64/peinject/bind_tcp cmd/windows/tftp/x64/peinject/bind_tcp_rc4 cmd/windows/tftp/x64/peinject/bind_tcp_uuid cmd/windows/tftp/x64/peinject/reverse_named_pipe cmd/windows/tftp/x64/peinject/reverse_tcp cmd/windows/tftp/x64/peinject/reverse_tcp_rc4 cmd/windows/tftp/x64/peinject/reverse_tcp_uuid cmd/windows/tftp/x64/pingback_reverse_tcp cmd/windows/tftp/x64/powershell_bind_tcp cmd/windows/tftp/x64/powershell_reverse_tcp cmd/windows/tftp/x64/powershell_reverse_tcp_ssl cmd/windows/tftp/x64/shell/bind_ipv6_tcp cmd/windows/tftp/x64/shell/bind_ipv6_tcp_uuid cmd/windows/tftp/x64/shell/bind_named_pipe cmd/windows/tftp/x64/shell/bind_tcp cmd/windows/tftp/x64/shell/bind_tcp_rc4 cmd/windows/tftp/x64/shell/bind_tcp_uuid cmd/windows/tftp/x64/shell/reverse_tcp cmd/windows/tftp/x64/shell/reverse_tcp_rc4 cmd/windows/tftp/x64/shell/reverse_tcp_uuid cmd/windows/tftp/x64/shell_bind_tcp cmd/windows/tftp/x64/shell_reverse_tcp cmd/windows/tftp/x64/vncinject/bind_ipv6_tcp cmd/windows/tftp/x64/vncinject/bind_ipv6_tcp_uuid cmd/windows/tftp/x64/vncinject/bind_named_pipe cmd/windows/tftp/x64/vncinject/bind_tcp cmd/windows/tftp/x64/vncinject/bind_tcp_rc4 cmd/windows/tftp/x64/vncinject/bind_tcp_uuid cmd/windows/tftp/x64/vncinject/reverse_http cmd/windows/tftp/x64/vncinject/reverse_https cmd/windows/tftp/x64/vncinject/reverse_tcp cmd/windows/tftp/x64/vncinject/reverse_tcp_rc4 cmd/windows/tftp/x64/vncinject/reverse_tcp_uuid cmd/windows/tftp/x64/vncinject/reverse_winhttp cmd/windows/tftp/x64/vncinject/reverse_winhttps firefox/exec firefox/shell_bind_tcp firefox/shell_reverse_tcp generic/custom generic/debug_trap generic/shell_bind_aws_ssm generic/shell_bind_tcp generic/shell_reverse_tcp generic/ssh/interact generic/tight_loop java/jsp_shell_bind_tcp java/jsp_shell_reverse_tcp java/meterpreter/bind_tcp java/meterpreter/reverse_http java/meterpreter/reverse_https java/meterpreter/reverse_tcp java/meterpreter_bind_tcp java/meterpreter_reverse_http java/meterpreter_reverse_https java/meterpreter_reverse_tcp java/shell/bind_tcp java/shell/reverse_tcp java/shell_reverse_tcp linux/aarch64/chmod linux/aarch64/exec linux/aarch64/meterpreter/reverse_tcp linux/aarch64/meterpreter_reverse_http linux/aarch64/meterpreter_reverse_https linux/aarch64/meterpreter_reverse_tcp linux/aarch64/shell/reverse_tcp linux/aarch64/shell_reverse_tcp linux/armbe/meterpreter_reverse_http linux/armbe/meterpreter_reverse_https linux/armbe/meterpreter_reverse_tcp linux/armbe/shell_bind_tcp linux/armle/adduser linux/armle/chmod linux/armle/exec linux/armle/meterpreter/bind_tcp linux/armle/meterpreter/reverse_tcp linux/armle/meterpreter_reverse_http linux/armle/meterpreter_reverse_https linux/armle/meterpreter_reverse_tcp linux/armle/shell/bind_tcp linux/armle/shell/reverse_tcp linux/armle/shell_bind_tcp linux/armle/shell_reverse_tcp linux/loongarch64/chmod linux/loongarch64/exec linux/loongarch64/reboot linux/mips64/meterpreter_reverse_http linux/mips64/meterpreter_reverse_https linux/mips64/meterpreter_reverse_tcp linux/mipsbe/exec linux/mipsbe/meterpreter/reverse_tcp linux/mipsbe/meterpreter_reverse_http linux/mipsbe/meterpreter_reverse_https linux/mipsbe/meterpreter_reverse_tcp linux/mipsbe/reboot linux/mipsbe/shell/reverse_tcp linux/mipsbe/shell_bind_tcp linux/mipsbe/shell_reverse_tcp linux/mipsle/exec linux/mipsle/meterpreter/reverse_tcp linux/mipsle/meterpreter_reverse_http linux/mipsle/meterpreter_reverse_https linux/mipsle/meterpreter_reverse_tcp linux/mipsle/reboot linux/mipsle/shell/reverse_tcp linux/mipsle/shell_bind_tcp linux/mipsle/shell_reverse_tcp linux/multi/meterpreter_reverse_tcp linux/ppc/shell_bind_tcp linux/ppc/shell_find_port linux/ppc/shell_reverse_tcp linux/ppc64/shell_bind_tcp linux/ppc64/shell_find_port linux/ppc64/shell_reverse_tcp linux/riscv32le/chmod linux/riscv32le/exec linux/riscv32le/reboot linux/riscv32le/shell/bind_tcp linux/riscv32le/shell/reverse_tcp linux/riscv32le/shell_bind_tcp linux/riscv32le/shell_reverse_tcp linux/riscv64le/chmod linux/riscv64le/exec linux/riscv64le/reboot linux/riscv64le/shell/bind_tcp linux/riscv64le/shell/reverse_tcp linux/riscv64le/shell_bind_tcp linux/riscv64le/shell_reverse_tcp linux/x64/exec linux/x64/meterpreter/bind_tcp linux/x64/meterpreter/reverse_sctp linux/x64/meterpreter/reverse_tcp linux/x64/meterpreter_reverse_http linux/x64/meterpreter_reverse_https linux/x64/meterpreter_reverse_tcp linux/x64/pingback_bind_tcp linux/x64/pingback_reverse_tcp linux/x64/set_hostname linux/x64/shell/bind_tcp linux/x64/shell/reverse_sctp linux/x64/shell/reverse_tcp linux/x64/shell_bind_ipv6_tcp linux/x64/shell_bind_tcp linux/x64/shell_bind_tcp_random_port linux/x64/shell_find_port linux/x64/shell_reverse_ipv6_tcp linux/x64/shell_reverse_tcp linux/x86/adduser linux/x86/chmod linux/x86/exec linux/x86/meterpreter/bind_ipv6_tcp linux/x86/meterpreter/bind_ipv6_tcp_uuid linux/x86/meterpreter/bind_nonx_tcp linux/x86/meterpreter/bind_tcp linux/x86/meterpreter/bind_tcp_uuid linux/x86/meterpreter/find_tag linux/x86/meterpreter/reverse_ipv6_tcp linux/x86/meterpreter/reverse_nonx_tcp linux/x86/meterpreter/reverse_tcp linux/x86/meterpreter/reverse_tcp_uuid linux/x86/meterpreter_reverse_http linux/x86/meterpreter_reverse_https linux/x86/meterpreter_reverse_tcp linux/x86/metsvc_bind_tcp linux/x86/metsvc_reverse_tcp linux/x86/read_file linux/x86/shell/bind_ipv6_tcp linux/x86/shell/bind_ipv6_tcp_uuid linux/x86/shell/bind_nonx_tcp linux/x86/shell/bind_tcp linux/x86/shell/bind_tcp_uuid linux/x86/shell/find_tag linux/x86/shell/reverse_ipv6_tcp linux/x86/shell/reverse_nonx_tcp linux/x86/shell/reverse_tcp linux/x86/shell/reverse_tcp_uuid linux/x86/shell_bind_ipv6_tcp linux/x86/shell_bind_tcp linux/x86/shell_bind_tcp_random_port linux/x86/shell_find_port linux/x86/shell_find_tag linux/x86/shell_reverse_tcp linux/x86/shell_reverse_tcp_ipv6 linux/zarch/meterpreter_reverse_http linux/zarch/meterpreter_reverse_https linux/zarch/meterpreter_reverse_tcp mainframe/shell_reverse_tcp multi/meterpreter/reverse_http multi/meterpreter/reverse_https netware/shell/reverse_tcp nodejs/shell_bind_tcp nodejs/shell_reverse_tcp nodejs/shell_reverse_tcp_ssl osx/aarch64/exec osx/aarch64/meterpreter/reverse_tcp osx/aarch64/meterpreter_reverse_http osx/aarch64/meterpreter_reverse_https osx/aarch64/meterpreter_reverse_tcp osx/aarch64/shell_bind_tcp osx/aarch64/shell_reverse_tcp osx/armle/execute/bind_tcp osx/armle/execute/reverse_tcp osx/armle/shell/bind_tcp osx/armle/shell/reverse_tcp osx/armle/shell_bind_tcp osx/armle/shell_reverse_tcp osx/armle/vibrate osx/ppc/shell/bind_tcp osx/ppc/shell/find_tag osx/ppc/shell/reverse_tcp osx/ppc/shell_bind_tcp osx/ppc/shell_reverse_tcp osx/x64/dupandexecve/bind_tcp osx/x64/dupandexecve/reverse_tcp osx/x64/dupandexecve/reverse_tcp_uuid osx/x64/exec osx/x64/meterpreter/bind_tcp osx/x64/meterpreter/reverse_tcp osx/x64/meterpreter/reverse_tcp_uuid osx/x64/meterpreter_reverse_http osx/x64/meterpreter_reverse_https osx/x64/meterpreter_reverse_tcp osx/x64/say osx/x64/shell_bind_tcp osx/x64/shell_find_tag osx/x64/shell_reverse_tcp osx/x86/bundleinject/bind_tcp osx/x86/bundleinject/reverse_tcp osx/x86/exec osx/x86/isight/bind_tcp osx/x86/isight/reverse_tcp osx/x86/shell_bind_tcp osx/x86/shell_find_port osx/x86/shell_reverse_tcp osx/x86/vforkshell/bind_tcp osx/x86/vforkshell/reverse_tcp osx/x86/vforkshell_bind_tcp osx/x86/vforkshell_reverse_tcp php/bind_php php/bind_php_ipv6 php/download_exec php/exec php/meterpreter/bind_tcp php/meterpreter/bind_tcp_ipv6 php/meterpreter/bind_tcp_ipv6_uuid php/meterpreter/bind_tcp_uuid php/meterpreter/reverse_http php/meterpreter/reverse_https php/meterpreter/reverse_tcp php/meterpreter/reverse_tcp_uuid php/meterpreter_reverse_http php/meterpreter_reverse_https php/meterpreter_reverse_tcp php/reverse_php php/shell_findsock php/unix/cmd/adduser php/unix/cmd/bind_awk php/unix/cmd/bind_busybox_telnetd php/unix/cmd/bind_inetd php/unix/cmd/bind_jjs php/unix/cmd/bind_lua php/unix/cmd/bind_netcat php/unix/cmd/bind_netcat_gaping php/unix/cmd/bind_netcat_gaping_ipv6 php/unix/cmd/bind_nodejs php/unix/cmd/bind_perl php/unix/cmd/bind_perl_ipv6 php/unix/cmd/bind_r php/unix/cmd/bind_ruby php/unix/cmd/bind_ruby_ipv6 php/unix/cmd/bind_socat_sctp php/unix/cmd/bind_socat_tcp php/unix/cmd/bind_socat_udp php/unix/cmd/bind_stub php/unix/cmd/bind_zsh php/unix/cmd/generic php/unix/cmd/interact php/unix/cmd/pingback_bind php/unix/cmd/pingback_reverse php/unix/cmd/reverse php/unix/cmd/reverse_awk php/unix/cmd/reverse_bash php/unix/cmd/reverse_bash_telnet_ssl php/unix/cmd/reverse_bash_udp php/unix/cmd/reverse_jjs php/unix/cmd/reverse_ksh php/unix/cmd/reverse_lua php/unix/cmd/reverse_ncat_ssl php/unix/cmd/reverse_netcat php/unix/cmd/reverse_netcat_gaping php/unix/cmd/reverse_nodejs php/unix/cmd/reverse_openssl php/unix/cmd/reverse_perl php/unix/cmd/reverse_perl_ssl php/unix/cmd/reverse_php_ssl php/unix/cmd/reverse_python php/unix/cmd/reverse_python_ssl php/unix/cmd/reverse_r php/unix/cmd/reverse_ruby php/unix/cmd/reverse_ruby_ssl php/unix/cmd/reverse_socat_sctp php/unix/cmd/reverse_socat_tcp php/unix/cmd/reverse_socat_udp php/unix/cmd/reverse_ssh php/unix/cmd/reverse_ssl_double_telnet php/unix/cmd/reverse_stub php/unix/cmd/reverse_tclsh php/unix/cmd/reverse_zsh python/exec python/meterpreter/bind_tcp python/meterpreter/bind_tcp_uuid python/meterpreter/reverse_http python/meterpreter/reverse_https python/meterpreter/reverse_tcp python/meterpreter/reverse_tcp_ssl python/meterpreter/reverse_tcp_uuid python/meterpreter_bind_tcp python/meterpreter_reverse_http python/meterpreter_reverse_https python/meterpreter_reverse_tcp python/pingback_bind_tcp python/pingback_reverse_tcp python/shell_bind_tcp python/shell_reverse_sctp python/shell_reverse_tcp python/shell_reverse_tcp_ssl python/shell_reverse_udp r/shell_bind_tcp r/shell_reverse_tcp ruby/pingback_bind_tcp ruby/pingback_reverse_tcp ruby/shell_bind_tcp ruby/shell_bind_tcp_ipv6 ruby/shell_reverse_tcp ruby/shell_reverse_tcp_ssl solaris/sparc/shell_bind_tcp solaris/sparc/shell_find_port solaris/sparc/shell_reverse_tcp solaris/x86/shell_bind_tcp solaris/x86/shell_find_port solaris/x86/shell_reverse_tcp tty/unix/interact windows/aarch64/exec windows/aarch64/shell_reverse_tcp windows/adduser windows/custom/bind_hidden_ipknock_tcp windows/custom/bind_hidden_tcp windows/custom/bind_ipv6_tcp windows/custom/bind_ipv6_tcp_uuid windows/custom/bind_named_pipe windows/custom/bind_nonx_tcp windows/custom/bind_tcp windows/custom/bind_tcp_rc4 windows/custom/bind_tcp_uuid windows/custom/find_tag windows/custom/reverse_http windows/custom/reverse_http_proxy_pstore windows/custom/reverse_https windows/custom/reverse_ipv6_tcp windows/custom/reverse_named_pipe windows/custom/reverse_nonx_tcp windows/custom/reverse_ord_tcp windows/custom/reverse_tcp windows/custom/reverse_tcp_allports windows/custom/reverse_tcp_dns windows/custom/reverse_tcp_rc4 windows/custom/reverse_tcp_rc4_dns windows/custom/reverse_tcp_uuid windows/custom/reverse_udp windows/custom/reverse_winhttp windows/custom/reverse_winhttps windows/dllinject/bind_hidden_ipknock_tcp windows/dllinject/bind_hidden_tcp windows/dllinject/bind_ipv6_tcp windows/dllinject/bind_ipv6_tcp_uuid windows/dllinject/bind_named_pipe windows/dllinject/bind_nonx_tcp windows/dllinject/bind_tcp windows/dllinject/bind_tcp_rc4 windows/dllinject/bind_tcp_uuid windows/dllinject/find_tag windows/dllinject/reverse_http windows/dllinject/reverse_http_proxy_pstore windows/dllinject/reverse_ipv6_tcp windows/dllinject/reverse_nonx_tcp windows/dllinject/reverse_ord_tcp windows/dllinject/reverse_tcp windows/dllinject/reverse_tcp_allports windows/dllinject/reverse_tcp_dns windows/dllinject/reverse_tcp_rc4 windows/dllinject/reverse_tcp_rc4_dns windows/dllinject/reverse_tcp_uuid windows/dllinject/reverse_winhttp windows/dns_txt_query_exec windows/download_exec windows/exec windows/format_all_drives windows/loadlibrary windows/messagebox windows/meterpreter/bind_hidden_ipknock_tcp windows/meterpreter/bind_hidden_tcp windows/meterpreter/bind_ipv6_tcp windows/meterpreter/bind_ipv6_tcp_uuid windows/meterpreter/bind_named_pipe windows/meterpreter/bind_nonx_tcp windows/meterpreter/bind_tcp windows/meterpreter/bind_tcp_rc4 windows/meterpreter/bind_tcp_uuid windows/meterpreter/find_tag windows/meterpreter/reverse_http windows/meterpreter/reverse_http_proxy_pstore windows/meterpreter/reverse_https windows/meterpreter/reverse_ipv6_tcp windows/meterpreter/reverse_named_pipe windows/meterpreter/reverse_nonx_tcp windows/meterpreter/reverse_ord_tcp windows/meterpreter/reverse_tcp windows/meterpreter/reverse_tcp_allports windows/meterpreter/reverse_tcp_dns windows/meterpreter/reverse_tcp_rc4 windows/meterpreter/reverse_tcp_rc4_dns windows/meterpreter/reverse_tcp_uuid windows/meterpreter/reverse_winhttp windows/meterpreter/reverse_winhttps windows/meterpreter_bind_named_pipe windows/meterpreter_bind_tcp windows/meterpreter_reverse_http windows/meterpreter_reverse_https windows/meterpreter_reverse_ipv6_tcp windows/meterpreter_reverse_tcp windows/metsvc_bind_tcp windows/metsvc_reverse_tcp windows/patchupdllinject/bind_hidden_ipknock_tcp windows/patchupdllinject/bind_hidden_tcp windows/patchupdllinject/bind_ipv6_tcp windows/patchupdllinject/bind_ipv6_tcp_uuid windows/patchupdllinject/bind_named_pipe windows/patchupdllinject/bind_nonx_tcp windows/patchupdllinject/bind_tcp windows/patchupdllinject/bind_tcp_rc4 windows/patchupdllinject/bind_tcp_uuid windows/patchupdllinject/find_tag windows/patchupdllinject/reverse_ipv6_tcp windows/patchupdllinject/reverse_nonx_tcp windows/patchupdllinject/reverse_ord_tcp windows/patchupdllinject/reverse_tcp windows/patchupdllinject/reverse_tcp_allports windows/patchupdllinject/reverse_tcp_dns windows/patchupdllinject/reverse_tcp_rc4 windows/patchupdllinject/reverse_tcp_rc4_dns windows/patchupdllinject/reverse_tcp_uuid windows/patchupmeterpreter/bind_hidden_ipknock_tcp windows/patchupmeterpreter/bind_hidden_tcp windows/patchupmeterpreter/bind_ipv6_tcp windows/patchupmeterpreter/bind_ipv6_tcp_uuid windows/patchupmeterpreter/bind_named_pipe windows/patchupmeterpreter/bind_nonx_tcp windows/patchupmeterpreter/bind_tcp windows/patchupmeterpreter/bind_tcp_rc4 windows/patchupmeterpreter/bind_tcp_uuid windows/patchupmeterpreter/find_tag windows/patchupmeterpreter/reverse_ipv6_tcp windows/patchupmeterpreter/reverse_nonx_tcp windows/patchupmeterpreter/reverse_ord_tcp windows/patchupmeterpreter/reverse_tcp windows/patchupmeterpreter/reverse_tcp_allports windows/patchupmeterpreter/reverse_tcp_dns windows/patchupmeterpreter/reverse_tcp_rc4 windows/patchupmeterpreter/reverse_tcp_rc4_dns windows/patchupmeterpreter/reverse_tcp_uuid windows/peinject/bind_hidden_ipknock_tcp windows/peinject/bind_hidden_tcp windows/peinject/bind_ipv6_tcp windows/peinject/bind_ipv6_tcp_uuid windows/peinject/bind_named_pipe windows/peinject/bind_nonx_tcp windows/peinject/bind_tcp windows/peinject/bind_tcp_rc4 windows/peinject/bind_tcp_uuid windows/peinject/find_tag windows/peinject/reverse_ipv6_tcp windows/peinject/reverse_named_pipe windows/peinject/reverse_nonx_tcp windows/peinject/reverse_ord_tcp windows/peinject/reverse_tcp windows/peinject/reverse_tcp_allports windows/peinject/reverse_tcp_dns windows/peinject/reverse_tcp_rc4 windows/peinject/reverse_tcp_rc4_dns windows/peinject/reverse_tcp_uuid windows/pingback_bind_tcp windows/pingback_reverse_tcp windows/powershell_bind_tcp windows/powershell_reverse_tcp windows/powershell_reverse_tcp_ssl windows/shell/bind_hidden_ipknock_tcp windows/shell/bind_hidden_tcp windows/shell/bind_ipv6_tcp windows/shell/bind_ipv6_tcp_uuid windows/shell/bind_named_pipe windows/shell/bind_nonx_tcp windows/shell/bind_tcp windows/shell/bind_tcp_rc4 windows/shell/bind_tcp_uuid windows/shell/find_tag windows/shell/reverse_ipv6_tcp windows/shell/reverse_nonx_tcp windows/shell/reverse_ord_tcp windows/shell/reverse_tcp windows/shell/reverse_tcp_allports windows/shell/reverse_tcp_dns windows/shell/reverse_tcp_rc4 windows/shell/reverse_tcp_rc4_dns windows/shell/reverse_tcp_uuid windows/shell/reverse_udp windows/shell_bind_tcp windows/shell_bind_tcp_xpfw windows/shell_hidden_bind_tcp windows/shell_reverse_tcp windows/speak_pwned windows/upexec/bind_hidden_ipknock_tcp windows/upexec/bind_hidden_tcp windows/upexec/bind_ipv6_tcp windows/upexec/bind_ipv6_tcp_uuid windows/upexec/bind_named_pipe windows/upexec/bind_nonx_tcp windows/upexec/bind_tcp windows/upexec/bind_tcp_rc4 windows/upexec/bind_tcp_uuid windows/upexec/find_tag windows/upexec/reverse_ipv6_tcp windows/upexec/reverse_nonx_tcp windows/upexec/reverse_ord_tcp windows/upexec/reverse_tcp windows/upexec/reverse_tcp_allports windows/upexec/reverse_tcp_dns windows/upexec/reverse_tcp_rc4 windows/upexec/reverse_tcp_rc4_dns windows/upexec/reverse_tcp_uuid windows/upexec/reverse_udp windows/vncinject/bind_hidden_ipknock_tcp windows/vncinject/bind_hidden_tcp windows/vncinject/bind_ipv6_tcp windows/vncinject/bind_ipv6_tcp_uuid windows/vncinject/bind_named_pipe windows/vncinject/bind_nonx_tcp windows/vncinject/bind_tcp windows/vncinject/bind_tcp_rc4 windows/vncinject/bind_tcp_uuid windows/vncinject/find_tag windows/vncinject/reverse_http windows/vncinject/reverse_http_proxy_pstore windows/vncinject/reverse_ipv6_tcp windows/vncinject/reverse_nonx_tcp windows/vncinject/reverse_ord_tcp windows/vncinject/reverse_tcp windows/vncinject/reverse_tcp_allports windows/vncinject/reverse_tcp_dns windows/vncinject/reverse_tcp_rc4 windows/vncinject/reverse_tcp_rc4_dns windows/vncinject/reverse_tcp_uuid windows/vncinject/reverse_winhttp windows/x64/custom/bind_ipv6_tcp windows/x64/custom/bind_ipv6_tcp_uuid windows/x64/custom/bind_named_pipe windows/x64/custom/bind_tcp windows/x64/custom/bind_tcp_rc4 windows/x64/custom/bind_tcp_uuid windows/x64/custom/reverse_http windows/x64/custom/reverse_https windows/x64/custom/reverse_named_pipe windows/x64/custom/reverse_tcp windows/x64/custom/reverse_tcp_rc4 windows/x64/custom/reverse_tcp_uuid windows/x64/custom/reverse_winhttp windows/x64/custom/reverse_winhttps windows/x64/download_exec windows/x64/exec windows/x64/loadlibrary windows/x64/messagebox windows/x64/meterpreter/bind_ipv6_tcp windows/x64/meterpreter/bind_ipv6_tcp_uuid windows/x64/meterpreter/bind_named_pipe windows/x64/meterpreter/bind_tcp windows/x64/meterpreter/bind_tcp_rc4 windows/x64/meterpreter/bind_tcp_uuid windows/x64/meterpreter/reverse_http windows/x64/meterpreter/reverse_https windows/x64/meterpreter/reverse_named_pipe windows/x64/meterpreter/reverse_tcp windows/x64/meterpreter/reverse_tcp_rc4 windows/x64/meterpreter/reverse_tcp_uuid windows/x64/meterpreter/reverse_winhttp windows/x64/meterpreter/reverse_winhttps windows/x64/meterpreter_bind_named_pipe windows/x64/meterpreter_bind_tcp windows/x64/meterpreter_reverse_http windows/x64/meterpreter_reverse_https windows/x64/meterpreter_reverse_ipv6_tcp windows/x64/meterpreter_reverse_tcp windows/x64/peinject/bind_ipv6_tcp windows/x64/peinject/bind_ipv6_tcp_uuid windows/x64/peinject/bind_named_pipe windows/x64/peinject/bind_tcp windows/x64/peinject/bind_tcp_rc4 windows/x64/peinject/bind_tcp_uuid windows/x64/peinject/reverse_named_pipe windows/x64/peinject/reverse_tcp windows/x64/peinject/reverse_tcp_rc4 windows/x64/peinject/reverse_tcp_uuid windows/x64/pingback_reverse_tcp windows/x64/powershell_bind_tcp windows/x64/powershell_reverse_tcp windows/x64/powershell_reverse_tcp_ssl windows/x64/shell/bind_ipv6_tcp windows/x64/shell/bind_ipv6_tcp_uuid windows/x64/shell/bind_named_pipe windows/x64/shell/bind_tcp windows/x64/shell/bind_tcp_rc4 windows/x64/shell/bind_tcp_uuid windows/x64/shell/reverse_tcp windows/x64/shell/reverse_tcp_rc4 windows/x64/shell/reverse_tcp_uuid windows/x64/shell_bind_tcp windows/x64/shell_reverse_tcp windows/x64/vncinject/bind_ipv6_tcp windows/x64/vncinject/bind_ipv6_tcp_uuid windows/x64/vncinject/bind_named_pipe windows/x64/vncinject/bind_tcp windows/x64/vncinject/bind_tcp_rc4 windows/x64/vncinject/bind_tcp_uuid windows/x64/vncinject/reverse_http windows/x64/vncinject/reverse_https windows/x64/vncinject/reverse_tcp windows/x64/vncinject/reverse_tcp_rc4 windows/x64/vncinject/reverse_tcp_uuid windows/x64/vncinject/reverse_winhttp windows/x64/vncinject/reverse_winhttps ' -- "$cur" ) ) + return 0 + ;; + -a|--arch) + COMPREPLY=( $( compgen -W ' aarch64 armbe armle cbea cbea64 cmd dalvik firefox java loongarch64 mips mips64 mips64le mipsbe mipsle nodejs php ppc ppc64 ppc64le ppce500v2 python r riscv32be riscv32le riscv64be riscv64le ruby sparc sparc64 tty x64 x86 x86_64 zarch ' -- "$cur" ) ) + return 0 + ;; + --platform) + COMPREPLY=( $( compgen -W ' aix android apple_ios arista brocade bsd bsdi cisco firefox freebsd hardware hpux irix java javascript juniper linux mainframe mikrotik multi netbsd netware nodejs openbsd osx php python r ruby solaris unifi unix unknown windows ' -- "$cur" ) ) + return 0 + ;; + --encrypt) + COMPREPLY=( $( compgen -W ' xor base64 aes256 rc4 ' -- "$cur" ) ) + return 0 + ;; + -o|--out|-c|--add-code|-x|--template) + _filedir + return 0 + ;; + esac + + COMPREPLY=( $( compgen -W ' -l --list -p --payload --list -options -f --format -e --encoder --service -name --sec -name --smallest --encrypt --encrypt -key --encrypt -iv -a --arch --platform -o --out -b --bad -chars -n --nopsled --pad -nops -s --space --encoder -space -i --iterations -c --add -code -x --template -k --keep -v --var -name -t --timeout -h --help ' -- "$cur" ) ) +} && +complete -F _msfvenom msfvenom diff --git a/network/metasploit-framework-bin/slack-desc b/network/metasploit-framework-bin/slack-desc new file mode 100644 index 0000000..11113bd --- /dev/null +++ b/network/metasploit-framework-bin/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +metasploit-framework-bin: metasploit-framework-bin (most used pentesting framework) +metasploit-framework-bin: +metasploit-framework-bin: Knowledge is power, especially when it's shared. A +metasploit-framework-bin: collaboration between the open source community and Rapid7, +metasploit-framework-bin: Metasploit helps security teams do more than just verify +metasploit-framework-bin: vulnerabilities, manage security assessments, and improve +metasploit-framework-bin: security awareness; it empowers and arms defenders to always +metasploit-framework-bin: stay one step (or two) ahead of the game. +metasploit-framework-bin: +metasploit-framework-bin: This is a repackaging of the official binary .deb file +metasploit-framework-bin: distributed by Rapid7. diff --git a/network/r8125/README b/network/r8125/README new file mode 100644 index 0000000..e3506a7 --- /dev/null +++ b/network/r8125/README @@ -0,0 +1,56 @@ +r8125 is the out-of-tree Linux kernel driver for Realtek RTL8125 and +RTL8125B 2.5 Gigabit Ethernet controllers with PCI-Express interface. +It provides complete 2.5Gbps support not available in the in-tree r8169 +driver for this hardware revision. + +The resulting package is specific to the kernel it was built against. +You must rebuild this package whenever you upgrade your kernel. + +BUILDING +-------- +To build for the currently running kernel: + + ./r8125.SlackBuild + +To build for a different kernel (e.g. one you have just installed but +not yet booted): + + KERNEL=6.1.0 ./r8125.SlackBuild + +The KERNEL variable must match the directory name under /lib/modules/ +and the kernel build tree must exist at /lib/modules/$KERNEL/build. + +LOADING THE MODULE +------------------ +After installing the package, load the driver without rebooting: + + modprobe r8125 + +To verify it loaded: + + lsmod | grep r8125 + +CONFLICT WITH r8169 +------------------- +The in-tree r8169 driver may also bind to RTL8125 hardware. This package +installs a blacklist file to prevent r8169 from loading: + + /etc/modprobe.d/r8169_blacklist.conf + +If the file already exists and has been modified, the new version will +be installed as r8169_blacklist.conf.new for you to review and merge. + +If r8169 is currently loaded, unload it before loading r8125: + + modprobe -r r8169 + modprobe r8125 + +NVCHECKER +--------- +An nvchecker configuration file is installed alongside this README at: + + /usr/doc/r8125-VERSION/r8125.nvchecker + +nvchecker (https://github.com/lilydjwg/nvchecker) is a tool for checking +new versions of software. Copy or include this file in your nvchecker +configuration to be notified when Realtek publishes a new r8125 release. diff --git a/network/r8125/doinst.sh b/network/r8125/doinst.sh new file mode 100644 index 0000000..cfc59d8 --- /dev/null +++ b/network/r8125/doinst.sh @@ -0,0 +1,16 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + rm $NEW + fi +} + +config etc/modprobe.d/r8169_blacklist.conf.new + +# A good idea whenever kernel modules are added or changed: +if [ -x sbin/depmod ]; then + chroot . /sbin/depmod -a @KERNEL@ 1> /dev/null 2> /dev/null +fi diff --git a/network/r8125/r8125.SlackBuild b/network/r8125/r8125.SlackBuild new file mode 100644 index 0000000..28417ec --- /dev/null +++ b/network/r8125/r8125.SlackBuild @@ -0,0 +1,113 @@ +#!/bin/bash + +# Slackware build script for r8125 + +# Copyright 2026 danix <danix@danix.xyz> +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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 AUTHOR 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. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=r8125 +VERSION=${VERSION:-9.018.00} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +KERNEL="${KERNEL:-$(uname -r)}" +PKGVER="$(printf %s "${VERSION}_$KERNEL" | tr - _)" + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$PKGVER-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -eu + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +( + unset ARCH + cd /lib/modules/$KERNEL/build + + # Disable DASH: EXTRA_CFLAGS override drops -DENABLE_DASH_SUPPORT but still + # builds r8125_dash.o, breaking the build. DASH is out-of-band mgmt, unneeded. + make \ + M="$TMP/$PRGNAM-$VERSION/src" \ + ENABLE_DASH_SUPPORT=n \ + EXTRA_CFLAGS="$SLKCFLAGS" \ + modules +) + +install -Dm0644 src/$PRGNAM.ko \ + $PKG/lib/modules/$KERNEL/kernel/drivers/net/ethernet/realtek/$PRGNAM.ko + +mkdir -p $PKG/etc/modprobe.d +echo 'blacklist r8169' > $PKG/etc/modprobe.d/r8169_blacklist.conf.new + +cd $TMP/$PRGNAM-$VERSION +mkdir -p $PKG/usr/doc/$PRGNAM-$PKGVER +chmod 644 README # it's 777 from the tarball +cp -a README $PKG/usr/doc/$PRGNAM-$PKGVER/ +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$PKGVER/$PRGNAM.SlackBuild +cat $CWD/$PRGNAM.nvchecker > $PKG/usr/doc/$PRGNAM-$PKGVER/$PRGNAM.nvchecker + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +sed "s%@KERNEL@%$KERNEL%" $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$PKGVER-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/network/r8125/r8125.info b/network/r8125/r8125.info new file mode 100644 index 0000000..a7ddd37 --- /dev/null +++ b/network/r8125/r8125.info @@ -0,0 +1,10 @@ +PRGNAM="r8125" +VERSION="9.018.00" +HOMEPAGE="https://www.realtek.com/en/component/zoo/category/network-interface-controllers-10-100-1000m-gigabit-ethernet-pci-express-software" +DOWNLOAD="https://github.com/danixland/r8125/releases/download/9.018.00/r8125-9.018.00.tar.bz2" +MD5SUM="88d7c3ae81808c95a89c0b0eee1c7256" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="danix" +EMAIL="danix@danix.xyz" diff --git a/network/r8125/r8125.nvchecker b/network/r8125/r8125.nvchecker new file mode 100644 index 0000000..d2fafc1 --- /dev/null +++ b/network/r8125/r8125.nvchecker @@ -0,0 +1,4 @@ +[r8125] +source = "jq" +url = "https://www.realtek.com/Download/ListAllDownloadItem?cate_id=584" +filter = '.Data.DownloadItems["Unix (Linux)"][] | select(.Name | startswith("r8125")) | .Version' diff --git a/network/r8125/slack-desc b/network/r8125/slack-desc new file mode 100644 index 0000000..1f794fd --- /dev/null +++ b/network/r8125/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +r8125: r8125 (Realtek RTL8125 2.5GbE Linux kernel driver) +r8125: +r8125: This is the out-of-tree Linux kernel driver for Realtek RTL8125/ +r8125: RTL8125B 2.5 Gigabit Ethernet controllers with PCI-Express interface. +r8125: It provides full support for 2.5Gbps operation not found in the +r8125: in-tree r8169 driver for this hardware revision. +r8125: +r8125: Features include EEE (Energy Efficient Ethernet), Wake-on-LAN, +r8125: jumbo frames up to 9KB, VLAN offloading, and NAPI support. +r8125: +r8125: Homepage: https://www.realtek.com/ |
