-
Enable feature in PowerShell:
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux -
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 -
Open PowerShell as Admin and Run:
Add-AppxPackage .\Kali.appx -
Run
kali. Createuser:user. -
Set default user:
kali config --default-user root -
Keep system up to date:
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 | |
| ROOT="Template" | |
| echo "[+] Creando estructura profesional dentro de: $ROOT" | |
| mkdir -p "$ROOT" | |
| ########################################## | |
| # BASE DE CARPETAS (NO SE MODIFICAN) |
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 | |
| # 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 |
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
| # 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 |