summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-03-01 22:47:23 +0100
committertomberek <tomberek@users.noreply.github.com>2021-03-02 00:02:09 -0500
commit3774e979b661643e704346cc3b757fd661d775bb (patch)
treed267af5919a417c21bfb4163209acdf242accd4e
parentce41fe1a17958efe9d86bd9f373a8f6c8a063144 (diff)
downloadnixpkgs-3774e979b661643e704346cc3b757fd661d775bb.tar
nixpkgs-3774e979b661643e704346cc3b757fd661d775bb.tar.gz
nixpkgs-3774e979b661643e704346cc3b757fd661d775bb.tar.bz2
nixpkgs-3774e979b661643e704346cc3b757fd661d775bb.tar.lz
nixpkgs-3774e979b661643e704346cc3b757fd661d775bb.tar.xz
nixpkgs-3774e979b661643e704346cc3b757fd661d775bb.tar.zst
nixpkgs-3774e979b661643e704346cc3b757fd661d775bb.zip
brutespray: 1.6.8 -> 1.7.0
-rw-r--r--pkgs/tools/security/brutespray/default.nix20
1 files changed, 15 insertions, 5 deletions
diff --git a/pkgs/tools/security/brutespray/default.nix b/pkgs/tools/security/brutespray/default.nix
index 25b9aecb8e0..d7f8e30e182 100644
--- a/pkgs/tools/security/brutespray/default.nix
+++ b/pkgs/tools/security/brutespray/default.nix
@@ -1,14 +1,20 @@
-{ lib, stdenv, python3, fetchFromGitHub, makeWrapper, medusa }:
+{ lib
+, stdenv
+, python3
+, fetchFromGitHub
+, makeWrapper
+, medusa
+}:
 
 stdenv.mkDerivation rec {
   pname = "brutespray";
-  version = "1.6.8";
+  version = "1.7.0";
 
   src = fetchFromGitHub {
     owner = "x90skysn3k";
     repo = pname;
-    rev = "brutespray-${version}";
-    sha256 = "1pi4d5vcvvjsby39dq995dlhpxdicmfhqsiw23hr25m38ccfm3rh";
+    rev = "${pname}-${version}";
+    sha256 = "0lkm3fvx35ml5jh4ykjr2srq8qfajkmxwp4qfcn9xi58khk3asq3";
   };
 
   postPatch = ''
@@ -33,7 +39,11 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     homepage = "https://github.com/x90skysn3k/brutespray";
-    description = "Brute-Forcing from Nmap output - Automatically attempts default creds on found services";
+    description = "Tool to do brute-forcing from Nmap output";
+    longDescription = ''
+      This tool automatically attempts default credentials on found services
+      directly from Nmap output.
+    '';
     license = licenses.mit;
     maintainers = with maintainers; [ ma27 ];
   };