maurosoria / dirsearch

Web path scanner
11.93k stars 2.31k forks source link

How to scan URLs containing IPv6 addresses without domain names? #1276

Open wuzuowei opened 1 year ago

wuzuowei commented 1 year ago

How to scan URLs containing IPv6 addresses without domain names?

Example:

thank you.

Prady18 commented 1 year ago

Scan IPv6 URL with Nmap

To scan URLs that contain IPv6 addresses, you can use a tool such as nmap. nmap is a network scanner that can be used to identify open ports and services on a target system. To scan an IPv6 URL, you can use the following syntax:

Less Copy code (nmap -6 [IPv6 address]:[port]. ) For example, to scan the URL in your question, you would run the following command:

ruby Copy code nmap -6 2409:8087:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx -p 7777

kylincodelab commented 1 year ago

Scan IPv6 URL with Nmap

To scan URLs that contain IPv6 addresses, you can use a tool such as nmap. nmap is a network scanner that can be used to identify open ports and services on a target system. To scan an IPv6 URL, you can use the following syntax:

Less Copy code (nmap -6 [IPv6 address]:[port]. ) For example, to scan the URL in your question, you would run the following command:

ruby Copy code nmap -6 2409:8087:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx -p 7777

sb