Commit 26a04c85 authored by bobloblaw's avatar bobloblaw
Browse files

Updates passive_information_gatherig.md

Auto commit by GitBook Editor
parent 1b8c9661
Loading
Loading
Loading
Loading
+21 −6
Original line number Diff line number Diff line
@@ -2,21 +2,36 @@

It is passive in the meaning that it doesn't directly send packets to the service. But in any other sense of the word there is nothing passive about this phase.

## Visit the website

 - Web information
Read through the website. What does it do.
Okay, I guess this actually sends packets to the target, but whatever. Visit the page, look around, read about the target. What do they do?

## Whois

Find out who is behind the website.

Resolve the DNS

```
host website.com
nslookup website.com
```

The the IP address and check it with `whois`

```
whois 192.168.1.101
```

 - Whois enumeration

Who is behind the website etc.
## Netcraft

Most of the info found on netcraft is not unique. It is basic whois info. But one thing is rally good, it lists the different IP-addresses the page has had over the years. This can be a good way to **bypass cloudflare** and other services that hide the real IP. Using netcraft we can find the IP that was in use before they implemented cloudflare.
Most of the info found on netcraft is not unique. It is basic whois info. But one thing is really good, it lists the different IP-addresses the page has had over the years. This can be a good way to **bypass cloudflare** and other services that hide the real IP. Using netcraft we can find the IP that was in use before they implemented cloudflare.

Another detail that is good to know is the **hosting-company** or **domain-provider**. Those details can be used if we want to try some **social-engineering/spear-phishing attack**.
Another detail that is good to know is the **hosting-company** or **domain-provider**. Those details can be used if we want to try some **social-engineering or spear-phishing attack**.

[Netcraft](https://www.netcraft.com/)

## References

http://www.technicalinfo.net/papers/PassiveInfoPart1.html
 No newline at end of file