https://github.com/rix4uni/arinrange
Net Range scraping on whois.arin.net
https://github.com/rix4uni/arinrange
bug-bounty bugbounty bugbountytips hacking infosec net-range osint osint-resources osint-tool penetration-testing pentest-tool pentesting recon reconnaissance scrape security security-tools threat-intelligence
Last synced: about 1 year ago
JSON representation
Net Range scraping on whois.arin.net
- Host: GitHub
- URL: https://github.com/rix4uni/arinrange
- Owner: rix4uni
- Created: 2025-01-11T07:44:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-11T07:51:09.000Z (over 1 year ago)
- Last Synced: 2025-02-07T00:18:22.548Z (over 1 year ago)
- Topics: bug-bounty, bugbounty, bugbountytips, hacking, infosec, net-range, osint, osint-resources, osint-tool, penetration-testing, pentest-tool, pentesting, recon, reconnaissance, scrape, security, security-tools, threat-intelligence
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## arinrange
Net Range scraping on whois.arin.net.
## Installation
```
git clone https://github.com/rix4uni/arinrange.git
cd arinrange
python3 setup.py install
```
## pipx
Quick setup in isolated python environment using [pipx](https://pypa.github.io/pipx/)
```
pipx install --force git+https://github.com/rix4uni/arinrange.git
```
## Usage
```
python3 arinrange -h
usage: arinrange [-h] [--timeout TIMEOUT] [--silent] [--version]
Net Range scraping on whois.arin.net
options:
-h, --help show this help message and exit
--timeout TIMEOUT Timeout (in seconds) for http client (default 15)
--silent Run without printing the banner
--version Show current version of arinrange
```
## Example usages
Single ORGs:
```
echo "Twitch Interactive" | arinrange
```
Multiple ORGs:
```
cat orgs.txt
Twitch Interactive
Tesla Motors, Inc.
```
```
cat orgs.txt | arinrange
```
Output of Single ORGs:
```
echo "Twitch Interactive" | arinrange --silent
65.116.147.160-65.116.147.167
2001:428:2001:310::-2001:428:2001:310:FFFF:FFFF:FFFF:FFFF
2001:428:6002:600::-2001:428:6002:6FF:FFFF:FFFF:FFFF:FFFF
```
Intigrate with mapcidr:
```
echo "Twitch Interactive" | arinrange --silent | mapcidr -silent -aggregate
65.116.147.160/29
2001:428:2001:310::/64
2001:428:6002:600::/56
```