about summary refs log tree commit diff
path: root/pkgs/tools/security/uncover/default.nix
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-08-11 10:43:57 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2022-08-11 10:43:57 +0200
commit8115591a4f7bb53d6569f26533e189372868c5ad (patch)
treee050052bf14a0311eab007898c8fe2c6d0d063da /pkgs/tools/security/uncover/default.nix
parent95e054f03ccd7c4f56af357c1eab0e5976660b22 (diff)
uncover: init at 0.0.6
Diffstat (limited to 'pkgs/tools/security/uncover/default.nix')
-rw-r--r--pkgs/tools/security/uncover/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/tools/security/uncover/default.nix b/pkgs/tools/security/uncover/default.nix
new file mode 100644
index 0000000000000..f8102c6987d8e
--- /dev/null
+++ b/pkgs/tools/security/uncover/default.nix
@@ -0,0 +1,31 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+  pname = "uncover";
+  version = "0.0.6";
+
+  src = fetchFromGitHub {
+    owner = "projectdiscovery";
+    repo = pname;
+    rev = "v${version}";
+    hash = "sha256-iWSaNfRZJ59C7DWsPett9zM6hi/kOtpxlkw2haMeuaY=";
+  };
+
+  vendorSha256 = "sha256-M50pQJCzEXSBXUsjwxlM8s1WgcPwZgBpArUExLP+bRY=";
+
+  meta = with lib; {
+    description = "API wrapper to search for exposed hosts";
+    longDescription = ''
+      uncover is a go wrapper using APIs of well known search engines to quickly
+      discover exposed hosts on the internet. It is built with automation in mind,
+      so you can query it and utilize the results with your current pipeline tools.
+      Currently, it supports shodan,shodan-internetdb, censys, and fofa search API.
+    '';
+    homepage = "https://github.com/projectdiscovery/uncover";
+    license = licenses.mit;
+    maintainers = with maintainers; [ fab ];
+  };
+}