blix

nixos-based pentesting iso
git clone https://xfnw.ttm.sh/git/blix.git
Log | Files | Refs | README

commit b8320aa5235c26121f88c39a0d02cfb302d58460
parent 89e2b3cc76c35297d221d51a1c37dbfb81e4cd12
Author: xfnw <xfnw@riseup.net>
Date:   Sat,  6 Mar 2021 22:46:21 +0000

add catgirl irc client

Diffstat:
M.gitignore | 2++
Mblix.nix | 7+++++--
Rroutersploit.nix -> pkgs/catgirl.nix | 0
Apkgs/routersploit.nix | 25+++++++++++++++++++++++++
4 files changed, 32 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -1,2 +1,4 @@ *.iso +result +result/* diff --git a/blix.nix b/blix.nix @@ -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"; diff --git a/routersploit.nix b/pkgs/catgirl.nix diff --git a/pkgs/routersploit.nix b/pkgs/routersploit.nix @@ -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 ]; + }; +}