Initial commit
This commit is contained in:
19
isolate_network.sh
Executable file
19
isolate_network.sh
Executable 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"
|
||||
Reference in New Issue
Block a user