Seach engines such as Google and Bing can be quite useful in the process of footprinting. This is because web crawlers are able to find information in web directories and on web pages quickly. In this section, I show how you can use some keywords to be able to find information using Google.
This is able to find URLs that have some word in it. In the example below, I am search for URLs that have the word "sweshi" as part of the text.
inurl:sweshi
This enables you to restrict the results of a search to be coming from a specific domain name. In the example below, I am searching for "tutorial" from "sweshi.com".
site:sweshi.com tutorial
The link keyword can find URLs that point to the URL that you specify. It is a way of knowing which web pages have a certain link. This could be handy if you are in security and need to know who is distributing a dangerous link. In the example below, I simply check for websites the have sweshi.com as part of their links.
link:sweshi.com
This one searches for words that could be in the title of a web page. In this example, I search for web pages that have the word "sweshi" as part of their title.
intitle:sweshi
As you can imagine, this one has the ability to find finles that have a specific extension. In this example we search for excel "xls" files.
ext:xls
Some searches can be based on what google has cached and we can use this to find the results that are based on cache rather than those based on the database results. I search for sweshi tutorials to see what cache entries could be there in this search.
cache:sweshi tutorials
search | intended result |
---|---|
intitle:"Index of" passwords modified | To find directories that have password files |
inurl:auth_user_file.txt | To find URLs that have authentication information in text files |
"access denied for user" "using password" | Searches for pages with error messages that reveal passwords |
"Index of /backup" | Finds backup directories |
intitle:"Index of" config.php | Searches for folders that have configuration files. |
Remember that you can mix these keywords to find even more specific machines in your searches.