add catgirl irc client
This commit is contained in:
parent
89e2b3cc76
commit
b8320aa523
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,2 +1,4 @@
|
||||||
*.iso
|
*.iso
|
||||||
|
result
|
||||||
|
result/*
|
||||||
|
|
||||||
|
|
7
blix.nix
7
blix.nix
|
@ -72,11 +72,11 @@ TE5AAAAIDBUk5IjB3+trnVO6pncivFbOetUL8BPTl3CwAtk4532 xfnw@raven" ];
|
||||||
# disk analysis
|
# disk analysis
|
||||||
testdisk squashfs-tools-ng ddrescue volatility
|
testdisk squashfs-tools-ng ddrescue volatility
|
||||||
stegseek apktool adbfs-rootless ursadb android-udev-rules
|
stegseek apktool adbfs-rootless ursadb android-udev-rules
|
||||||
valgrind dos2unix cherrytree
|
valgrind dos2unix
|
||||||
|
|
||||||
# exploit
|
# exploit
|
||||||
doona metasploit twa wifite2 burpsuite wpscan wfuzz
|
doona metasploit twa wifite2 burpsuite wpscan wfuzz
|
||||||
sqlmap thc-hydra (callPackage ./routersploit.nix { })
|
sqlmap thc-hydra (callPackage ./pkgs/routersploit.nix { })
|
||||||
#dsniff
|
#dsniff
|
||||||
|
|
||||||
# crack
|
# crack
|
||||||
|
@ -88,6 +88,9 @@ TE5AAAAIDBUk5IjB3+trnVO6pncivFbOetUL8BPTl3CwAtk4532 xfnw@raven" ];
|
||||||
|
|
||||||
# development
|
# development
|
||||||
arduino python3Packages.pip ino
|
arduino python3Packages.pip ino
|
||||||
|
|
||||||
|
# disclosure
|
||||||
|
cherrytree (callPackage ./pkgs/catgirl.nix { })
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.variables.GC_INITIAL_HEAP_SIZE = "1M";
|
environment.variables.GC_INITIAL_HEAP_SIZE = "1M";
|
||||||
|
|
25
pkgs/routersploit.nix
Normal file
25
pkgs/routersploit.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue