forked from projectdiscovery/awesome-search-queries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQUERIES.yaml
2646 lines (2294 loc) · 49 KB
/
QUERIES.yaml
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
- name: clickdesk_live_support-live_chat_plugin
type: product
engines:
- platform: google
queries:
- inurl:"/wp-content/plugins/clickdesk-live-support-chat/"
- name: reprise_license_manager
type: product
engines:
- platform: shodan
queries:
- http.html:"Reprise License Manager"
- http.html:"Reprise License"
- platform: google
queries:
- inurl:"/goforms/menu"
- name: endpoint_manager_cloud_services_appliance
type: product
engines:
- platform: shodan
queries:
- title:"LANDesk(R) Cloud Services Appliance"
- name: hoteldruid
type: product
engines:
- platform: shodan
queries:
- http.favicon.hash:-1521640213
- name: nexusphp
type: product
engines:
- platform: shodan
queries:
- http.favicon.hash:-582931176
- name: trafficanalyzer
type: product
engines:
- platform: google
queries:
- inurl:"/wp-content/plugins/trafficanalyzer"
- name: mongo-express
type: product
engines:
- platform: shodan
queries:
- http.title:"Mongo Express"
- name: openemr
type: product
engines:
- platform: shodan
queries:
- title:"OpenEMR"
- name: 11n_firmware
type: product
engines:
- platform: fofa
queries:
- product=="Tenda-11N-Wireless-AP"
- platform: shodan
queries:
- http.title:"Tenda 11N"
- name: spacelogic_c-bus_home_controller_firmware
type: product
engines:
- platform: shodan
queries:
- html:"SpaceLogic C-Bus"
- name: sysaid
type: product
engines:
- platform: shodan
queries:
- http.favicon.hash:1540720428
- name: phpcollab
type: product
engines:
- platform: shodan
queries:
- http.title:"PhpCollab"
- name: 74cms
type: product
engines:
- platform: fofa
queries:
- app="74cms"
- platform: shodan
queries:
- http.html:"74cms"
- name: flatpress
type: product
engines:
- platform: shodan
queries:
- http.html:"Flatpress"
- name: hd-network_real-time_monitoring_system
type: product
engines:
- platform: google
queries:
- intitle:"HD-Network Real-time Monitoring System V2.0"
- name: mcms
type: product
engines:
- platform: fofa
queries:
- icon_hash="1464851260"
- platform: shodan
queries:
- http.favicon.hash:1464851260
- name: terramaster_operating_system
type: product
engines:
- platform: shodan
queries:
- TerraMaster
- name: ssl_vpn
type: product
engines:
- platform: shodan
queries:
- http.html_hash:510586239
- name: artica_proxy
type: product
engines:
- platform: shodan
queries:
- http.html:"Artica"
- name: ios
type: product
engines:
- platform: shodan
queries:
- product:"Cisco IOS http config" && 200
- name: dapr_dashboard
type: product
engines:
- platform: shodan
queries:
- http.title:"Dapr Dashboard"
- name: webpanel
type: product
engines:
- platform: shodan
queries:
- http.title:"Login | Control WebPanel"
- name: activehelper_livehelp_live_chat
type: product
engines:
- platform: google
queries:
- inurl:"/wp-content/plugins/activehelper-livehelp"
- name: monstra_cms
type: product
engines:
- platform: shodan
queries:
- http.favicon.hash:419828698
- name: metabase
type: product
engines:
- platform: fofa
queries:
- app="Metabase"
- platform: shodan
queries:
- http.title:"Metabase"
- name: kavita
type: product
engines:
- platform: shodan
queries:
- title:"kavita"
- name: aspera_faspex
type: product
engines:
- platform: shodan
queries:
- html:"Aspera Faspex"
- name: academy_learning_management_system
type: product
engines:
- platform: google
queries:
- intext:"Study any topic, anytime"
- name: jboss_enterprise_application_platform
type: product
engines:
- platform: shodan
queries:
- title:"JBoss"
- name: featurific-for-wordpress
type: product
engines:
- platform: google
queries:
- inurl:"/wp-content/plugins/featurific-for-wordpress"
- name: anti-plagiarism
type: product
engines:
- platform: google
queries:
- inurl:"/wp-content/plugins/anti-plagiarism"
- name: jenkins
type: product
engines:
- platform: shodan
queries:
- http.favicon.hash:81586312
- name: qdpm
type: product
engines:
- platform: shodan
queries:
- http.favicon.hash:762074255
- name: cobranca
type: product
engines:
- platform: shodan
queries:
- http.favicon.hash:876876147
- name: http_server
type: product
engines:
- platform: shodan
queries:
- Apache 2.4.49
- name: candidats
type: product
engines:
- platform: shodan
queries:
- http.html:"CandidATS"
- name: gibbon
type: product
engines:
- platform: shodan
queries:
- http.favicon.hash:-165631681
- platform: fofa
queries:
- icon_hash="-165631681"
- name: infusionsoft_gravity_forms
type: product
engines:
- platform: google
queries:
- inurl:"/wp-content/plugins/infusionsoft/Infusionsoft/"
- name: maximo_asset_management
type: product
engines:
- platform: shodan
queries:
- http.favicon.hash:-399298961
- name: r-seenet
type: product
engines:
- platform: shodan
queries:
- http.html:"R-SeeNet"
- name: geoserver
type: product
engines:
- platform: shodan
queries:
- title:"GeoServer"
- title:"geoserver"
- platform: fofa
queries:
- app="GeoServer"
- name: avideo
type: product
engines:
- platform: shodan
queries:
- http.html:"AVideo"
- name: h-sphere
type: product
engines:
- platform: shodan
queries:
- title:"Parallels H-Sphere
- title:"h-sphere"
- name: swim_team
type: product
engines:
- platform: google
queries:
- inurl:"/wp-content/plugins/wp-swimteam"
- name: dotcms
type: product
engines:
- platform: shodan
queries:
- http.title:"dotCMS"
- name: high_cms
type: product
engines:
- platform: shodan
queries:
- title:"HighMail"
- platform: fofa
queries:
- title="HighMail"
- name: workforce_optimization
type: product
engines:
- platform: shodan
queries:
- title:"Verint Sign-in"
- name: copyright_proof
type: product
engines:
- platform: google
queries:
- inurl:/wp-content/plugins/digiproveblog
- name: essential_addons_for_elementor
type: product
engines:
- platform: google
queries:
- inurl:/wp-content/plugins/essential-addons-for-elementor-lite
- name: lightdash
type: product
engines:
- platform: shodan
queries:
- title:"Lightdash"
- name: tikiwiki_cms\/groupware
type: product
engines:
- platform: shodan
queries:
- http.html:"tiki wiki"
- name: advanced_dewplayer
type: product
engines:
- platform: google
queries:
- inurl:"/wp-content/plugins/advanced-dewplayer/"
- name: icinga_web_2
type: product
engines:
- platform: shodan
queries:
- title:"Icinga"
- name: mlflow
type: product
engines:
- platform: fofa
queries:
- app="MLflow"
- platform: shodan
queries:
- http.title:"mlflow"
- name: forget_about_shortcode_buttons
type: product
engines:
- platform: google
queries:
- inurl:"/wp-content/plugins/forget-about-shortcode-buttons"
- name: opendreambox
type: product
engines:
- platform: shodan
queries:
- title:"Dreambox WebControl"
- name: rv160_firmware
type: product
engines:
- platform: shodan
queries:
- http.html:"Cisco rv340"
- name: appliance_base_software
type: product
engines:
- platform: google
queries:
- '"BeyondTrust" "Redistribution Prohibited"'
- platform: shodan
queries:
- 'set-cookie: nsbase_session'
- name: cliniccases
type: product
engines:
- platform: shodan
queries:
- http.title:"ClinicCases",html:"/cliniccases/"
- name: identity_manager
type: product
engines:
- platform: shodan
queries:
- http.favicon.hash:-1250474341
- platform: fofa
queries:
- app="vmware-Workspace-ONE-Access" || app="vmware-Identity-Manager" || app="vmware-vRealize"
- name: zk_framework
type: product
engines:
- platform: shodan
queries:
- http.title:"Server backup manager"
- name: page-layout-builder
type: product
engines:
- platform: google
queries:
- inurl:"/wp-content/plugins/page-layout-builder"
- name: show_all_comments
type: product
engines:
- platform: publicwww
queries:
- /wp-content/plugins/show-all-comments-in-one-page
- name: vrealize_network_insight
type: product
engines:
- platform: fofa
queries:
- title="VMware vRealize Network Insight"
- platform: shodan
queries:
- title:"VMware vRealize Network Insight"
- title:"VMware Aria Operations"
- name: obsidian
type: product
engines:
- platform: fofa
queries:
- title="Plesk Obsidian"
- platform: shodan
queries:
- title:"Plesk Obsidian"
- name: atutor
type: product
engines:
- platform: shodan
queries:
- http.html:"Atutor"
- name: weiphp
type: product
engines:
- platform: shodan
queries:
- http.html:"WeiPHP5.0"
- name: atmail
type: product
engines:
- platform: shodan
queries:
- http.html:"Powered by Atmail"
- http.html:"atmail"
- name: e-business_suite
type: product
engines:
- platform: shodan
queries:
- http.title:"Login" "X-ORACLE-DMS-ECID" 200
- name: apisix
type: product
engines:
- platform: fofa
queries:
- title="Apache APISIX Dashboard"
- platform: shodan
queries:
- title:"Apache APISIX Dashboard"
- name: energy_communication_unit_firmware
type: product
engines:
- platform: shodan
queries:
- title:"Altenergy Power Control Software"
- platform: google
queries:
- intitle:"Altenergy Power Control Software"
- name: powerjob
type: product
engines:
- platform: fofa
queries:
- app="PowerJob"
- platform: shodan
queries:
- html:"PowerJob"
- name: robotcpa
type: product
engines:
- platform: google
queries:
- inurl:"/wp-content/plugins/robotcpa"
- name: zedna_ebook_download
type: product
engines:
- platform: google
queries:
- inurl:"/wp-content/plugins/ebook-download"
- name: spotweb
type: product
engines:
- platform: shodan
queries:
- title:"SpotWeb - overview"
- name: jai-ext
type: product
engines:
- platform: shodan
queries:
- /geoserver/
- name: basic_pdu_firmware
type: product
engines:
- platform: shodan
queries:
- http.html:"Powertek"
- name: netweaver
type: product
engines:
- platform: shodan
queries:
- http.favicon.hash:-266008933
- name: dedecms
type: product
engines:
- platform: shodan
queries:
- http.html:"DedeCms"
- platform: fofa
queries:
- app="DedeCMS"
- name: opentsdb
type: product
engines:
- platform: shodan
queries:
- html:"OpenTSDB"
- name: jellyfin
type: product
engines:
- platform: fofa
queries:
- title="Jellyfin" || body="http://jellyfin.media"
- platform: shodan
queries:
- http.html:"Jellyfin"
- http.title:"Jellyfin"
- name: node-red-dashboard
type: product
engines:
- platform: shodan
queries:
- title:"Node-RED"
- platform: fofa
queries:
- title="Node-RED"
- name: api_manager
type: product
engines:
- platform: shodan
queries:
- http.favicon.hash:1398055326
- platform: google
queries:
- inurl:"carbon/admin/login"
- name: fortinac
type: product
engines:
- platform: shodan
queries:
- title:"FortiNAC"
- name: grand_flagallery
type: product
engines:
- platform: google
queries:
- inurl:"/wp-content/plugins/flash-album-gallery"
- name: flexible_custom_post_type
type: product
engines:
- platform: google
queries:
- inurl:"/wp-content/plugins/flexible-custom-post-type/"
- name: dashboard
type: product
engines:
- platform: shodan
queries:
- product:"Kubernetes"
- name: timesheet_next_gen
type: product
engines:
- platform: google
queries:
- inurl:"/timesheet/login.php"
- name: erxes
type: product
engines:
- platform: shodan
queries:
- http.title:"erxes"
- name: dir-615_firmware
type: product
engines:
- platform: shodan
queries:
- http.title:"Roteador Wireless"
- name: ghost
type: product
engines:
- platform: shodan
queries:
- http.component:"Ghost"
- name: yousaytoo
type: product
engines:
- platform: google
queries:
- inurl:"/wp-content/plugins/yousaytoo-auto-publishing-plugin"
- name: compact_5500r_firmware
type: product
engines:
- platform: fofa
queries:
- '"auerswald"'
- name: i3geo
type: product
engines:
- platform: shodan
queries:
- http.html:"i3geo"
- name: spark
type: product
engines:
- platform: shodan
queries:
- title:"Spark Master at"
- name: free5gc
type: product
engines:
- platform: shodan
queries:
- http.title:"free5GC Web Console"
- name: sg200-50_firmware
type: product
engines:
- platform: shodan
queries:
- /config/log_off_page.htm
- platform: censys
queries:
- 'services.http.response.headers.location: /config/log_off_page.htm'
- name: gitlab_hook
type: product
engines:
- platform: shodan
queries:
- http.title:"GitLab"
- name: aurall_rec_monitor
type: product
engines:
- platform: shodan
queries:
- html:"AURALL"
- name: cachet
type: product
engines:
- platform: shodan
queries:
- http.favicon.hash:-1606065523
- name: shardingsphere_elasticjob-ui
type: product
engines:
- platform: shodan
queries:
- http.favicon.hash:816588900
- name: kubeview
type: product
engines:
- platform: shodan
queries:
- http.title:"KubeView"
- name: cpanel
type: product
engines:
- platform: shodan
queries:
- title:"cPanel"
- name: struts
type: product
engines:
- platform: shodan
queries:
- html:"Struts Problem Report"
- html:"Apache Struts"
- name: wordpress
type: product
engines:
- platform: shodan
queries:
- http.component:"WordPress"
- name: node-red-contrib-huemagic
type: product
engines:
- platform: shodan
queries:
- title:"NODE-RED"
- name: car_rental_management_system
type: product
engines:
- platform: shodan
queries:
- http.html:"Car Rental Management System"
- name: appwrite
type: product
engines:
- platform: shodan
queries:
- title:"Sign In - Appwrite"
- name: count_per_day
type: product
engines:
- platform: google
queries:
- inurl:"/wp-content/plugins/count-per-day"
- name: magmi
type: product
engines:
- platform: shodan
queries:
- http.component:"Magento"
- name: quixplorer
type: product
engines:
- platform: google
queries:
- intitle:"My Download Server"
- platform: shodan
queries:
- http.title:"My Download Server"
- name: ofbiz
type: product
engines:
- platform: shodan
queries:
- OFBiz.Visitor=
- platform: fofa
queries:
- app="Apache_OFBiz"
- name: central_authentication_service
type: product
engines:
- platform: shodan
queries:
- http.title:'CAS - Central Authentication Service'
- name: casdoor
type: product
engines:
- platform: shodan
queries:
- http.title:"Casdoor"
- name: opencats
type: product
engines:
- platform: shodan
queries:
- title:"OpenCATS"
- title:"opencats"
- name: pyload
type: product
engines:
- platform: shodan
queries:
- html:"pyload"
- name: wp-planet
type: product
engines:
- platform: google
queries:
- inurl:"/wp-content/plugins/wp-planet"
- name: uag2100_firmware
type: product
engines:
- platform: shodan
queries:
- http.title:"ZyWall"
- name: cute_editor
type: product
engines:
- platform: shodan
queries:
- http.component:"ASP.NET"
- name: webctrl
type: product
engines:
- platform: shodan
queries:
- html:"/_common/lvl5/dologin.jsp"
- name: ind780_firmware
type: product
engines:
- platform: google
queries:
- inurl:excalweb.dll
- platform: shodan
queries:
- IND780
- name: experience_platform
type: product
engines:
- platform: shodan
queries:
- http.title:"SiteCore"
- name: appcms
type: product
engines:
- platform: shodan
queries:
- http.html:"Powerd by AppCMS"
- name: livezilla
type: product
engines:
- platform: shodan
queries:
- http.html:LiveZilla
- name: pypiserver
type: product
engines:
- platform: shodan
queries:
- html:"pypiserver"
- name: microweber
type: product
engines:
- platform: shodan
queries:
- http.html:"microweber"
- http.favicon.hash:780351152
- name: metersphere
type: product
engines:
- platform: shodan
queries:
- html:"metersphere"
- platform: fofa
queries:
- title="MeterSphere"
- name: drawio
type: product
engines:
- platform: shodan
queries:
- http.title:"Flowchart Maker"
- name: open_edx
type: product
engines:
- platform: shodan
queries:
- http.html:"Open edX"
- name: cacti
type: product
engines:
- platform: shodan
queries:
- title:"Login to Cacti"
- name: stagil_navigation
type: product
engines:
- platform: shodan
queries:
- title:Jira