forked from 20142995/Goby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
5562 lines (5562 loc) · 240 KB
/
data.json
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
{
"e0bb25f69ea9db663a40a5e5abd93694": {
"name": "Byzoro_smart_importhtml_php_RCE_CNVD_2021_40201.go",
"from": "https://github.com/gobysec/GobyVuls",
"up_time": "2022-12-16 05:10:16"
},
"36eee471a3db01a16bb66cc1a9e31b94": {
"name": "Thinkphp_multi_language_rce.go",
"from": "https://github.com/luck-ying/Goby2.0-POC",
"up_time": "2022-12-16 05:10:29"
},
"9e0762bdaefae2a110ff6305c2af0956": {
"name": "Atlassian_Bitbucket_archive_RCE_CVE_2022_36804.go",
"from": "https://github.com/luck-ying/Goby2.0-POC",
"up_time": "2022-12-16 05:10:29"
},
"bd8278bc3f3f80080fe8293f7bc61a51": {
"name": "ThinkPHP_5.0.24_Information_Disclosure_CVE_2022_25481.go",
"from": "https://github.com/luck-ying/Goby2.0-POC",
"up_time": "2022-12-16 05:10:29"
},
"86d3a1fc3f4ed44c53338a67f890094a": {
"name": "HEJIA_PEMS_SystemLog.cgi_Arbitrary_file_download.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"83e52e9f3097b94069c7e6fa1585b6fd": {
"name": "JetBrains-.idea-project-directory.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"03dfacfb9614ccd675dc315a7b4f4b92": {
"name": "Apache-Struts-'includeParams'-CVE-2013-1966-Security-Bypass-Vulnerability.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"1afc98f5ec99789d7dc9275bcbe7df60": {
"name": "SECWORLD_Next_generation_firewall_pki_file_download_File_read.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"368066f45107c0d07e04f58f2ddd960a": {
"name": "VMware-vSphere-Client-(HTML5)-RCE-(CVE-2021-21985).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"ba779ed2332340da3087b9239546933f": {
"name": "Seeyon_OA_A8_m_Information_leakage.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"b9ca2c4a021b59ce173cfbf97d6c6ddd": {
"name": "IFW8-Enterprise-router-v4.31-Password-leakage-.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"12debf0a72442cbbf6c097570d06d7ae": {
"name": "Many_network_devices_have_arbitrary_file_downloads.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"9fa8a43ec9c8ec7c25d008c653e52e64": {
"name": "Atlassian_Jira_Seraph_Authentication_bypass_CVE_2022_0540.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"82d76b6e9f949e426791aee6b81feecd": {
"name": "Apache_Struts2_S2_053_RCE_CVE_2017_12611.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"2825b2f125e35ce9c3264085ed1e5761": {
"name": "Panabit-iXCache-ajax_cmd-backstage-RCE.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"1ce22be4aeb48de90e4f98eb32e30e26": {
"name": "BSPHP_index.php_unauthorized_access_information.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"391bda45ff866cd1e6a7000189459d96": {
"name": "TOTOLINK-routers-remote-command-injection-vulnerabilities-(CVE-2020-25499).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"c30af2b9e2d764c4ccccbbe749968fa4": {
"name": "Cisco-HyperFlex-HX-Data-Platform-Command-Injection-(CVE-2021-1498).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"b82e9416efaf4f3d9043d30f50503b17": {
"name": "CNPOWER OA Arbitrary File Upload Vulnerability.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"1f3a6c5fddd74d62793aaa46d2524e07": {
"name": "Citrix-ADC-RCE-(CVE-2019-19781).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"56791abd4ad5c5faad2db943268e473b": {
"name": "MySQL-Login-Bypass-Vulnerability-(CVE-2012-2122).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"c18afddd15b566918ad68fb61d4f956b": {
"name": "mallgard.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"97dd53910656b845e9ccca81c2de65aa": {
"name": "H5S_Video_Platform_GetUserInfo_Info_Leak_CNVD_2021_35567.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"4a6a9303bd0b1523f57c18a502d2227f": {
"name": "Oracle-E-Business-Suite-default-account.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"3a0bc7208b5da20808fe6c07cea3df71": {
"name": "Axis2-Default-Credentials-Remote-Code-Execution-(CVE-2010-0219).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"aac1e317f2119271220ee82991b897a7": {
"name": "China-Mobile-IPTV-getshell.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"53de714da9e788bdea83c338dca68d12": {
"name": "Qilai_OA_CloseMsg.aspx_SQL_injection.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"2029001b7aaa45bd1579cf2cd7db369d": {
"name": "Control-M-log4j2-Remote-command-execution-vulnerability-(CVE-2021-44228).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"818a60c3c52eb418648dcc1d6be54b2c": {
"name": "Jetty_WEB_INF_FileRead_CVE_2021_28169.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"4e17358adc3c2890dac04007328000f2": {
"name": "Webgrind_File_read_cve_2018_12909.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"134907d29de664edc92812032c77b464": {
"name": "WordPress-PageViewsCount-Plugin-SQL-Injection.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"c86409ded17eea26c16b73c74605501d": {
"name": "Polycom-RMX-1000-Default-Credentials.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"ab83e8100bc585311c540a04175e1f0e": {
"name": "eGroupWare-spellchecker.php-RCE.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"36622c55cba077653260cd24cb821f97": {
"name": "Pentaho-Business-Analytics-9.1-Information-leakage-(CVE-2021-31601).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"c2ee6f0e0d76c5d723f1c4d49bba7a31": {
"name": "D-Link DCS系列监控 CNVD-2020-25078.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"223665aadf95e107044299efd5f5a3ad": {
"name": "Dlink_Info_Leak_CVE_2019_17506.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"609ea75aaaba98020be2f48b0b9c71ac": {
"name": "MessageSolution ╙╩╝■╣Θ╡╡╧╡═│EEA ╨┼╧ó╨╣┬╢┬⌐╢┤ CNVD-2021-10543.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"b7871a389491e8d527b01a497e5923ab": {
"name": "FAUST-iServer-File-Read-(CVE-2021-34805).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"9b5b4663b0e49f3054baa8b03f4b8251": {
"name": "WebLogic-XML-External-Entity-(XXE)-Injection-(CVE-2019-2647).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"4e6085622d0b1aabe2fc501b95c6422a": {
"name": "SDWAN_Smart_Gateway_Default_Password.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"abd57a48f7ecfdf745e9ab6a5de449a7": {
"name": "lanproxy-Directory-Traversal-(CVE-2021-3019).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"4671d9241d7f7e020a9760a01827cbfb": {
"name": "Oracle_Weblogic_LDAP_RCE_CVE_2021_2109.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"a865cb71b347ee3d5a2f8419243228b8": {
"name": "GitLab Graphql邮箱信息泄露漏洞 CVE-2020-26413.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"fdde0d071b58400d36515b32c186b04e": {
"name": "WordPress-Plugin-SecureCopyContentProtection-SQLi-CVE-2021-24931.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"b428a781ab256a6a3b6f29bf97a499a8": {
"name": "╚±╜▌NBR┬╖╙╔╞≈ EWEB═°╣▄╧╡═│ ╘╢│╠├ⁿ┴ε╓┤╨╨┬⌐╢┤.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"31004118ce169c297848ddbec130266a": {
"name": "TongDa-OA-report_bi.func.php-SQLI.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"f088010d04f010ddf7215a6577d4d41b": {
"name": "Redash-10.0.0-default-SECRET_KEY-(CVE-2021-41192).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"76a4dc6c2a4f0c6511a337432d1d149e": {
"name": "ACTI-Camera-images-File-read.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"50d4eca509a55f304b27efcc469ae035": {
"name": "HanWang-Time-Attendance-SQL-injection.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"ed7457a2013efe01a62120aea7c6b3f6": {
"name": "Apache Solr╚╬╥Γ╬─╝■╢┴╚í┬⌐╢┤.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"b61bb35a3c26308852e66d01c4db6679": {
"name": "FineReport_v8.0_Arbitrary_file_read_.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"8cddacc20b98d2a525acbaaa776e332d": {
"name": "Oracle-Weblogic-Server-Deserialization-RCE(CVE-2018-2628).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"7ba8d60703d63f1b72ea1f6df82e620a": {
"name": "BIG-IP-iControl-REST-vulnerability-(CVE-2022-1388).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"9ade0aea9e52cc5d8108c303762431db": {
"name": "Apache_Druid_Abritrary_File_Read_CVE-2021-36749.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"54beaedd5e80a4f717351ec63de63f8a": {
"name": "Seeyon_OA_A6__Disclosure_of_database_sensitive_information.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"4877fe2bc0042a137bfa8478884e5587": {
"name": "Drupal-avatar_uploader-Local-File-Inclusion-(CVE-2018-9205).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"5140e8a0c53d9d8a2c9835422d1eaba7": {
"name": "Node.js_Path_Traversal_CVE_2017_14849.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"86084e93708ea725109f1a12f5d9a846": {
"name": "Emby-MediaServer-3-Directory-Traversal-File-Disclosure.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"bb5ef3c6bd0a07621707a0e2acd5fbd3": {
"name": "Cisco-HyperFlex-HX-Data-Platform-File-Upload-(CVE-2021-1499).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"a5308e45c4ad40de261e65de07b7e276": {
"name": "H5S_video_platform_GetSrc_information_leakage.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"d97b272ccb8ac2178042c3409925f355": {
"name": "Apache_JSPWiki_Log4shell_CVE_2021_44228_1.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"6e64e2648d8ebc59ca20a8d14616eb0b": {
"name": "Apache_OFBiz_Log4shell_CVE-2021-44228.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"25387ab958a00e618de9f0c0461c8cbf": {
"name": "Finetree_5MP_default_password_or_Unauthorized_user_added.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"e0765bf12dabcfcb15e6ccad191fd8ee": {
"name": "Weaver-OA-E-Cology-WorkflowServiceXml-RCE.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"727ec52e60cf065531b851acd588d647": {
"name": "Weaver_EOffice_Arbitrary_File_Upload_CNVD-2021-49104.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"5aecc54b2d5cc0bdf01e7f6d6ee6465f": {
"name": "Cisco-ASA-and-FTD-File-Read-(CVE-2020-3452).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"35dd58381918998754743db9e4862ea6": {
"name": "VMware-Workspace-ONE-Access-&-Identity-Manager-Remote-Code-Execution-(CVE-2022-22954).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"768ba6226cb4a2155b199b3b2f127b05": {
"name": "cve_2022_1388_goby.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"bb2431cb5cb53f91248dba3a0e2dc5b7": {
"name": "SEACMS-sql.class.php-GetShell.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"5c2c51f516163477c49104229930a6ac": {
"name": "Couchdb_Add_User_Not_Authorized_CVE_2017_12635.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"593e6a8352ec2c0796ddbc6ff68399f9": {
"name": "HanWang_Time_Attendance_SQL_injection.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"d5aa67a1322f0b07ffcea2257d1800ba": {
"name": "Weaver-e-cology-OA-getdata.jsp-SQLi.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"a349a8393c866809cf859a5fd7c78c22": {
"name": "Struts2-S2-016-RCE-(CVE-2013-2251).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"1644a4adda314d9a3c7958d01e0a0fa9": {
"name": "AVCON-6-download.action-File-Read-(CNVD-2020-30193).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"70c97ad27ab3106b416edb126170ef11": {
"name": "China_Mobile_Yu_routed_the_login_bypass.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"782a536a81c47a2bf9fad46df59f2d26": {
"name": "S2-NetBox-RCE.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"2e21198febe03ec146c8cb204864b340": {
"name": "Apache_JSPWiki_Log4shell_CVE_2021_44228_2.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"40c9cb3f5944d784e8c04962c2cb6448": {
"name": "cisco-prime-infrastructure-unauthorized-RCE(CVE-2019-1821).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"2ff61ce65589837ce0180026666f9f22": {
"name": "Atlassian_Confluence_OGNL_Injection_RCE_CVE_2022_26134.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"bea8d7624c6e4155120ab9e855dea90f": {
"name": "Apache Solr Log4j JNDI RCE.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"13a13d2160724740b34deb770bfb69f1": {
"name": "Weaver_e_office_UploadFile.php_file_upload_CNVD_2021_49104.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"b0beacb060c07948e997933519adb9d8": {
"name": "Struts2_Log4Shell_CVE_2021_44228_2.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"e65c59b361fe067015eedfaf8fd2ca10": {
"name": "ZhongkeWangwei_Next_generation_firewall_File_read.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"9c36ef1e6f1ec20c411739b574a61d35": {
"name": "SangFor-Application-Delivery-Arbitrary-File-Download.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"64cffde1b1576d5de708be0a96006c16": {
"name": "SaltStack-pillar_roots.write-File-Write-(CVE-2021-25282).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"a2feafa5868cdc9160e42c82d37376f6": {
"name": "帆软报表 v8.0 任意文件读取漏洞 CNVD-2018-04757.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"e25d512c304212880d216f7fcc3fc8cd": {
"name": "FineReport_Directory_traversal.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"8ecbbdd6cab2475e19f1e6cf1b3e57b9": {
"name": "Ruijie-NBR-Router-RCE.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"1e54701e9a5a6875a69f787db649b864": {
"name": "C-Lodop-Arbitrary-File-Read-(CNVD-2019-43826).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"8ad2c2490982fdeebf333b3f927809f4": {
"name": "GoCD-Arbitrary-File-Read.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"bf35a8a622d1b62d08a3a5af1147d463": {
"name": "tongda-OA-front-end-sqli.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"4de84efd5620da591ab20bb0adaa53c4": {
"name": "MobileIron_Log4shell_CVE_2021_44228.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"519beefd5d62e10c52e8e5803b6db9ac": {
"name": "Weblogic SSRF┬⌐╢┤ CVE-2014-4210.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"bd19e9cae8cb61d79ecb71386ea98365": {
"name": "TopSec_Reporter_Arbitrary_file_download_CNVD_2021_41972.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"fd3df4370b22f6c50f99e6e762cb71b7": {
"name": "Ruijie_Smartweb_Default_Password_CNVD_2020_56167.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"9144a3aa9b3da554f97d59617fd6b715": {
"name": "Consul-Service-API-RCE.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"970a1a1f171d96da000b483f416566ca": {
"name": "Jenkins-Script-Security-and-Pipeline-RCE(CVE-2019-1003000).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"ca507246b5e6d40736bdf917d1eb846e": {
"name": "Struts2_Log4Shell_CVE-2021-44228_(3).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"81414b60e794093635d727f459227662": {
"name": "Apache--=-2.4.48-Mod_Proxy-SSRF-(CVE-2021-40438).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"21fe1fa5face7d730bef1b1cc1140ede": {
"name": "Apache_HTTP_Server_2.4.49_Path_Traversal_CVE_2021_41773.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"e64dbbbff041b3a7a8afcba01a8c4bb3": {
"name": "Multiple-models-routers-Background-RCE-CVE-2018-16752-.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"d26577844f24dc2e0d962a1a84076402": {
"name": "HEJIA-PEMS-SystemLog.cgi-Arbitrary-file_download.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"7d4220a19ae575f37bc64466ca081024": {
"name": "Cisco-CloudCenter-Suite-log4j2-Remote-command-execution-vulnerability-(CVE-2021-44228).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"f10d3eb201ea71485347fe09dfa2f31a": {
"name": "Grafana_Plugins_Arbitrary_File_Read.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"5767782dc67cb0a6430df11f413e3f57": {
"name": "Apache-Axis2-1.4.1-Remote-Directory-Traversal-Vulnerability-(CVE-2010-0219).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"b1727b14e635fb58200964660bd3870e": {
"name": "SVN-repository-found.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"3c659236ea278bd4c470e09b4812eeed": {
"name": "Klog-Server-Unauth-RCE(CVE-2020-35729).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"80f47dc9ff7b40520d1dbe16db2fc204": {
"name": "SolarWinds-Orion-Local-File-Disclosure-(CVE-2020-10148).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"02bd83a2f1ce7993ca2e90cd8ec452b1": {
"name": "ZZZCMS_parserSearch_RCE.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"4ba9cdb5615aa85d2f67d6af1767feb7": {
"name": "Websvn-2.6.0-RCE-(CVE-2021-32305).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"703e5a38b6cd3894df26688bcca67907": {
"name": "Gitlab_RCE_CVE_2021_22205.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"51c8bb3f94738265fd1f1379db71b750": {
"name": "AIC-Intelligent-Campus-System-Password-Leak.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"12a823fb644ff0abe7e9a9e120ab6c66": {
"name": "Alibaba Nacos 控制台默认弱口令.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"62a9cac214ca52d661c2b767e6ca674d": {
"name": "Panabit_Application_Gateway_ajax_top_backstage_RCE.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"e5a51e114a7ec6987b269d621c4c0514": {
"name": "Weaver-EOffice-UploadFile.php-File-Upload-(CNVD-2021-49104).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"3b28de893f9e84769162946c8e6252da": {
"name": "Apache_Flink_CVE_2020_17519.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"c36aadd2f5ebe8842bc898ad57bb44ee": {
"name": "Apache_CouchDB_Remote_Privilege_Escalation_CVE-2017-12635.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"c6c8cbacf99154e39e291a6fb801e054": {
"name": "Adobe_ColdFusion_LFI_CVE-2010-2861.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"3ddded841c34e757e81e5f84cf792e00": {
"name": "Jinher_OA_C6_download.jsp_Arbitrary_file_read.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"d5d1da0709d717f2c1f53a230657509f": {
"name": "Hikvision_RCE_CVE_2021_36260.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"c9638c7627a2c5153dde2e538825f9e7": {
"name": "Apache-Druid-Arbitrary-File-Read-(CVE-2021-36749).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"d51a9ca795197bb0604b5ec76c88e65c": {
"name": "WSO2_Management_Console_Reflected_XSS_CVE_2022_29548.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"c61eead0371420ca22bd2bdea5e22292": {
"name": "Apache_Dubbo_Admin_Default_Password.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"b9e407321e320e0a73203f6ec5eb4923": {
"name": "KevinLAB-BEMS-1.0-backdoor-(CVE-2021-37292).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"40b0b5bc14f9f2743c35684b32462814": {
"name": "Node.js-systeminformation-(CVE-2021-21315).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"c8d14a8c81b8729477d4aa82b1e3f1fd": {
"name": "Spring_Boot_Actuator_Logview_Path_Traversal_CVE_2021_21234.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"2e6015b3538cb33157d7b311a4639ed8": {
"name": "Weaver-E-office-do_excel.php-file-inclusion-vulnerability.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"3186d10d0d65d2f6f8174555b85e303d": {
"name": "Microsoft-SharePoint-Server-CVE-2019-0604-Remote-Code-Execution-Vulnerability.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"538999745b3484a76aa0578668eba4c0": {
"name": "QiAnXin_Tianqing_terminal_security_management_system_client_upload_file.json_getshell.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"34de4bd6fc81c186a4e4ee157ee52c84": {
"name": "Red-Hat-Jboss-Application-Server-CVE-2017-7504-Remote-Code-Execution-Vulnerability.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"e8ab4d164f3a54227dfa023befb0d849": {
"name": "weaver_OA_E_Cology_getSqlData_SQL_injection_vulnerability.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"061141ffcd0c4426f03bdc3aee6119e7": {
"name": "TerraMaster-TOS-Information-Disclosure-(CVE-2020-28185).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"e254282ebf6440e7544a975b32143ea3": {
"name": "Huijietong_cloud_video_list_Information_leakage.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"a9ce8603deac638a6df422f29af88a50": {
"name": "Laravel-Framework-Voyager-Path-traversal.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"41854aba89fce02cf8cb58f58906c5cc": {
"name": "H5S_video_platform_GetUserInfo_Account_password_leakage.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"58af091eb9d9e6514509a0a5f2bdb274": {
"name": "Apache_Druid_Abritrary_File_Read_CVE_2021_36749.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"5ac13b5d0b6f5fcfd50d1e1e4289070a": {
"name": "Yonyou_UFIDA_NC_bsh.servlet.BshServlet_rce.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"46ed33d1cc7c5ae3e905809a0ad34b09": {
"name": "FortiLogger-Unauth-Arbitrary-File-Upload(CVE-2021-3378).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"da68097fc7a115d523d093bd04d40ce0": {
"name": "Discuz_ML_3.x_RCE__CNVD_2019_22239.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"66f797a3d19d97f0f1a1de8bfe26fd92": {
"name": "Kyan-Network-monitoring-time-RCE.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"2a44e2e2ebaf70920d0bc4f0b110da64": {
"name": "Jellyfin-Audio-File-read-(CVE-2021-21402).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"ae1af34c40132541ba62bb00b3238b0e": {
"name": "Huijietong-cloud-video-list-Information-leakage.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"b3b5824849bee0bc6672b08c819b6ef2": {
"name": "HD-Network-Real-time-Monitoring-System-2.0-Local-File-Inclusion-(CVE-2021-45043).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"800afabbac285f379f6e466625a100ba": {
"name": "Tiki-Wiki-CMS-RCE-(CVE-2020-15906-CVE-2021-26119).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"51d50c983a207b935c1b81920799b58b": {
"name": "Topsec-DLP-unauthorized-password-change.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"da134256d53aedb4eb7b1617fa16697e": {
"name": "VMWare_Horizon_Log4shell_CVE_2021_44228.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"b35a3ffa3aba56807cdf907c5dcdb36b": {
"name": "NETGEAR-DGND3700v2-┬╖╙╔╞≈-c4_IPAddr-╘╢│╠├ⁿ┴ε╓┤╨╨┬⌐╢┤.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"208f632b2ca7cb9623460474bd2bd58a": {
"name": "Coremail_configuration_information_disclosure.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"20bddf607f92e63aa23e0d29b1aad244": {
"name": "Laravel .env 配置文件泄露 CVE-2017-16894.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"6a22c16ddfc2d14b3241075103215131": {
"name": "Sangfor-VDI-unauthorized-RCE.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"ce5120cb72c9cb9e3bafea379865a374": {
"name": "D_Link_Dir_645_getcfg.php_Account_password_disclosure_CVE_2019_17506.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"b5ad385e18cb06c2be45257da3412457": {
"name": "Longjing_Technology_BEMS_API_1.21_Remote_Arbitrary_File_Download.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"69e26a8e6c44a00eb65985c3be35b7a1": {
"name": "Dlink_850L_Info_Leak.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"b0fda007112345f33256bb8788cf8f4d": {
"name": "HotelDruid_Hotel_Management_Software_v3.0.3_XSS_CVE_2022_26564.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"094150425a71cab30ad800bdbd6fb7ea": {
"name": "Ruijie-RG-UAC-Information-Disclosure-CNVD-2021-14536.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"ab347e89d1c470cba12027a3942ac618": {
"name": "ShopXO_download_File_read_CNVD_2021_15822.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"a618daf60f69e01f6499524b6866e8ed": {
"name": "H3C-SECPATH-Operations-and-Maintenance-Audit-System.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"9a57c026718cc8c24badcde9ac902177": {
"name": "Payara-Micro-Community-Information-Leakage-(CVE-2021-41381).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"8d2992a788ea777603eefa4610d379d1": {
"name": "ProFTPD-1.3.5-mod_copy-File-Write-(CVE-2015-3306).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"e7271db1b4aa3dafc090e2212afdd3d4": {
"name": "D_Link_AC_Centralized_management_system__Default_weak_password.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"48cdf84a18e798ef80ed6cddfe07b49e": {
"name": "Apache_Druid_Log4shell_CVE_2021_44228.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"a8d7b081ec8d3ed4dc4cb274498a7cc9": {
"name": "NVS3000_integrated_video_surveillance_platform_is_not_accessible.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"f26ab9e297826f1fd01248046937045b": {
"name": "Apache_APISIX_Dashboard_RCE_CVE_2021_45232.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"63f83873cbabf9c9b4eef91ae41f9cee": {
"name": "Multiple-RedHat-JBoss-Products-CVE-2015-7501-Remote-Code-Execution-Vulnerability.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"f708c80e508edf91f4f5d1113f21c57c": {
"name": "Apache-OFBiz-XXE-File-Read-(CVE-2018-8033).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"ff1cd9990474ddb2852036b5ba501045": {
"name": "Fastjson-1.2.24-RCE-(CNVD-2017-02833).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"13c130935976c90172272277e05315a1": {
"name": "Websphere-Portal-SSRF.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"4207bf03a044d2a586c6b12453c76602": {
"name": "VMware_Workspace_ONE_Access_RCE_CVE_2022_22954.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"a6834800273313aa36e9a05ee3c2befd": {
"name": "yycms_XSS.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"792d3d1c8f46a3b9a819fe0e2eccc795": {
"name": "来福云SQL注入漏洞.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"3a97b82d56f009fbae645d5b7262cfad": {
"name": "DSS-File-Read.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"8f8343a0cf92a9f826c0b5ecd7604052": {
"name": "yiyou__moni_detail.do_Remote_command_execution.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"8bede77eae60bbc5efdc80f7db71eab5": {
"name": "DS_Store-found.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"e7001fc8e83b07a70beb3e21ef4dbebc": {
"name": "Adslr_Enterprise_online_behavior_management_system_Information_leak.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"dc3eac1393af29cf40ae77752cc4c3ab": {
"name": "Selea-OCR-ANPR-SeleaCamera-File-read.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"810c116cb3e2e3c05eae234cef920dcf": {
"name": "Confluence_RCE_CVE_2021_26084.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"9d62a977bd713984e35e5b68f986f9c9": {
"name": "kkFileView-SSRF-vulnerability.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"3e640284fd6e5d0ee52f8fd9475daadd": {
"name": "Panabit-Application-Gateway-ajax_top-backstage-RCE.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"26ab0b550bb6abb456957bd1bd674f74": {
"name": "Apache-OFBiz-rmi-RCE-(CVE-2021-26295).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"2c354d99ef600cc9bf3cd2a12be4d533": {
"name": "Apache-James-Log4j2-command-execution-vulnerability(CVE-2021-44228).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"e984c9ad3f46c5a8daba88a0df1be1cd": {
"name": "Mida-eFramework-ajaxreq.php-RCE(CVE-2020-15920).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"980357c88140dad74c60b48a09d78e81": {
"name": "H3C-Next-generation-firewall-File-read.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"c888bd37d381995ebf0558debf96b718": {
"name": "Struts2_Log4Shell_CVE-2021-44228_(2).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"03c5ab4778009a32ad9553cfb68273d9": {
"name": "TerraMaster-TOS-RCE-(CVE-2020-15568).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"babff9cc90536d6ad5bc3f923f8394d2": {
"name": "Node_RED_ui_base_Arbitrary_File_Read.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"21e5838493888e05386ea4c3ef7cff80": {
"name": "SPON_IP_network_intercom_broadcast_system_exportrecord.php_any_file_download.go",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"c5dc43101dd99807c19debc23dfbe853": {
"name": "FLIR-AX8-Arbitrary-File-Download-Vulnerability.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"3e07a88409749c1b30d98de2a3d36e0d": {
"name": "WordPress_WPQA_plugin_Unauthenticated_Private_Message_Disclosure_CVE_2022_1598.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"7d47803625ad9964d2cfce3a673de6ad": {
"name": "Microsoft_Exchange_Server_SSRF_CVE_2021_26885.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"574c99c08cc79072ea117544f14f57c0": {
"name": "WebLogic-deserialize-asyncresponseservice(CVE-2019-2725).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"453cebf0cc68a679785f02cc242eee78": {
"name": "SPON-IP-network-intercom-broadcast-system-ping.php-RCE.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"0bfe46a0e293ae374b4ec2db66605465": {
"name": "Confluence-Viewdecorator.action-File-Read-(CVE-2015-8399).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"e0b757ea64e7c0ae32ef92f899220377": {
"name": "D-Link AC集中管理系统默认弱口令.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"3a56208401d9b0ee31eb0bdb0c06fb4a": {
"name": "Wheelon-e-Ditong-VPN-infoformation-leakage.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"6625b49b381e6eb51887a9b21b2cebb9": {
"name": "ZhongkeWangwei-Next-generation-firewall-File-read.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"c48f56d2402578c55c9f70e09b6f9b35": {
"name": "Amcrest-Dahua-Unauthenticated-Audio-Streaming-(CVE-2019-3948).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"4402e17e835a29e737ce162f4f05d7f7": {
"name": "D-Link-DSL-2888A-RCE-(CVE-2020-24581).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"c5a12f436a6d37f49a873e1c97d3a617": {
"name": "Zhejiang_Dahua_DSS_System_Filedownload_CNVD_2020_61986.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"d446c748a63e3a86cb780be300c1d486": {
"name": "Struts2_Log4Shell_CVE-2021-44228_(1).json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"
},
"f74a142a3fd9fee409f09d7c1e0e4275": {
"name": "Spring_Cloud_Gateway_Actuator_API_SpEL_Code_Injection_CVE_2022_22947.json",
"from": "https://github.com/cqr-cryeye-forks/goby-pocs",
"up_time": "2022-12-16 05:10:33"