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:

  1. 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.
  2. 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.
  3. 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.

Important Notes:

  • Make sure to replace example.com with the actual target domain or IP address.
  • Be cautious when running nmap as it can be detected by some systems.
  • Use dig with the -t option to specify the type of DNS record you want to query (e.g., -t A for A records).
  • Use whois with the -h option to specify the whois server you want to use (e.g., -h whois.iana.org for the IANA whois server).

Sign up or log in to comment