You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
star/main.go

63 lines
1.7 KiB
Go

1 year ago
package main
import (
2 months ago
"b612.me/apps/b612/aes"
1 year ago
"b612.me/apps/b612/attach"
"b612.me/apps/b612/base64"
"b612.me/apps/b612/base85"
"b612.me/apps/b612/base91"
1 year ago
"b612.me/apps/b612/calc"
2 months ago
"b612.me/apps/b612/cert"
1 year ago
"b612.me/apps/b612/detach"
"b612.me/apps/b612/df"
"b612.me/apps/b612/dfinder"
2 months ago
"b612.me/apps/b612/dns"
1 year ago
"b612.me/apps/b612/ftp"
"b612.me/apps/b612/generate"
"b612.me/apps/b612/hash"
"b612.me/apps/b612/httpreverse"
2 months ago
"b612.me/apps/b612/httproxy"
1 year ago
"b612.me/apps/b612/httpserver"
"b612.me/apps/b612/image"
2 months ago
"b612.me/apps/b612/keygen"
1 year ago
"b612.me/apps/b612/merge"
3 months ago
"b612.me/apps/b612/net"
2 months ago
"b612.me/apps/b612/rmt"
1 year ago
"b612.me/apps/b612/search"
2 months ago
"b612.me/apps/b612/smtpclient"
2 months ago
"b612.me/apps/b612/smtpserver"
2 months ago
"b612.me/apps/b612/socks5"
1 year ago
"b612.me/apps/b612/split"
"b612.me/apps/b612/tcping"
"b612.me/apps/b612/tls"
1 year ago
"b612.me/apps/b612/uac"
"b612.me/apps/b612/vic"
2 months ago
"b612.me/apps/b612/whois"
1 year ago
"b612.me/stario"
"b612.me/starlog"
"github.com/inconshreveable/mousetrap"
1 year ago
"github.com/spf13/cobra"
)
var cmdRoot = &cobra.Command{
Use: "b612",
Version: "2.1.0.beta.4",
1 year ago
}
func init() {
1 year ago
cobra.MousetrapHelpText = ""
1 year ago
cmdRoot.AddCommand(tcping.Cmd, uac.Cmd, httpserver.Cmd, httpreverse.Cmd,
base64.Cmd, base85.Cmd, base91.Cmd, attach.Cmd, detach.Cmd, df.Cmd, dfinder.Cmd,
1 year ago
ftp.Cmd, generate.Cmd, hash.Cmd, image.Cmd, merge.Cmd, search.Cmd, split.Cmd, vic.Cmd,
2 months ago
calc.Cmd, net.Cmd, rmt.Cmds, rmt.Cmdc, keygen.Cmd, dns.Cmd, whois.Cmd, socks5.Cmd, httproxy.Cmd, smtpserver.Cmd, smtpclient.Cmd,
cert.Cmd, aes.Cmd, tls.Cmd)
1 year ago
}
func main() {
1 year ago
starlog.SetLevelColor(starlog.LvError, []starlog.Attr{starlog.FgHiMagenta})
1 year ago
cmdRoot.Execute()
1 year ago
if mousetrap.StartedByExplorer() {
stario.StopUntil("Press Any Key to Continue...", "", true)
}
1 year ago
}