mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-12-21 19:24:15 +00:00
whitespace
This commit is contained in:
parent
26a4c68b1f
commit
c5f29c9bcb
1 changed files with 39 additions and 39 deletions
|
@ -6,48 +6,48 @@ in
|
|||
options.sconfig.security-tools = lib.mkEnableOption "Enable security tools";
|
||||
|
||||
config = lib.mkIf cfg {
|
||||
environment.systemPackages = with pkgs; [
|
||||
exiftool
|
||||
burpsuite
|
||||
nmap
|
||||
masscan
|
||||
binutils
|
||||
remmina
|
||||
openvpn
|
||||
socat
|
||||
ghidra-bin
|
||||
wfuzz
|
||||
gobuster
|
||||
dirb
|
||||
pwndbg
|
||||
thc-hydra
|
||||
metasploit
|
||||
environment.systemPackages = with pkgs; [
|
||||
exiftool
|
||||
burpsuite
|
||||
nmap
|
||||
masscan
|
||||
binutils
|
||||
remmina
|
||||
openvpn
|
||||
socat
|
||||
ghidra-bin
|
||||
wfuzz
|
||||
gobuster
|
||||
dirb
|
||||
pwndbg
|
||||
thc-hydra
|
||||
metasploit
|
||||
|
||||
(callPackage ../pkgs/binary-ninja-personal { })
|
||||
(callPackage ../pkgs/binary-ninja-personal { })
|
||||
|
||||
(writeShellScriptBin "searchsploit" ''
|
||||
set -e
|
||||
(
|
||||
cd ~/.cache
|
||||
[ -e exploitdb ] || git clone https://github.com/offensive-security/exploitdb.git
|
||||
cd exploitdb
|
||||
if find .git -maxdepth 0 -cmin +60 | grep -q git
|
||||
then
|
||||
git pull
|
||||
fi
|
||||
)
|
||||
exec ~/.cache/exploitdb/searchsploit "$@"
|
||||
'')
|
||||
];
|
||||
(writeShellScriptBin "searchsploit" ''
|
||||
set -e
|
||||
(
|
||||
cd ~/.cache
|
||||
[ -e exploitdb ] || git clone https://github.com/offensive-security/exploitdb.git
|
||||
cd exploitdb
|
||||
if find .git -maxdepth 0 -cmin +60 | grep -q git
|
||||
then
|
||||
git pull
|
||||
fi
|
||||
)
|
||||
exec ~/.cache/exploitdb/searchsploit "$@"
|
||||
'')
|
||||
];
|
||||
|
||||
programs = {
|
||||
wireshark.enable = true;
|
||||
wireshark.package = pkgs.wireshark;
|
||||
};
|
||||
programs = {
|
||||
wireshark.enable = true;
|
||||
wireshark.package = pkgs.wireshark;
|
||||
};
|
||||
|
||||
users.users.sandy = {
|
||||
isNormalUser = true;
|
||||
isSystemUser = true;
|
||||
};
|
||||
users.users.sandy = {
|
||||
isNormalUser = true;
|
||||
isSystemUser = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue