Skip to content

Instantly share code, notes, and snippets.

@osvaldohdzm
osvaldohdzm / folderpt.sh
Last active November 18, 2025 04:55
Create Pentest / Red Team Structure Project
#!/bin/bash
set -e
ROOT="Template"
echo "[+] Creando estructura profesional dentro de: $ROOT"
mkdir -p "$ROOT"
##########################################
# BASE DE CARPETAS (NO SE MODIFICAN)
#!/bin/bash
# Script para configurar Chrome Remote Desktop en Kali Linux
# Verificar que se ejecute como root
if [[ $EUID -ne 0 ]]; then
echo "Por favor ejecuta este script como root."
exit 1
fi
# recon tools
git clone https://github.com/Tib3rius/AutoRecon.git
git clone https://github.com/jpillora/chisel.git
git clone https://github.com/RustScan/RustScan.git
# enumeration & privileges
git clone https://github.com/carlospolop/PEASS-ng.git
# AD / lateral movement
git clone https://github.com/fortra/impacket.git
@osvaldohdzm
osvaldohdzm / install-kali-subsystem.md
Created September 14, 2022 16:42 — forked from JavanXD/install-kali-subsystem.md
Hot To: Install Kali Linux as Windows Subsystem
  1. Enable feature in PowerShell: Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux

  2. Download Kali AppX File: https://aka.ms/wsl-kali-linux-new

    Invoke-WebRequest -Uri https://aka.ms/wsl-kali-linux-new -OutFile Kali.appx -UseBasicParsing
    
  3. Open PowerShell as Admin and Run: Add-AppxPackage .\Kali.appx

  4. Run kali. Create user:user.

  5. Set default user: kali config --default-user root

  6. Keep system up to date: