-
Notifications
You must be signed in to change notification settings - Fork 3
/
exploit-db-dorks-only.txt
5774 lines (5774 loc) · 228 KB
/
exploit-db-dorks-only.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:".Admin;-aspx }" "~Login"
inurl:index.shtml
"Index of" "customer.php"
"index of" "svg"
"login" intitle:"intext:"Welcome to Member" login"
intitle:"index of" "survey.cgi"
intitle:index.of.?.db
"index of sqlite"
"Index of" "sass-cache"
index of logs.tar
index of /wp-content/uploads/backupbuddy
"root.log" ext:log
intitle:"index of" "dev/config"
index of "logs.zip"
intitle:"index of" "nrpe.cfg"
inurl:"wp-contentpluginsphoto-gallery"
index of "dbbackup"
intitle:"*Admin Intranet Login"
inurl:.*org/login
intitle:"index of" pass.php
"index of" "fileadmin"
intitle:"index of /" "nginx.conf"
intitle:"Dashboard [Jenkins]"
site: target.com ext:action | ext:struts | ext:do
index of "backup.zip"
intitle:"index of" "shell.php"
"microsoft internet information services" ext:log
intitle:"Intranet Login"
DORK : intext:"index of" "var/log/"
intitle:"index of" "filemail.pl"
intitle:"index of" "wp-admin.zip"
allintext:username filetype:log
Pages Containing Login Portal into Various Web Server
index of admin/fckeditor/editor/filemanager/
"index of /private" -site:net -site:com -site:org
inurl:wp-content/plugins/sportspress
intitle:.*edu/login
"phpMyAdmin MySQL-Dump" "INSERT INTO" -"the"
inurl:"customer.aspx"
site:linkedin.com employees target.com
inurl:admin intitle:index of ext:sql | xls | xml | json | csv
inurl:employee-login.php
intitle:"index of" "uploads.old"
intext:"Index of /password"
intitle:"index of" ".config"
intitle:"index of" inurl:ftp intext:admin
inurl:"/index.php?route=account/forgotten"
inurl:wp-content/plugins/ajax-load-more/lang/
inurl:.drone.yml intext:git config user.email
inurl:emplogin.aspx
intitle:"index of" "adminsubscribeack.txt"
inurl:wp-content/plugins/woocommerce
"config.php.bak" intitle:"index of"
allinurl:top.htm?Currenttime
intitle:"index of" "log.bak"
inurl:resetpassword.do
index.of:"pcap" -site:stackoverflow.com -site:github.com
inurl:admin/upload.asp
inurl:wp-content/plugins/adrotate
inurl:userlogin.do
inurl:login.do?method=login
inurl:admin/admin/Login
inurl:wp-content/plugins/mappress-google-maps-for-wordpress
inurl:auth/Login
inurl:admin/login.aspx
intitle:"index of" "var/log/"
intitle:index of config.asp
intitle:"index of" "security.php"
intitle:"index of" "AT-admin.cgi"
inurl:wp-content/plugins/yop-poll
allintitle: sensitive ext:doc OR ext:xls OR ext:xlsx
inurl:"ReportServer/Pages/ReportViewer.aspx"
intitle:"index of" "auth.config"
inurl:"forgotpassword.php"
inurl:emplogin.html
intitle:"index of" "admin-login.php"
inurl:wp-content/plugins/final-tiles-grid-gallery-lite
filetype:sql intext: "sql dump"
inurl:Cpanel/login.aspx
inurl:Cpanel/login.php
intitle:adminlogin inurl:login
inurl:admin/login.jsp
intext:"(c) GUnet 2003-2007"
"index of" "user.sqlite"
inurl:/+CSCOE+/logon.html
site:*/auth.html intitle:login
inurl:wp-content/plugins/wp-jobsearch
allinurl:index.php?db=information_schema
inurl:"passwordreset.asp"
intitle:"index of" "database/config"
inurl:wp-content/plugins/final-tiles-grid-gallery-lite
inurl:/wp-content/plugins/wp-ecommerce-shop-styling/
Google Dork
intitle:"index of" "auth_config.php"
intitle:"index of" "aws-config.php"
"index of" /private/logs
"index of" /ftp/logs
"index of" "sshd_config"
"index of" ".env"
inurl:wp-content/plugins/simple-file-list
"Powered by Jira Service Desk"
ext:sql intext:"-- phpMyAdmin SQL Dump
inurl:admlogin.php
inurl:"/forgotpassword.php"
site:*/password_forgotten.php
inurl:adminlogin.htm
inurl:"resetpassword.jsf"
inurl:adminpanel.aspx
inurl:wp-content/plugins/gtranslate
inurl:admlogin.aspx
inurl:wp-content/plugins/bbPress
inurl:adminlogin.html
inurl:forgotpassword.do
inurl:adminlogin.do
intitle:"index of" "admin/config"
intitle:"index of" "system/config"
inurl:forgotpassword.htm
site:*/joomla/login
"login" intitle:"*scada login"
"login" intitle:"*dashboard login"
inurl:resetpassword.aspx
inurl:"resetpassword.asp"
"login" intitle:"*board login"
intitle:"index of" "properties.ini"
inurl:wp-content/plugins/grand-media
inurl:wp-content/plugins/woo-order-export-lite
inurl:wp-content/plugins/iframe
inurl:adminlogin.jsp
inurl:"passwordreset.php"
inurl:forgotpassword.asp
intitle:"HP System Management Homepage" inurl:cpqlogin
intitle:"HP ALM" "Application Lifecycle Management" inurl:/qcbin/ -ext:PDF
intitle:"ASUS" AND inurl:"Main_Login.asp" AND intext:"router account" -asus.com
inurl:"forgotpassword.aspx"
inurl:login_admin "admin"
"index of" "/config/sql"
inurl:wp-content/plugins/drag-and-drop-multiple-file-upload-contact-form-7
inurl:adminlogin.php
inurl:"wp-content/plugins/siteorigin-panels"
inurl:wp-content/plugins/thirstyaffiliates
inurl:wp-content/plugins/official-mailerlite-sign-up-forms
inurl:"wp-content/plugins/form-maker"
inurl:"index.php?option=com_ccnewsletter" inurl:sbid
intitle:"Index of" intitle:"UserPro" -uploads
inurl:"forgotpassword.jsf"
inurl:":8088/cluster/apps"
"You need to be logged in to see your course progress."
inurl:pentaho/Login
inurl:login.jsf
intitle:"Ice Hrm Login" intext:"Forgot Password"
inurl:adminlogin.asp
intext:"Error Occurred While Processing Request"
inurl:enter.php?phpbb_root_path=
inurl:client_id=
intitle:"ShowIt-Admin"
inurl:wp-content/plugins/visualcomposer
inurl:wp-content/plugins/ajax-load-more
inurl:wp-content/plugins/paid-memberships-pro
inurl:admin.aspx
intitle:"index of" "api/admin"
intitle:"index of" "stacktrace.log"
intitle:"index of" "db.log"
intext:"Created by John Caruso" intext:"Created with Simple PHP Photo Gallery"
intext:"W E L C O M E to R O O T" ext:cfg OR ext:log OR ext:txt
"LMS v3.0 - Xerone IT"
inurl:"index.php?option=com_jssupportticket"
intext:"Launch FortiClient" and "Please Login"
intitle:"Skipfish - scan results browser"
-site:"pentest-tools.com" intext:"Scan coverage information" AND "List of tests" ext:PDF
inurl:"index.php?option=com_fabrik"
inurl:human.aspx intext:moveit
inurl:"sites/all/modules/ckeditor" -drupalcode.org
intitle:"WEBCAM 7 " -inurl:/admin.html
site:*/auth/forgot
inurl:wp-content/plugins/photo-gallery
inurl:wp-content/plugins/easy-login-woocommerce
inurl:wp-content/plugins/wp-product-review
inurl:/emptyView4.html
intitle:"index of" "tinyfilemanager.php"
intitle:"index of" "userdata.json"
inurl:wp-content/plugins/team-members
intitle:"index of " "users.json"
inurl:index.php?option=com_newsfeeds
inurl:"index.php?option=com_hdwplayer"
intitle:"index of" "wpadmin-secure.htaccess"
intitle:"Nikto Report" "OSVDB"
intitle:"index of" "privkey.pem"
inurl:wp-content/plugins/easy-testimonials
inurl:wp-content/plugins/google-site-kit
intitle:"index of" "dhparams.pem"
intitle:"index of" "token.txt"
inurl:wp-content/plugins/page-builder
inurl:wp-content/plugins/chopslider
intitle:"index of" "*root.pem"
intitle:"index of" "refresh_token.txt" OR "access_token.txt" OR "jsapi_ticket.txt"
"index of" "adminer.php"
"index of" "wp-config.zip"
intitle:"index of" "cassandra-yaml"
intitle:"index of" "configure.in"
intitle:"index of" "user data.txt"
intitle:"index of" "jsapi_ticket.json"
inurl:wp-content/plugins/elementor-pro
inurl:wp-content/plugins/ultimate-elementor
intitle:"index of" "mvn-settings.xml"
intitle:"index of" "admin.jsp"
intitle:"index of" "postgresql.conf"
intitle:"Index of" "backup-audio-queue.log" OR "backup-audio.log" OR "backup-mysql.log"
intitle:"index of" "config.neon" OR "config.local.neon"
intitle:"index of" "my-errors.log" OR "my-errors.logs"
intitle:"index of" "token_info.json" OR "get_access_token.json"
intitle:"index of" "fullchain.pem" OR "chain.pem"
intitle:"index of" "users.txt"
intitle:"Index of" "ca-key.pem" OR "ca-req.pem"
intitle:"index of" "auth.asc"
intitle:"index of" "security.json"
intitle:"index of" "google-api-private-key.json"
intitle:"index of" "secrets.py"
inurl:"wp-content/plugins/learnpress"
inurl:userportal/webpages/myaccount/login.jsp
intitle:"index of" "debian-security.log"
intitle:"index of" "backup.js"
intitle:"index of" "symfony/config"
intitle:"index of" "oauth-credentials.json"
intitle:"index of" "local.json"
inurl:/wp-content/themes/fruitful/
inurl:/wp-content/themes/traveler/
inurl:"wp-content/plugins/ninja-forms"
site:*/EWS/Exchange.asmx
site:*/dana-na/auth/welcome.cgi?p=rolelogo
intitle:"index of" "test/storage/framework/sessions/"
intitle:"index of" "web.log" OR "web.logs"
intitle:"index of" "queue.log"
intitle:"Index of" test.logs
site:*/Drupal/login
intitle:"index of" "config.js"
intitle:"index of" "manage.py"
intitle:"index of" "config.pl"
intitle:"index of" "login.docx"
site:*/login/pass
intitle:"index of" "config.rb"
site:*/asana/login
intitle:"index of" "cfg.go"
intitle:"index of" "auth.log"
intitle:"index of" users.bak
inurl:/db.php?path_local=
inurl:/gmap.php?id=
inurl:administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path=
intitle:"index of" "secret.js"
inurl:/wp-content/themes/listingpro/
index of /wp-content/themes/onetone/
index of /wp-content/themes/avada
intitle:"index of" "Logins.txt"
intitle:"index of" "keys.asc"
intitle:"index of" "/admin/backup"
intitle:"index of" "login.txt"
intitle:"index of" "passwords.xlsx"
intitle:"index of" "graphql/subscription"
intitle:"index of" "accounts.json"
inurl:/webmail/ intext:Powered by IceWarp Server
inurl:/wp-content/themes/CherryFramework
intitle:"elFinder 2.1.x"
inurl:"/course/jumpto.php?jump="
intext:"Please Login" inurl:"/remote/login"
inurl:www/delivery filetype:php
inurl:zdm logon
intitle:qdPM 9.1. Copyright (c) 2020 qdpm.net
intext:"laravel" ext:env intext:"db_password" -git
intitle:"index of" "docker.yml"
intitle:"index of" "admin.bak"
intitle:"OpenMeetings" intext:"Username or mail address"
intitle:"index of" "/users.xls"
intitle:"index of" "/yum.log"
intitle:"index of" "/config.bak"
intitle:"WeatherLinkIP Configuration"
inurl:/dynamic/login.html intext:"Linksys Smart Wi-Fi Sign In"
intitle:"index of" "client_id.json"
intitle:"index of" "api.yaml"
intitle:"index of" "settings.yaml"
intitle:"index of" "admin/json"
intitle:"index of" "/admin_backup"
intitle:"index of" "git-jira-log"
intitle:"index of" "/accounts.txt"
intitle:"index of" "users.ini"
intitle:"index of" dataSources.local.xml
intitle:"index of" apis.json
intitle:"index of" admin.txt
intitle:"index of" "parameters.yml.test" OR "parameters.yml.dist"
intitle:"index of" "docker-cloud.yml"
intitle:"index of" "application.yml"
intitle:"index of" "database.json"
"settings.ini" intext:"fbconnectkey =" intext:"msverify ="
inurl:*helpdesk* intext:"your default password is"
intitle:"index of" settings.xml
intitle:"index of" license-key.txt
intitle:"index of" db.json
intitle:"Fortinet - Login"
intitle:"index of" "keys.ini"
intitle:"index of" "credentials.json"
intitle:"index of" "client_secret.json" OR "client secret" OR "client_secret live.json"
intitle:"index of" "token.json"
intitle:"index of" /insecure_private_key
intitle:"index of" "credentials.ini"
intitle:"index of" "dovecot.key" OR "dovecot.crt.cache" OR "dovecot.crt"
intitle:"index of" db.frm
intitle:"index of" apache.log
intitle:"index of" machine.config
intitle:"index of" errors.log
intitle:"index of" /known_hosts
intitle:"index of" /.ssh/id_rsa OR id_rsa.pub
inurl:"/dynamic/password-reset.html"
intitle:"index of" "/cron.log"
intitle:"index of" "syslog"
intitle:"index of" "/db_backups/"
intitle:"index of" keepass.kdbx OR database.kdbx
intitle:"Kyocera Command Center" inurl:index.htm
intitle:"Internet Services" inurl:default.htm intext:"FUJI XEROX"
intitle:"Index of" db_mysql.inc
intitle:"Index of" db.inc
"DBPassword" ext:cfg OR ext:log OR ext:txt OR ext:sql -git
"MasterUserPassword" ext:cfg OR ext:log OR ext:txt -git
"/etc/shadow root:$" ext:cfg OR ext:log OR ext:txt OR ext:sql -git
"The default username and password is admin:admin" intitle:Login OR inurl:login.php
inurl:/8080/login.html
intitle:"index of " "*.passwords.txt"
inurl:start.swe?SWECmd
"SecretAccessKey" OR "AccessKeyId" ext:txt OR ext:cfg -git
"admin password irreversible-cipher" ext:txt OR ext:log OR ext:cfg
"super password level 3 cipher" ext:txt OR ext:log
inurl:/index.htm intext:"Oki Data Corporation"
inurl:8080/portal/pda/?force.login=yes
inurl:8080/dashboard intitle:Graphite Dashboard
inurl:8080/dashboard.php
intitle:"index of" "debug.log" OR "debug-log"
intitle:"index of" "db.ini"
intitle:"index of" application.ini
intitle:"index of" "database.ini" OR "database.ini.old"
site:."atlassian.net" "Log in to your account"
inurl:mainFrame.cgi intext:"RICOH"
inurl:/?MAIN=DEVICE intitle:TopAccess intext:Device
inurl:sws/index.html AND intext:"Model Name" AND intext:"Serial Number"
inurl:"login.html" intitle:"d-link"
intitle:"index of" errorlog.txt
"login" intitle:"iot login"
site:*/test/login
inurl:"index.php?option=com_jsjobs"
intitle:"My Book World Edition - MyBookWorld"
site:*/lost-password/
"Welcome to Sentry, please log in:"
inurl:/DeclaranetPlusWebapp/ intext:Entrar
inurl:/main.html intext:SHARP AND intext:MX-*
"-----BEGIN OpenVPN Static key V1-----" ext:key
intitle:"index of" "common.crt" OR "ca.crt"
"-----BEGIN CERTIFICATE-----" ext:pem -git
intitle:"index of" "proxy.pac" OR "proxy.pac.bak"
intext:"Welcome Site/User Administrator"
intitle:"index of" "global.asa"
inurl:"wp-contentpluginsall-in-one-seo-pack"
intitle:"index of" "cctv"
inurl:"/auth.php?forgot_password=yes"
site:*/auth.php
site:*/password_lost.php
inurl:/dana/home/ filetype:cgi
site:*/request-new-password
intext:"Any time & Any where" intext:"Username" intext:"Password" intext:login intext:"View: Mobile | PC"
intext:"This is the default welcome page used to test the correct operation of the Apache2 server"
inurl:/dana-cached/sc/
inurl:main_login.html intitle:Netgear
site:*/JIRA/login
site:*/admin/password.php
inurl:r51173 intext:"Keep me logged in"
inurl:/global-protect/login.esp
inurl:"/WebResource.axd?d=" AND intext:Error
inurl:/sslvpn/Login/Login
"Powered by SePortal 2.5"
inurl:"index.php?id=" intext:"Warning: mysql_num_rows()"
intitle:"index of" "cvsweb.cgi"
inurl:./sws/index.sws
intitle:"index of" "vpn-config.*"
intitle:"index of" "owncloud/config/*"
intitle:"index of" "iredadmin/*"
intitle:"index of" default.rdp
intitle: "index of" "MySQL-Router"
site:*/PassRecover
site:*/user/forgotpass
site:*/signup/pass
site:account.*.*/recovery
intext:"Powered by YouPHPTube"
inurl:SSI/index.htm
inurl:/frameprop.htm
intext:"Current Configuration:" ext:cfg -git
"Powered by PHPBack"
"Powered by Lanius CMS"
filetype:php inurl:"/general/login.php?PHPSESSID="
inurl:php-bin/webclient.php
inurl:/?op=registration
site:*/lost_pass.php
filetype:reg reg HKEY_CLASSES_ROOT -git
filetype:reg reg [HKEY_CURRENT_USERSoftware] -git
inurl:("/storage/logs/laravel.log") AND intext:("local.ERROR" | "NULL.ERROR" | "EMERGENCY:")
site:*/membersarea intitle:"login"
site:*/requestpassword.*
site:*/signup/password.php
filetype:reg reg HKEY_USERS -git
intitle:"Printer Status" AND inurl:"/PrinterStatus.html"
"Powered By Liferay"
"Powered by Podcast Generator"
"Powered by sNews CMS"
site:*/user/forgot
intitle:"index of" cvsweb.conf
inurl:"/English/pages_WinUS/" AND intitle:"Top page"
intitle:"index of" cvsroot
inurl:axis-cgi/mjpg/video.cgi
site:*/changePassword.php
site:*/reminder_password
intitle:NetworkCamera intext:"Pan / Tilt" inurl:ViewerFrame
intitle:"index of" "db.connection.js"
site:*/resetpass.php
site:*/retrieve-password
inurl:cgistart
site:*/account-recovery.html
inurl:view.shtml
inurl:/live.htm intext:"M-JPEG"|"System Log"|"Camera-1"|"View Control"
"Powered by Zimplit CMS"
intitle:("Solr admin page") AND intext:("Make a Query")
intitle:("Solr Admin") AND intext:("Dashboard" AND "Corporation")
site:*/adfs/ls/ intitle:"Sign In"
intext:"TCPDFtcpdf.php on line 17778" -stackoverflow -wordpress -github
site:*/*/pwdrecovery.php
intitle:"webcamXP 5" inurl:8080 'Live'
inurl:8000 intext:"Copyright CANON INC. 2012"
inurl:/HDDReplay.html
intext:"Welcome! Log in or create an account to continue."
inurl:8080/webinterface intitle:"crushftp"
site:*/retrieve.php
intext:"EWS Data Collection and Use"
inurl:hp/device/deviceinformation
intext:"Welcome Admin"
site:*/Citrix/storeweb
intext:"This computer system is the property of" -error
intitle:ThingsBoard inurl:8080/dashboard
inurl:/forgotpassword intext:"enter username and email"
intitle:traefik inurl:8080/dashboard
"create account" admin ext:cfg
"configure account user encrypted" ext:cfg
site:*/LoginPanel.aspx
site:*/AdminPanel.aspx
ext:cfg tac_plus.cfg
"d-i passwd/root-password-crypted password" ext:cfg
intext:"Please enter your new password" inurl:login filetype:php
"Powered by phpBB" inurl:"index.php?s" OR inurl:"index.php?style"
"enable password" ext:cfg -git -cisco.com
password console-password ext:cfg -git
intext:authentication set encrypted-password ext:cfg
inurl:-cfg intext:"password cipher"
intitle:"index of" "mysql.properties"
intext:"dspace.cfg" "db.username = dspace"
inurl:cfg intext:"srb.username.1=" "srb.password.1 = "
intitle:"Index of" dbconnect.inc
intitle:Grapher AND inurl:sensorlist.htm
intext:"index of /" "token.yml"
"# Kickstart" filetype:cfg
intitle:"index of" database.yml
intitle:"index of" "passwords.yml"
intitle:"index of" "configuration.yml"
intitle:"index of" "credentials.yml"
filetype:psp intitle:"Motorola - FX9500"
intitle:("Mini Shell") AND intext:("Upload File")
intitle:("Index of") AND intext:("c99.txt" OR "c100.txt")
intitle:"index of" "jwt-auth"
intitle:"index of" "backup.bak"
intitle:"index of" "settings.yml"
intitle:"index of" "backup.yml"
intitle:"index of" "secrets.yml"
intitle:"index of" "/concrete/Authentication"
intitle:"index of" "maven-metadata.xml" "Port 80"
intitle:"index of" service.grp
inurl:"view/index.shtml"
intitle:"index of" "metadata"
intitle:"index of" inurl:wp-json embedurl?
intitle:"index of" "powered by apache " "port 80"
intitle:"index of" "apache-log-parser" "Port 80"
intitle:"(SSI Web Shell)" AND intext:"(ls -al)"
intext:"please enter your username and password" inurl:login filetype:php
inurl:"MultiCameraFrame?Mode=Motion"
intitle:"index of" "config.py"
"VB Viewer" inurl:/viewer/live/ja/live.html
intitle:"Outlook Web App" inurl:"/owa/auth" logon ext:aspx
intitle:"index of" "access_token"
intitle:"Web Server's Default Page" intext:"hosting using Plesk" -www
intitle:"index of" "settings.py"
intitle:"index of" accounts.xml
intext:"WPENGINE_SESSION_DB_USERNAME" || "WPENGINE_SESSION_DB_PASSWORD"
inurl:"nobody/loginQuick.htm"
intitle:"IP CAMERA Viewer" intext:"setting | Client setting"
intitle:"index of" "php.ini"
intitle:"WEB SERVICE" intext:"Please install plugins first!"
inurl:"/login.htm?page=" intext:"Loading login page"
inurl:"serverpush.htm" intext:"Real-time"
inurl:manager/login
inurl:"/jw/web/login"
intext:"index of /" ".composer-auth.json"
intext:"sf_app" + "frontend sf_app_base_cache_dir:"
inurl:"Orion/Login.aspx?ReturnUrl="
intitle:"Log In JIRA" inurl:"8080:/login.jsp"
intext:"index of /" "auth.json"
intext:"Welcome to JIRA" "Powered by a free Atlassian Jira community"
intext:OpenCart inurl:index.php?route=common/dashboard
intitle:"index of" /"privatekey.txt" OR "private key.txt"
inurl:"/includes/api/" intext:"index of /"
inurl:"/includes/OAuth2" intext:"index of /"
site:ftp.*.com "Web File Manager"
intitle:"Pentaho User Console - Login"
inurl:/_layouts/userdisp.aspx?id= intext:password
site:*/cgi-bin/webproc intext:"username"
inurl:"auth.html" intitle:"SonicWall"
intitle:index.of "cacert.pem"
intitle:"Welcome to JBoss"
inurl:concrete/config/
intitle:"index of" "*php.swp"
intitle:"index of" "htdocs.zip"
intitle:"index of" "env.bak"
intitle:"index of" "smtp.log"
inurl:ReportViewer.aspx
inurl:/swagger/index.html
intitle: index of "*db.tar.gz"
intext:"username=" AND "password=" ext:log
intitle:"index of/" "db.sql"
intitle:index.of "awsconfig.json"
intitle:index.of "db.zip"
intitle:VMware intext:"VMware, Inc. All rights reserved." AND "Powered by VMware Studio"
site:bamboo.*.* ext:action build
intext:"SECRET_KEY" ext|py inurl:mysite -site:stackoverflow.com -site:github.com
intitle:index.of "backwpup"
intitle:index.of "keys.txt"
intitle:"index.of" intext:"access.txt"
intitle:"index.of" intext:"api.txt"
intitle:index.of "creds.txt"
intext:"Security is Off" intitle:"Namenode information"
intitle:VMware inurl:5480
inurl:"saw.dll" AND intitle:"Sign In"
intitle:"RabbitMQ Management" inurl:15672
intext:"Rubicon Communications, LLC (Netgate)" intitle:"Login"
intitle:"Welcome to nginx!" intext:"Welcome to nginx on Debian!" intext:"Thank you for"
intitle:"index of" share.passwd OR cloud.passwd OR ftp.passwd -public
krb.conf OR krb.realms intitle:"index of" -public -archive -packages -pub
accdb OR accde intitle:"index of" -pub -google -books
filetype:env intext:APP_NAME
"Firmware Version" intitle:"iLO" ProLiant Login -hpe.com -update
-pub -pool intitle:"index of" db.key OR server.key OR ftp.key OR exchange.key OR host.key OR mail.key
intitle:"index of" "/Cloudflare-CPanel-7.0.1"
intitle:"index of" "Served by Sun-ONE"
intitle:"index of" "ftp.log"
intitle:"index of" "sms.log"
-pool intitle:"index of" wget-log -pub
inurl:check_mk/login.py
intitle:Check_MK Multisite Login
intitle:"index of" lesshsQ/ OR .lesshst/ -pool -pub
intitle:"index of" .zshrc~ OR .zshrc OR .zshenv OR .zshenv~ -pool -public
intitle:"index of" .oracle_jre_usage/
intitle:"index of" crontab.conf
intitle:"index of" ticket.conf
-pub -pool intitle:"index of" squirrelmail/
-pub -pool intitle:"index of" vagrantfile -"How to"
intitle:"index of" api_key OR "api key" OR apiKey -pool
intitle:"index of" domain.key -public
-pub -pool intitle:"index of" "Served by" "Web Server"
site:*/AdminPanel.php
inurl:memberlogin.php
intitle:"Sign in" site:*/idaas/
"key" OR key.jar intitle:"index of" webstart
intitle:"index of" "server at"
"fetchmailrc" intitle:"index of" -linux
intitle:rsview32 ext:asp
intext:"Please enable JavaScript in your browser before using Citrix Receiver." AND intext:www.citrix.com
intitle:"kentico database setup"
inurl:/cmsinstall/install ext:aspx
inurl:"_notes/dwsync.xml"
intitle:"WSO2 Management Console"
intitle:"webview login" alcatel lucent
intitle:"LABVANTAGE Logon"
site:*/cgi/domadmin.cgi
inurl:":8080/login.jsp?os_destination="
intitle:"index of" "wp-security-audit-log"
intext:"powered by codoforum" inurl:"/user/login"
inurl:"/index.php?enter=guest"
intitle:"Zabbix" intext:"username" intext:"password" inurl:"/zabbix/index.php"
inurl:"/index.php?reconnect=1"
inurl:"8080/dashboard/" intitle:"Dashboard"
inurl:":8080/login"
intitle:"Home - Mongo Express"
intitle:"Check Point - Login"
inurl:"/webis/webis_login.html"
"MailChimp API error:" ext:log
index of /storage/logs/
intitle:"Pfsense - Login"
intitle:"WHMCS - Login" inurl:/admin/login.php
intitle:"WebSite X5 Manager" inurl:/admin/login.php
inurl:admin/login.php?login= intitle:"CMS"
inurl:/login.aspx site:com.tr intitle:y\u00f6netim
intext:"Service provided by Horos."
inurl:"/fmi/webd" intitle:"FileMaker WebDirect"
[ipn] ext:log
site:*/siteminderagent/forms/login.fcc
inurl:"web.config" & intext:"Data Source" & "User ID" & "Password" & "connectionString" & ext:config -git
Navicat MySQL Data Transfer filetype:sql
intext:"civicplus" "Login"
intitle:"TMSoft MyAuth Gateway 3" -DOWNLOAD
intitle:MK-AUTH :: CONTEUDO RESTRITO -site:mk-auth.com.br
inurl:10443/remote/login
ext:sql intext:@gmail.com intext:e10adc3949ba59abbe56e057f20f883e
site:*/my.policy
inurl:"index of" wso
filetype:"xls | xlsx | doc | docx | ppt | pptx | pdf" site:gov "FOUO" | "NOFORN" | "Confidential"
inurl:login.jsp intitle:login
intext:"@outlook.com" ext:log
inurl:CGI/Java/Serviceability?adapter=device.statistics.device
intitle:"index of" "mail.log"
intitle:index.of "chroot.conf"
intitle:odoo inurl:login "powered by odoo" "manage databases"
intitle:index of "uploads"
intext:"@gmail.com" ext:log
intitle:"freedom is real - 1945"
intitle:index.of "access.conf"
intitle:"index of" "ssh.yml"
intitle:index.of "htaccess.txt"
intitle:"index of" "ws_ftp.log"
inurl:"/index.php?title=Special:Userlogin"
inurl:"/index.php?content=login"
inurl:"/index.php?p=login"
inurl:"/index.php?pageID=login"
inurl:"/index.php/main/login"
intitle:"index of" "databases.yml"
intitle:"index of" "db.conf"
inurl:elmah.axd ext:axd
intitle:"Error log for /LM/"
site:*/cgi-bin/luci intext:"Authorization Required"
site:*/auth_index.htm?lang=kr&loginvalue=0&port=0
inurl:"/Admin/Forget.php"
site:*/admin/password/reset
site:*/account/reset
intext:"index of" intext:..bak intext:config
inurl:"/password.php" intitle:"Forgot your password"
site:* index.of: /android/manifest.xml
inurl:/webconsole/webpages/login.jsp
db_password filetype:env -site:github.com -git
intitle:"index of" inurl:ftp intext:logs
intitle:index.of "private-key.pem"
inurl:.elasticbeanstalk.com/admin
intitle:Metabase inurl:/dash
"accounts.xlsx" ext:xlsx
site:*/cb-forgot-login
intitle:"Marshall VS Server"
intitle:index.of "userpass.txt"
intitle:index.of "credential.txt"
intitle:index.of "key.txt"
intitle:index.of "system.db"
inurl:"index.cfm?action=" intext:"Exception in onError"
redash inurl:/org_slug
inurl:"/errors/report.php" intext:"There has been an error processing your request"
inurl:"/wp-login.php?action=lostpassword"
intitle:index.of "database.db"
intitle:"Pandora FMS mobile"
site:*/account/lost_password
site:*/logs/default.htm
site:mypublicinbox.com intitle:email
intitle:"Index of" wp-upload
intitle:"Index of" password.txt
intitle:"API Publisher- Login"
site:passport.*.*/login
intitle:"Cacti" AND inurl:"/monitor/monitor.php"
intitle:"netdata dashboard" AND intext:"Costa Tsaousis"
site:*/Dashboard/ intitle:"login"
site:watch.*.*/login
intitle:"Dashboards" AND inurl:"/zabbix/zabbix.php?action=dashboard.list"
site:*.freshservice.com/support/solutions
site:* index of: /config
site:*/loginportal/ intitle:"login"
inurl:"/index.php?action=login"
site:*/password/remind
inurl:"BasicAuthenticator:LOCAL"
inurl:"/showLogin.cc?isMobile=false"
inurl:"apex/f?p="
site:* index of: *.exe
intitle:"Index of" secret
site:*/oauth/authenticate
inurl:"/index.php?route=account/login"
inurl:"/index.php?gt=member/login"
inurl:"/index.php?r=site/login"
inurl:"/index.php/site/login"
inurl:"/.vscode/sftp.json"
inurl:"/.vscode/ftp-sync.json"
intitle:"Index Of" intext:sftp-config.json
inurl:/userlogin
inurl:/customerlogin
inurl:/clientlogin
inurl:/studentlogin
inurl:/stafflogin
site:*/usercp.php
inurl:"/index.php?page=login"
intitle:"index of" "/etc/mysql/"
intext:{{szErrorTip}} inurl:/doc/page/login.asp
inurl:/wp-content/uploads/ninja-forms/ intitle:"index of"
intitle:"index of" "web.config.txt"
site:*/wp-admin/maint/repair.php intext:"define(WP_ALLOW_REPAIR,true);"
site:*/wp-includes/Requests/php_errorlog
site:*/account/preferences
"Powered by vBulletin Version 5.5.4"
site:*/request-password-reset
site:*/cgi-sys/defaultwebpage.cgi intext:"SORRY!"
site:*/wp-settings.php
inurl:/dana-na/ filetype:cgi
site:*/wp-admin/user-edit.php
site:*/wp-admin/install.php intitle:WordPress Installation
intext:Powered By vBulletin 5.5.4 inurl:forum.
site:*/cgi-sys/suspendedpage.cgi intitle:"Account Suspended"
site:*/logs/error.log
site:*/server-status intext:"Apache server status for"
site:*/*/conf/httpd.conf
intitle:index.of "users.db"
site:*/pwdform.htm
inurl:credentials.txt -github -git -gitlab
site:*/oauth2/authorize
intitle:index.of "admin.db"
intitle:index.of "admin" filetype:sql
indexof:backup/web.config
site:* intitle:"reset password"
site:ftp.*.* index of: manifest.xml
indexof:backup/mysql
inurl:webmail/src/login.php
inurl:"/prweb/prwebLDAP1/"
index.of "crossdomain.xml"
intitle:"login" site:welcome.*.*
site:*/Shibboleth.sso/SAML2/POST
site:*/casAuthn/login.php
site:*/authzssl/forget_password
indexof:.htaccess
"contrasena" filetype:sql -github.com
intitle:"index of" inurl:/*sql* filetype:log
inurl:"index.php?db="
intitle:"index of" "debian.conf"
inurl:/application/config/database.php*
intitle:"index of" "/mysql.log"
site:*/404/404.html intitle:"404"
site:*/index_signin.php
site:*/authUpdate intitle:"Account Access Help"
inurl:"/usp-core/app/authUpdate"
site:*:8443/login_up.php
intext:"Please log on to use the mikrotik hotspot service" intitle:"mikrotik hotspot >login" -github -site:mikrotik.com
intitle:index.of./.htaccess
site:cpanel.*.* intitle:"login" -site:forums.cpanel.net
intitle:"openshift web console" inurl:console inurl:/console
site:*/sitemap/sitemap.xml
site:*/nms/login intitle:"UNMS"
inurl:"/phpmyadmin/user_password.php" -inurl:git
inurl:/wp-admin/includes/plugin-install.php
inurl:"/SecureAuth.aspx"
site:ftp.* index of /ftp/backup
inurl:wp-content intext:backup-db
inurl:/_vti_txt*
intitle:"XENON :: Login"
"Scanned by Camscanner" filetype:pdf
inurl:/scgi-bin*
site:*/recover-pass
site:smtp.*.*/login
site:dev.*.*/signin
site:app.*.*/ intext:login
inurl:show_port_res_settings
inurl: /upload.php intitle:index of
site:exchange.*.*/owa/
site:remote.*.* intitle:"User Authentication"
inurl:/awcuser*
intitle:login enterprise
site:*/password_reset/
site:*:8000/login#forgot intitle:"login"
site:auth.*.*/signin
site:*/forgot-password
inurl:admin/data* intext:index of
inurl:/database* ext:sql intext:index of -site:github.com
inurl: /config.txt ext:txt intext:
site:*/resetpassword.php
inurl:"/hp_login.html"
inurl:/iisstart.htm intitle:"IIS7"
site:monitor.*.*/login intitle:"Login"
site:management.*.*/login/
site:moodle.*.*/login
site:*/SendPassword
site:intranet.*.*/login/
inurl:/admin/ intitle:index.of
inurl:admin/changepassword*
site:*/updatepassword.php
inurl:/phpmyadmin/changelog.php -github -gitlab
site:*/validar_usuario.php
intitle:"Login to Webmin" intext:"You must enter a username and password to login to the server"
site:ftp://ftp.*.*/login -inurl:https://
intext:"@gmail.com" intext:"password" inurl:/files/ ext:txt
site:*/securelogin.asp
site:*/authlogin/ intitle:login
site:*/exchange-login/ intitle:"Login"
site:*/m-login.html
site:*/Security/Login
site:*/admincp/ intitle:"Admin Cp"
site:*/user/password/
site:*/robots.txt intext:User-agent:
intitle:"index of" "ftp.passwd"
inurl:/index.php/admin/ intitle:"login"
site:*/phpMyAdmin/robots.txt
inurl:zabbix/zabbix.php
intitle:"OpenNMS web console" inurl:opennms/index.jsp
intitle:index.of.?.login
inurl:/identify/ intitle:"Forgotten Password"
site:*/wordpress/wordpress.bak/
intitle:"index of" /config.ini
intitle:"index of" "htpasswd.txt"
inurl:/wp/wp-admin/
site:*.*.*/authentication/Logon
site:*/log/access_log
intitle:"index of" "debian.cnf"
site:secure.*.* intitle:"log in"
site:sts.*.*/adfs/ls/?SAMLRequest= intitle:"sign in"
site:*/web-hosting/cplogin
inurl:"/?action=login" intitle:"Log In"
intitle:index.of.?.database
index of /cache
inurl:/EasyPAY/view
inurl:webArch/mainFrame filetype:cgi intext:"Web Image Monitor"
site:*/account-sign-in
site:*/login/ForgotPassword
site:admin.*.*/forgot?username=
site:*/wp-login?redirect_to= intitle:"login"
intitle:index.of.?.config.ini
ext:sql intext:"-- phpMyAdmin SQL Dump" -site:github.*
intitle:"index of" /content/admin/
intitle:"index of" /content/uploads/ -inurl:/wp-content/uploads/
site:*/Password.aspx
site:*/forgetpassword.php
intitle:"VideoEdge Admin Interface"
intitle:dotCMS inurl:dotAdmin
intitle:synology intext:"Choose login account:"
site:*/index.php/login intitle:"login"
intitle:index.of.?.mysql
intitle:"Login page" intext:"about SurgeMail"
site:*/cgi/user.cgi
site:*/wp-includes/ inurl:/wp-includes/
site:*/wp-contents/ inurl:/wp-contents/
site:*/Webmail/
intitle:"Local Run Manager" intext:"Local Run Manager Version:"
"pass" "usuario" filetype:sql
site:docs.google.com inurl:forms | viewanalytics intext:see previous responses
site:identity.*.*/login
intitle:please login inurl:remote/login intext:FortiToken
inurl:"/Serviceability?adapter=device.statistics.configuration"
site:mail.*.*/auth
site:member.*.*/auth/login
ext:sql intext:contrasena
site:*/phpinfo.php intitle:"phpinfo()"
site:*/pages/login.php intitle:"Login"
intitle:"index of" /php4/
intitle:"index of" mysqli.ini
intitle:"index of" ssh2.ini
intitle:Host Report inurl:ganglia
site:*/en/login/
site:vpn.*.*/ intitle:"login"
site:/*:8081/nexus/#welcome -inurl:"/nexus/content/"
intitle:index.of.?.bak
inurl:*admin_login.php
intitle:Grafana - Home inurl:/orgid
inurl:/manage/login.html
site:*:8888/login.aspx
site:/*:81 -site:/*:8080 intitle:"::: Login :::"
intitle:apache couchdb - futon: overview inurl:/_utils
inurl:"/login.php?do=login"
site:*/src/login.php
site:*/forum/login/
site:*/logon/logonpoint/tmindex.html
site:*/logon/ intitle:"Sign In"
site:*/sign_in.aspx
inurl:/oaam_server/login.do
intitle:"Sales Central - Logon"
site:/auth.*.*/login
inurl:/admin.login.php
site:*/admin/login.html
inurl:admin. intitle:"admin login"
intitle:"Calendarix Admin Login"
inurl:/admin/cal_login.php
inurl:/Login/Admin intitle:"Admin Login"
site:*/admin-login intitle:"Admin Login"
site:signin.*.* intitle:"login"
site:sso.*.* intitle:"Login"
site:admin.*.* intitle:"Admin Login"
site:login.*.* intitle:"Admin Login"
site:*/adminLogin/login/
intitle:index.of./.db
inurl:/admin/ intext:"login"
inurl:/admin/admin.php intitle:"login"
site:member.*.* intitle:"login"
inurl:/users/sign_in
inurl:/member/login
inurl:/account/logon intitle:"Log On"
inurl:/account/signin intitle:"signin"
inurl:/wp-admin/admin.php intitle:"Log In"
ext:sql intext:clave
intitle:index.of./.sql
site:*/quicklogin.php
site:*/auth/login.aspx
site:*/cgi-bin/login.html
"viostor system"
intitle:"Index of" login.php
intitle:"Index of" wp-config.php
site:*/account/login
site:*/forum/ucp.php?mode=login
inurl:memberlist.php?mode=viewprofile
site:*/sign-in
intitle:"EdgeOS" intext:"Please login"
inurl:user_login.php
intitle:"Web Management Login"
site:*/users/login_form
site:*/access/unauthenticated
intitle:prometheus time series collection and processing server inurl:/alerts
inurl:ftp://ftp
inurl:ftp://ftp robots.txt
site:account.*.*/login
site:*/index.jsp intitle:"login"
site:*/login/auth
inurl:/sites/default/private
inurl:adminpanel/index.php
site:portal.*.com/signin/
site:admin.*.com/signin/
site:login.*.com/signin/
site:conf.*.com/signin/
site:social.*.com/signin/
intitle:"index of" sql inurl:./db/
inurl:"WebPortal?bankid"
inurl:robots.txt site:gov + intext:password
intitle:Administration - Installation - MantisBT
inurl:login_user.asp
intitle:sign in inurl:/signin
intitle:"sign in" inurl:login.aspx
site:*/user/login
site:accounts.*.com/signin/
intitle:"index of" drupal
intitle:"index of" admin
inurl:login.cgi
site:*/joomla/administrator
inurl:/login/index.jsp -site:hertz.*
intitle:"Index of" inurl:wp-json/oembed
intitle:"Index of" phpmyadmin
intitle:"Index of" wp-admin
intitle:index.of.?.sql
inurl: /filemanager/dialog.php
s3 site:amazonaws.com filetype:log
inurl:cgi/login.pl
inurl:zoom.us/j and intext:scheduled for
site:*/auth intitle:login
inurl: admin/login.aspx
"Index of" inurl:webalizer
"Index of" inurl:phpmyadmin
"Index of" inurl:htdocs inurl:xampp
s3 site:amazonaws.com intext:dhcp filetype:txt inurl:apollo
inurl:/index.aspx/login
site:amazonaws.com inurl:login.php
intitle:"IIS Windows Server" -inurl:"IIS Windows Server"
intitle:"Apache2 Ubuntu Default Page: It works"
inurl:/filedown.php?file=
intitle:"Index of" wp-config
intitle:"Index of" wp-content
intitle:"Index of" pass.txt
inurl:/site/login.php
inurl:/client/login.php
inurl:/guest/login.php
inurl:/administrator/login.php
inurl:/system/login.php
inurl:/student/login.php
inurl:/teacher/login.php
inurl:/employee/login.php
inurl:/admin/login.php
inurl:wp/wp-login.php
filetype:xls "nomina"
inurl:/server-status + "Server MPM:"
intitle:"Index of" portal
site:*/login/login.php
intitle:"Index of" public
site:*.com intitle:"Thank You For Your Order" intext:Click Here to Download
intext:"aspx" filetype:txt login & password
intitle:"Index of" phpinfo.php
inurl:Dashboard.jspa intext:"Atlassian Jira Project Management Software"
inurl:simple/view/login.html
inurl:/secure/ContactAdministrators!default.jspa intext:"Request Details" -intext:"Your Jira administrator has not yet configured this contact form"
"Index of" inurl:config inurl:production
inurl:/en-US/account/login?return_to=
inurl:/phpmyadmin/index.php?db=
intext:Grafana New version available! -grafana.com -grafana.org inurl:/login
inurl:app/kibana intext:Loading Kibana
site:https://docs.google.com/spreadsheets edit
site:https://docs.google.com/spreadsheets responses
site:https://docs.google.com/forms responses
site:https://docs.google.com/forms viewanalytics
inurl:/_cat/indices/
inurl:8443 AND -intitle:8443 AND -intext:8443 prohibited|restricted|unauthorized
intext:" Welcome to DSL-2730B Web Management"
MAIL_HOST filetype:env