diff --git a/SatIntel b/SatIntel new file mode 100755 index 0000000..7058ba9 Binary files /dev/null and b/SatIntel differ diff --git a/go.mod b/go.mod index 5215534..35d50f7 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,10 @@ require ( github.com/hashicorp/hcl v1.0.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/iskaa02/qalam v0.3.0 // indirect + github.com/lucasb-eyer/go-colorful v1.0.3 // indirect github.com/magiconair/properties v1.8.7 // indirect + github.com/mazznoer/colorgrad v0.8.1 // indirect + github.com/mazznoer/csscolorparser v0.1.0 // indirect github.com/mitchellh/mapstructure v1.5.0 // indirect github.com/pelletier/go-toml/v2 v2.0.6 // indirect github.com/spf13/afero v1.9.3 // indirect diff --git a/go.sum b/go.sum index 04f5b3b..3618331 100644 --- a/go.sum +++ b/go.sum @@ -131,8 +131,14 @@ github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/lucasb-eyer/go-colorful v1.0.3 h1:QIbQXiugsb+q10B+MI+7DI1oQLdmnep86tWFlaaUAac= +github.com/lucasb-eyer/go-colorful v1.0.3/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0= github.com/magiconair/properties v1.8.7 h1:IeQXZAiQcpL9mgcAe1Nu6cX9LLw6ExEHKjN0VQdvPDY= github.com/magiconair/properties v1.8.7/go.mod h1:Dhd985XPs7jluiymwWYZ0G4Z61jb3vdS329zhj2hYo0= +github.com/mazznoer/colorgrad v0.8.1 h1:Bw/ks+KujOOg9E6YQvPqSqTLryiFnwliAH5VMZarSTI= +github.com/mazznoer/colorgrad v0.8.1/go.mod h1:xCjvoNkXHJIAPOUMSMrXkFdxTGQqk8zMYS3e5hSLghA= +github.com/mazznoer/csscolorparser v0.1.0 h1:xUf1uzU1r24JleIIb2Kz3bl7vATStxy53gm67yuPP+c= +github.com/mazznoer/csscolorparser v0.1.0/go.mod h1:Aj22+L/rYN/Y6bj3bYqO3N6g1dtdHtGfQ32xZ5PJQic= github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY= github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/pelletier/go-toml/v2 v2.0.6 h1:nrzqCb7j9cDFj2coyLNLaZuJTLjWjlaz6nvTvIwycIU= diff --git a/osint/osint.go b/osint/osint.go index 45d75ae..cf823d6 100644 --- a/osint/osint.go +++ b/osint/osint.go @@ -1,19 +1,15 @@ package osint import ( - "fmt" "io/ioutil" - "github.com/iskaa02/qalam" + "github.com/iskaa02/qalam/gradient" ) func Banner() { banner, _ := ioutil.ReadFile("txt/banner.txt") - fmt.Println("\033[37m", string(banner)) + g,err:=gradient.NewGradient("purple", "cyan", "blue") - s:=qalam.NewStyler(). - Bold(). - Italic(). - Red() - // This will print bold italic red text to the terminal - s.Print("Hello world") + if err != nil{ + } + g.Print(string(banner)) } \ No newline at end of file diff --git a/txt/banner.txt b/txt/banner.txt index ed8fb88..19d9e9e 100644 --- a/txt/banner.txt +++ b/txt/banner.txt @@ -1,18 +1,18 @@ - . . . . . . . - . . . . . ______ - . . //////// + . . . . . . . . . + . . . . . ______ + . . //////// . . . . . . . . ________ . . ///////// . . - . |.____. /\ ///////// . + . |.____. /\ ///////// . . . . // \/ |\ ///////// - . // \ | \ ///////// . . . - || | | ///////// . . - . || | |// ///// . - . \\ / // \/ . - \\.___./ //\ ,_\ . . - . . \ //////\ / \ . . - . ///////// \| | . - . ///////// . \ __ / . - ///////// . - . . ///////// . . - . -------- . .. . - . . . . \ No newline at end of file + . // \ | \ ///////// _______ _______ _______ _____ __ _ _______ _______ . + || | | ///////// . . |______ |_____| | | | \ | | |______ | + . || | |// ///// ______| | | | __|__ | \_| | |______ |_____ . + . \\ / // \/ . + \\.___./ //\ ,_\ . . . + . . \ //////\ / \ . . Satellite OSINT CLI Tool . . + . ///////// \| | . + . ///////// . \ __ / . Made by Angelina Tsuboi (G4LXY) . + ///////// . . . + . . ///////// . . . . . . + . -------- . .. . . . + . . . . . .