Skip to content

Commit 8d91c24

Browse files
authored
SEO tags
1 parent 1950d99 commit 8d91c24

1 file changed

Lines changed: 26 additions & 1 deletion

File tree

README.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,5 +184,30 @@ If you have any suggestions, please feel free to open an issue!
184184

185185
---
186186

187+
### Blackhole removal
188+
189+
Remove all IP's from blackhole with the the script below:
190+
```bash
191+
#!/bin/bash
192+
# Remove all blackholed IP routes
193+
echo "Removing all blackhole routes..."
194+
195+
ip route show | grep blackhole | awk '{print $2}' | while read ip; do
196+
echo "Removing blackhole for $ip"
197+
sudo ip route del blackhole "$ip"
198+
done
199+
200+
echo "Done."
201+
```
202+
203+
---
204+
187205
## Tags for SEO
188-
ddos-protection network-security anti-ddos ddos-mitigation network-monitor traffic-analysis ip-blacklisting linux-security packet-filtering cyber-defense network-protection attack-detection traffic-filtering dos-protection network-monitoring-tool linux-firewall python-security tcp-ip-security attack-signature-detection real-time-monitoring blackhole-routing iptables ufw ipset packet-analysis traffic-thresholds bandwidth-monitoring pps-detection mbps-monitoring protocol-analysis server-protection web-server-security game-server-protection vps-security dedicated-server-protection hosting-security cloud-security online-service-protection infrastructure-security high-availability service-continuity automated-defense ip-blocking firewall-management attack-fingerprinting signature-based-detection threshold-based-detection adaptive-protection attack-pattern-recognition security-automation incident-response intrusion-detection alert-system discord-notifications webhook-alerts sysadmin-tools devops-security infrastructure-protection security-automation network-administration linux-administration server-hardening self-hosted-security open-source-security cybersecurity-tool network-diagnostics traffic-visualization security-monitoring network-reliability syn-flood-protection udp-flood-protection icmp-flood-protection http-flood-protection amplification-attack-protection reflection-attack-protection botnet-protection volumetric-attack-protection protocol-attack-protection application-layer-protection mixed-vector-protection linux-tool command-line-utility python-application networking-tool tcpdump-integration tshark-integration ipv4-security layer-3-protection layer-4-protection udp-protection tcp-protection packet-inspection network-traffic-control
206+
207+
Security: DDoS protection, network security, intrusion detection, attack mitigation, ddos mitigation, traffic analysis
208+
209+
Technologies: Python, iptables, blackhole routing, tcpdump, tshark, ipset, ufw
210+
211+
Attack Types: reflection attacks, amplification attacks, SYN floods, UDP floods, TCP abuse
212+
213+
Features: real-time monitoring, auto-detection, pattern recognition, Discord webhooks, API integration

0 commit comments

Comments
 (0)