This commit is contained in:
xfnw 2021-07-20 19:12:51 +00:00
parent e6d057a6fb
commit 514b871cb4
4 changed files with 39 additions and 1 deletions

View file

@ -87,6 +87,7 @@ TE5AAAAIDBUk5IjB3+trnVO6pncivFbOetUL8BPTl3CwAtk4532 xfnw@raven" ];
# crack
hashcat mfoc pyrit john crunch diceware crowbar
cowpatty bully deepsea reaverwps amass medusa
(callPackage ./pkgs/cupp.nix { })
# security scan
lynis chkrootkit

View file

@ -184,6 +184,8 @@ bruteforce wifi
dns enumeration and network mapping
.It medusa
speedy login bruteforcer
.It cupp.py
Common User Password Profiler
.El
.
.Ss Security Scan

34
pkgs/cupp.nix Normal file
View 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 ];
};
}

View file

@ -11,9 +11,10 @@ stdenv.mkDerivation rec {
sha256 = "0j1c6xl5nws8r81847a7jhwjc88aafkq9yby6rczym0mpnyg8i10";
};
propagatedBuildInputs = with pkgs.python3Packages; [
buildInputs = with pkgs.python3Packages; [
pkgs.python3 bluepy future requests paramiko pysnmp pycryptodome setuptools
];
strictDeps = true;
buildPhase = ''
true