summary refs log tree commit diff
path: root/pkgs/tools/security/ffuf
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2020-12-27 16:52:39 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2020-12-27 16:52:39 +0100
commit7f70501897b62e40a6587bea9b683cd819952209 (patch)
tree7be69cc6a8500f0cc5ecd4d0f94a2d1ae458bff3 /pkgs/tools/security/ffuf
parentc7f75838c360473805afcf5fb2fa65e678efd94b (diff)
downloadnixpkgs-7f70501897b62e40a6587bea9b683cd819952209.tar
nixpkgs-7f70501897b62e40a6587bea9b683cd819952209.tar.gz
nixpkgs-7f70501897b62e40a6587bea9b683cd819952209.tar.bz2
nixpkgs-7f70501897b62e40a6587bea9b683cd819952209.tar.lz
nixpkgs-7f70501897b62e40a6587bea9b683cd819952209.tar.xz
nixpkgs-7f70501897b62e40a6587bea9b683cd819952209.tar.zst
nixpkgs-7f70501897b62e40a6587bea9b683cd819952209.zip
ffuf: init at 1.1.0
Diffstat (limited to 'pkgs/tools/security/ffuf')
-rw-r--r--pkgs/tools/security/ffuf/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/tools/security/ffuf/default.nix b/pkgs/tools/security/ffuf/default.nix
new file mode 100644
index 00000000000..77a286df4c6
--- /dev/null
+++ b/pkgs/tools/security/ffuf/default.nix
@@ -0,0 +1,34 @@
+{ buildGoModule
+, fetchFromGitHub
+, stdenv
+}:
+
+buildGoModule rec {
+  pname = "ffuf";
+  version = "1.1.0";
+
+  src = fetchFromGitHub {
+    owner = pname;
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "1jb2x0ybcb9zkqm7flpmr0hd3171xvnn6kxmfcgds4x8l9fbmxnr";
+  };
+
+  vendorSha256 = "0sjjj9z1dhilhpc8pq4154czrb79z9cm044jvn75kxcjv6v5l2m5";
+
+  # tests don't pass due to an issue with the memory addresses
+  # https://github.com/ffuf/ffuf/issues/367
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "Fast web fuzzer written in Go";
+    longDescription = ''
+      FFUF, or “Fuzz Faster you Fool” is an open source web fuzzing tool,
+      intended for discovering elements and content within web applications
+      or web servers.
+    '';
+    homepage = "https://github.com/ffuf/ffuf";
+    license = licenses.mit;
+    maintainers = with maintainers; [ fab ];
+  };
+}