Spaces:
Running
Running
VC osint
#1
by
Arctvrus
- opened
๐: How can I make a web scrapping to know if the domain is still available, if there is a contact page or something like that like a form or something and to identify team members interested on AI
๐ค: Investigation Steps:
Gather Domain Information using
whois(https://www.whois.net/)- How to use: Open a terminal in Kali and run
whois example.com(replace example.com with the target domain). This will display the domain's registration information. - What you'll find: The domain's registrant name, email, phone number, and registration date.
- How to use: Open a terminal in Kali and run
Perform a DNS Lookup using
dig(https://www.digwebinterface.com/)- How to use: Open a terminal in Kali and run
dig example.com(replace example.com with the target domain). This will display the domain's DNS records. - What you'll find: The domain's A records, NS records, and other DNS information.
- How to use: Open a terminal in Kali and run
Scan for Open Ports using
nmap(https://nmap.org/)- How to use: Open a terminal in Kali and run
nmap -sT -p 1-65535 example.com(replace example.com with the target IP address). This will scan the target for open ports. - What you'll find: A list of open ports and their corresponding services.
- How to use: Open a terminal in Kali and run
Important Notes:
- Make sure to replace
example.comwith the actual target domain or IP address. - Be cautious when running
nmapas it can be detected by some systems. - Use
digwith the-toption to specify the type of DNS record you want to query (e.g.,-t Afor A records). - Use
whoiswith the-hoption to specify the whois server you want to use (e.g.,-h whois.iana.orgfor the IANA whois server).