Initial commit

This commit is contained in:
admin
2025-08-24 11:13:39 -04:00
commit fb869f1131
168 changed files with 47986 additions and 0 deletions

19
isolate_network.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
# Network Isolation Script
# Isolates your computer from the compromised network
echo "🔒 ISOLATING FROM COMPROMISED NETWORK"
echo "====================================="
# Disable network interfaces
echo "Disabling network interfaces..."
sudo ip link set wlp2s0 down 2>/dev/null
sudo ip link set enp1s0 down 2>/dev/null
echo "Network interfaces disabled"
echo "You are now isolated from the compromised network"
echo ""
echo "To reconnect after router reset:"
echo "sudo ip link set wlp2s0 up"
echo "sudo ip link set enp1s0 up"