View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0003294 | Kali Linux | New Tool Requests | public | 2016-05-15 15:23 | 2020-02-10 13:49 |
| Reporter | prafull agarwal | Assigned To | |||
| Priority | normal | Severity | feature | Reproducibility | always |
| Status | closed | Resolution | won't fix | ||
| Summary | 0003294: netpraf - Tool to identify network ranges allocated to an organization | ||||
| Description | During course of my external penetration testing assignment I was required to determine the foot print of the organization. This should be an exhaustive search so as to ensure complete coverage. I utilized almost every tool that is pre-installed in Kali environment, including discovery script available at github. But couldn't locate a tool that can match my requirement. So finally a wrote a tool that fulfils this requirement. | ||||
| Steps To Reproduce |
| ||||
| Attached Files | Netpraf (861 bytes)
#!/bin/bash
###############################################################################################################################################
#This tool provide network range that is allocated to an organization. The result is stored in output file that gets created in the same folder.
###############################################################################################################################################
echo Please input organization name
read organization
curl -k https://www.ultratools.com/tools/asnInfoResult?domainName=$organization | grep -Eo "(AS)([0-9][0-9][0-9][0-9][0-9])" > result
filename=result
declare -a myarray
myarray=( `cat "$filename"`)
for ((i=0;i< ${#myarray[@]};i++))
do
echo ${myarray[$i]}
whois -h whois.radb.net -- -i origin ${myarray[$i]} | grep -Eo "([0-9.]+){4}/[0-9]+" >> output
done
| ||||
|
To help speed up the process of evaluating the tool, please make sure to include the following information (the more information you include, the more beneficial it will for us):
|
|
As it requires online services, we can't add this. |
|
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2016-05-15 15:23 | prafull agarwal | New Issue | |
| 2016-05-15 15:23 | prafull agarwal | File Added: Netpraf | |
| 2018-01-26 11:51 | g0tmi1k | Summary | Tool to identify network ranges allocated to an organization => netpraf - Tool to identify network ranges allocated to an organization |
| 2018-01-29 15:05 | g0tmi1k | Note Added: 0008433 | |
| 2019-12-10 11:57 | g0tmi1k | View Status | private => public |
| 2020-02-10 13:49 | g0tmi1k | Note Added: 0012067 | |
| 2020-02-10 13:49 | g0tmi1k | Status | new => closed |
| 2020-02-10 13:49 | g0tmi1k | Resolution | open => won't fix |