https://github.com/incogbyte/yankenicbr
This repository provides a daily-updated, structured dataset of Brazilian Autonomous System Numbers (ASNs) and their associated IP address blocks.
https://github.com/incogbyte/yankenicbr
Last synced: 11 months ago
JSON representation
This repository provides a daily-updated, structured dataset of Brazilian Autonomous System Numbers (ASNs) and their associated IP address blocks.
- Host: GitHub
- URL: https://github.com/incogbyte/yankenicbr
- Owner: incogbyte
- License: gpl-3.0
- Created: 2025-07-03T21:22:38.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-07-19T03:31:36.000Z (11 months ago)
- Last Synced: 2025-07-19T08:50:37.876Z (11 months ago)
- Homepage:
- Size: 934 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Brazilian ASN and IP Blocks Dataset
This repository provides a daily-updated, structured dataset of Brazilian Autonomous System Numbers (ASNs) and their associated IP address blocks.
The data is automatically fetched and parsed from the official file provided by [NIC.br](https://nic.br), the Brazilian Network Information Center. The goal of this project is to offer a clean, reliable, and easy-to-use version of this data for network analysis, security research, and other applications.
## Automation Process
A GitHub Action workflow runs automatically every 24 hours. The process is as follows:
1. **Fetch Data:** The latest version file is downloaded.
2. **Structure Data:** The raw information is transformed into structured formats.
3. **Commit & Push:** The newly generated files are committed and pushed to this repository, ensuring the data is always current.
## Generated Files
The raw data is processed and made available in the `data/` directory in the following formats:
* `data/all_data.json`
A comprehensive JSON file containing an array of objects. Each object represents an organization and includes its ASN, name, document (CNPJ/CPF), and a list of its associated IP blocks.
```json
[
{
"asn": 4230,
"organization": "CLARO S.A.",
"document": "40.432.544/0706-09",
"ip_blocks": [
"200.192.0.0/18",
"200.210.0.0/16",
"..."
]
}
]
```
* `data/asns.txt`
A simple text file listing all unique Autonomous System Numbers (ASNs), sorted numerically, one per line.
* `data/ips.txt`
A simple text file listing all unique IP address blocks (in CIDR notation), sorted, one per line.