mirror of
https://github.com/gsmith257-cyber/better-sliver
synced 2026-06-06 15:44:30 +00:00
update dependancies
This commit is contained in:
+3
-3
@@ -20,8 +20,8 @@ RUN groupadd -g 999 sliver && useradd -r -u 999 -g sliver sliver
|
||||
RUN mkdir -p /home/sliver/ && chown -R sliver:sliver /home/sliver
|
||||
|
||||
### Build sliver:
|
||||
WORKDIR /go/src/github.com/gsmith257-cyber/better-sliver
|
||||
ADD . /go/src/github.com/gsmith257-cyber/better-sliver/
|
||||
WORKDIR /go/src/github.com/gsmith257-cyber/better-sliver-package
|
||||
ADD . /go/src/github.com/gsmith257-cyber/better-sliver-package/
|
||||
RUN make clean-all
|
||||
RUN make
|
||||
RUN cp -vv sliver-server /opt/sliver-server
|
||||
@@ -39,7 +39,7 @@ RUN apt-get update --fix-missing \
|
||||
RUN /opt/sliver-server unpack --force
|
||||
|
||||
### Run unit tests
|
||||
RUN /go/src/github.com/gsmith257-cyber/better-sliver/go-tests.sh
|
||||
RUN /go/src/github.com/gsmith257-cyber/better-sliver-package/go-tests.sh
|
||||
|
||||
# STAGE: production
|
||||
## Final dockerized form of Sliver
|
||||
|
||||
@@ -35,8 +35,8 @@ COMPILED_AT = $(shell date +%s)
|
||||
RELEASES_URL ?= https://api.github.com/repos/BishopFox/sliver/releases
|
||||
ARMORY_PUBLIC_KEY ?= RWSBpxpRWDrD7Fe+VvRE3c2VEDC2NK80rlNCj+BX0gz44Xw07r6KQD9L
|
||||
ARMORY_REPO_URL ?= https://api.github.com/repos/sliverarmory/armory/releases
|
||||
VERSION_PKG = github.com/gsmith257-cyber/better-sliver/client/version
|
||||
CLIENT_ASSETS_PKG = github.com/gsmith257-cyber/better-sliver/client/assets
|
||||
VERSION_PKG = github.com/gsmith257-cyber/better-sliver-package/client/version
|
||||
CLIENT_ASSETS_PKG = github.com/gsmith257-cyber/better-sliver-package/client/assets
|
||||
|
||||
GIT_DIRTY = $(shell git diff --quiet|| echo 'Dirty')
|
||||
GIT_COMMIT = $(shell git rev-parse HEAD)
|
||||
|
||||
@@ -26,7 +26,7 @@ import (
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
ver "github.com/gsmith257-cyber/better-sliver/client/version"
|
||||
ver "github.com/gsmith257-cyber/better-sliver-package/client/version"
|
||||
)
|
||||
|
||||
const (
|
||||
|
||||
+2
-2
@@ -24,8 +24,8 @@ import (
|
||||
"os"
|
||||
"path"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/rsteube/carapace"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
@@ -22,7 +22,7 @@ import (
|
||||
"fmt"
|
||||
"sort"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"gopkg.in/AlecAivazis/survey.v1"
|
||||
)
|
||||
|
||||
|
||||
@@ -23,11 +23,11 @@ import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/transport"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/rpcpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/transport"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/rpcpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/grpc"
|
||||
"google.golang.org/grpc/connectivity"
|
||||
|
||||
@@ -21,10 +21,10 @@ package cli
|
||||
import (
|
||||
"errors"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/use"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/use"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/rsteube/carapace"
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/pflag"
|
||||
|
||||
@@ -22,7 +22,7 @@ import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"github.com/rsteube/carapace"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
@@ -21,7 +21,7 @@ package cli
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/version"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/version"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -24,9 +24,9 @@ import (
|
||||
"os"
|
||||
"strings"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/jedib0t/go-pretty/v6/table"
|
||||
"github.com/jedib0t/go-pretty/v6/text"
|
||||
"github.com/rsteube/carapace"
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
package alias
|
||||
|
||||
import (
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/rsteube/carapace"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
@@ -25,9 +25,9 @@ import (
|
||||
"strings"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/util"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/util"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -28,14 +28,14 @@ import (
|
||||
"strings"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/packages"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/util"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/packages"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/util"
|
||||
app "github.com/reeflective/console"
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/pflag"
|
||||
@@ -162,7 +162,7 @@ func LoadAlias(manifestPath string, cmd *cobra.Command, con *console.SliverClien
|
||||
helpMsg := fmt.Sprintf("[%s] %s", aliasManifest.Name, aliasManifest.Help)
|
||||
longHelpMsg := help.FormatHelpTmpl(aliasManifest.LongHelp)
|
||||
longHelpMsg += "\n\n⚠️ If you're having issues passing arguments to the alias please read:\n"
|
||||
longHelpMsg += "https://github.com/gsmith257-cyber/better-sliver/wiki/Aliases-&-Extensions#aliases-command-parsing"
|
||||
longHelpMsg += "https://github.com/gsmith257-cyber/better-sliver-package/wiki/Aliases-&-Extensions#aliases-command-parsing"
|
||||
addAliasCmd := &cobra.Command{
|
||||
Use: aliasManifest.CommandName,
|
||||
Short: helpMsg,
|
||||
|
||||
@@ -25,8 +25,8 @@ import (
|
||||
"path/filepath"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -32,12 +32,12 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
"golang.org/x/term"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/alias"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/extensions"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/util/minisign"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/alias"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/extensions"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/util/minisign"
|
||||
)
|
||||
|
||||
// ArmoryIndex - Index JSON containing alias/extension/bundle information
|
||||
|
||||
@@ -5,11 +5,11 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/pflag"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/completers"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/completers"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
)
|
||||
|
||||
// Commands returns the `armory` command and its subcommands.
|
||||
|
||||
@@ -30,13 +30,13 @@ import (
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/alias"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/extensions"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver/util"
|
||||
"github.com/gsmith257-cyber/better-sliver/util/minisign"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/alias"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/extensions"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/util"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/util/minisign"
|
||||
)
|
||||
|
||||
// ErrPackageNotFound - The package was not found
|
||||
|
||||
@@ -9,9 +9,9 @@ import (
|
||||
"sync"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/jedib0t/go-pretty/v6/table"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
@@ -34,8 +34,8 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver/util/minisign"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/util/minisign"
|
||||
)
|
||||
|
||||
// ArmoryIndexParser - Generic interface to fetch armory indexes
|
||||
|
||||
@@ -23,9 +23,9 @@ import (
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/alias"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/extensions"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/alias"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/extensions"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
)
|
||||
|
||||
// ArmorySearchCmd - Search for packages by name
|
||||
|
||||
@@ -29,12 +29,12 @@ import (
|
||||
"github.com/jedib0t/go-pretty/v6/table"
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/alias"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/extensions"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/util"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/alias"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/extensions"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/util"
|
||||
)
|
||||
|
||||
type VersionInformation struct {
|
||||
|
||||
@@ -21,8 +21,8 @@ package backdoor
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -5,11 +5,11 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/pflag"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/generate"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/generate"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
)
|
||||
|
||||
// Commands returns the “ command and its subcommands.
|
||||
|
||||
@@ -28,11 +28,11 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
"golang.org/x/term"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/kill"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/kill"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
)
|
||||
|
||||
// BeaconsCmd - Display/interact with beacons
|
||||
|
||||
@@ -9,11 +9,11 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/pflag"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
)
|
||||
|
||||
// Commands returns the “ command and its subcommands.
|
||||
|
||||
@@ -28,9 +28,9 @@ import (
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -24,9 +24,9 @@ import (
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
)
|
||||
|
||||
// BeaconsPruneCmd - Prune stale beacons automatically
|
||||
|
||||
@@ -21,7 +21,7 @@ package beacons
|
||||
import (
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
)
|
||||
|
||||
// BeaconsRmCmd - Display/interact with beacons
|
||||
|
||||
@@ -26,8 +26,8 @@ import (
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
)
|
||||
|
||||
// BeaconsWatchCmd - Watch your beacons in real-ish time
|
||||
|
||||
@@ -23,10 +23,10 @@ import (
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
"github.com/jedib0t/go-pretty/v6/table"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
package builders
|
||||
|
||||
import (
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/pflag"
|
||||
)
|
||||
|
||||
@@ -35,12 +35,12 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
"golang.org/x/exp/slices"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
)
|
||||
|
||||
// C2ProfileCmd list available http profiles
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
package c2profiles
|
||||
|
||||
import (
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/generate"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/generate"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/rsteube/carapace"
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/pflag"
|
||||
|
||||
@@ -5,9 +5,9 @@ import (
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/jedib0t/go-pretty/v6/table"
|
||||
"github.com/spf13/cobra"
|
||||
"golang.org/x/term"
|
||||
|
||||
@@ -19,10 +19,10 @@ package certificates
|
||||
*/
|
||||
|
||||
import (
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/pflag"
|
||||
)
|
||||
|
||||
@@ -22,12 +22,12 @@ import (
|
||||
"context"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ package command
|
||||
import (
|
||||
"strings"
|
||||
|
||||
client "github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
client "github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/reeflective/console"
|
||||
"github.com/rsteube/carapace"
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
@@ -5,10 +5,10 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/pflag"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
)
|
||||
|
||||
// Commands returns the “ command and its subcommands.
|
||||
|
||||
@@ -25,10 +25,10 @@ import (
|
||||
"io"
|
||||
"os"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/util"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/util"
|
||||
"github.com/jedib0t/go-pretty/v6/table"
|
||||
"github.com/klauspost/compress/zstd"
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
@@ -26,10 +26,10 @@ import (
|
||||
"github.com/jedib0t/go-pretty/v6/table"
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
)
|
||||
|
||||
// CrackCmd - GPU password cracking interface
|
||||
|
||||
@@ -5,8 +5,8 @@ import (
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/rsteube/carapace"
|
||||
)
|
||||
|
||||
|
||||
@@ -25,9 +25,9 @@ import (
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
package creds
|
||||
|
||||
import (
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/rsteube/carapace"
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/pflag"
|
||||
|
||||
@@ -23,10 +23,10 @@ import (
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
"github.com/jedib0t/go-pretty/v6/table"
|
||||
"github.com/rsteube/carapace"
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
@@ -21,9 +21,9 @@ package creds
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -9,9 +9,9 @@ import (
|
||||
"text/tabwriter"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
)
|
||||
|
||||
// SelectCredential - Interactive menu for the user to select a credentials from the database.
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
package cursed
|
||||
|
||||
import (
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/rsteube/carapace"
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/pflag"
|
||||
|
||||
@@ -29,13 +29,13 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/core"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/overlord"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/tcpproxy"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/core"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/overlord"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/tcpproxy"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -27,9 +27,9 @@ import (
|
||||
"text/tabwriter"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/core"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/overlord"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/core"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/overlord"
|
||||
"github.com/reeflective/readline"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
@@ -24,8 +24,8 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/overlord"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/overlord"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -24,12 +24,12 @@ import (
|
||||
"strings"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/core"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/overlord"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/core"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/overlord"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -27,13 +27,13 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/core"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/overlord"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/tcpproxy"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/core"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/overlord"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/tcpproxy"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -23,9 +23,9 @@ import (
|
||||
"strconv"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/core"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/core"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@ import (
|
||||
"os"
|
||||
"time"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/overlord"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/overlord"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -27,9 +27,9 @@ import (
|
||||
"text/tabwriter"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/core"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/core"
|
||||
"github.com/jedib0t/go-pretty/v6/table"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
@@ -5,11 +5,11 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/pflag"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/generate"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/generate"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
)
|
||||
|
||||
// Commands returns the “ command and its subcommands.
|
||||
|
||||
@@ -25,8 +25,8 @@ import (
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
)
|
||||
|
||||
// dllhijack --ref-path c:\windows\system32\msasn1.dll --file /tmp/runner.dll TARGET_PATH
|
||||
|
||||
@@ -5,10 +5,10 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/pflag"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
)
|
||||
|
||||
// Commands returns the “ command and its subcommands.
|
||||
|
||||
@@ -25,9 +25,9 @@ import (
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
)
|
||||
|
||||
// EnvGetCmd - Get a remote environment variable
|
||||
|
||||
@@ -25,10 +25,10 @@ import (
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
)
|
||||
|
||||
// EnvSetCmd - Set a remote environment variable
|
||||
|
||||
@@ -25,9 +25,9 @@ import (
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
)
|
||||
|
||||
// EnvUnsetCmd - Unset a remote environment variable
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
package exec
|
||||
|
||||
import (
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/generate"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/generate"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/rsteube/carapace"
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/pflag"
|
||||
|
||||
@@ -25,9 +25,9 @@ import (
|
||||
"strings"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -26,10 +26,10 @@ import (
|
||||
"log"
|
||||
"os"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/core"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/core"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"golang.org/x/term"
|
||||
"google.golang.org/protobuf/proto"
|
||||
|
||||
@@ -23,10 +23,10 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/loot"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/loot"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -25,9 +25,9 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
)
|
||||
|
||||
// MigrateCmd - Windows only, inject an implant into another process
|
||||
|
||||
@@ -22,10 +22,10 @@ import (
|
||||
"context"
|
||||
"fmt"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -22,9 +22,9 @@ import (
|
||||
"context"
|
||||
"fmt"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -26,13 +26,13 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/generate"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/util/encoders"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/generate"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/util/encoders"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -25,9 +25,9 @@ import (
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -23,9 +23,9 @@ import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -24,9 +24,9 @@ import (
|
||||
"strings"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -24,9 +24,9 @@ import (
|
||||
"os"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
package extensions
|
||||
|
||||
import (
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/rsteube/carapace"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
@@ -24,9 +24,9 @@ import (
|
||||
"os"
|
||||
"strings"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/jedib0t/go-pretty/v6/table"
|
||||
"github.com/jedib0t/go-pretty/v6/text"
|
||||
"github.com/rsteube/carapace"
|
||||
|
||||
@@ -25,9 +25,9 @@ import (
|
||||
"strings"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/util"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/util"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -21,8 +21,8 @@ package extensions
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -34,15 +34,15 @@ import (
|
||||
"strings"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/core"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/packages"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/util"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/core"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/packages"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/util"
|
||||
appConsole "github.com/reeflective/console"
|
||||
"github.com/rsteube/carapace"
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
@@ -25,9 +25,9 @@ import (
|
||||
"path/filepath"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/util"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/assets"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/util"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
||||
@@ -27,11 +27,11 @@ import (
|
||||
"github.com/alecthomas/chroma/formatters"
|
||||
"github.com/alecthomas/chroma/lexers"
|
||||
"github.com/alecthomas/chroma/styles"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/loot"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/util/encoders"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/loot"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/util/encoders"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -21,9 +21,9 @@ package filesystem
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -20,9 +20,9 @@ package filesystem
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -20,9 +20,9 @@ package filesystem
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -21,9 +21,9 @@ import (
|
||||
"context"
|
||||
"time"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
package filesystem
|
||||
|
||||
import (
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/loot"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver/client/constants"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/flags"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/help"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/loot"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
consts "github.com/gsmith257-cyber/better-sliver-package/client/constants"
|
||||
"github.com/rsteube/carapace"
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/pflag"
|
||||
|
||||
@@ -21,9 +21,9 @@ package filesystem
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -28,11 +28,11 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/loot"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/util/encoders"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/loot"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/util/encoders"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
"gopkg.in/AlecAivazis/survey.v1"
|
||||
|
||||
@@ -25,10 +25,10 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/loot"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/loot"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/fatih/color"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
|
||||
@@ -22,9 +22,9 @@ import (
|
||||
"context"
|
||||
"fmt"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -27,10 +27,10 @@ import (
|
||||
"text/tabwriter"
|
||||
"time"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/util"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/util"
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/pflag"
|
||||
"google.golang.org/protobuf/proto"
|
||||
|
||||
@@ -20,9 +20,9 @@ package filesystem
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -25,10 +25,10 @@ import (
|
||||
"text/tabwriter"
|
||||
"time"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/util"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/util"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -21,9 +21,9 @@ import (
|
||||
"context"
|
||||
"strconv"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -21,9 +21,9 @@ package filesystem
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -28,10 +28,10 @@ import (
|
||||
"github.com/jedib0t/go-pretty/v6/table"
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
)
|
||||
|
||||
// Drive mappings for Windows
|
||||
|
||||
@@ -21,9 +21,9 @@ package filesystem
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -21,9 +21,9 @@ package filesystem
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -21,9 +21,9 @@ package filesystem
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -30,11 +30,11 @@ import (
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/implant/sliver/handlers/matcher"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/util/encoders"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/implant/sliver/handlers/matcher"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/sliverpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/util/encoders"
|
||||
"github.com/spf13/cobra"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
@@ -4,10 +4,10 @@ import (
|
||||
"context"
|
||||
"fmt"
|
||||
|
||||
"github.com/gsmith257-cyber/better-sliver/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver/protobuf/commonpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/command/settings"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/client/console"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/clientpb"
|
||||
"github.com/gsmith257-cyber/better-sliver-package/protobuf/commonpb"
|
||||
"github.com/jedib0t/go-pretty/v6/table"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user