add catgirl irc client

This commit is contained in:
xfnw 2021-03-06 22:46:21 +00:00
parent 89e2b3cc76
commit b8320aa523
4 changed files with 32 additions and 2 deletions

2
.gitignore vendored
View file

@ -1,2 +1,4 @@
*.iso
result
result/*

View file

@ -72,11 +72,11 @@ TE5AAAAIDBUk5IjB3+trnVO6pncivFbOetUL8BPTl3CwAtk4532 xfnw@raven" ];
# disk analysis
testdisk squashfs-tools-ng ddrescue volatility
stegseek apktool adbfs-rootless ursadb android-udev-rules
valgrind dos2unix cherrytree
valgrind dos2unix
# exploit
doona metasploit twa wifite2 burpsuite wpscan wfuzz
sqlmap thc-hydra (callPackage ./routersploit.nix { })
sqlmap thc-hydra (callPackage ./pkgs/routersploit.nix { })
#dsniff
# crack
@ -88,6 +88,9 @@ TE5AAAAIDBUk5IjB3+trnVO6pncivFbOetUL8BPTl3CwAtk4532 xfnw@raven" ];
# development
arduino python3Packages.pip ino
# disclosure
cherrytree (callPackage ./pkgs/catgirl.nix { })
];
environment.variables.GC_INITIAL_HEAP_SIZE = "1M";

25
pkgs/routersploit.nix Normal file
View file

@ -0,0 +1,25 @@
{lib, stdenv, pkgs, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "routersploit";
version = "3fd3946";
src = fetchFromGitHub {
owner = "threat9";
repo = "routersploit";
rev = version;
sha256 = "0j1c6xl5nws8r81847a7jhwjc88aafkq9yby6rczym0mpnyg8i10";
};
#nativeBuildInputs = [ pkg-config ctags ];
#buildInputs = [ ncurses libressl man ];
strictDeps = true;
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 ];
};
}