-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
12819 lines (11729 loc) · 543 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 lang="zh-CN">
<head>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="viggo" />
<title>hirak0の导航站 - </title>
<meta name="keywords" content="">
<meta name="description" content="">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="stylesheet" href="/css/hclonely.css">
<link rel="stylesheet" href="//fonts.loli.net/css?family=Arimo:400,700,400italic.css">
<link rel="stylesheet" href="/css/fonts/linecons/css/linecons.min.css">
<link rel="stylesheet" href="/css/fonts/fontawesome/css/all.min.css">
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/xenon-core.min.css">
<link rel="stylesheet" href="/css/xenon-components.min.css">
<link rel="stylesheet" href="/css/xenon-skins.min.css">
<link rel="stylesheet" href="/css/nav.min.css">
<script src="/js/jquery-1.11.1.min.js"></script>
<script src="/js/header.js"></script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="/js/html5shiv.min.js"></script>
<script src="/js/respond.min.js"></script>
<![endif]-->
<!-- / FB Open Graph -->
<meta property="og:type" content="article">
<meta property="og:url" content="http://example.com/index.html">
<meta property="og:title" content="hirak0の导航站 - ">
<meta property="og:description" content="">
<meta property="og:site_name" content="hirak0の导航站 - ">
<meta property="og:image" content="/images/webstack_banner_cn.png">
<!-- / Twitter Cards -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="hirak0の导航站 - ">
<meta name="twitter:description" content="">
<meta name="twitter:image" content="/images/webstack_banner_cn.png">
<!-- 直接添加html内容即可 -->
<!-- 可设置多行 -->
<meta name="generator" content="Hexo 5.4.0"></head>
</head>
<body class="page-body">
<div class="page-container">
<div class="sidebar-menu toggle-others fixed">
<div class="sidebar-menu-inner">
<header class="logo-env">
<div class="logo">
<a href="/index.html" class="logo-expanded">
<img src="/images/logo@2x.png" width="100%" alt="" />
</a>
<a href="/index.html" class="logo-collapsed">
<img src="/images/logo-collapsed@2x.png" width="40" alt="" />
</a>
</div>
<div class="mobile-menu-toggle visible-xs">
<a href="#" data-toggle="user-info-menu">
<i class="linecons-cog"></i>
</a>
<a href="#" data-toggle="mobile-menu">
<i class="fas fa-bars"></i>
</a>
</div>
</header>
<ul id="main-menu" class="main-menu">
<li>
<a class="fas fa-angle-down" style="cursor: pointer;">
<i class="fas fa-circle-notch"></i>
<span class="title">初学者推荐</span>
</a>
<ul>
<li>
<a href="#初学者推荐" class="smooth">
<i class="fa fa-tint"></i>
<span class="title">初学者推荐</span>
</a>
</li>
</ul>
</li>
<li>
<a class="fas fa-angle-down" style="cursor: pointer;">
<i class="fas fa-circle-notch"></i>
<span class="title">漏洞平台</span>
</a>
<ul>
<li>
<a href="#热门浏览推荐" class="smooth">
<i class="fa fa-tint"></i>
<span class="title">热门浏览推荐</span>
</a>
</li>
<li>
<a href="#国外漏洞平台" class="smooth">
<i class="fas fa-paper-plane"></i>
<span class="title">国外漏洞平台</span>
</a>
</li>
<li>
<a href="#国内漏洞平台" class="smooth">
<i class="fas fa-circle-notch"></i>
<span class="title">国内漏洞平台</span>
</a>
</li>
<li>
<a href="#SRC众测平台" class="smooth">
<i class="fa fa-globe"></i>
<span class="title">SRC众测平台</span>
</a>
</li>
</ul>
</li>
<li>
<a class="fas fa-angle-down" style="cursor: pointer;">
<i class="fas fa-book"></i>
<span class="title">知识学习</span>
</a>
<ul>
<li>
<a href="#APT攻防" class="smooth">
<i class="fab fa-autoprefixer"></i>
<span class="title">APT攻防</span>
</a>
</li>
<li>
<a href="#前端安全" class="smooth">
<i class="fas fa-balance-scale"></i>
<span class="title">前端安全</span>
</a>
</li>
<li>
<a href="#技能路线" class="smooth">
<i class="fas fa-layer-group"></i>
<span class="title">技能路线</span>
</a>
</li>
<li>
<a href="#知识分享" class="smooth">
<i class="fas fa-hand-holding-heart"></i>
<span class="title">知识分享</span>
</a>
</li>
<li>
<a href="#在线学习" class="smooth">
<i class="fas fa-laptop"></i>
<span class="title">在线学习</span>
</a>
</li>
<li>
<a href="#CTF学习" class="smooth">
<i class="fas fa-map"></i>
<span class="title">CTF学习</span>
</a>
</li>
<li>
<a href="#文章资源" class="smooth">
<i class="fas fa-map-marked"></i>
<span class="title">文章资源</span>
</a>
</li>
<li>
<a href="#代码托管" class="smooth">
<i class="fas fa-code"></i>
<span class="title">代码托管</span>
</a>
</li>
</ul>
</li>
<li>
<a class="fas fa-angle-down" style="cursor: pointer;">
<i class="fas fa-shield-alt"></i>
<span class="title">安全世界</span>
</a>
<ul>
<li>
<a href="#区块链安全" class="smooth">
<i class="fas fa-project-diagram"></i>
<span class="title">区块链安全</span>
</a>
</li>
<li>
<a href="#交流社区" class="smooth">
<i class="fas fa-comments"></i>
<span class="title">交流社区</span>
</a>
</li>
<li>
<a href="#逆向破解" class="smooth">
<i class="fas fa-cogs"></i>
<span class="title">逆向破解</span>
</a>
</li>
<li>
<a href="#安全博客" class="smooth">
<i class="fas fa-blog"></i>
<span class="title">安全博客</span>
</a>
</li>
<li>
<a href="#安全门户" class="smooth">
<i class="fas fa-columns"></i>
<span class="title">安全门户</span>
</a>
</li>
<li>
<a href="#安全团队" class="smooth">
<i class="fas fa-object-group"></i>
<span class="title">安全团队</span>
</a>
</li>
<li>
<a href="#安全公司" class="smooth">
<i class="fas fa-compact-disc"></i>
<span class="title">安全公司</span>
</a>
</li>
<li>
<a href="#安全产品" class="smooth">
<i class="fab fa-product-hunt"></i>
<span class="title">安全产品</span>
</a>
</li>
</ul>
</li>
<li>
<a class="fas fa-angle-down" style="cursor: pointer;">
<i class="fas fa-toolbox"></i>
<span class="title">在线工具</span>
</a>
<ul>
<li>
<a href="#在线工具" class="smooth">
<i class="fas fa-tools"></i>
<span class="title">在线工具</span>
</a>
</li>
<li>
<a href="#搜索引擎" class="smooth">
<i class="fas fa-search"></i>
<span class="title">搜索引擎</span>
</a>
</li>
<li>
<a href="#社工利器" class="smooth">
<i class="fab fa-optin-monster"></i>
<span class="title">社工利器</span>
</a>
</li>
<li>
<a href="#入侵检测" class="smooth">
<i class="fas fa-person-booth"></i>
<span class="title">入侵检测</span>
</a>
</li>
<li>
<a href="#密码破解" class="smooth">
<i class="fas fa-user-secret"></i>
<span class="title">密码破解</span>
</a>
</li>
<li>
<a href="#文件分析" class="smooth">
<i class="fas fa-file-medical-alt"></i>
<span class="title">文件分析</span>
</a>
</li>
<li>
<a href="#威胁情报" class="smooth">
<i class="fas fa-exclamation-triangle"></i>
<span class="title">威胁情报</span>
</a>
</li>
<li>
<a href="#在线靶机" class="smooth">
<i class="fab fa-pinterest"></i>
<span class="title">在线靶机</span>
</a>
</li>
<li>
<a href="#网络攻击" class="smooth">
<i class="fab fa-internet-explorer"></i>
<span class="title">网络攻击</span>
</a>
</li>
<li>
<a href="#移动安全" class="smooth">
<i class="fas fa-mobile-alt"></i>
<span class="title">移动安全</span>
</a>
</li>
</ul>
</li>
<li>
<a class="fas fa-angle-down" style="cursor: pointer;">
<i class="fas fa-globe"></i>
<span class="title">国外安全</span>
</a>
<ul>
<li>
<a href="#国外论坛" class="smooth">
<i class="fas fa-globe-africa"></i>
<span class="title">国外论坛</span>
</a>
</li>
<li>
<a href="#国外团队" class="smooth">
<i class="fas fa-globe-europe"></i>
<span class="title">国外团队</span>
</a>
</li>
<li>
<a href="#国外视频" class="smooth">
<i class="fas fa-globe-asia"></i>
<span class="title">国外视频</span>
</a>
</li>
</ul>
</li>
<li>
<a class="fas fa-angle-down" style="cursor: pointer;">
<i class="fas fa-toolbox"></i>
<span class="title">利器合集</span>
</a>
<ul>
<li>
<a href="#利器分享" class="smooth">
<i class="fas fa-tools"></i>
<span class="title">利器分享</span>
</a>
</li>
<li>
<a href="#文件下载" class="smooth">
<i class="fas fa-cloud-download-alt"></i>
<span class="title">文件下载</span>
</a>
</li>
<li>
<a href="#开源工具" class="smooth">
<i class="fab fa-github"></i>
<span class="title">开源工具</span>
</a>
</li>
</ul>
</li>
<li class="submit-tag">
<a href="/about/">
<i class="far fa-heart"></i>
<span class="tooltip-blue">关于本站</span>
</a>
</li>
<li>
<a href="javascript:void(0)">
<i class="fas fa-eye"></i>
<span id="busuanzi_container_site_pv">本站总访问量<span id="busuanzi_value_site_pv"></span></span>
</a>
</li>
<li>
<a href="javascript:void(0)">
<i class="fas fa-users"></i>
<span id="busuanzi_container_site_uv">本站总访客数<span id="busuanzi_value_site_uv"></span></span>
</a>
</li>
</ul>
</div>
</div>
<div class="main-content">
<nav class="navbar user-info-navbar" role="navigation">
<ul class="user-info-menu left-links list-inline list-unstyled">
<li class="hidden-sm hidden-xs hover-line">
<a href="#" data-toggle="sidebar">
<i class="fas fa-bars"></i>
</a>
</li>
<li class="dropdown hover-line language-switcher">
<a href="/index.html" class="dropdown-toggle" data-toggle="dropdown">
<img src="/images/flags/flag-cn.png" alt="flag-cn" /> Chinese
</a>
<ul class="dropdown-menu languages">
<li class="active">
<a href="/index.html">
<img src="/images/flags/flag-cn.png" alt="flag-cn" alt="flag-cn" /> Chinese
</a>
</li>
</ul>
</li>
<li class="switch-mode hover-line" onclick="switchNightMode()">
<a href="#">
<svg t="1593061068148" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1681" width="16" height="16">
<path d="M582.4 326.4c-140.8 0-256 115.2-256 256s115.2 256 256 256 256-115.2 256-256-115.2-256-256-256z m0 448c-70.4 0-131.2-36.8-164.8-92.8 12.8 3.2 27.2 4.8 40 4.8 121.6 0 219.2-99.2 219.2-219.2 0-17.6-1.6-35.2-6.4-52.8 60.8 32 102.4 96 102.4 169.6 1.6 104-84.8 190.4-190.4 190.4zM582.4 262.4c17.6 0 32-14.4 32-32v-128c0-17.6-14.4-32-32-32s-32 14.4-32 32v128c0 17.6 14.4 32 32 32zM262.4 582.4c0-17.6-14.4-32-32-32h-128c-17.6 0-32 14.4-32 32s14.4 32 32 32h128c17.6 0 32-14.4 32-32zM310.4 356.8c6.4 6.4 14.4 9.6 22.4 9.6 8 0 16-3.2 22.4-9.6 12.8-12.8 12.8-32 0-44.8l-91.2-91.2c-12.8-12.8-32-12.8-44.8 0-12.8 12.8-12.8 32 0 44.8l91.2 91.2zM944 220.8c-12.8-12.8-32-12.8-44.8 0l-91.2 91.2c-12.8 12.8-12.8 32 0 44.8 6.4 6.4 14.4 9.6 22.4 9.6 8 0 16-3.2 22.4-9.6l91.2-91.2c12.8-12.8 12.8-33.6 0-44.8zM310.4 808l-91.2 91.2c-12.8 12.8-12.8 32 0 44.8 6.4 6.4 14.4 9.6 22.4 9.6 8 0 16-3.2 22.4-9.6l91.2-91.2c12.8-12.8 12.8-32 0-44.8-11.2-11.2-32-11.2-44.8 0z" p-id="1682" fill="#707070"></path>
</svg>
</a>
</li>
</ul>
<a target="_blank" rel="noopener" href="https://github.com/HCLonely/hexo-theme-webstack" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style>
</nav>
<section class="sousuo">
<div class="search">
<div class="search-box">
<span class="search-icon" style="background: url(/images/search_icon.png) 0px 0px; opacity: 1;"></span>
<input type="text" id="txt" class="search-input" autocomplete="off" placeholder="请输入关键字,按回车 / Enter 搜索">
<button class="search-btn" id="search-btn"><i class="fa fa-search"></i></button>
</div>
<!-- 搜索热词 -->
<div class="box search-hot-text" id="box" style="display: none;">
<ul></ul>
</div>
<!-- 搜索引擎 -->
<div class="search-engine" style="display: none;">
<div class="search-engine-head">
<strong class="search-engine-tit">选择您的默认搜索引擎:</strong>
<div class="search-engine-tool">搜索热词: <span id="hot-btn"></span></div>
</div>
<ul class="search-engine-list search-engine-list_zmki_ul">
</ul>
</div>
</section>
<script>search()</script>
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="初学者推荐"></i>初学者推荐</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://github.com/SecWiki/sec-chart', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/SecWiki/sec-chart">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/buchong/1-1.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>安全思维导图集合</strong>
</a>
<p class="overflowClip_2">安全思维导图集合</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.sec-wiki.com/skill/index', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.sec-wiki.com/skill/index">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/buchong/1f494057df8a5bb07b964b6978c14518.jpg" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>安全技能点</strong>
</a>
<p class="overflowClip_2">了解常见安全职位需要具备什么样的能力和技术</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.anquanquan.info/sifangcai/tuijian/jinengzhou.pdf', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.anquanquan.info/sifangcai/tuijian/jinengzhou.pdf">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/buchong/4b5a16e11662bbe48750efe7468dafbd.jpg" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>安全技能时间轴</strong>
</a>
<p class="overflowClip_2">技能时间轴,帮助你系统的学习和了解你需要学习哪些知识</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.shentoushi.top/Public/upload/images/2017-07-09/Sisso_skills_table.jpg', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.shentoushi.top/Public/upload/images/2017-07-09/Sisso_skills_table.jpg">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/buchong/7c4a1499f3958613d09a5f8301794a37.jpg" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>习科技能表</strong>
</a>
<p class="overflowClip_2">习科技能表</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://blog.knownsec.com/Knownsec_RD_Checklist/index.html', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://blog.knownsec.com/Knownsec_RD_Checklist/index.html">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/buchong/8d4253915103605c9d71799731fc12d2.jpg" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>知道创宇研发技能表v3.1</strong>
</a>
<p class="overflowClip_2">知道创宇研发技能表v3.1</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://evilcos.me/security_skill_tree_basic/index.html', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://evilcos.me/security_skill_tree_basic/index.html">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/buchong/40beb82c7f258412cd26131389590860.jpg" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>安全技能树简版</strong>
</a>
<p class="overflowClip_2">安全技能树简版</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://skills.bugbank.cn/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://skills.bugbank.cn/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/buchong/52cc549f223ea2709a160cccf26919c3.jpeg" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>漏洞银行技能树</strong>
</a>
<p class="overflowClip_2">漏洞银行技能树</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://github.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/buchong/52bb46babff4c1893b796573006571b0.jpg" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Github</strong>
</a>
<p class="overflowClip_2">Github</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://i.hacking8.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://i.hacking8.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/buchong/76c6220d4e27ab1fb939589063232945.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>HACKing信息流</strong>
</a>
<p class="overflowClip_2">干净的信息流推送工具,偏向安全圈的点点滴滴,为安全研究人员每日发现优质内容。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://wiki.bylibrary.cn', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://wiki.bylibrary.cn">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/buchong/297abe50a33ab68c52afe1e137abe54a.jpg" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>白阁文库</strong>
</a>
<p class="overflowClip_2">白阁现已永久开源至Github,无需注册,表哥可下载至本地以及满足制作工具等需求,无需求的表哥可随时访问文库网站查阅</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://github.com/SecWiki/sec-chart', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/SecWiki/sec-chart">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/buchong/443ff7669e65f7235e7e456c33ba45ed" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>安全思维导图集合</strong>
</a>
<p class="overflowClip_2">安全思维导图集合</p>
</div>
</div>
</div>
</div>
</div>
<br />
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="热门浏览推荐"></i>热门浏览推荐</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.id05.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.id05.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/buchong/favicon.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>IT同路人</strong>
</a>
<p class="overflowClip_2">IT同路人</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.anquanquan.info/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.anquanquan.info/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/buchong/logo.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>安全圈Info</strong>
</a>
<p class="overflowClip_2">安全圈Info</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('http://www.nsoad.com/nav/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="http://www.nsoad.com/nav/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/buchong/favicon.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>WLGF安全导航</strong>
</a>
<p class="overflowClip_2">WLGF安全导航</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://index.tesla-space.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://index.tesla-space.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/buchong/favicon(7).png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>HACK学习-安全导航</strong>
</a>
<p class="overflowClip_2">HACK学习-安全导航</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('http://wechat.doonsec.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="http://wechat.doonsec.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/ldpt/wechat.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>洞见微信聚合</strong>
</a>
<p class="overflowClip_2">洞见微信聚合</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.freebuf.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.freebuf.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/ldpt/freebuf.jpg" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>FreeBuf官网</strong>
</a>
<p class="overflowClip_2">FreeBuf-关注黑客与极客</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.secpulse.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.secpulse.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/ldpt/secpulse.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>安全脉搏</strong>
</a>
<p class="overflowClip_2">分享技术,悦享品质</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.anquanke.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.anquanke.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/ldpt/bobao.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>安全客</strong>
</a>
<p class="overflowClip_2">安全客-有思想的安全新媒体</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('http://wiki.ioin.in/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="http://wiki.ioin.in/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/ldpt/ioin.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Sec-News</strong>
</a>
<p class="overflowClip_2">Sec-News 安全文摘</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://bowen.navisec.it/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://bowen.navisec.it/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/ldpt/Navisec.jpg" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Navisec安全博文</strong>
</a>
<p class="overflowClip_2">NaviSec.it 网络安全博客</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://paper.seebug.org/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://paper.seebug.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/ldpt/paper.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Seebug_Paper</strong>
</a>
<p class="overflowClip_2">Paper-专注分享精品文章</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.sec-wiki.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.sec-wiki.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/ldpt/sec-wiki.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>SecWiki</strong>
</a>
<p class="overflowClip_2">SecWiki-安全维基,汇集国内外优秀安全资讯、工具和网站</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.t00ls.net/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.t00ls.net/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/ldpt/t00ls.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>土司论坛</strong>
</a>
<p class="overflowClip_2">T00LS-低调求发展</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.shodan.io/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.shodan.io/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/ldpt/shodan.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Shodan搜索引擎</strong>
</a>
<p class="overflowClip_2">Shodan搜索引擎</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://x.threatbook.cn/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://x.threatbook.cn/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/ldpt/threatbook.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>微步在线平台</strong>
</a>
<p class="overflowClip_2">微步在线-威胁情报分析平台</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://start.me/p/rxRbpo/ti', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://start.me/p/rxRbpo/ti">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/ldpt/start.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>TI-start.me</strong>
</a>
<p class="overflowClip_2">资源导航集合</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://xz.aliyun.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://xz.aliyun.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/ldpt/xianzhi.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>先知安全技术社区</strong>
</a>
<p class="overflowClip_2">先知安全技术社区</p>
</div>
</div>
</div>