-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDork
68 lines (55 loc) · 3.32 KB
/
Dork
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
Filetype: This operator searches for specific file types. For example, `filetype:pdf` would return PDF files.
Inurl: The `inurl:` operator can be used to find specific words within the URL of a page. For example, `inurl:login` would return pages with ‘login’ in the URL.
Intext: With the `intext:` operator, you can search for specific text within the content of a web page. For example, `intext:”password”` would yield pages that contain the word “password”.
Intitle: The `intitle:` operator is used to search for specific terms in the title of a webpage. For example, `intitle:”index of”` could reveal web servers with directory listing enabled.
Link: The `link:` operator can be used to find pages that link to a specific URL. For example, `link:example.com` would find pages linking to example.com.
Site: The `site:` operator allows you to search within a specific site. For example, `site:example.com` would search within example.com.
Use Case Operator Example Usage
Searching Within a Specific Website `site:` `site:nytimes.com cybersecurity`
Finding Specific File Types `filetype:` `filetype:pdf machine learning`
Searching for Pages with Specific Titles `intitle:` `intitle:”data privacy”`
Finding Pages that Link to a Specific URL `link:` `link:bbc.co.uk/news/technology-57339947`
Searching for Specific Text on a Web Page `intext:` `intext:”cyber threat”`
CCTV camera:
intitle:"Pi-hole-ip" inurl:admin
intitle:"Gargoyle Router Management Utility" -com|net
intitle:"Network Camera" inurl:main.cgi
intitle:"NoVus IP camera" -com
inurl:"/view/view.shtml"
inurl:"/view/index.shtml"
intitle:IP CAMERA Viewer intext:setting | Client setting"
"site:*/cgi-bin/webproc intext:username"
"inurl:/swagger/index.html"
"intext:Security is Off intitle:Namenode information"
"Firmware Version intitle:iLO ProLiant Login -hpe.com -update"
"intitle:rsview32 ext:asp"
"intitle:WSO2 Management Console"
"intitle:Home - Mongo Express"
"inurl:8080/dashboard/ intitle:Dashboard"
"inurl:/index.php?enter=guest"
"inurl:CGI/Java/Serviceability?adapter=device.statistics.device"
"intitle:Marshall VS Server"
"intext:{{szErrorTip}} inurl:/doc/page/login.asp"
"intitle:openshift web console inurl:console inurl:/console"
"inurl:/hp_login.html"
"inurl:webArch/mainFrame filetype:cgi intext:Web Image Monitor"
inurl:viewer/live/index.html
inurl:"/view.shtml"
inurl:"ViewerFrame?Mode=" //
innurl:"MultiCameraFrame?Mode=
inurl:"/home/homeJ.html"
inurl:"control/userimage.html"
inurl:"indexFrame.shtml"
inurl:"index.shtml"
inurl:"view/indexFrame.shtml"
inurl:"view/index.shtml"
inurl:"view/view.shtml?videos="
inurl:"viewerFrame?Mode=Refresh"
Find public cameras that use this common URL structure : inurl:/view/view.shtml
Search for Axis-brand network cameras that are intentionally shared : intitle:"Live View / - AXIS"
Look for accessible webcams with user image controls : inurl:"/control/userimage.html"
Find cameras or IP webcams that expose capture URLs : inurl:"/webcapture.jpg?command=1"
Search for live camera feeds with motion modes enabled inurl:"viewerframe?mode=motion"
To find administrative panels: site:example.com inurl:admin
To unearth log files with passwords: filetype:log "password" site:example.com
To discover backup directories: intitle:"index of" "backup" site:example.com