-
Notifications
You must be signed in to change notification settings - Fork 0
/
dorks.txt
7340 lines (7340 loc) · 289 KB
/
dorks.txt
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
inurl:adminpanel site:gov.*
site:vps-*.vps.ovh.net
site:gov.* intitle:"index of" *.csv
intitle:"Index of /" intext:"resource/"
Google to wordpress
intitle:"atvise - next generation"
site:papaly.com + keyword
inurl:"*admin | login" | inurl:.php | .asp
site:pastebin.com intitle:"cpanel"
inurl:/intranet/login.php
intitle:index of settings.py
site:postman.com + keyword
inurl:admin filetype:xlsx site:gov.*
db_password filetype:env
inurl: /wp-content/uploads/ inurl:"robots.txt" "Disallow:" filetype:txt
inurl:admin filetype:xls
site:gov.* intitle:"index of" *.apk
intitle:"Teltonika -Web UI" | intitle:"Teltonika-RUT -Web UI" inurl:"/cgi-bin/luci"
inurl:admin filetype:txt
inurl:/admin/login.php intitle:("Iniciar sesion" OR "Login")
intitle:"MODBUS TCP RS485 Converter" intext:"Module Name: MMTCPBCONV" "powered by Atmel ARM."
inurl:admin filetype:xls site:gov.in
intext:"Real-time IP Camera Monitoring System" intext:"ActiveX Mode (For IE Browser)"
intitle:"Login" intext:"cam"
intitle:"Secure Access Service" inurl:"/dana-na/auth/url_default/welcome.cgi"
intitle:"index of" "/products"
inurl:adm/login.jsp.bak
intitle:"index of" "*.pl"
intitle:"index of" "*.phtml"
inurl:console/login.jsp
intitle:"index of" "*.php"
site:mail.* intitle:Dashboard
inurl:EMSWebClient/
intitle:"index of" "/mysql"
site:*.ng intitle:index of
inurl admin login php gov.in
site:*.edu.in intitle:index of
site:*.in inurl:jira login
site:*.gov.au inurl:wp-admin
inurl:*gov intitle:"index of" "docker-compose"
inurl:pastebin "SHODAN_API_KEY"
inurl:*gov intitle:"index of/documents"
intitle:"Schneider Electric Telecontrol - Industrial Web Control" intext:"Xflow "
intitle"index of" "php"
intitle:"index of" site:gov.in
site:*.github.io intext:cheatsheet+offensive+pentesting
intitle:"index of" "admin.js"
inurl:gov.in & inurl:admin
site:pastebin.com "admin password"
intitle:"index of" "wp-inc"
inurl *:8443/login.jsp
allintext"account number"
site:controlc.com intext:"password"
site:rentry.co intext:"password"
site:.edu intext:"index of" "payroll"
intitle:"index of" "*.yaml"
site:*.se intitle:"index of"
site:*.id intitle:"index of" "screenshot*.jpg"
intitle:"index of" "*.vcf"
intitle:"index of" "apache.log" | "apache.logs"
intitle:"Login" intext:"camera"
site:drive.google.com "*.pdf"
intitle:"index of "/key/" "key.txt"
inurl:linkedin.com "view my resume" facebook
intitle.index of .log
inurl:*gov intitle:"index of" "docker-compose"
intitle:"index of" "sysinfo"
intitle.index of .exe
intitle.index of API*.txt
intitle:"index of" site:gov.np
intitle:"index of" "*.mp4"
intitle:"index of" "admin*.txt"
site:.nic.in inurl:.php?id=
inurl:.org intitle index.of "inflation"
site:*/admin-portal/
intitle:"index of" site:gov.ru
intitle:"index of" site:gov.gr
site:.in | .com | .net intitle:"index of" ftp
inurl:forgotpassword.php
intitle:"index of" site:gov.*
intitle:"index of" "/public_html"
inurl:node_modules/ua-parser-js
intitle:"index of" "/public/js"
site:smtp3.*.*/login
intitle:"Index of" site:.in
inurl:pastebin "SHODAN_API_KEY"
inurl:*gov intitle:"index of/documents"
inurl:.php?=*php site:.nic.in
intitle:"index of" "/students"
site:com "rfp" filetype:pdf
site:.edu intext:"index of" "logs"
intext:"Index of /chatlogs"
inurl:pastebin "CVV"
site: com intext " organisation data" filetype:xls
intitle:"index of" "default.asp "
intitle:"index of" " fileadmin "
intitle:"index of" " YaBB.pl "
intitle:"index of" " htsearch "
intitle:"index of" " glimpse "
intitle:"index of" " webdriver "
intitle:"index of" " index.php.bak "
intitle:"index of" " sendmail.inc "
intitle:"index of" " login.jsp "
intitle:"index of" " mod_auth_mysql "
intitle:"index of" "test.bat "
intitle:"index of" "msadcs.dll "
intitle:"index of" "browser.inc "
intitle:"index of" "hello.bat "
intitle:"index of" "dvwssr.dll "
intitle:"index of" Servlet"
intitle:"index of" upload.asp "
inurl:product-list.php?id=
site:pastebin.com "password"
inurl:pastebin "API_KEY"
inurl:pastebin "Windows 10 Product Keys*"
inurl:login.php site:.in
intitle:"index of" "data*"
intitle:"index of" "document*.pdf"
index of:"customer/login"
site:pastebin.com intext:pass.txt
index of:"seller/login"
site:*.in inurl: admin login
inurl:gov.in & (intitle:login | intitle:signin)
inurl:gov.in & inurl:wp-admin
inurl:/commodities.php?id=
{intitle: indexof/.git }
intitle:"webcamXP" inurl:8080
site:*.gov.in inurl:login.jsp
site:gov.hk intitle:index of /
inurl:pastebin "AWS_ACCESS_KEY"
site:*/forgotpassword.php
site:.edu.in inurl:login.php
site:.edu intitle:"index of"
site:.edu inurl:login "Admin"
site:pastebin.com "*@gmail.com password"
site:.edu inurl:search
intitle:"Index of" "DCIM/camera"
intitle:"Index of" "Screenshot"
intitle:"Index of" "system32"
intitle:"Index of" "Program files"
intitle:"Index of" *.py
intitle:"index of" "certificates"
intitle:"index of" "/.cpanel"
"index of" :excel documents
intitle:"index of" :mobile number
intitle:"index of" "node.js"
intext:"Index of" intext:"config.zip"
inurl: conf/fastcgi.conf
inurl:conf/nginx.conf
site:com intitle:"index of" .env
inurl:gov.uk & inurl:wp-admin
intitle:"Index of" *.xlsx
site:in inurl:/admin/login
inurl:gov.in
intitle:MailEnable inurl:"/Login.aspx"
inurl:8888 ext:php inurl:login
inurl:4444 ext:php inurl:login
inurl:login.net
index of: "participants" "uploads"
site:com inurl:/admin/login
filetype:txt site:gitlab.* "secret" OR "authtoken"
site:gitlab.* intext:password intext:@gmail.com | @yahoo.com | @hotmail.com
inurl: */.env
intitle:"index of" "/.git/config"
intitle:"index of" "*/ftp.txt"
intext:"index of" "user-config"
intitle:"database" "backup" filetype:sql
intext:"sitemap" filetype:txt
intext:pass filetype:txt
inurl:/package.json
intitle"index of" "username" "password" filetype: xlsx
intitle:"Index of /logs/" "nginx"
intext:"index of" "home_page"
inurl:/mutillidae/ "Toggle Hints"
intext:"index of" inurl:/etc/
inurl:wp-content/uploads/wooccm_uploads
intitle:"index of" "particle.js"
index of: "invoice" "upload"
intitle:"index of" Hindi movies
intext:"index of" "wp-uploads"
intext:"index of" "signin"
site:.edu.in inurl:login.aspx
site:.edu.in inurl:login.aspx
index of: "marksheet" "upload"
intext:"untitled" intext:"admin" filetype:php
site:gov.in inurl:/admin/login
inurl:gov.uk
inurl:80 ext:php inurl:login
intext:"Index of" intext:"password.zip"
intext:"Index of" intext:"users.zip"
intext:"Index of" "services.php | pass.php | passwd.php | credentials.txt"
intitle:"index of" "dhcp"
index of:"blog" "upload"
inurl:cache/uploads
intitle:"index of" "Apache/2.4.41 (Ubuntu) Server"
intitle:"index of" "master03.xml"
intitle:"index of" "stylesheet.css"
intitle:"index of" "pres.xml"
intext:"password" | "passwd" | "pwd" site:anonfiles.com
intitle:" - General Status [none]"
inurl:/carbon/admin/login.jsp
site:*.example.com inurl:(elmah.axd | errorlog.axd) ext:axd
inurl:errorlog.axd ext:axd
intext:"Powered by " inurl:/login
showing putty logs
intext:"index of" "uploads"
inurl:newsdesk.cgi?
intitle:"index of" "script.js"
inurl *:8080/login.php
intitle:"index of" "admin-config"
intitle:"index of" "admin.login.php"
intitle:"index of" "admin.login.php"
intitle:"index of" " wp-mail-smtp"
intitle:"index of" "/resources"
intext:"index of" "ftp"
intext:"password" | "passwd" | "pwd" site:ghostbin.com
intext:"untitled" intext:"login" filetype:php
intitle:"index of" "untitled"
intitle:"index of" "untitled" "wp-content" intext:scanned
index of :"uploads" "parent" "salary" intext:salary
index of :wp-config.zip
intitle:"index of" ".ssh/authorized_keys"
Intitle:database ext:sql
intext:"untitled" intext:"password" filetype:php
index of: "parent directory" "uploads"
index of: "confidential" "uploads"
intitle:"webmail Login"
site:pastebin.com intext:password.txt
index of: "cache" "uploads"
index of: "QRcodes" "uploads"
index of: "contracts" "uploads"
index of : "phonebook "
index of : "truecaller" "uploads"
index of: "license" "upload"
index of: "certificate" "upload"
index of: "certificate" "wp-content"
index of: "application" "upload"
index of: "application form" "upload"
index of: "documents" "wp-content"
intitle:"index of" "_vti_inf.html"
intitle:"index of" "service.pwd"
intitle:"index of" "shtml.dll "
inurl:admin ext:sql
index of:"password" "wp-content"
index of: "putty" "uploads"
intitle:"index of" "master01"
intitle:"index of" " unidecode"
intitle:"index of" " cldr-data"
intitle:"index of" " gettext"
intitle:"index of" " src "
intitle:"index of" " src.hint"
intitle:"index of" "tar.xz"
intitle:"index of" "pkgs"
intitle:"index of" "ftp.riken
intitle:"index of" "pub"
intitle:"index of" "cygwin"
intitle:"index of" "kde-l10n-de"
intitle:"index of" "txdot"
intitle:"index of" "mirror.koddos.net"
intitle:"index of" "Squid-cache"
intitle:"index of" "-login.php"
intitle:"index of" "metin"
intitle:"index of" "html-en"
intitle:"index of" "html-intro"
intitle:"index of" "echo-linux"
intitle:"index of" "filelist.xml"
intitle:"index of" "wp-content"
intitle:"index of" "css"
intitle:"index of" "CD.pdf "
intitle:"index of" "DOCS-TECH "
intitle:"index of" " Server-Side "
intitle:"index of" " py-text"
intitle:"Kerio Connect Client" inurl:"/webmail/login/"
Google Dork
Google Dork
Google Dork
intitle:"index of" "htdocs"
intitle:"index of" ".env"
intitle:"index of" ".ppt"
site:github.com intext:"unattend xmlns" AND "password" ext:xml
intitle:"index of" "workspace.xml"
intitle:"index of" "-qpf"
intitle:"index of" "-ipk"
intitle:"index of" "Packages.gz"
intitle:"index of" "mips32el-nf"
intitle:"I-Portal" inurl:"login.jsp"
intitle:"index of" ".phpunit.xml"
intitle:"index of" " .AndroidManifest.xml"
intitle:"RM Portal"
intitle:"TOTVS SmartClient HTML - Parâmetros Iniciais"
intitle:"Index of /" intext:"pass.txt"
inurl:WS_FTP.log
intext:"/pfx-password.txt" "[To Parent Directory]"
intext:"Index of" "email.txt"
intitle:"Gophish - Login"
intitle:"index of" "pptx"
intitle:"index of" "ppt.html"
intitle:"index of" "slides-ppt"
intitle:"index of" "-XML.pdf "
intitle:"index of" "XML "
intitle:"index of" "XML.Xerces "
intitle:"index of" "infn.it"
intitle:"index of" "lngs.infn.it "
intitle:"index of" "extra"
intitle:"index of" "extranet"
intitle:"index of" "fsi"
intitle:"index of" "oxid-esales"
intitle:TYPO3 CMS Login: New TYPO3 site inurl:/typo3/index.php
site:pastebin.com intext:username | password | SECRET_KEY
site:pastebin.com intext:license key | expiration
site:pastebin.com intext:username | password | secret_key | token
intitle:index.of /email /robots.txt
intitle:index.of /cftp /robots.txt
inurl:"brandmeister page=login"
allinurl:index.php?page= site:.gov.in
"inurl:php?id=" site:.gov.bd
Index of /vendor/spatie/robots-txt
intitle:"index of" ".private.xml"
intext:"admin" AND "login" | "sign in" AND "©" AND "rights reserved"
site:pastebin.com intext:"administrator:500:"
inurl:/wp-content/uploads/ ext:txt "username" | "user name" | "uname" | "user" | "userid" | "user id" AND "password" | "pass word" | "pwd" | "pw"
"inurl:php?id=" site:.com
inurl:login/users.pwd
inurl:"wp-login.php?action=login"
intitle:"LoRaWAN Login"
intext: "mailenable" inurl:"/lang/sys/login.aspx"
intitle:Hikvision login page
intitle:ip camera login page
inurl:password site:shodan.io
Index of /apidoc/api-web/target/classes/
intitle:"password reset"
intitle:index.of /CMS /robots.txt
intitle:"index of" "server.log"
intitle:"index of" "/backup/sql"
intitle:index of cv site:.com
site:.bd http intitle: admin
intitle:"Admin Login" inurl:"login.aspx"
intext:swagger filetype:log
intitle:"index of" "server.properties"
intitle:"HRMS" inurl:"login.aspx"
inurl:"index.php" intitle:"CMS Login"
inurl:"robots" | "robot" intext:"admin" AND "Disallow" ext:txt
intitle:"Student" inurl:"login.aspx"
intitle:"index of" "mongod*"
intitle:"Microseven M7CAM IP Camera"
intitle:"Employee Login" & inurl:("login.aspx" | "login.asp")
intitle:index.of wp.login
intitle:"Journal" inurl:"login.aspx"
intext:Project hosted at: For support, contact: Copyright Openbravo
inurl:/wp-content/plugins/simple-forum/admin/
intitle:index.of /Snowflake /robots.txt
intitle:"index of" ".env.example"
intitle:"CMS" inurl:"login.php"
site:*/membership-login/
intitle:"TYPO3 CMS Login"
intitle:"Sign in [Jenkins]" inurl:"login?from"
intitle:"index of" "passwrod*"
inurl:/designs/imm/index.php
intitle:"Sophos" inurl:/userportal/webpages/myaccount/login.jsp
inurl:fgtauth?
inurl:"app.yaml" intext:"runtime: " ext:yaml
inurl:/phpldapadmin/cmd.php
inurl: https://app.zerocopter.com/rd/
intitle:index.of conf.mysql
intext:"password" intitle:"index of"
allintitle:"MeshCentral - Login"
intitle:"CMS" inurl:"login.jsp"
intitle:"ADSL Router" inurl:"/login.htm"
"fluig" "login"
intitle:"Support Portal" intext:"Bomgar Corporation. Redistribution Prohibited. All Rights Reserved." "Representatives"
inurl:"/?page=login"
inurl:"/?a=login" intext:"login"
intitle:"Authorize application" "Learn more about OAuth"
intitle:"Cloudphysician RADAR"
filetype:conf intext:"Footer Powered By"
inurl:/wp-content/plugins/elementor/
inurl:/wp-content/plugins/wp-filebase/
inurl:mail intitle:Webmail - Login
inurl:/admin/login.php intitle: "panel"
intitle:"Heatmiser Wifi Thermostat" "username" -.com
intitle:"index of" "console"
intitle:"index of" "logs"
intitle:"webcamXP 5" inurl:admin.html
site:*/*.asp
intitle:"MedDream" "Softneta" -.com
index of / inurl:/pki/
intext:"index of/" "top secret" gov
inurl:/servicedesk/customer/user/signup
inurl:wp-content/plugins/easy-wp-smtp
inurl:"/sslvpn_logon.shtml" intitle:"User Authentication" "WatchGuard Technologies"
inurl:"/app/kibana#"
intitle:"Portal" inurl:"login.jsp"
intitle:"SonicWall Analyzer Login"
intext:"adobe coldfusion 8"
intitle:"Issabel login - page"
intitle:"Juniper Networks Web" "Log In"
intitle:"Portal" & (inurl:"login.asp" | inurl:"login.aspx")
intitle:"Portal" inurl:"login.php"
New Dork
intitle:"Index of" inurl:data/plugins/
Google Dork: intitle:"Index of" "Apache/2.4.50"
site:*/node_modules/ content:"ssh"
site:*/node_modules/ content:"PEM"
"com.sap.itsam.problems.java.systeminfo"
intitle:"index of" "schema.mysql"
intitle:"index of" "credentials"
intitle:"Pi-hole - raspberrypi"
inurl:"/responsible disclosure"
intitle:cisco "This is a restricted Access Server"
intitle:vmware "This is a restricted Access Server"
intitle:"STEP by STIBO Systems" "Launch STEPworkbench" "Web UI Component Report"
"Warehouse Management System" Ext:pdf site:.gov
intitle:"Project Insight - Login" "Sign In to Continue" "Shift4 Payments"
intitle:"OS-ZuKon" "SSS Siedle"
inurl:sap/public/ intext:Logon "Password"
intitle: "index of" "admin" "/backup"
intitle: "Library System by YahooBaba"
intext:"Open Game Panel 2021"
inurl:/wp-content/plugins/thecartpress/
inurl:/wp-content/plugins/mstore-api/
inurl:/plugins/pie-register/
intitle:" index of "/Invoices*"
site:"*.com" inurl: admin/index.php
filetype:log intext:("apache2" | "htdocs")
intext:"index of/" "client-1.0-SNAPSHOT"
intitle:"phpinfo()" inurl:"phpinfo.php"
intitle:"index of" "passwords" gov
inurl:/webmail/src/login.php intext:"SquirrelMail"
intitle:"index of" "credentials"
intitle:"Zimbra Web Client Sign In" "Synacor"
site:pastebin.com intitle:"leak" | "breach" intext:"password" | "pw" | "pwd"
intitle:"SPC4300" "ID"
intext:"powered by BlueCMS v1.6"
site:pastebin.com intext:root: & :0: & ::: | intitle:passwd | shadow
intitle:"Codian MCU - Home Page"
intitle:"Index of" "Apache/2.4.49"
intitle: "access log" filetype: txt
intitle:"Login" "FLX Web Server"
"boarding pass" site:http://tripadvisor.com
intitle:index de sshd_config
intitle: "index of backup.php"
intitle: "index of backup.xml"
site:*/oauth/authorize
inurl: "admin-login.php"
Dork - inurl: "site admin"
intitle:"index of" "mysql.yaml"
site:*/oauth/token
inurl:"/app/kibana#"
©20 "Copyright Yamaha Corporation Visit"
intitle:"index of" "sftp.json"
inurl:simplesaml/saml2/idp
".:/opt/remi/php56/root/usr/share/pear" | ":/opt/remi/php56/root/usr/share/php"
intitle:"index of" "config.json"
intitle:"index of" "docker-compose.yaml"
inurl:execute-api site:amazonaws.com
intitle:index of django.config
allintext:password filetype:log after:2018
intitle:"index of" inurl:gov Juicy Info |GHDB
inurl:admin/reset.php -github
intitle: "index of Health Records"
intitle:"index of" "/api-debug.log"
site:pastebin.com intext:"-----BEGIN CERTIFICATE-----"
site:pastebin.com intext:"-----BEGIN RSA PRIVATE KEY-----"
site:pastebin.com intext:":aad3b435b51404eeaad3b435b51404ee:"
intitle:"index of" "schema.graphql"
site:.execute-api.us-east-1.amazonaws.com
inurl:employee filetype:xls
intext:Provided by ProjectSend
ext:xls intext:/etc/passwd | inurl:password
"index of" intext:wpbdp-csv-exports
inurl:mil intext:"UNCLASSIFIED/FOUO" ext:pdf
intitle:"index of SCADA"
filetype:log "AUTHTOKEN"
intitle:"SPC4300" "ID"
intitle: "Index of ipcam"
intitle: "index of data clinic"
intitle:"index of" "mongod.conf"
inurl: /admin/login.php intitle: panel admin
intitle:"index of " inurl:".bash_profile "
intitle:"Operations Automation Default Page"
intext:"Powered by YzmCMS"
inurl:.html.php:intext:"admin"|intext:"user"|intext:"login":site:".in"
intitle:"index of" "sourcecode"
# Exploit Title: [SF Dork]
inurl:/wp-content/themes/striking_r
inurl:/wp-content/themes/avada
inurl:/wp-content/themes/centum
inurl:/wp-content/themes/ultimatum
inurl:/wp-content/themes/IncredibleWP
inurl:/wp-content/plugins/wp-e-commerce
intitle: "index" inurl: log
allintitle:Index of /wp-includes/
intext:private_key filetype:log
intext:api_key filetype:log
inurl: /admin/webeditor/admin_login.asp
intitle:"index of" "/cgi-bin" "admin"
inurl:sap/public/bc
intext:"docs.google.com/forms/d/"
intitle:" index of " "/BigIp"
intitle:"Dericam" "Remember Me"
inurl:/admin/public/asdm.jnlp "ASDM on"
intitle:"index of" "robots.txt"
intext:"Number of Requests for items accessed on this Server"
allintext:"[Sec. Info]" file.php
allintext:"Call to undefined function"
intitle: Index of /assets/admin/system
intitle:"OS-ZuKon" "SSS Siedle"
"PHP Projectworlds 1.0"
intitle:"EnvisionGateway" "scheduler" "control"
intitle:GoogleService-Info filetype:plist
inurl:/supportboard
intitle:"Index of" "build-an-atom"
intitle:"IPC CHIP Main Page" "Beck IPC GmbH"
"NTRIP Caster Table Contents" "This is a SNIP NTRIP Caster"
Google Dork: intitle:"index of" "/sql" "admin"
inurl:maps.arcgis.com +"City of"
inurl:"robots" | "robot" intext:"Disallow:" | "Allow:" ext:txt
inurl:autodiscover/autodiscover.xml
intitle:"index of" "robots.txt"
intitle:"index of" "development.js"
site:*/etc/passwd inurl"/etc/passwd"
"index of /" +passwd
intext:Authorization: Bearer filetype:log
intitle.index of .env
intitle:"webcam" "login"
intitle:index.of root user
inurl:saml2/login
inurl:"profile/login"
intitle:"Welcome" intext:"Login"
intext:"Powered by SmarterTrack"
intext:"Infinitium Copyrights Reserved"
inurl:/wp-content/themes/beach_apollo
intitle:"Shoutcast server" inurl:"/index.html" "SHOUTcast Server"
phpMyAdmin -www filetype:conf site:*
Google Dork: intitle:index.of ipconfig
intitle:administration intext:"portail" "Login"
inurl:login.rsp "User name"
intitle:"index of" "tls-cert.pem" | "tls-csr.pem" | "tls-key.pem"
intitle:"Welcome to OpenResty!"
intitle:"C-more -- the best HMI presented by AutomationDirect"
intitle:"TileServer GL - Server for vector and raster maps with GL styles"
intitle:"index of" "development.py"
intitle:"index of" "production.py"
intitle:"index of" "local_settings.py"
inurl:/admin/radeditorprovider/dialoghandler.aspx "Loading the dialog..."
inurl:/admin/AdminLogin.jsp intitle:"CERGY - Administration"
intitle:"Codian MCU - login" "Copyright TANDBERG"
inurl:/_vti_bin/Authentication.asmx
intitle:"Youless energy monitor" "Model" "Firmware" "www.youless.nl"
inurl:/cgi-bin/login.html "qnap turbo nas"
intitle:"admin login" site:.gov.in
intitle:"index of" site:.gov.in
ext:txt intext:Windows PowerShell transcript start
intitle:"NETSurveillance WEB"
intitle:"WATASHI SERVICE"
"Lucee" "Error (expression)" -lucee.org
intitle:"Success!" intext:"Your new web server is ready to use."
Google Dork: intitle: "index of" "payment"
intext:" Design & Developed by Antique Touch - INDIA"
intitle|inurl::"IoT login"
inurl: login.http
intitle:"index of" "database.py"
"Wowza Streaming Engine 4 Developer Edition"
companies service login Login Portal
intitle:"Intelbras" "All Rights Reserved" -.com
intext:"amcrest" "LDAP User"
intitle: "Index of ftp passwords"
intitle: "index of /files clients"
Inurl: "login" Intitle:index of username and pass
intitle:"index of" "/usernames"
intext:Provided by ProjectSend
intitle|inurl:"SCADA login"
intitle:"index of" "irc.log" | "irc.logs"
allinurl:logon.html CSCOE
site:*/phpmyadmin/import.php
site:*/phpmyadmin/server_import.php
intext:"Welcome to Huawei web page for network configuration."
intitle: index of /bin/php.ini
intitle:"LiveZilla Server Page"
intitle:"index of" "/webpack-dev-server/ssl/"
inurl:wp-config.php.save
intitle:"index of" "/homedir/etc/"
intitle:"index of" AND inurl:magento AND inurl:/dev
intitle:"index of" "private/log"
intitle:"index of" "/wp-content/uploads/"
intext:"API KEY" site:pastebin.com
intitle:"Index of" service.pwd
site:*/admin.php inurl:admin
inurl:gov filetype:xls intext:password
inurl:login intext:" fiesta login"
intitle:"admin login" site:.in
" Stanford CoreNLP " "Visualisation provided using the brat visualisation"
intitle:"ipMonitor - Log in"
intitle:"Codian MCU" "MCU" "Home Streaming Conferences"
Google Dork: inurl:"admin/login" site:".gov.in"
intext:"amcrest" "Invalid login credentials"
intitle: "Index of" inurl:fileadmin
intitle:"nPerfServer"
intitle:"index of" "/views/auth/passwords"
inurl:quicklinks.aspx
intitle:"Domain Default page" "Parallels IP Holdings GmbH"
inurl:/controlmenu.htm
intitle:"jaeger UI" inurl:trace
intext:"SECRET_KEY=" site:pastebin.com
intext:"private_key=" site:pastebin.com
intitle:"Pyramid Debug Toolbar" inurl:_debug_toolbar
intitle:"CirCarLife Scada" inurl:/html/index.html
"enable secret 5" ext:txt | ext:cfg
intitle:"ACEmanager" "ALEOS Version"
site:".om" intitle:"login"
"Datamanager" "Devices" "Reports" "Alarm" "Log" "Service" "Gp Run-On"
intitle:"admin login" site:.net
intitle:"yawcam" "Its a webcam!" "user" "pass"
intitle:"admin login" site:.org
intitle:"Login - splunk"
intitle:"oracle login" site:.gov
inurl:employee-login.html
intitle:"STEP by STIBO Systems" "Launch STEPworkbench" "Web UI Component Report"
allintext:adhaar filetype:xlsx
intitle:"TestRail" inurl:"/index.php?/auth/login/"
intitle:"index of" "schema.sql"
intitle:"JUNG KNX Smart-Panel" "JUNG Single Regular"
"Username" "Password" "This system is for authorized use only." intitle:"Gaia"
intext:"This page displays the general system information of the print server."
"Language" "SIM NUM" "DEV NUM" intitle:"mdvr"
inurl:("admin/password.php") +site:.com
intitle:"admin login" site:.gov
intitle:"faculty login"
cms inurl:login site:"gov.ae"
intitle:"Device(Foscam)" "Real-time IP Camera Monitoring System"
intitle:"SoundTouch Access Point Setup"
site:.com inurl:("administrator/login.php" OR "admin/login.php")
intitle:"Bose SoundTouch Wi-Fi Music System Setup" inurl:"/setup/index.asp"
intitle:"D-link" intext:"SharePort Web Access" "Hardware Version" "Firmware Version"
"index of /" intext:wp-config "zip"
inurl:destination=portals
Pages Containing Login Portals
site:pastebin.com intext:"password" | intitle:"password"
intitle:"Zimbra Web Client Sign In" "Synacor"
intitle:"login" "Clare Controls LLC"
inurl: /ftp intitle:"office"
site:wiki.*.com inurl:login.action
inurl:login_fail.asp
"Welcome to Polycom Web Configuration Utility" "Login as" "Password"
intitle:"MedDream" "Softneta" -.com
filetype:log username admin
intext:"Admin Login" inurl:"/login.aspx"
intitle:"Gitea" "This website works better with JavaScript" "sign in" " Home" "Explore"-.com
intitle:"F660" intext:"ZTE Corporation. All rightsreserved."
intitle:"MultiView" "MultiView Events" "MOBOTIX"
inurl:login intext:"Powered by Plone & Python" -plone.org
inurl:"/bitrix/admin/" intitle:"Autorisation"
inurl /admin/login intitle panel admin site:"*.in"
intitle:"admin panel" OR intitle:"request password" intext:"email address"
intitle:"admin login" site:.gov
intitle:"faculty login"
"Router Name" "Router Model" "LAN MAC" "WAN MAC"
intitle:"D-LINK CORPORATION, INC" intext:"D-Link Corporation, Inc." -dlink.ca
intitle:"Login" intext:"PLANET Technology Corporation. All rights reserved."
/inurl:upload site:doxbin.org ~password
cms +inurl:login +site:"gov.in"
intitle:"WATTrouter" "SYSTEM WEB INTERFACE"
inurl:("administrator/login.aspx" OR "admin/login.aspx") +site:.com
filetype:xlsx intext:"gmail.com" OR "hotmail.com" site:gov
intext:"Atlassian Jira Project Management Software" Jira login
intext:"Welcome to ZXHN H198A"
site:".ae" intitle:"admin login"
site:".au" intitle:"admin login"
intitle:"Icecast Streaming Media Server" "Icecast2 Status" -.com
"Desktop" "Simple" "Responsive" intitle:"Controllr"
Inurl:login.rsp "User name"
intitle:"Welcome-netis Wireless"
intitle:"fdt" intext:"Remember me" "Username"
site:".uk" intitle:"admin login"
inurl /admin/login.php intitle panel admin
site:*/admin.php inurl:files
intitle:"TD-W9970" intext:"Model No. TD-W9970" -tp-link.com
inurl:login/forgotten
intitle:"Users" intext:"Read License" intext:"vtiger.com"
intext:"Please enter the devices administrator password"
intitle:"Router Access" inurl:Router_Login.asp
intitle:"IP CAMERA" "User Login" "User Name" "Password" "Preview Stream"
site:".edu" intitle:"admin login"
inurl:hp/device/webAccess
intitle:"NetBiter" intext:"based on NetBiter" -.com
site:login.microsoftonline.com -error
intitle:"setup" "Network setup" "DHCP Client ID" -.com
inurl "/admin/index.php" username=admin&password=password
inurl:/about site:*.in
inurl:/login site:.in
inurl:"/userportal/webpages/myaccount/login.jsp"
site:pastebin.com intitle:"password" 2021
intitle:untitled filetype:xls intext:password
site:gov.in intitle: admin login
inurl:login.php site:.nl
intext:"amcrest" "Invalid login credentials"
intext:"Powered by Bitnami Redmine Stack" inurl:/login
inurl:/nphMotionJpeg?Resolution=
Dork:- intitle:*admin (inurl:login)
site:*/JIRA/login
intitle:"Polycom Login" inurl:"/login.html"
intitle:"BoardPAC - Board Paper and Credit Proposal Management System"
intext:"powered by enboard" "portal"
inurl:users/password/new
intitle:index.of (inurl:admin | intitle:admin)
intitle:"WEB SERVICE" "Modify Admin Password"
intitle:"Lantronix" intext:"Lantronix, Inc" "login to" -.com
intitle:"LaCie" "login" intext:"Remember me" "Connect to"
intitle:"Login - Ipswitch WhatsUp Professional"
intitle:"Login" inurl:"view/login.html" "Huawei Technologies"
inurl:Login.aspx intitle:":::Login:::" "RM"
intitle:"IBM iNotes Login" "Ultralite Login Screen"
Jira login intext:v8.3.2
intitle:"Web Admin login" intext:"Huawei Technologies"
intitle:"Hello! Welcome to Synology Web Station!"
intitle:"Log In - Seafile Server"
inurl:"webconsole/webpages/login.jsp" +intitle:"Sophos"
intitle:"WHM Login" intext:"cPanel, L.L.C. " +"Change locale"
intitle:"index of" "contacts.vcf"
intitle:"Honeywell XL Web Controller" intext:"systemadmin"
intitle:"DEVICE" "Real-time IP Camera Monitoring System"
inurl:openam/XUI
intitle:"Mail2000 Message System" "Openfind Information"
inurl:filemanager/upload/asp/ "index of"
inurl:"serverpush.htm" intext:"Foscam"
inurl:auth/login?returnUrl
inurl:wp-content/plugins/modern-events-calendar-lite
intitle:"Login" intext:"IP Surveillance for Your Life"
intitle:"R WebServer"
intitle:"login" inurl:"idp/profile/login"
inurl:/view.htm?mode=l
inurl:ui3.htm
intitle:"Blue Iris Remote View"
inurl:"jpegpush.htm"
inurl:oauth2/v2.0/authorize
"Network State: Network Ready. Network Channel:" intitle:ACEManager
inurl:"admin/public/login"
intitle:"xerox" inurl:i_index
intitle:"Cisco ASDM" inurl:"admin/public/index.html"
inurl:"pis/login.aspx"
"IPECS" inurl:a_index.html
intext:"Login to Frappe" +"Forgot Password?" +"Reset Password" inurl:login -intitle:"My utm"
intitle:"weblogic" login intext:"footer powered by"
intitle:"Webmail Login" intext:"cPanel, L.L.C. " +"Change locale"
intitle:"Welcome to" intext:"configuration interface"
intitle:"Powered by Deepija Telecom"
intext:"2009 PLANET Technology Corporation"
intitle:"idrac7 - Login" inurl:login.html
intitle:"ovislink" inurl:login intext:"My Resource"
intitle:"Web Viewer for Samsung DVR"
intitle:"Web Viewer" inurl:auth_index.htm
intitle:"Asus Login" inurl:Main_Login.asp
intitle:"Wireless router" inurl:login.htm -.com|ca
intitle:"Synology Disk Station" intext:"System administrator" "login"
intitle:"SonicWall Network Security Login"
intitle:"Seagate NAS -" "login" intext:"Language." -.com
intitle:"Prolink" inurl:login.htm -.com
intitle:"prestige" intext:"Enter Password and click Login" -.com
intitle:"PRTG Network Monitor" inurl:index.htm intext:"Password" -inurl:prtg
intitle:"PBX Login" -inurl:pbx|pbxlogin -.com
intitle:"Netgear System Login" intext:"system name"
intitle:"Mitel Standard Linux: Login Page"
intitle:"ManageEngine ServiceDesk Plus" "domain" intext:"ManageEngine ServiceDesk Plus" -.com
intitle:"3G wireless gateway" "login" intext:"huawei technologies"
intitle:"lg smart ip device" -.com
intitle:"7100 login" "lancom"
intitle:"ADB Broadband" login intext:"ADB Broadband S.p.A" -.com
intitle:"MediaAccess Gateway - Login" "access your MediaAccess Gateway"
intitle:"ADMINISTRATOR LOGIN" inurl:adminlogin
intitle:"geovision inc." inurl:login.htm
intitle:"KNX-IP-Gateway Login"
intitle:"DGS-3100 Login"
allintext:Welcome to the LabTech Web Portal
intitle:"Vue Element Admin" intext:"Username : admin" OR intext:"Username : editor" OR intext:"Password : any"
intitle:"web admin login" "Huawei Technologies"
intitle:"Login - Hitron technologies"
intitle:"Video web server" "login"
intitle:"vigor login page"
inurl:prweb/PRAuth
inurl:/multi.html intitle:webcam
intext:"developed and maintained by Netgate" intitle:login
intitle:"web server login" intext:"site ip"
intitle:"system login" "Drake Holdings"
inurl:mailscanner intitle:"mailwatch login page"
inurl:device_status.html "login"
inurl:/hp/device/SignIn/
intitle:"index of" "contacts.txt"
inurl:/inicis/ ext:log
intext:"-----BEGIN CERTIFICATE-----" ext:txt
"Not for Public Release" + "Confidential" ext:pdf | ext:doc | ext:xlsx
intitle:"Grandstream Device Configuration" (intext:password & intext:"Grandstream Device Configuration" & intext:"Grandstream Networks" | inurl:cgi-bin) -.com|org
inurl:/UserLogin intitle:"::PayTV SMS::" "Aplomb Technology"
intitle:"index of" "ssh_host_rsa_key" + "ssh_host_rsa_key.pub"
inurl:/wp-content/uploads/data.txt
intext:"SGP" inurl:/accounts/login?next=/admin/
intitle:"Welcome" intext:"LiteSpeed Technologies, Inc. All Rights Reserved."
intext:"Live View" inurl:ui3.htm
inurl:"/tips/tipsLogin.action"
intitle:"routeros" "sophia"
intitle:"index of" "db.sqlite3"
inurl:"pages/sdcall/Login.jsp"
intext:"Egardia & WoonVeilig" -site:"linkedin.*" -"data-lead.com" -"getemail.io" -"holaconnect.com" -"kzhead.info"
intext:Paessler AG - The Network Monitoring Company inurl:/index.htm intitle:"Welcome | PRTG Network Monitor" -"User Manual"
intitle:"Index of" site:.gov intext:"Server at"
intitle:"index of" "/sql"
intext:"Lancom" intitle:"Router - Login" -.com
"FM Monitoring Receiver" intitle:"login" "welcome!"
intitle:"Identity Services Engine" inurl:login.jsp
site:*.zendesk.com/auth/v2/login/registration
intext:"Switch Administrator" inurl:config/log_off_page
index of storage/oauth-private.key
intitle:"Cambium" inurl:top.cgi
inurl:top.cgi intitle:"Motorola ptp"
intitle:"vood Residential gateway" inurl:vood/cgi-bin/
intitle:"WebMO Login" inurl:/~webmo/cgi-bin/login.cgi
intitle:"CPU-Modul TROVIS 6610"
inurl:/psp/ intext:"ORACLE PEOPLESOFT"
intitle:"Nutanix Web Console"
intitle:"ZAP Scanning Report" + "Alert Detail"
inurl:/web-ftp.cgi
intitle:"index of" "/configs"
intitle:"XVR LOGIN" inurl:"/login.rsp"
intitle:"iMana 200 login"
inurl:"serverpush.htm" "IP Camera" intext:"Foscam"
inurl:"/sslvpn_logon.shtml" intitle:"User Authentication" "WatchGuard Technologies"
intitle:"Plesk" inurl:"/login_up.php3" "Parallels IP Holdings GmbH"
inurl /editor/filemanager/connectors/uploadtest.html
intitle:"ISPConfig" "Powered by ISPConfig" "login"
intitle:"login - otrs" "Login" "Powered by OTRS"
intitle:"Webmodule" inurl:"/webmodule-ee/login.seam" "Version"
intitle:"GLPI - Аутентификация" intext:"GLPI Copyright"
inurl:/wp-content/uploads/ "phpMyAdmin SQL Dump"
inurl:/wp-content/uploads/wpdm-cache
intitle:"Schneider Electric Telecontrol - Industrial Web Control" intext:"Xflow "
site:*/phpmyadmin/server_databases.php
intitle:"Welcome to WildFly" intext:"Administration Console"
site:*/phpmyadmin/server_privileges.php
inurl:phpmyadmin/sql.php?server=1
inurl:wp-content/plugins/Ultimate-member
inurl:ALFA_DATA intitle:"index of"
inurl:/wp-content/plugins/wpdiscuz/
site:*/phpmyadmin/server_sql.php
intitle:"Huawei Inner Web"
intitle:"Viewer for Samsung NVR"
intitle:"myhome" intext:"Tilgin. All rights reserved. Copyright and Trademark."
intitle:"Icecast Streaming Media Server"
"Yeastar Information Technology Co., Ltd. All Rights Reserved." -yeastar.com
intitle:LANCOM "A webbrowser with active JavaScript support is required."
intitle:"Ubiquiti" intext:"Please login to manage your wireless device."
intitle:("Canon" + "series Network Configuration" "Basic Information") + "JavaScript is not enabled"
intitle:"Scalance web management" "Switch to insecure HTTP"
intitle:"Solar-Log™" intext:"Build Revision"
intitle:"3CX Phone System Management Console"
site:.gov.co intitle:Index of
intitle:"Login" inurl:web/frame/login.html?ssl=
inurl:"/web/guest/en/websys/webArch/mainFrame.cgi"
"Username" "Password" "ZTE Corporation. All rights reserved."
intitle:"WF Series" inurl:PRTINFO.html
"NETGEAR, Inc. All rights reserved" intitle:"Netgear Prosafe Plus Switch"
intitle:"Remote UI" intext:"Printer status"
intitle:"::: ACEmanager :::"
intext:"CAD Media Log"
intitle:"Camera Status" inurl:/control/
inurl:wp-content/plugins/1-flash-gallery
inurl:"/wp-content/plugins/123ContactForm
intitle:"supra IPC"
Zenario CMS Login Page
inurl:/index.php/admin/authentication/ intext:clave
intitle:"index of" intext:"senha"
intitle:"Dell OpenManage Switch Administrator" intext:"Type in Username and Password, then click OK"
intext:"Powered by Synnefo"
inurl:EMSWebClient/Login.aspx
intitle:"ONU" intext:"Please login to continue..."
allintext:"*[email protected]" OR "password" OR "username" filetype:xlsx
intitle:"Alarm Panel" intext:"Climax Tech. Co., Ltd."
intitle:"webcamxp" "Flash JPEG Stream"
inurl:/portal/indicate intitle:Remote UI
inurl:"web/database/selector"
intitle:LANCOM intitle:login "LANCOM Systems GmbH"
intitle:"Test Page for the HTTP Server on Fedora"
inurl:mobile.html intitle:webcamXP
intitle:"index of" "/.vscode"
inurl:"wp-content/plugins/wp-super-edit/superedit/" | inurl:"wp-content/plugins/wp-super-edit/superedit/tinymce_plugins/mse/fckeditor/editor/filemanager/upload/"
intext:"LANCOM 1781VA (over ISDN)"
intitle:"Web Client for DVR"
intitle:"SOGo" site:webmail.*
intitle:"Server Backup Manager SE"
intitle:"Intelbras" site:*/index.html
intitle:"Plesk Obsidian" inurl:login_up.php
"Name" "Password" intitle:"Business LAN"
intitle:"Gargoyle Router Management Utility" intext:"Enter Admin Password"
intitle:"Yealink" inurl:"servlet?m="
intitle:HP LASERJET PRO MFP inurl:/SSI/index.htm
"Saferoads VMS" "login"
intitle:"OpenWrt - LuCI" intext:"Powered by LuCI | OpenWrt"
filetype:axd inurl:/elmah.axd
intitle:"Device(" intext:"ActiveX Mode (For IE Browser)"
"Cisco Systems, Inc. All Rights Reserved." -cisco.com filetype:jsp
"Name" "Password" intitle:"LANCOM 1790VA"
intitle:"Login" intext:"(Moka pot)" inurl:"login.php"
intitle:series "Note: It is recommended to communicate via HTTPS for entering an administrator password."
intitle:"GLPI - Authentication"
intext:clave inurl:admin.php
inurl:/PRESENTATION/PSWD
intitle:"Teampass" intext:"Server Time"
inurl:/PRESENTATION/BONJOUR intitle:Series
inurl:/PRESENTATION/EPSONCONNECT
intext:@print.epsonconnect.com intitle:series
Google Dork: inurl:"/zm/index.php"
Google Dork: intitle:"ZM - Console"
Google Dork: intitle:"ZM - System Log"
inurl:/login/?referer=/admin/ intext:cradlepoint
allintext:"Copyright CANON INC" "iR-ADV"
inurl:"/cgi-bin/luci" intext:"Authorization Required" intitle:"LuCI"
inurl:/PRESENTATION/HTML/TOP/PRTINFO.HTML
intitle:"Please Login" inurl:"/remote/login?lang=en"
intitle:"index of" intext:"client.key.pem"
intitle:"LK IHC controller" intext:"LK IHC"
intitle:"Gophish - Login"
inurl:sslvpn_logon.shtml
intitle:"Openstage IP Phone User" "IPv4" "DNS"
intitle:"ReACT Self-serve"
inurl:glpi intitle:"GLPI" site:.br
intext:"Cisco Webui - Login" -www -cisco.com
intitle:"TOTOLINK" inurl:"/login.htm"
intitle:"Current Network Status" "Nagios"
intitle:"grafana" inurl:"/grafana/login" "Forgot your password"
"USB Port 1 (Public Data)" + "USB Port 2 (Public Data)" "Status" -pdf
intitle:"NetScaler AAA" inurl:logon/LogonPoint/tmindex.html
intitle:"DD-WRT (build 21061) - Info"
inurl:ip_password.htm
intitle:"DSM mobile" intext:"Loading..."
intitle:"Miniweb Start Page" | "/CSS/Miniweb.css"
intitle:"Web Client" inurl:"webcamera.html"
inurl:/Portal0000.htm
inurl:/DeviceInformation/View "Device Name"
intitle:"NodeCore PoW Mining Pool" "NETWORK" "TYPE" "POOL ADDRESS" "FEE"
intitle:"Login" inurl:"/simple/view/login.html"
inurl:"/domcfg.nsf" " Web Server Configuration"
inurl:ip_snmp.htm
intitle:"Bosch Security Systems" "LIVEPAGE" + "SETTINGS" -.net -.com
intitle:"HD-Network Real Time Monitoring System" inurl:"/login.asp"
intitle:"Accueil WAMPSERVER" intext:"Configuration Serveur"
intext:"Please select your account" intext:"SSL Login"
intitle:"iLo" "Hewlett Packard Enterprise Development" "Firmware Version" " Local user name:"
intitle:"Milesight Network Camera" intext:"Language"
intitle:"Sys Name" System Summary Sensors
"# -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) "# -FrontPage-" inurl:service.pwd
intitle:"Login" intext:"Herospeed Technology"
intitle:"Epson Web Control" "OSD Control Pad"
intitle:"login" "Are you a patient" " eRAD"
inurl:wp-content/uploads/ intitle:logs
intitle:"GlassFish Server - Server Running"
intitle:"Frontier e-HR Login Page"
inurl:/wp-content/uploads/wp-file-manager-pro/fm_backup
inurl:b2b/init.do
intitle:"Web user login"
inurl:/wp-content/uploads/ ext:txt "username" AND "password" | "pwd" | "pw"
intitle:"DIAM4 Login"
intitle:"Sauter moduWeb - Login"
intitle:"Greentree eHR" "Employee Code"
intitle:"Payvand PACS"
intitle:"index of" "google-services.json"
intitle:"Index of" ws_ftp.ini
"citsmart.local"
site:*/net/net/protocol.html
intitle:"Properties - Xerox WorkCentre" "Machine Model:" "Machine Name" -.com
inurl:/wp-content/uploads/wp-file-manager-pro
intitle:"Polycom Login" -.com
inurl:"/login.htm" "Hitron Technologies"
intitle:"Saia PCD Web-Server"
intitle:"UniFi Video" "login" "NVR"
intitle:"NETSuveillance WEB"
intext:"Your client connection" + "Network name" + "Hardware address"
inurl:pas_set_menu.html
inurl:"/intouch-base/rest/nlogin" intitle:"InTouch"
inurl:"/deltaweb/hmi_login.asp" intext:"login"
inurl:"/index.html" intitle:"Unitronics PLC"
intitle:"Vodafone Vox UI" | intitle:"Residential Gateway Login"
inurl:/javax.faces.resource/
intitle:"openHAB" intext:"Welcome to openHAB" "Basic UI" "Paper UI"
intext:"Inserire il proprio codice per accedere al sistema" "Inserire codice"
inurl:m_login.htm "Somfy"
site:*/tcpipv6.htm
inurl:/guestimage.html
inurl:CFIDE/adminapi
inurl:"telerik.web.ui.webresource.axd?type=rau"
inurl:plc/webvisu.htm intitle:"CoDeSys WebVisualization"
inurl:"/lib/editor/atto/plugins/managefiles/" | inurl:"calendar/view.php?view=month"
intitle:"Component Browser Login"
inurl:/view/viewer_index.shtml
"Parent Directory" AND "Index of" AND "config.php_old"
inurl:set_config_networkIP.html
intitle:"webcamxp 5" intext: "live stream"
inurl:"userimage.html" "Live" "Open"
inurl:webdynpro/dispatcher
intext:cv OR intext:curriculum vitae AND intext:"SSN" ext:doc
intitle:"NUUO Network Video Recorder Login" "Language"
inurl:template.gch "ZTE Corporation."
inurl:Main_Login.asp AND intext:"Sign in with your ASUS router account"