brutespray: 1.6.8 -> 1.7.0

This commit is contained in:
Fabian Affolter 2021-03-01 22:47:23 +01:00 committed by tomberek
parent ce41fe1a17
commit 3774e979b6

View file

@ -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 ];
};