Open Source Security Initiative
No authentication required. Our security data is free to use under the CC-BY-SA-4.0 license.
Available in TXT, JSON, CSV, and server-ready Apache & Nginx configurations.
Share, adapt, and contribute. Help us build a safer internet together.
Download our open-source blacklist of malicious IPs to enhance your security infrastructure:
Simple list of IPs with attack counts
Structured data with IP, count and timestamp
Compatible with Excel and data analysis tools
Ready to use with Apache web server
Ready to use with Nginx web server
This data is provided as an open-source security resource. Always review blacklists before implementing in production environments. Some legitimate users may share IPs with malicious actors.
GET /api/analytics/security/blacklist?format=[FORMAT]
Available formats:
txt
- Plain text listjson
- JSON formatted datacsv
- CSV for spreadsheetsapache
- Apache server confignginx
- Nginx server configcurl https://zfts-web-portfolio-a8pp1w8bj-thanatchas-projects.vercel.app/api/analytics/security/blacklist?format=json
fetch('https://zfts-web-portfolio-a8pp1w8bj-thanatchas-projects.vercel.app/api/analytics/security/blacklist?format=json')
.then(response => response.json())
.then(data => {
console.log('Blacklisted IPs:', data);
// Process the blacklist data
})
.catch(error => console.error('Error fetching blacklist:', error));
import requests
response = requests.get('https://zfts-web-portfolio-a8pp1w8bj-thanatchas-projects.vercel.app/api/analytics/security/blacklist?format=json')
if response.status_code == 200:
blacklist = response.json()
print(f"Retrieved {len(blacklist)} blacklisted IPs")
# Process the blacklist data
else:
print(f"Error: {response.status_code}")
<?php
$url = 'https://zfts-web-portfolio-a8pp1w8bj-thanatchas-projects.vercel.app/api/analytics/security/blacklist?format=json';
$response = file_get_contents($url);
$blacklist = json_decode($response, true);
if ($blacklist) {
echo "Retrieved " . count($blacklist) . " blacklisted IPs\n";
// Process the blacklist data
}
?>
This security data is provided under the Creative Commons Attribution-ShareAlike 4.0 International License (CC-BY-SA-4.0). You are free to share and adapt the material for any purpose, including commercially, as long as you give appropriate credit and distribute your contributions under the same license.
Security data provided by ZFTS Open Source Security Initiative (https://zfts.com) under the CC-BY-SA-4.0 license.