From bc3bf6b740deedc0fcece89788432ea98bd580cb Mon Sep 17 00:00:00 2001 From: edoardottt Date: Sun, 7 Apr 2024 18:55:09 +0200 Subject: [PATCH] v1.3.0 --- .gitignore | 13 ++++--------- pkg/output/{intro.go => banner.go} | 0 pkg/output/version.go | 2 +- snapcraft.yaml | 22 ++++++++++++++++++++++ 4 files changed, 27 insertions(+), 10 deletions(-) rename pkg/output/{intro.go => banner.go} (100%) create mode 100644 snapcraft.yaml diff --git a/.gitignore b/.gitignore index 5f0a118..8dedcbe 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +output-scilla/ +keys.yaml +scilla + # Binaries for programs and plugins *.exe *.exe~ @@ -13,18 +17,9 @@ # Dependency directories (remove the comment below to include it) # vendor/ - build - coverage.txt - .idea -output-scilla/ - -keys.yaml - -scilla - # VScode Debugging folder .vscode/ \ No newline at end of file diff --git a/pkg/output/intro.go b/pkg/output/banner.go similarity index 100% rename from pkg/output/intro.go rename to pkg/output/banner.go diff --git a/pkg/output/version.go b/pkg/output/version.go index 0661e18..01ef06a 100644 --- a/pkg/output/version.go +++ b/pkg/output/version.go @@ -27,4 +27,4 @@ along with this program. If not, see http://www.gnu.org/licenses/. package output -const version = "v1.2.7" +const version = "v1.3.0" diff --git a/snapcraft.yaml b/snapcraft.yaml new file mode 100644 index 0000000..07387b7 --- /dev/null +++ b/snapcraft.yaml @@ -0,0 +1,22 @@ +name: scilla +summary: Information Gathering tool +description: | + Information Gathering tool - DNS / Subdomains / Ports / Directories enumeration +version: 1.3.0 +grade: stable +base: core20 + +confinement: strict + +apps: + cariddi: + command: bin/scilla + plugs: + - home + - network + +parts: + cariddi: + plugin: go + source-type: git + source: https://github.com/edoardottt/scilla \ No newline at end of file