My NixOS and Home Manager configurations
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

add xsstrike package

+35 -1
+32
modules/packages/xsstrike.nix
··· 1 + { 2 + perSystem = 3 + { pkgs, ... }: 4 + { 5 + packages.xsstrike = 6 + let 7 + inherit (pkgs) 8 + fetchFromGitHub 9 + python3Packages 10 + ; 11 + in 12 + python3Packages.buildPythonApplication { 13 + pname = "xsstrike"; 14 + version = "0-unstable-2025-05-04"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "boffman"; 18 + repo = "XSStrike"; 19 + rev = "73d103ce9162f2edc40ebee808f302625dc90eb0"; 20 + hash = "sha256-I1QOvup07JeiXZYgoF0rxlEoMI398y3qEYC6qQ2x+l0="; 21 + }; 22 + 23 + pythonImportsCheck = [ "xsstrike" ]; 24 + build-system = with python3Packages; [ setuptools ]; 25 + dependencies = with python3Packages; [ 26 + tld 27 + fuzzywuzzy 28 + requests 29 + ]; 30 + }; 31 + }; 32 + }
+3 -1
modules/programs/hacking.nix
··· 2 2 inputs, 3 3 constants, 4 4 lib, 5 + withSystem, 5 6 ... 6 7 }: 7 8 { ··· 51 52 python3Packages.scapy 52 53 xh 53 54 netexec 54 - 55 55 metasploit 56 + (withSystem pkgs.system (p: p.config.packages.xsstrike)) 57 + 56 58 57 59 (pkgs.writeScriptBin "cyberchef" '' 58 60 echo ${pkgs.cyberchef}/share/cyberchef/index.html