update dependancies

This commit is contained in:
gsmith257
2024-07-15 10:41:26 -04:00
parent c619a85f1b
commit 8ee2d296f6
498 changed files with 2493 additions and 2493 deletions
+3 -3
View File
@@ -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
+2 -2
View File
@@ -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)
+1 -1
View File
@@ -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
View File
@@ -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"
)
+1 -1
View File
@@ -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"
)
+5 -5
View File
@@ -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"
+4 -4
View File
@@ -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"
+1 -1
View File
@@ -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"
)
+1 -1
View File
@@ -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"
)
+3 -3
View File
@@ -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"
+4 -4
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+9 -9
View File
@@ -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,
+2 -2
View File
@@ -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"
)
+6 -6
View File
@@ -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 -5
View File
@@ -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.
+7 -7
View File
@@ -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
+3 -3
View File
@@ -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"
)
+2 -2
View File
@@ -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
+3 -3
View File
@@ -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
+6 -6
View File
@@ -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 {
+2 -2
View File
@@ -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 -5
View File
@@ -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.
+5 -5
View File
@@ -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
+5 -5
View File
@@ -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.
+3 -3
View File
@@ -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 (
+3 -3
View File
@@ -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
+1 -1
View File
@@ -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
+2 -2
View File
@@ -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
+4 -4
View File
@@ -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"
)
+4 -4
View File
@@ -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"
)
+6 -6
View File
@@ -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
+5 -5
View File
@@ -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"
+3 -3
View File
@@ -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"
+4 -4
View File
@@ -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"
)
+6 -6
View File
@@ -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"
)
+1 -1
View File
@@ -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"
+4 -4
View File
@@ -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.
+4 -4
View File
@@ -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"
+4 -4
View File
@@ -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
+2 -2
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+4 -4
View File
@@ -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"
+4 -4
View File
@@ -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"
+3 -3
View File
@@ -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"
)
+3 -3
View File
@@ -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.
+4 -4
View File
@@ -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"
+7 -7
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+2 -2
View File
@@ -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"
)
+6 -6
View File
@@ -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"
)
+7 -7
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+2 -2
View File
@@ -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"
)
+3 -3
View File
@@ -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 -5
View File
@@ -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.
+2 -2
View File
@@ -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
+4 -4
View File
@@ -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.
+3 -3
View File
@@ -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
+4 -4
View File
@@ -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
+3 -3
View File
@@ -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
+5 -5
View File
@@ -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"
+3 -3
View File
@@ -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"
)
+4 -4
View File
@@ -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"
+4 -4
View File
@@ -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"
)
+3 -3
View File
@@ -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
+4 -4
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+7 -7
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+3 -3
View File
@@ -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"
+3 -3
View File
@@ -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"
)
+2 -2
View File
@@ -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"
)
+9 -9
View File
@@ -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"
+3 -3
View File
@@ -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"
)
+5 -5
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+5 -5
View File
@@ -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"
+3 -3
View File
@@ -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"
)
+5 -5
View File
@@ -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"
+4 -4
View File
@@ -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"
+3 -3
View File
@@ -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"
)
+4 -4
View File
@@ -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"
+3 -3
View File
@@ -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"
)
+4 -4
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+4 -4
View File
@@ -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
+3 -3
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+3 -3
View File
@@ -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"
)
+5 -5
View File
@@ -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 -4
View File
@@ -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