# Google Dorking

### Simple Examples

```dork
"google" 1..100
```

> Search for websites that contain the word "google" and a number between 1 and 100

```dork
Videos -site:youtube.*
```

> Search for the term "Videos" but exclude results from YouTube

```dork
How to * a computer after:2022-01-01
```

> Search for websites published after the 1st January 2022 dealing about how to `use/repair/shutdown/...` a computer

```dork
allintext:homework teacher school site:gov before:2020 ext:(html | php)
```

> Search for websites published before 2020 which have the TLD `.gov`, are either html or php documents and contain the words "homework", "teacher" and "school"

```dork
@instagram chr3st5an
```

> Search for the term "chr3st5an" on instagram

### Finding Valuable Information

```dork
intitle:"webcamXP 5" | inurl:"lvappl.htm"
```

> Find open/public webcams

```dork
intext:password ext:log
```

> Find log documents wich have the string "password" in it

```dork
inurl:/proc/self/cwd
```

> Find vulnerable webservers

```dork
inurl:email.xls ext:xls
```

> Find excel documents that contain email addresses

```dork
index of:mp3 intext:.mp3
```

> Find mp3 (music) documents

### Further

You can find more Google Dorks at the [exploit-db](https://www.exploit-db.com/google-hacking-database)

<https://github.com/spekulatius/infosec-dorks>
