start making manuals!
This commit is contained in:
parent
4829ce4c43
commit
3160b6504f
4 changed files with 93 additions and 2 deletions
63
blix.nix
63
blix.nix
|
@ -56,6 +56,8 @@ TE5AAAAIDBUk5IjB3+trnVO6pncivFbOetUL8BPTl3CwAtk4532 xfnw@raven" ];
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
(callPackage ./manuals.nix { })
|
||||||
|
|
||||||
wget vim tmux gnupg ncdu mosh
|
wget vim tmux gnupg ncdu mosh
|
||||||
git curl rsync wireguard-tools
|
git curl rsync wireguard-tools
|
||||||
w3m lynx elinks ungoogled-chromium
|
w3m lynx elinks ungoogled-chromium
|
||||||
|
@ -80,7 +82,7 @@ TE5AAAAIDBUk5IjB3+trnVO6pncivFbOetUL8BPTl3CwAtk4532 xfnw@raven" ];
|
||||||
# exploit
|
# exploit
|
||||||
doona metasploit twa wifite2 burpsuite wpscan wfuzz
|
doona metasploit twa wifite2 burpsuite wpscan wfuzz
|
||||||
sqlmap thc-hydra (callPackage ./pkgs/routersploit.nix { })
|
sqlmap thc-hydra (callPackage ./pkgs/routersploit.nix { })
|
||||||
#dsniff
|
dsniff
|
||||||
|
|
||||||
# crack
|
# crack
|
||||||
hashcat mfoc pyrit john crunch diceware crowbar
|
hashcat mfoc pyrit john crunch diceware crowbar
|
||||||
|
@ -99,9 +101,66 @@ TE5AAAAIDBUk5IjB3+trnVO6pncivFbOetUL8BPTl3CwAtk4532 xfnw@raven" ];
|
||||||
python3Packages.binwalk
|
python3Packages.binwalk
|
||||||
|
|
||||||
# disclosure
|
# disclosure
|
||||||
catgirl
|
catgirl tmate
|
||||||
];
|
];
|
||||||
|
|
||||||
|
environment.etc = {
|
||||||
|
"tmux.conf" = {
|
||||||
|
text = ''
|
||||||
|
set-option -g default-terminal "tmux-256color"
|
||||||
|
set-option -g mouse on
|
||||||
|
set-option -g history-limit 20000
|
||||||
|
set-option -g focus-events on
|
||||||
|
set-option -g xterm-keys on
|
||||||
|
set-option -g set-titles on
|
||||||
|
set-option -g set-titles-string "tmux - #t"
|
||||||
|
set-option -g escape-time 25
|
||||||
|
set-option -g status-left-style "fg=colour10"
|
||||||
|
set-option -g status-right-style "fg=colour10"
|
||||||
|
set-option -g status-style "bg=default,fg=colour10"
|
||||||
|
set-option -g pane-active-border-style "bg=default,fg=colour10"
|
||||||
|
set-option -g window-status-activity-style "bg=default,fg=colour235,bold,reverse"
|
||||||
|
set-option -g window-status-bell-style "bg=default,fg=white,bold,reverse"
|
||||||
|
set-option -g window-status-current-style "bg=default,fg=colour10,bold,reverse"
|
||||||
|
set-option -g window-status-style "bg=default,fg=colour10"
|
||||||
|
set-option -g status on
|
||||||
|
set-option -g status-interval 5
|
||||||
|
set-option -g status-position top
|
||||||
|
set-option -g status-justify left
|
||||||
|
set-option -g window-status-format " #i #w "
|
||||||
|
set-option -g window-status-separator ""
|
||||||
|
set-option -g window-status-current-format " #i #w "
|
||||||
|
set-option -g status-left ""
|
||||||
|
set-option -g status-right "#h %i:%m %p"
|
||||||
|
set-option -g status-left-length 0
|
||||||
|
set-option -g monitor-activity on
|
||||||
|
set-option -g visual-activity on
|
||||||
|
set-option -g renumber-windows on
|
||||||
|
set-option -g focus-events on
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
"vimrc" = {
|
||||||
|
text = ''
|
||||||
|
set number
|
||||||
|
set relativenumber
|
||||||
|
syntax on
|
||||||
|
color pablo
|
||||||
|
set nocompatible
|
||||||
|
filetype plugin indent on
|
||||||
|
set showcmd
|
||||||
|
set showmatch
|
||||||
|
set ignorecase
|
||||||
|
set smartcase
|
||||||
|
set incsearch
|
||||||
|
set autowrite
|
||||||
|
set hidden
|
||||||
|
set mouse=a
|
||||||
|
set textwidth=60
|
||||||
|
set formatoptions-=t
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
environment.variables.GC_INITIAL_HEAP_SIZE = "1M";
|
environment.variables.GC_INITIAL_HEAP_SIZE = "1M";
|
||||||
boot.kernel.sysctl."vm.overcommit_memory" = "1";
|
boot.kernel.sysctl."vm.overcommit_memory" = "1";
|
||||||
boot.consoleLogLevel = 7;
|
boot.consoleLogLevel = 7;
|
||||||
|
|
12
manuals.nix
Normal file
12
manuals.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{ stdenv, man }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "blix-manuals";
|
||||||
|
src = ./manuals;
|
||||||
|
|
||||||
|
buildInputs = [ man ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -D * -t $out/share/man/man7/
|
||||||
|
'';
|
||||||
|
}
|
7
manuals/blix-applications.7
Normal file
7
manuals/blix-applications.7
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
.Dd June 11, 2021
|
||||||
|
.Dt blix-applications 7
|
||||||
|
.Os
|
||||||
|
.
|
||||||
|
.Sh NAME
|
||||||
|
.Nm blix-applications
|
||||||
|
.Nd list of preinstalled blix applications
|
13
manuals/blix.7
Normal file
13
manuals/blix.7
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
.Dd June 11, 2021
|
||||||
|
.Dt blix 7
|
||||||
|
.Os
|
||||||
|
.
|
||||||
|
.Sh NAME
|
||||||
|
.Nm blix
|
||||||
|
.Nd nixos-based pentesting distro
|
||||||
|
.
|
||||||
|
.Sh SEE ALSO
|
||||||
|
.Xr blix-applications 7
|
||||||
|
.
|
||||||
|
.Sh AUTHORS
|
||||||
|
.An xfnw Aq Mt xfnw@riseup.net
|
Loading…
Reference in a new issue