Commit 8f62c9dd authored by bobloblaw's avatar bobloblaw
Browse files

Updates active_information_gathering.md

Auto commit by GitBook Editor
parent 02dc00a8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -20,11 +20,11 @@
    * [Firewalls](firewalls.md)
    * [General tips and tricks](general_tips.md)
* [Recon and Information Gathering Phase](scanning.md)
    * [Passive information gatherig](passive_information_gatherig.md)
    * [Passive Information Gatherig](passive_information_gatherig.md)
        * [Email Harvesting](email_harvesting.md)
        * [Users](users.md)
        * [Google hacking](google_hacking.md)
    * [Active information gathering](active_information_gathering.md)
        * [Google Hacking](google_hacking.md)
    * [Active Information Gathering](active_information_gathering.md)
        * [Port Scanning](port_scanning.md)
        * [Find Subdomains](find_subdomains.md)
            * [DNS Basics](dns_basics.md)
+2 −10
Original line number Diff line number Diff line
# Active information gathering



Once the Passive 



@@ -13,20 +13,12 @@ netdiscover -r 192.168.1.1/24

## Nikto

Nikto is a good tool.
Nikto is a good tool to scan webservers. It is very intrusive.

```
nikto -host 192.168.1.101
```

## Find interesting files

```
site:example.com filetype:pdf
```

This can easily be turned into a script that checks for all important filetypes.



## References