add cupp
This commit is contained in:
parent
e6d057a6fb
commit
514b871cb4
4 changed files with 39 additions and 1 deletions
1
blix.nix
1
blix.nix
|
@ -87,6 +87,7 @@ TE5AAAAIDBUk5IjB3+trnVO6pncivFbOetUL8BPTl3CwAtk4532 xfnw@raven" ];
|
||||||
# crack
|
# crack
|
||||||
hashcat mfoc pyrit john crunch diceware crowbar
|
hashcat mfoc pyrit john crunch diceware crowbar
|
||||||
cowpatty bully deepsea reaverwps amass medusa
|
cowpatty bully deepsea reaverwps amass medusa
|
||||||
|
(callPackage ./pkgs/cupp.nix { })
|
||||||
|
|
||||||
# security scan
|
# security scan
|
||||||
lynis chkrootkit
|
lynis chkrootkit
|
||||||
|
|
|
@ -184,6 +184,8 @@ bruteforce wifi
|
||||||
dns enumeration and network mapping
|
dns enumeration and network mapping
|
||||||
.It medusa
|
.It medusa
|
||||||
speedy login bruteforcer
|
speedy login bruteforcer
|
||||||
|
.It cupp.py
|
||||||
|
Common User Password Profiler
|
||||||
.El
|
.El
|
||||||
.
|
.
|
||||||
.Ss Security Scan
|
.Ss Security Scan
|
||||||
|
|
34
pkgs/cupp.nix
Normal file
34
pkgs/cupp.nix
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
{lib, stdenv, pkgs, fetchFromGitHub, python3 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "cupp";
|
||||||
|
version = "56547fd";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Mebus";
|
||||||
|
repo = "cupp";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1np468jlabc6xkffbp2hdbmkhc8ln4nhfdqlh7h1c9pv1a4i8h4y";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ python3 ];
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
true
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
chmod 755 cupp.py
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp -r cupp.cfg cupp.py $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://git.causal.agency/catgirl/about/";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
description = "Exploitation framework for embedded devices";
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ xfnw ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -11,9 +11,10 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "0j1c6xl5nws8r81847a7jhwjc88aafkq9yby6rczym0mpnyg8i10";
|
sha256 = "0j1c6xl5nws8r81847a7jhwjc88aafkq9yby6rczym0mpnyg8i10";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with pkgs.python3Packages; [
|
buildInputs = with pkgs.python3Packages; [
|
||||||
pkgs.python3 bluepy future requests paramiko pysnmp pycryptodome setuptools
|
pkgs.python3 bluepy future requests paramiko pysnmp pycryptodome setuptools
|
||||||
];
|
];
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
true
|
true
|
||||||
|
|
Loading…
Reference in a new issue