├── README.md ├── css ├── index.css └── reset.css ├── images └── backTop.png ├── index.html └── js ├── data.js ├── index.js └── jquery.js /README.md: -------------------------------------------------------------------------------- 1 | # SecNavi 2 | 3 | ### 0x01 简介描述 4 | 主要用于简化个人收藏夹,对安全类网站分类,方便找到所需站点资源。站点的收集来源于个人平时的收藏夹,所以肯定存在一定的局限性,希望有安全类不错的网站可以通过issue提交添加,能汇聚大家的资源信息,形成一个相对实用简洁的网络安全导航! -------------------------------------------------------------------------------- /css/index.css: -------------------------------------------------------------------------------- 1 | html,body{ 2 | font-family: 'Microsoft JhengHei', Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif; 3 | /*font-family: 'Open Sans','Helvetica Neue',Arial,'Hiragino Sans GB','Microsoft YaHei','WenQuanYi Micro Hei',sans-serif;*/ 4 | color: #fff; 5 | background-color: #3f3f3f; 6 | } 7 | .war{ 8 | width: 90%; 9 | /*min-width: 1000px;*/ 10 | margin: 0 auto; 11 | } 12 | /*input{ 13 | margin-top: 10px; 14 | padding: 5px 10px; 15 | width: 190px; 16 | height: 20px; 17 | line-height: 20px; 18 | font-size: 14px; 19 | float: left; 20 | border: 0; 21 | background: #5C5D5D; 22 | color: #FFF; 23 | -webkit-transition: background-color 0.3s; 24 | -moz-transition: background-color 0.3s; 25 | transition: background-color 0.3s; 26 | }*/ 27 | /*header-----------------------------------------------------------------*/ 28 | header{ 29 | z-index: 1000; 30 | height: 50px; 31 | width: 100%; 32 | background: #303030; 33 | position: fixed; 34 | top: 0; 35 | left: 0; 36 | } 37 | .topBar{ 38 | /*width: 1000px;*/ 39 | position: relative; 40 | } 41 | nav{ 42 | position: absolute; 43 | top: 0px; 44 | right: 0px; 45 | } 46 | @media screen and (max-width: 1150px){ 47 | #nav{ 48 | display: none; 49 | } 50 | } 51 | .nav_ul{ 52 | overflow: hidden; 53 | } 54 | .nav_ul li{ 55 | float: left; 56 | height: 50px; 57 | line-height: 50px; 58 | margin-left: 20px; 59 | font-size: 14px; 60 | cursor: pointer; 61 | color: #eee; 62 | } 63 | .nav_ul li:hover{ 64 | color: #1FF3FD; 65 | } 66 | 67 | /*content-----------------------------------------------------------------------------------------*/ 68 | .content{ 69 | margin-top: 70px; 70 | height: auto; 71 | width: 100%; 72 | } 73 | .content_war{ 74 | margin: 20px auto; 75 | /*color: #666;*/ 76 | } 77 | .content_list{ 78 | height: auto; 79 | background-color: #3f3f3f; 80 | border-radius: 5px; 81 | /*padding: 10px;*/ 82 | margin-bottom: 20px; 83 | /*box-shadow: 1px 1px 5px #ccc;*/ 84 | } 85 | .content_list_title{ 86 | font-size: 18px; 87 | font-weight: bold; 88 | padding: 10px 0; 89 | border-bottom: 1px solid #1FF3FD; 90 | } 91 | .content_list_main{ 92 | height: auto; 93 | padding: 10px 0; 94 | overflow: hidden; 95 | } 96 | .main_classify{ 97 | height: auto; 98 | overflow: hidden; 99 | line-height: 22px; 100 | } 101 | .main_classify_name{ 102 | height: 36px; 103 | margin: 5px 0; 104 | line-height: 36px; 105 | float: left; 106 | width: 150px; 107 | color: #1FF3FD; 108 | text-align: center; 109 | background-color: #666; 110 | border-radius: 3px 0 0 3px; 111 | margin-right: 10px; 112 | font-size: 18px; 113 | font-weight: bold; 114 | position: relative; 115 | } 116 | .main_classify_war{ 117 | overflow: hidden; 118 | /*padding: 10px;*/ 119 | font-size: 14px; 120 | } 121 | .main_classify_war a{ 122 | float: left; 123 | /*首字母大写*/ 124 | text-transform:capitalize; 125 | } 126 | .main_classify_war:hover{ 127 | background-color: #303030; 128 | } 129 | .main_classify_list{ 130 | color: #FFF; 131 | line-height: 46px; 132 | padding: 0 10px; 133 | float: left; 134 | } 135 | .main_classify_list:hover{ 136 | color: #1FF3FD; 137 | background-color: #666; 138 | } 139 | .link_me{ 140 | width: 25%; 141 | height: auto; 142 | float: left; 143 | } 144 | .link_me a{ 145 | display: inline-block; 146 | } 147 | 148 | /*footer---------------------------------------------------------------------------------------*/ 149 | #footer{ 150 | background: #303030; 151 | height: auto; 152 | /* min-width: 1000px; */ 153 | bottom: 0; 154 | float: left; 155 | width: 100%; 156 | } 157 | .footer_war{ 158 | padding: 20px 0 20px 0; 159 | } 160 | .message{ 161 | text-align: center; 162 | line-height: 24px; 163 | } 164 | .declare{ 165 | text-align: center; 166 | color: #1FF3FD; 167 | line-height: 30px; 168 | } 169 | .declare a{ 170 | color: #1FF3FD; 171 | } 172 | 173 | aside{ 174 | height: 40px; 175 | width: 40px; 176 | background: #666 url(../images/backTop.png); 177 | border-radius: 5px 0 0 5px; 178 | position: fixed; 179 | bottom: 20px; 180 | right: -40px; 181 | cursor: pointer; 182 | } 183 | 184 | 185 | 186 | /*TitleTip*/ 187 | #TitleTip { 188 | /*text-align: center;*/ 189 | color: #fff; 190 | background: #000; 191 | position: absolute; 192 | z-index: 100; 193 | padding: 5px 15px; 194 | font-size: 12px; 195 | line-height: 20px; 196 | transform: translate(-50%); 197 | border-radius: 6px; 198 | max-width: 200px; 199 | /*font-family: Verdana,"Lantinghei SC","Hiragino Sans GB","Microsoft Yahei",Helvetica,arial,\5b8b\4f53,sans-serif;*/ 200 | font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; 201 | text-transform:capitalize; 202 | } 203 | #TitleTip:before { 204 | width: 0; 205 | height: 0; 206 | border-left: 8px solid transparent; 207 | border-right: 8px solid transparent; 208 | border-bottom: 8px solid rgba(0,0,0,.8); 209 | content: ''; 210 | position: absolute; 211 | left: 50%; 212 | top: -8px; 213 | margin-left: -8px 214 | } 215 | #TitleTip.top:after { 216 | border-top-color: transparent; 217 | border-bottom: 8px solid rgba(0,0,0,.8); 218 | top: -16px; 219 | bottom: auto 220 | } 221 | 222 | #TitleTip.left:after { 223 | left: 8px; 224 | margin: 0 225 | } 226 | 227 | #TitleTip.right:after { 228 | right: 8px; 229 | left: auto; 230 | margin: 0 231 | } 232 | .Icon-New{ 233 | float: left; 234 | color: #1FF3FD; 235 | font-size: 10px; 236 | margin-left: -8px; 237 | /*NEW*/ 238 | } 239 | /*logo*/ 240 | .logo{ 241 | width: 30px; 242 | margin: 10px 10px 10px 10px; 243 | height: 30px; 244 | float: left; 245 | } 246 | /*Top*/ 247 | .Tip{ 248 | width: 40px; 249 | height: 40px; 250 | margin-bottom: 20px; 251 | position: absolute; 252 | bottom: 20px; 253 | background: #e74c3c; 254 | border-radius: 5px 0 0 5px; 255 | text-align: center; 256 | line-height: 40px; 257 | color: #FFF; 258 | } 259 | .Tip a{ 260 | color: #FFF; 261 | font-size: 15px; 262 | } 263 | /*Search*/ 264 | /*字体图标*/ 265 | .iconfont, [class^="icon-"], [class*=" icon-"] { 266 | font-family: "iconfont" !important; 267 | font-size: 16px; 268 | color: #b8c4ce; 269 | font-style: normal; 270 | font-weight: normal; 271 | font-variant: normal; 272 | text-transform: none; 273 | line-height: 1; 274 | -webkit-font-smoothing: antialiased; 275 | -webkit-text-stroke-width: 0.2px; 276 | -moz-osx-font-smoothing: grayscale; 277 | /* -webkit-font-smoothing: none; 278 | -webkit-text-stroke-width: initial; 279 | -moz-osx-font-smoothing: initial;*/ 280 | }/*搜索*/ 281 | .search-hd { 282 | position: relative; 283 | float: left; 284 | top: 10px; 285 | width: 30px; 286 | height: 30px; 287 | border-radius: 15px; 288 | box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 1); 289 | transition: width .5s; 290 | background-color: #3f3f3f; 291 | } 292 | .search-hd:before { 293 | /* content:""; */ 294 | position: absolute; 295 | top: 20px; 296 | left: 0; 297 | height: 30px; 298 | border-left: 1px solid #ecf0f1; 299 | margin-left: -1px; 300 | } 301 | .search-filter { 302 | position: relative; 303 | float: left; 304 | width: 100px; 305 | height: 70px; 306 | } 307 | .search-filter:before { 308 | content: ""; 309 | position: absolute; 310 | top: 28px; 311 | right: 0; 312 | height: 14px; 313 | width: 1px; 314 | background-color: #f2f3f4; 315 | } 316 | .search-filter > a { 317 | display: block; 318 | height: 40px; 319 | margin: 15px 0; 320 | padding-left: 20px; 321 | font-size: 14px; 322 | color: #34495e; 323 | line-height: 40px; 324 | } 325 | .search-filter > a:hover { 326 | color: #f44d5a; 327 | } 328 | .search-filter > a .icon-down { 329 | margin-left: 3px; 330 | font-size: 12px; 331 | color: #b6c1c9; 332 | } 333 | .search-select { 334 | position: absolute; 335 | left: 20px; 336 | float: left; 337 | width: 26px; 338 | height: 30px; 339 | transition: width .2s; 340 | } 341 | .search-select .search-val { 342 | float: left; 343 | width: 0; 344 | border-color: transparent; 345 | height: 22px; 346 | padding: 2px 0; 347 | font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif; 348 | font-size: 14px; 349 | color: #BDC3C7; 350 | line-height: 22px; 351 | background-color: transparent; 352 | transition: width .5s; 353 | -webkit-box-sizing: content-box; 354 | box-sizing: content-box; 355 | } 356 | .search-select .search-val:focus { 357 | box-shadow: none; 358 | } 359 | .search-hd .search-hd-btn { 360 | position: absolute; 361 | right: 0; 362 | z-index: 1; 363 | float: left; 364 | width: 30px; 365 | height: 30px; 366 | padding: 0; 367 | /* background-color: #fff; */ 368 | opacity: 1; 369 | } 370 | .search-hd .search-hd-btn:before { 371 | /* content:""; */ 372 | position: absolute; 373 | top: 20px; 374 | right: 0; 375 | height: 30px; 376 | border-right: 1px solid #ecf0f1; 377 | } 378 | .search-hd .search-hd-btn .icon-search { 379 | display: block; 380 | font-size: 14px; 381 | color: #BDC3C7; 382 | line-height: 30px; 383 | text-align: center; 384 | transition: color .2s; 385 | } 386 | .search-hd .options { 387 | display: none; 388 | z-index: 90; 389 | position: absolute; 390 | top: 30px; 391 | left: 0; 392 | width: 100%; 393 | background-color: #3f3f3f; 394 | box-shadow: 0px 1px 2px rgba(0,0,0,.1); 395 | } 396 | .search-hd .options li { 397 | height: 44px; 398 | line-height: 44px; 399 | } 400 | .search-hd .options li a { 401 | display: block; 402 | padding: 0 12px 0 20px; 403 | font-size: 14px; 404 | color: #BDC3C7; 405 | } 406 | .search-hd .options li.on a, 407 | .search-hd .options li a:hover { 408 | background-color: #ecf0f1; 409 | color: #000; 410 | font-weight: bold; 411 | } 412 | /*搜索打开*/ 413 | .search-hd .search-status { 414 | position: absolute; 415 | left: 0; 416 | visibility: hidden; 417 | opacity: 0; 418 | transition: opacity .5s; 419 | } 420 | .search-hd.on { 421 | width: 219px; 422 | } 423 | .search-hd.on .search-status { 424 | visibility: visible; 425 | opacity: 1; 426 | } 427 | .search-hd.on .search-select { 428 | width: 170px; 429 | } 430 | .search-hd.on .search-select .search-val { 431 | width: 100%; 432 | } 433 | .search-hd.on .search-hd-btn .icon-search, 434 | .search-hd .search-hd-btn .icon-search:hover { 435 | color: #BDC3C7; 436 | } -------------------------------------------------------------------------------- /css/reset.css: -------------------------------------------------------------------------------- 1 | /* 2 | KISSY CSS Reset 3 | */ 4 | 5 | /* 清除内外边距 */ 6 | body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */ 7 | dl, dt, dd, ul, ol, li, /* list elements 列表元素 */ 8 | pre, /* text formatting elements 文本格式元素 */ 9 | fieldset, lengend, button, input, textarea, /* form elements 表单元素 */ 10 | th, td { /* table elements 表格元素 */ 11 | margin: 0; 12 | padding: 0; 13 | } 14 | img{ 15 | display: block; 16 | } 17 | 18 | /* 设置默认字体 */ 19 | body, 20 | button, input, select, textarea { /* for ie */ 21 | /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/ 22 | font: 12px/1 Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif; /* 用 ascii 字符表示,使得在任何编码下都无问题 */ 23 | } 24 | 25 | h1 { font-size: 18px; /* 18px / 12px = 1.5 */ } 26 | h2 { font-size: 16px; } 27 | h3 { font-size: 14px; } 28 | h4, h5, h6 { font-size: 100%; } 29 | h1, h2, h3, h4, h5, h6{ 30 | font-weight: 100; 31 | } 32 | 33 | address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */ 34 | code, kbd, pre, samp, tt { font-family: "Courier New", Courier, monospace; } /* 统一等宽字体 */ 35 | small { font-size: 12px; } /* 小于 12px 的中文很难阅读,让 small 正常化 */ 36 | 37 | /* 重置列表元素 */ 38 | ul, ol { list-style: none; } 39 | 40 | /* 重置文本格式元素 */ 41 | a { text-decoration: none; } 42 | /*a:hover { text-decoration: underline; }*/ 43 | 44 | abbr[title], acronym[title] { /* 注:1.ie6 不支持 abbr; 2.这里用了属性选择符,ie6 下无效果 */ 45 | border-bottom: 1px dotted; 46 | cursor: help; 47 | } 48 | 49 | q:before, q:after { content: ''; } 50 | 51 | /* 重置表单元素 */ 52 | legend { color: #000; } /* for ie6 */ 53 | fieldset, img { border: none; } /* img 搭车:让链接里的 img 无边框 */ 54 | /* 注:optgroup 无法扶正 */ 55 | button, input, select, textarea { 56 | font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */ 57 | } 58 | 59 | /* 重置表格元素 */ 60 | table { 61 | border-collapse: collapse; 62 | border-spacing: 0; 63 | } 64 | 65 | /* 重置 hr */ 66 | hr { 67 | border: none; 68 | height: 1px; 69 | } 70 | 71 | /* 让非ie浏览器默认也显示垂直滚动条,防止因滚动条引起的闪烁 */ 72 | html { overflow-y: scroll; overflow-x: hidden;} 73 | 74 | /* 清除获取焦点时的蓝框*/ 75 | select,input,textarea,button,a { 76 | outline: none; 77 | -moz-outline-style: none; 78 | } -------------------------------------------------------------------------------- /images/backTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coco413/SecNavi/df25d1c0a5c4f74fe0c79543e999a785a071afda/images/backTop.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 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 | 42 |
43 |
44 | 45 |
46 |
47 | 48 | 49 |
50 |
51 | 52 |
53 | 54 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /js/data.js: -------------------------------------------------------------------------------- 1 | var FrontGuide = { 2 | "main": [{ 3 | "pageT1": "安全圈", 4 | "pageC1": [{ 5 | "pageT2": "安全资讯", 6 | "pageC2": [{ 7 | 'Name': 'Freebuf', 8 | 'Title': '关注黑客与极客', 9 | 'Href': 'http://www.freebuf.com' 10 | }, { 11 | 'Name': '安全客', 12 | 'Title': '有思想的安全新媒体', 13 | 'Href': 'http://bobao.360.cn' 14 | }, { 15 | 'Name': '吐司论坛', 16 | 'Title': 'T00LS - 低调求发展 - 潜心习安全', 17 | 'Href': 'https://www.t00ls.net' 18 | }, { 19 | 'Name': '奇安信攻防社区', 20 | 'Title': '奇安信攻防社区', 21 | 'Href': 'https://forum.butian.net/' 22 | }, { 23 | 'Name': '先知社区', 24 | 'Title': '安全技术社区', 25 | 'Href': 'https://xz.aliyun.com' 26 | }, { 27 | 'Name': '洞见网安', 28 | 'Title': '洞见微信聚合-安全圈搜狗微信搜索_订阅号及文章内容独家收录,一搜即达', 29 | 'Href': 'http://wechat.doonsec.com', 30 | }, { 31 | 'Name': '安全脉搏', 32 | 'Title': '分享技术,悦享品质', 33 | 'Href': 'https://www.secpulse.com' 34 | }, { 35 | 'Name': '安全圈子', 36 | 'Title': '这是一个白帽子的汇集地', 37 | 'Href': 'https://www.secquan.org/Login', 38 | }, { 39 | 'Name': '跳跳糖社区', 40 | 'Title': '跳跳糖 - 安全与分享社区', 41 | 'Href': 'https://tttang.com' 42 | }, { 43 | 'Name': 'SecIN社区', 44 | 'Title': '在这里探索技术和热爱', 45 | 'Href': 'https://www.sec-in.com' 46 | }, { 47 | 'Name': '火线 Zone-云安全社区', 48 | 'Title': '研究讨论云安全相关技术,助力所有云上用户实现全面的安全防护', 49 | 'Href': 'https://zone.huoxian.cn/' 50 | }, { 51 | 'Name': 'IoTSec', 52 | 'Title': '物联网安全社区', 53 | 'Href': 'http://www.iotsec.zone/' 54 | }, { 55 | 'Name': '安世加', 56 | 'Title': '安世加专注于安全行业', 57 | 'Href': 'https://anquanjia.net.cn/' 58 | }, { 59 | 'Name': 'Expliot', 60 | 'Title': 'Expliot IOT商城', 61 | 'Href': 'https://store.expliot.io/' 62 | }, { 63 | 'Name': '看雪论坛', 64 | 'Title': '专注安全十七年', 65 | 'Href': 'http://bbs.pediy.com' 66 | }, { 67 | 'Name': '吾爱破解', 68 | 'Title': '吾爱破解 安卓破解|病毒分析|破解软件', 69 | 'Href': 'http://www.52pojie.cn' 70 | }, { 71 | 'Name': '棱角安全论坛', 72 | 'Title': '技术是无罪的,快乐就在思考!', 73 | 'Href': 'https://forum.ywhack.com/index.php' 74 | }, { 75 | 'Name': '腾讯威胁研究', 76 | 'Title': '集顶尖研究团队提供最实时的威胁情报', 77 | 'Href': 'https://v2.s.tencent.com/research/report/', 78 | }, { 79 | 'Name': 'Breached论坛', 80 | 'Title': 'Breached', 81 | 'Href': 'https://breached.co' 82 | }, { 83 | 'Name': 'Eternia论坛', 84 | 'Title': 'E-Whoring - Eternia - Nulled and Leak forums', 85 | 'Href': 'https://eternia.to/' 86 | }, { 87 | 'Name': 'securityaffairs论坛', 88 | 'Title': 'securityaffairs', 89 | 'Href': 'http://securityaffairs.co/wordpress/' 90 | }, { 91 | 'Name': 'Blackhat论坛', 92 | 'Title': 'Black Hat is part of the Informa Tech Division of Informa PLC', 93 | 'Href': 'https://www.blackhat.com/eu-21/arsenal/schedule/' 94 | }] 95 | }, { 96 | "pageT2": "安全维基", 97 | "pageC2": [{ 98 | 'Name': '乌云Wiki', 99 | 'Title': '乌云Wiki', 100 | 'Href': 'http://wiki.secbug.net/' 101 | }, { 102 | 'Name': '乌云社区', 103 | 'Title': '乌云Zone', 104 | 'Href': 'http://wy.zone.ci/wooyun_zone/' 105 | }, { 106 | 'Name': '乌云知识库', 107 | 'Title': '乌云Drops', 108 | 'Href': 'https://wooyun.x10sec.org/' 109 | }, { 110 | 'Name': 'Sec-News', 111 | 'Title': '安全文摘', 112 | 'Href': 'https://govuln.com/news/' 113 | }, { 114 | 'Name': 'SecWiki', 115 | 'Title': '安全维基', 116 | 'Href': 'https://www.sec-wiki.com' 117 | }, { 118 | 'Name': '信息安全知识库', 119 | 'Title': '沉淀知识,分享经验', 120 | 'Href': 'http://www.vipread.com/index' 121 | }, { 122 | 'Name': '知识星球Paper', 123 | 'Title': '知识星球安全情报', 124 | 'Href': 'https://wx.zsxq.com/dweb2' 125 | }, { 126 | 'Name': '知道创宇Paper', 127 | 'Title': '安全技术精粹', 128 | 'Href': 'http://paper.seebug.org/' 129 | }, { 130 | 'Name': '白阁文库', 131 | 'Title': '白阁文库是白泽Sec团队维护的一个漏洞POC和EXP披露以及漏洞复现的开源项目,欢迎各位表哥访问白阁文库并提出宝贵建议。', 132 | 'Href': 'https://wiki.bylibrary.cn/' 133 | }, { 134 | 'Name': '狼组知识库', 135 | 'Title': '致力于打造信息安全乌托邦', 136 | 'Href': 'https://wiki.wgpsec.org/' 137 | }, { 138 | 'Name': 'PeiQi文库', 139 | 'Title': '面向网络安全从业者的知识文库', 140 | 'Href': 'https://wiki.bylibrary.cn/' 141 | }, { 142 | 'Name': 'iredteam文库', 143 | 'Title': 'iredteam文库', 144 | 'Href': 'https://wiki.iredteam.cn/' 145 | }, { 146 | 'Name': '云安全知识库', 147 | 'Title': '由火线安全构建,致力于云安全知识分享', 148 | 'Href': 'https://cloudsec.huoxian.cn/docs/articles' 149 | }, { 150 | 'Name': 'T Wiki云安全知识库', 151 | 'Title': '面向云安全方向的知识文库', 152 | 'Href': 'https://wiki.teamssix.com/' 153 | }, { 154 | 'Name': 'hackinn安全知识库', 155 | 'Title': 'hackinn安全知识库', 156 | 'Href': 'https://www.hackinn.com/' 157 | }] 158 | }, { 159 | "pageT2": "漏洞平台", 160 | "pageC2": [{ 161 | 'Name': '乌云', 162 | 'Title': '与其听信谣言,不如相信乌云', 163 | 'Href': 'http://www.wooyun.org/' 164 | }, { 165 | 'Name': '乌云漏洞平台(备用)', 166 | 'Title': '与其听信谣言,不如相信乌云', 167 | 'Href': 'http://wooyun.2xss.cc/bugs.php' 168 | }, { 169 | 'Name': '乌云漏洞平台(备用)', 170 | 'Title': '与其听信谣言,不如相信乌云', 171 | 'Href': 'https://wy.zone.ci/' 172 | }, { 173 | 'Name': '补天', 174 | 'Title': '补天-漏洞报告平台', 175 | 'Href': 'https://www.butian.net/' 176 | }, { 177 | 'Name': '漏洞盒子', 178 | 'Title': '漏洞盒子-漏洞报告平台', 179 | 'Href': 'https://www.vulbox.com/' 180 | }, { 181 | 'Name': '云盾先知', 182 | 'Title': '云盾先知平台致力于构建和谐的互联网安全生态圈', 183 | 'Href': 'https://xianzhi.aliyun.com/' 184 | }, { 185 | 'Name': '火线', 186 | 'Title': '火线是全球首个白帽子开发者平台——与国内顶级的白帽子们一起开发产品,并通过产品为企业客户提供安全可信的众测、渗透测试、红蓝对抗等高级安全服务。', 187 | 'Href': 'http://www.huoxian.cn/index', 188 | }, { 189 | 'Name': '看雪众测', 190 | 'Title': '专注物联网安全的众测平台', 191 | 'Href': 'https://ce.kanxue.com/' 192 | }, { 193 | 'Name': '漏洞银行', 194 | 'Title': '挑战权威但不作恶,打造信息安全乌托邦', 195 | 'Href': 'http://www.bugbank.cn/' 196 | }, { 197 | 'Name': '360漏洞云漏洞众包响应平台', 198 | 'Title': '亿万守护计划旨在守护互联网空间安全', 199 | 'Href': 'https://src.360.net/' 200 | }, { 201 | 'Name': '360众测平台', 202 | 'Title': '亿万守护计划旨在守护互联网空间安全', 203 | 'Href': 'https://zhongce.360.cn/' 204 | }, { 205 | 'Name': 'Allsec众测', 206 | 'Title': 'allsec众测', 207 | 'Href': 'https://i.allsec.cn/', 208 | }, { 209 | 'Name': '春秋众测', 210 | 'Title': '春秋众测', 211 | 'Href': 'https://zhongce.ichunqiu.com/', 212 | }, { 213 | 'Name': 'CNVD众测', 214 | 'Title': 'CNVD众测', 215 | 'Href': 'https://zc.cnvd.org.cn/', 216 | }, { 217 | 'Name': '工联众测', 218 | 'Title': '工联众测', 219 | 'Href': 'https://www.caiisec.org.cn/', 220 | }, { 221 | 'Name': '教育行业漏洞报告平台', 222 | 'Title': '教育行业漏洞报告平台', 223 | 'Href': 'https://src.sjtu.edu.cn/' 224 | }, { 225 | 'Name': 'VulReport', 226 | 'Title': '台湾公益性质漏洞通报平台', 227 | 'Href': 'https://vulreport.net/' 228 | }, { 229 | 'Name': 'HITCON', 230 | 'Title': 'HITCON ZeroDay', 231 | 'Href': 'https://zeroday.hitcon.org/vulnerability' 232 | }, { 233 | 'Name': 'HackerOne', 234 | 'Title': 'Make the Internet Safer Together', 235 | 'Href': 'https://www.hackerone.com/' 236 | }, { 237 | 'Name': 'Bugcrowd', 238 | 'Title': 'FIND VULNERABILITIES OTHER TOOLS MISS', 239 | 'Href': 'https://www.bugcrowd.com/' 240 | }, { 241 | 'Name': 'Intigriti', 242 | 'Title': 'Global crowdsourced security provider, trusted by the world\'s largest organizations', 243 | 'Href': 'https://www.intigriti.com/' 244 | }] 245 | }, { 246 | "pageT2": "漏洞信息", 247 | "pageC2": [{ 248 | 'Name': '360漏洞信息库', 249 | 'Title': '360漏洞信息库', 250 | 'Href': 'https://www.anquanke.com/vul?page=5278', 251 | }, { 252 | 'Name': '阿里云漏洞库', 253 | 'Title': '及时响应与收敛云上高危漏洞,为客户提供可运营的漏洞管理能力', 254 | 'Href': 'https://avd.aliyun.com/', 255 | }, { 256 | 'Name': 'vuldb漏洞库', 257 | 'Title': 'vuldb漏洞数据库', 258 | 'Href': 'https://vuldb.com/zh', 259 | }, { 260 | 'Name': '华云安漏洞情报', 261 | 'Title': '华云安漏洞情报', 262 | 'Href': 'https://vti.huaun.com/intelligences', 263 | }, { 264 | 'Name': 'security-database漏洞库', 265 | 'Title': 'security-database漏洞库', 266 | 'Href': 'https://www.security-database.com/', 267 | }, { 268 | 'Name': 'Tenable插件漏洞库', 269 | 'Title': 'Tenable插件漏洞库', 270 | 'Href': 'https://zh-cn.tenable.com/plugins/updated', 271 | }, { 272 | 'Name': '谷歌OSV漏洞库', 273 | 'Title': 'A distributed vulnerability database for Open Source', 274 | 'Href': 'https://osv.dev/list', 275 | }, { 276 | 'Name': '斗象科技漏洞库', 277 | 'Title': '斗象科技漏洞库', 278 | 'Href': 'https://vas.riskivy.com/vuln', 279 | }, { 280 | 'Name': '网安漏洞信息库', 281 | 'Title': '网安漏洞平台汇集了 CNNVD-国家信息安全漏洞库 CNVD-国家信息安全漏洞共享平台 CICSVD-国家工业信息安全漏洞库等信息。', 282 | 'Href': 'https://vul.wangan.com/', 283 | }, { 284 | 'Name': 'Seebug漏洞信息库', 285 | 'Title': 'Seebug洞悉漏洞,让你掌握第一手漏洞情报', 286 | 'Href': 'https://www.seebug.org/category/' 287 | }, { 288 | 'Name': 'POC++漏洞信息库', 289 | 'Title': 'poc收录,poc悬赏,漏洞收录,poc,漏洞', 290 | 'Href': 'https://poc.shuziguanxing.com/#/', 291 | }, { 292 | 'Name': '绿盟漏洞信息库', 293 | 'Title': '绿盟科技', 294 | 'Href': 'http://www.nsfocus.net/index.php?act=sec_bug' 295 | }, { 296 | 'Name': '潮听漏洞信息库', 297 | 'Title': '全网漏洞态势 ,倾听Tide声音', 298 | 'Href': 'http://vul.tidesec.com/' 299 | }, { 300 | 'Name': 'Vulmon漏洞库', 301 | 'Title': 'Vulmon漏洞库', 302 | 'Href': 'https://vulmon.com/', 303 | }, { 304 | 'Name': 'OSCS漏洞库', 305 | 'Title': 'OSCS社区致力于让每一个开源项目更安全', 306 | 'Href': 'https://www.oscs1024.com/hl', 307 | }, { 308 | 'Name': 'Sploitus漏洞库', 309 | 'Title': 'Sploitus is a convenient central place for identifying the newest exploits and finding attacks that exploit known vulnerabilities. The search engine is also a good resource for finding security and vulnerability discovery tools.', 310 | 'Href': 'https://sploitus.com/', 311 | }, { 312 | 'Name': '无胁科技漏洞情报中心', 313 | 'Title': '无胁科技漏洞情报中心', 314 | 'Href': 'https://tvd.wuthreat.com/', 315 | }, { 316 | 'Name': '安恒漏洞情报', 317 | 'Title': '漏洞情报 - 安恒威胁分析平台', 318 | 'Href': 'https://ti.dbappsecurity.com.cn/vul', 319 | }, { 320 | 'Name': '奇安信NOX漏洞监测', 321 | 'Title': '奇安信NOX漏洞监测', 322 | 'Href': 'https://nox.qianxin.com/KeyPoint', 323 | }, { 324 | 'Name': 'VULHUB漏洞信息库', 325 | 'Title': '信息安全漏洞门户 VULHUB', 326 | 'Href': 'http://vulhub.org.cn/view/global', 327 | }, { 328 | 'Name': 'Shodan漏洞信息库', 329 | 'Title': 'Shodan Exploits', 330 | 'Href': 'https://exploits.shodan.io/welcome', 331 | }, { 332 | 'Name': 'CNVD漏洞信息库', 333 | 'Title': '国家信息安全漏洞共享平台', 334 | 'Href': 'http://www.cnvd.org.cn/' 335 | }, { 336 | 'Name': 'OSCS漏洞情报库', 337 | 'Title': '让每一个开源项目更安全', 338 | 'Href': 'https://www.oscs1024.com/cm' 339 | }, { 340 | 'Name': 'NVDB漏洞信息库', 341 | 'Title': '网络安全威胁和漏洞信息共享平台', 342 | 'Href': 'https://www.nvdb.org.cn/index/' 343 | }, { 344 | 'Name': 'CVE中文漏洞信息库', 345 | 'Title': 'CVE 通用漏洞与披露', 346 | 'Href': 'http://cve.scap.org.cn/', 347 | }, { 348 | 'Name': 'Exploits-DB漏洞信息库', 349 | 'Title': 'Exploits Database by Offensive Security', 350 | 'Href': 'https://www.exploit-db.com/' 351 | }, { 352 | 'Name': 'Zerodayinitiative漏洞信息库', 353 | 'Title': 'zerodayinitiative漏洞信息库', 354 | 'Href': 'https://www.zerodayinitiative.com/advisories/published/', 355 | }, { 356 | 'Name': 'Packetstorm漏洞信息库', 357 | 'Title': 'ignore security and it will go away', 358 | 'Href': 'https://packetstormsecurity.com/' 359 | }, { 360 | 'Name': 'Cxsecurity漏洞信息库', 361 | 'Title': 'Cxsecurity', 362 | 'Href': 'https://cxsecurity.com/wlb/' 363 | }, { 364 | 'Name': '1377-0day漏洞信息库', 365 | 'Title': '0day漏洞利用数据库', 366 | 'Href': 'http://cn.0day.today/' 367 | }, { 368 | 'Name': 'Securityfocu漏洞信息库', 369 | 'Title': 'securityfocus', 370 | 'Href': 'https://www.securityfocus.com/' 371 | }, { 372 | 'Name': 'CVE-ICU漏洞信息库', 373 | 'Title': 'cve.icu', 374 | 'Href': 'https://cve.icu/2022.html' 375 | }, { 376 | 'Name': 'Routerpwn漏洞信息库', 377 | 'Title': 'Routerpwn - One click exploits', 378 | 'Href': 'http://www.routerpwn.com/' 379 | }, { 380 | 'Name': '工控系统行业漏洞信息库', 381 | 'Title': '工控系统行业漏洞信息库', 382 | 'Href': 'http://ivd.winicssec.com/' 383 | }, { 384 | 'Name': 'Exphub ICS工业安全漏洞信息库', 385 | 'Title': 'Exphub - ICS安全情报', 386 | 'Href': 'http://www.exphub.org/' 387 | }, { 388 | 'Name': 'Cloudvulndb漏洞信息库', 389 | 'Title': 'An open project to list all known cloud vulnerabilities and CSP security issues', 390 | 'Href': 'https://www.cloudvulndb.org/' 391 | }] 392 | }, { 393 | "pageT2": "应急响应", 394 | "pageC2": [{ 395 | 'Name': '腾讯SRC', 396 | 'Title': '腾讯安全应急响应中心', 397 | 'Href': 'https://security.tencent.com/' 398 | }, { 399 | 'Name': '阿里SRC', 400 | 'Title': '阿里安全应急响应中心', 401 | 'Href': 'http://security.taobao.com/' 402 | }, { 403 | 'Name': '百度SRC', 404 | 'Title': '百度安全应急响应中心', 405 | 'Href': 'http://sec.baidu.com/' 406 | }, { 407 | 'Name': '360SRC', 408 | 'Title': '360安全应急响应中心', 409 | 'Href': 'http://security.360.cn/' 410 | }, { 411 | 'Name': '联想SRC', 412 | 'Title': '联想安全应急响应中心', 413 | 'Href': 'http://lsrc.lenovo.com/' 414 | }, { 415 | 'Name': '京东SRC', 416 | 'Title': '京东安全应急响应中心', 417 | 'Href': 'http://security.jd.com/' 418 | }, { 419 | 'Name': '搜狗SRC', 420 | 'Title': '搜狗安全应急响应中心', 421 | 'Href': 'http://sec.sogou.com/' 422 | }, { 423 | 'Name': '平安SRC', 424 | 'Title': '平安安全应急响应中心', 425 | 'Href': 'http://security.pingan.com/' 426 | }, { 427 | 'Name': '众安SRC', 428 | 'Title': '众安安全应急响应中心', 429 | 'Href': 'https://security.zhongan.com/#/' 430 | }, { 431 | 'Name': '苏宁SRC', 432 | 'Title': '苏宁安全应急响应中心', 433 | 'Href': 'https://security.suning.com/' 434 | }, { 435 | 'Name': '网易SRC', 436 | 'Title': '网易安全应急响应中心', 437 | 'Href': 'http://anquan.163.com/' 438 | }, { 439 | 'Name': '携程SRC', 440 | 'Title': '携程安全应急响应中心', 441 | 'Href': 'https://sec.ctrip.com/' 442 | }, { 443 | 'Name': '途牛SRC', 444 | 'Title': '途牛安全应急响应中心', 445 | 'Href': 'http://sec.tuniu.com/' 446 | }, { 447 | 'Name': '金山SRC', 448 | 'Title': '金山安全应急响应中心', 449 | 'Href': 'http://sec.kingsoft.com/' 450 | }, { 451 | 'Name': '蚂蚁SRC', 452 | 'Title': '蚂蚁金服安全应急响应中心', 453 | 'Href': 'https://security.alipay.com' 454 | }, { 455 | 'Name': '小米SRC', 456 | 'Title': '小米安全应急响应中心', 457 | 'Href': 'https://sec.xiaomi.com/' 458 | }, { 459 | 'Name': '同程SRC', 460 | 'Title': '同程安全应急响应中心', 461 | 'Href': 'https://sec.ly.com/' 462 | }, { 463 | 'Name': '滴滴SRC', 464 | 'Title': '滴滴出行安全应急响应中心', 465 | 'Href': 'http://sec.didichuxing.com/' 466 | }, { 467 | 'Name': '乐视SRC', 468 | 'Title': '乐视安全应急响应中心', 469 | 'Href': 'http://sec.le.com/' 470 | }, { 471 | 'Name': '酷派SRC', 472 | 'Title': '酷派安全应急响应中心', 473 | 'Href': 'http://security.coolpad.com/' 474 | }, { 475 | 'Name': '萤石SRC', 476 | 'Title': '萤石安全应急响应中心', 477 | 'Href': 'http://ysrc.ys7.com/' 478 | }, { 479 | 'Name': '焦点SRC', 480 | 'Title': '焦点安全应急响应中心', 481 | 'Href': 'http://security.focuschina.com/' 482 | }, { 483 | 'Name': '点融SRC', 484 | 'Title': '点融安全应急响应中心', 485 | 'Href': 'http://security.dianrong.com/' 486 | }, { 487 | 'Name': '微博SRC', 488 | 'Title': '微博安全应急响应中心', 489 | 'Href': 'http://wsrc.weibo.com/' 490 | }, { 491 | 'Name': '新浪SRC', 492 | 'Title': '新浪安全应急响应中心', 493 | 'Href': 'http://sec.sina.com.cn/' 494 | }, { 495 | 'Name': '贝贝SRC', 496 | 'Title': '贝贝安全应急响应中心', 497 | 'Href': 'https://src.beibei.com.cn/' 498 | }, { 499 | 'Name': '魅族SRC', 500 | 'Title': '魅族安全应急响应中心', 501 | 'Href': 'http://sec.meizu.com/' 502 | }, { 503 | 'Name': '迅雷SRC', 504 | 'Title': '迅雷安全应急响应中心', 505 | 'Href': 'http://safe.xunlei.com/' 506 | }, { 507 | 'Name': '富友SRC', 508 | 'Title': '富友安全应急响应中心', 509 | 'Href': 'https://fsrc.fuiou.com/' 510 | }, { 511 | 'Name': '挖财SRC', 512 | 'Title': '挖财安全应急响应中心', 513 | 'Href': 'https://sec.wacai.com/' 514 | }, { 515 | 'Name': '美团SRC', 516 | 'Title': '美团安全应急响应中心', 517 | 'Href': 'https://security.meituan.com/' 518 | }, { 519 | 'Name': '中兴SRC', 520 | 'Title': '中兴安全应急响应中心', 521 | 'Href': 'http://www.zte.com.cn/cn/about/corporate_citizenship/security/201405/t20140530_424338.html' 522 | }, { 523 | 'Name': '菜鸟SRC', 524 | 'Title': '菜鸟安全应急响应中心', 525 | 'Href': 'https://sec.cainiao.com/' 526 | }, { 527 | 'Name': '微软SRC', 528 | 'Title': '菜鸟安全应急响应中心', 529 | 'Href': 'https://technet.microsoft.com/en-us/library/dn440717.aspx/' 530 | }, { 531 | 'Name': '网信SRC', 532 | 'Title': '网信安全应急响应中心', 533 | 'Href': 'https://security.ncfgroup.com/' 534 | }, { 535 | 'Name': '恒昌SRC', 536 | 'Title': '恒昌安全应急响应中心', 537 | 'Href': 'http://src.credithc.com/index.php?m=&c=index&a=index' 538 | }, { 539 | 'Name': '千米SRC', 540 | 'Title': '千米安全应急响应中心', 541 | 'Href': 'http://security.qianmi.com/' 542 | }, { 543 | 'Name': '中通SRC', 544 | 'Title': '中通安全应急响应中心', 545 | 'Href': 'https://sec.zto.com/' 546 | }, { 547 | 'Name': '陌陌SRC', 548 | 'Title': '陌陌安全应急响应中心', 549 | 'Href': 'https://security.immomo.com/' 550 | }, { 551 | 'Name': '途家SRC', 552 | 'Title': '途家安全应急响应中心', 553 | 'Href': 'https://security.tujia.com/' 554 | }, { 555 | 'Name': '阔知SRC', 556 | 'Title': '阔知安全应急响应中心', 557 | 'Href': 'http://www.edusoho.com/info/586/show' 558 | }, { 559 | 'Name': '顺丰SRC', 560 | 'Title': '顺丰安全应急响应中心', 561 | 'Href': 'http://sfsrc.sf-express.com/rank' 562 | }, { 563 | 'Name': '斗鱼SRC', 564 | 'Title': '斗鱼安全应急响应中心', 565 | 'Href': 'https://security.douyu.com/' 566 | }, { 567 | 'Name': '微众SRC', 568 | 'Title': '微众安全应急响应中心', 569 | 'Href': 'https://security.webank.com/' 570 | }, { 571 | 'Name': '一号店SRC', 572 | 'Title': '一号店安全应急响应中心', 573 | 'Href': 'http://security.yhd.com/' 574 | }, { 575 | 'Name': '去哪儿SRC', 576 | 'Title': '去哪儿安全应急响应中心', 577 | 'Href': 'http://security.qunar.com/' 578 | }, { 579 | 'Name': '唯品会SRC', 580 | 'Title': '唯品会安全应急响应中心', 581 | 'Href': 'https://sec.vip.com/' 582 | }, { 583 | 'Name': '爱奇艺SRC', 584 | 'Title': '爱奇艺安全应急响应中心', 585 | 'Href': 'https://security.iqiyi.com/' 586 | }, { 587 | 'Name': '饿了吗SRC', 588 | 'Title': '饿了吗安全应急响应中心', 589 | 'Href': 'https://security.ele.me/' 590 | }, { 591 | 'Name': '宜人贷SRC', 592 | 'Title': '宜人贷安全应急响应中心', 593 | 'Href': 'https://security.yirendai.com/' 594 | }, { 595 | 'Name': '拍拍贷SRC', 596 | 'Title': '拍拍贷安全应急响应中心', 597 | 'Href': 'http://sec.ppdai.com/' 598 | }, { 599 | 'Name': '猪八戒SRC', 600 | 'Title': '猪八戒安全应急响应中心', 601 | 'Href': 'https://sec.zbj.com/' 602 | }, { 603 | 'Name': '安全狗SRC', 604 | 'Title': '安全狗安全应急响应中心', 605 | 'Href': 'http://security.safedog.cn/' 606 | }, { 607 | 'Name': '深信服SRC', 608 | 'Title': '深信服安全应急响应中心', 609 | 'Href': 'http://security.sangfor.com.cn/' 610 | }, { 611 | 'Name': '好未来SRC', 612 | 'Title': '菜鸟安全应急响应中心', 613 | 'Href': 'http://src.100tal.com/' 614 | }, { 615 | 'Name': 'YunOSSRC', 616 | 'Title': 'YunOS安全应急响应中心', 617 | 'Href': 'http://www.yunos.com/src.html' 618 | }, { 619 | 'Name': '哔哩哔哩SRC', 620 | 'Title': '哔哩哔哩安全应急响应中心', 621 | 'Href': 'http://security.bilibili.com/' 622 | }, { 623 | 'Name': '美丽联合SRC', 624 | 'Title': '美丽联合集团安全应急响应中心', 625 | 'Href': 'http://security.mogujie.com/' 626 | }, { 627 | 'Name': '欢聚时代SRC', 628 | 'Title': '欢聚时代安全应急响应中心', 629 | 'Href': 'http://security.yy.com/' 630 | }, { 631 | 'Name': '竞技世界SRC', 632 | 'Title': '竞技世界安全应急响应中心', 633 | 'Href': 'https://security.jj.cn/' 634 | }, { 635 | 'Name': '万能钥匙SRC', 636 | 'Title': '万能钥匙安全应急响应中心', 637 | 'Href': 'https://sec.wifi.com/' 638 | }, { 639 | 'Name': '东方财富SRC', 640 | 'Title': '东方财富安全应急响应中心', 641 | 'Href': 'https://security.eastmoney.com/' 642 | }, { 643 | 'Name': '完美SRC', 644 | 'Title': '完美世界安全应急响应中心', 645 | 'Href': 'http://security.wanmei.com/' 646 | }, { 647 | 'Name': 'VIPKID SRC', 648 | 'Title': 'VIPKID安全应急响应中心', 649 | 'Href': 'https://security.vipkid.com.cn/' 650 | }, { 651 | 'Name': '汽车SRC', 652 | 'Title': '汽车产业网络空间安全应急响应中心', 653 | 'Href': 'https://www.ichunqiu.com/src/detail/119' 654 | }, { 655 | 'Name': '宜信SRC', 656 | 'Title': '宜信安全应急响应中心', 657 | 'Href': 'https://security.creditease.cn' 658 | }, { 659 | 'Name': '摩拜SRC', 660 | 'Title': '摩拜安全应急响应中心', 661 | 'Href': 'https://security.mobike.com/' 662 | }, { 663 | 'Name': '快手SRC', 664 | 'Title': '快手安全应急响应中心', 665 | 'Href': 'https://security.kuaishou.com/#/' 666 | }, { 667 | 'Name': '大疆SRC', 668 | 'Title': '大疆安全应急响应中心', 669 | 'Href': 'https://security.dji.com/' 670 | }, { 671 | 'Name': '敦煌网SRC', 672 | 'Title': '敦煌网安全应急响应中心', 673 | 'Href': 'http://dhsrc.dhgate.com/', 674 | }, { 675 | 'Name': '海康威视SRC', 676 | 'Title': '海康威视安全应急响应中心', 677 | 'Href': 'https://www.hikvision.com/cn/support/CybersecurityCenter/' 678 | }, { 679 | 'Name': '魅族SRC', 680 | 'Title': '魅族安全应急响应中心', 681 | 'Href': 'https://sec.meizu.com/' 682 | }, { 683 | 'Name': '世纪佳缘SRC', 684 | 'Title': '世纪佳缘安全应急响应中心', 685 | 'Href': 'http://src.jiayuan.com/' 686 | }, { 687 | 'Name': '国粉网SRC', 688 | 'Title': '国粉网安全应急响应中心', 689 | 'Href': 'https://security.rocfans.net/' 690 | }, { 691 | 'Name': '你我贷SRC', 692 | 'Title': '你我贷安全应急响应中心', 693 | 'Href': 'http://www.niwodai.com/sec/index.do' 694 | }, { 695 | 'Name': '236云信通SRC', 696 | 'Title': '236云信通安全应急响应中心', 697 | 'Href': 'https://www.263.net/263/helpcenter/security/' 698 | }, { 699 | 'Name': '乐信SRC', 700 | 'Title': '乐信安全应急响应中心', 701 | 'Href': 'http://security.lexinfintech.com/' 702 | }, { 703 | 'Name': 'UCloud SRC', 704 | 'Title': 'UCloud安全应急响应中心', 705 | 'Href': 'https://sec.ucloud.cn' 706 | }, { 707 | 'Name': '易极付SRC', 708 | 'Title': '易极付安全应急响应中心', 709 | 'Href': 'https://www.yiji.com/website/securityresponse.html' 710 | }, { 711 | 'Name': '58同城SRC', 712 | 'Title': '58同城安全应急响应中心', 713 | 'Href': 'https://security.58.com/' 714 | }, { 715 | 'Name': '马蜂窝SRC', 716 | 'Title': '马蜂窝同城安全应急响应中心', 717 | 'Href': 'https://security.mafengwo.cn/' 718 | }, { 719 | 'Name': 'OPPO SRC', 720 | 'Title': 'OPPO安全应急响应中心', 721 | 'Href': 'https://security.oppo.com/' 722 | }, { 723 | 'Name': '字节跳动SRC', 724 | 'Title': '字节跳动安全中心', 725 | 'Href': 'https://security.bytedance.com/index/' 726 | }, { 727 | 'Name': '众安SRC', 728 | 'Title': '众安安全应急响应中心', 729 | 'Href': 'https://security.zhongan.com/#/' 730 | }, { 731 | 'Name': '优信SRC', 732 | 'Title': '优信安全应急响应中心', 733 | 'Href': 'http://security.xin.com/' 734 | }, { 735 | 'Name': '易宠SRC', 736 | 'Title': '易宠安全应急响应中心', 737 | 'Href': 'https://sec.epet.com/' 738 | }, { 739 | 'Name': 'DHSRC', 740 | 'Title': 'DH安全应急响应中心', 741 | 'Href': 'http://dhsrc.dhgate.com/' 742 | }, { 743 | 'Name': '斗米SRC', 744 | 'Title': '斗米安全应急响应中心', 745 | 'Href': 'https://security.doumi.com/' 746 | }, { 747 | 'Name': '火币SRC', 748 | 'Title': '火币集团安全应急响应中心', 749 | 'Href': 'https://security.huobi.cn/' 750 | }, { 751 | 'Name': 'Vivo SRC', 752 | 'Title': 'Vivo安全应急响应中心', 753 | 'Href': 'https://security.vivo.com.cn/#/home' 754 | }, { 755 | 'Name': '喜马拉雅SRC', 756 | 'Title': '喜马拉雅安全应急响应中心', 757 | 'Href': 'https://security.ximalaya.com/' 758 | }, { 759 | 'Name': '贝壳SRC', 760 | 'Title': '贝壳安全应急响应中心', 761 | 'Href': 'https://security.ke.com/' 762 | }, { 763 | 'Name': '享道出行SRC', 764 | 'Title': '享道出行安全应急响应中心', 765 | 'Href': 'https://src.saicmobility.com/' 766 | }, { 767 | 'Name': '一加SRC', 768 | 'Title': '一加安全应急响应中心', 769 | 'Href': 'https://security.oneplus.com/' 770 | }, { 771 | 'Name': '智联招聘SRC', 772 | 'Title': '智联招聘安全应急响应中心', 773 | 'Href': 'https://src.zhaopin.com' 774 | }, { 775 | 'Name': '知识星球SRC', 776 | 'Title': '知识星球安全应急响应中心', 777 | 'Href': 'https://security.zsxq.com/' 778 | }, { 779 | 'Name': '法大大SRC', 780 | 'Title': '法大大安全应急响应中心', 781 | 'Href': 'https://sec.fadada.com/' 782 | }, { 783 | 'Name': '度小满SRC', 784 | 'Title': '度小满安全应急响应中心', 785 | 'Href': 'https://security.duxiaoman.com' 786 | }, { 787 | 'Name': '水滴筹SRC', 788 | 'Title': '水滴安全应急响应中心', 789 | 'Href': 'https://security.shuidihuzhu.com' 790 | }, { 791 | 'Name': '金山办公SRC', 792 | 'Title': '金山办公安全应急响应中心', 793 | 'Href': 'https://security.qwps.cn/' 794 | }, { 795 | 'Name': '老虎证券SRC', 796 | 'Title': '老虎证券安全应急响应中心', 797 | 'Href': 'https://security.itiger.com/' 798 | }, { 799 | 'Name': 'iTutorGroup SRC', 800 | 'Title': 'iTutorGroup安全应急响应中心', 801 | 'Href': 'https://sec.tutorabc.com.cn' 802 | }, { 803 | 'Name': '云集SRC', 804 | 'Title': '云集安全应急响应中心', 805 | 'Href': 'https://security.yunjiglobal.com' 806 | }, { 807 | 'Name': '有赞SRC', 808 | 'Title': '有赞安全应急响应中心', 809 | 'Href': 'https://src.youzan.com/' 810 | }, { 811 | 'Name': '酷狗SRC', 812 | 'Title': '酷狗安全应急响应中心', 813 | 'Href': 'https://security.kugou.com/' 814 | }, { 815 | 'Name': '掌门教育SRC', 816 | 'Title': '掌门教育安全应急响应中心', 817 | 'Href': 'https://security.zhangmen.com' 818 | }, { 819 | 'Name': 'T3出行SRC', 820 | 'Title': 'T3出行安全应急响应中心', 821 | 'Href': 'https://security.t3go.cn/' 822 | }, { 823 | 'Name': 'BOSS直聘SRC', 824 | 'Title': 'BOSS直聘安全应急响应中心', 825 | 'Href': 'https://src.zhipin.com/' 826 | }, { 827 | 'Name': '自如SRC', 828 | 'Title': '自如安全应急响应中心', 829 | 'Href': 'https://zrsecurity.ziroom.com/' 830 | }, { 831 | 'Name': '猎聘SRC', 832 | 'Title': '猎聘安全应急响应中心', 833 | 'Href': 'https://security.liepin.com/' 834 | }, { 835 | 'Name': '一起教育SRC', 836 | 'Title': '一起教育安全应急响应中心', 837 | 'Href': 'https://security.17zuoye.com/' 838 | }, { 839 | 'Name': '虎牙SRC', 840 | 'Title': '虎牙安全应急响应中心', 841 | 'Href': 'https://src.huya.com/' 842 | }, { 843 | 'Name': '旷视SRC', 844 | 'Title': '旷视安全应急响应中心', 845 | 'Href': 'https://megvii.huoxian.cn/' 846 | }, { 847 | 'Name': '旷视SRC', 848 | 'Title': '旷视安全应急响应中心', 849 | 'Href': 'https://megvii.huoxian.cn/' 850 | }, { 851 | 'Name': '讯飞SRC', 852 | 'Title': '讯飞安全应急响应中心', 853 | 'Href': 'https://security.iflytek.com/index.php' 854 | }, { 855 | 'Name': '百合SRC', 856 | 'Title': '百合安全应急响应中心', 857 | 'Href': 'https://src.baihe.com/' 858 | }, { 859 | 'Name': '轻松筹SRC', 860 | 'Title': '轻松筹安全应急响应中心', 861 | 'Href': 'https://qssrc.vulbox.com' 862 | }, { 863 | 'Name': '丁香园SRC', 864 | 'Title': '丁香园安全应急响应中心', 865 | 'Href': 'https://dxysrc.vulbox.com/ ' 866 | }, { 867 | 'Name': '上上签SRC', 868 | 'Title': '上上签安全应急响应中心', 869 | 'Href': 'https://src.bestsign.cn/', 870 | "New": "1" 871 | }, { 872 | 'Name': '统信SRC', 873 | 'Title': '统信安全应急响应中心', 874 | 'Href': 'https://src.uniontech.com/' 875 | }, { 876 | 'Name': '华住SRC', 877 | 'Title': '华住安全应急响应中心', 878 | 'Href': 'https://sec.huazhu.com/' 879 | }, { 880 | 'Name': '伍林堂SRC', 881 | 'Title': '伍林堂安全应急响应中心', 882 | 'Href': 'https://security.wulintang.com/', 883 | "New": "1" 884 | }, { 885 | 'Name': '微贷SRC', 886 | 'Title': '微贷安全应急响应中心', 887 | 'Href': 'https://sec.weidai.com.cn/' 888 | }, { 889 | 'Name': '小赢SRC', 890 | 'Title': '小赢安全应急响应中心', 891 | 'Href': 'https://security.xiaoying.com', 892 | "New": "1" 893 | }, { 894 | 'Name': '合合SRC', 895 | 'Title': '合合安全应急响应中心', 896 | 'Href': 'https://security.intsig.com/' 897 | }, { 898 | 'Name': '华为SRC', 899 | 'Title': '华为安全奖励计划', 900 | 'Href': 'https://bugbounty.huawei.com/' 901 | }, { 902 | 'Name': '安全狗SRC', 903 | 'Title': '安全狗安全应急响应中心', 904 | 'Href': 'http://security.safedog.cn/' 905 | }, { 906 | 'Name': '途虎SRC', 907 | 'Title': '途虎安全应急响应中心', 908 | 'Href': 'https://security.tuhu.cn/' 909 | }, { 910 | 'Name': '货拉拉SRC', 911 | 'Title': '货拉拉安全应急响应中心', 912 | 'Href': 'https://llsrc.huolala.cn/' 913 | }, { 914 | 'Name': '猿辅导SRC', 915 | 'Title': '猿辅导安全应急响应中心', 916 | 'Href': 'https://security.yuanfudao.com/' 917 | }, { 918 | 'Name': '本木医疗SRC', 919 | 'Title': '本木医疗安全应急响应中心', 920 | 'Href': 'https://security.benmu-health.com/src/' 921 | }, { 922 | 'Name': '讯飞SRC', 923 | 'Title': '讯飞安全应急响应中心', 924 | 'Href': 'https://security.iflytek.com/index.php' 925 | }] 926 | }] 927 | }, { 928 | "pageT1": "在线教育", 929 | "pageC1": [{ 930 | "pageT2": "在线学习", 931 | "pageC2": [{ 932 | 'Name': 'i春秋', 933 | 'Title': '培育信息时代的安全感', 934 | 'Href': 'http://www.ichunqiu.com/' 935 | }, { 936 | 'Name': '蓝桥云课', 937 | 'Title': '做实验,学编程', 938 | 'Href': 'https://www.shiyanlou.com/' 939 | }, { 940 | 'Name': '前锋教育', 941 | 'Title': '千锋教育-做有情怀、有良心、有品质的职业教育机构', 942 | 'Href': 'https://www.mobiletrain.org/' 943 | }, { 944 | 'Name': '慕课网', 945 | 'Title': '慕课网(IMOOC)-程序员的梦工厂', 946 | 'Href': 'http://www.imooc.com/' 947 | }, { 948 | 'Name': '炼数成金', 949 | 'Title': '中国顶尖专业数据分析门户网', 950 | 'Href': 'http://www.dataguru.cn/' 951 | }, { 952 | 'Name': '传智教育', 953 | 'Title': '传智教育', 954 | 'Href': 'http://www.itcast.cn/' 955 | }, { 956 | 'Name': '腾讯课堂', 957 | 'Title': '学习成就梦想', 958 | 'Href': 'https://ke.qq.com/' 959 | }, { 960 | 'Name': '极客学院', 961 | 'Title': '中国专业的IT职业在线教育平台', 962 | 'Href': 'http://www.jikexueyuan.com/' 963 | }, { 964 | 'Name': '网易云课堂', 965 | 'Title': '领先的实用技能学习平台', 966 | 'Href': 'http://study.163.com/' 967 | }, { 968 | 'Name': '鱼C工作室', 969 | 'Title': '鱼C工作室致力于完全免费编程视频教学', 970 | 'Href': 'http://bbs.fishc.com/forum.php' 971 | }, { 972 | 'Name': '考试宝', 973 | 'Title': '免费刷题学习平台', 974 | 'Href': 'https://www.kaoshibao.com/' 975 | }, { 976 | 'Name': '51CTO学院', 977 | 'Title': '为梦想增值', 978 | 'Href': 'http://edu.51cto.com/' 979 | }, { 980 | 'Name': '黑马程序员', 981 | 'Title': '黑马程序员', 982 | 'Href': 'https://space.bilibili.com/37974444?from=search&seid=7085238468279096127' 983 | }, { 984 | 'Name': '看雪学院', 985 | 'Title': '二进制在线学习', 986 | 'Href': 'https://www.kanxue.com/course.htm' 987 | }, { 988 | 'Name': '小迪渗透吧', 989 | 'Title': '小迪渗透吧', 990 | 'Href': 'http://www.xiaodi8.com/' 991 | }, { 992 | 'Name': '鱼C工作室', 993 | 'Title': '鱼C工作室', 994 | 'Href': 'https://ilovefishc.com/' 995 | }, { 996 | 'Name': '阿里云社区学习', 997 | 'Title': '阿里云社区学习', 998 | 'Href': 'https://developer.aliyun.com/learning?spm=5176.13944111.J_7083388720.12.5c45bd33OWlgFn' 999 | }, { 1000 | 'Name': '哔哩哔哩', 1001 | 'Title': '国内知名的视频弹幕网站', 1002 | 'Href': 'https://www.youtube.com/' 1003 | }, { 1004 | 'Name': 'YouTube', 1005 | 'Title': '全球最大视频播放站点', 1006 | 'Href': 'https://www.youtube.com/' 1007 | }] 1008 | }, { 1009 | "pageT2": "在线靶机", 1010 | "pageC2": [{ 1011 | 'Name': 'VulApps', 1012 | 'Title': '快速搭建各种漏洞环境@Medicean', 1013 | 'Href': 'https://github.com/Medicean/VulApps' 1014 | }, { 1015 | 'Name': 'Vulhub', 1016 | 'Title': '快速搭建各种漏洞环境@phith0n', 1017 | 'Href': 'https://github.com/phith0n/vulhub' 1018 | }, { 1019 | 'Name': 'VulnRange', 1020 | 'Title': 'VulnRange的定位是一个漏洞靶场,用于快速的启动漏洞环境,便于漏洞复现和研究', 1021 | 'Href': 'https://github.com/wgpsec/VulnRange' 1022 | }, { 1023 | 'Name': 'Vulstudy', 1024 | 'Title': 'vulstudy@c0ny1', 1025 | 'Href': 'https://github.com/c0ny1/vulstudy' 1026 | }, { 1027 | 'Name': 'Vulfocus', 1028 | 'Title': 'Vulfocus 是一个漏洞集成平台,将漏洞环境 docker 镜像,放入即可使用,开箱即用。', 1029 | 'Href': 'https://github.com/fofapro/vulfocus' 1030 | }, { 1031 | 'Name': 'Hack-The-Box', 1032 | 'Title': 'Hack-The-Box', 1033 | 'Href': 'https://www.hackthebox.eu/' 1034 | }, { 1035 | 'Name': '漏洞扫描器测试平台', 1036 | 'Title': '常见漏洞扫描器测试平台', 1037 | 'Href': 'http://demo.aisec.cn/demo/aisec/' 1038 | }, { 1039 | 'Name': '上传漏洞环境靶机', 1040 | 'Title': '一个想帮你总结所有类型的上传漏洞的靶场', 1041 | 'Href': 'https://github.com/c0ny1/upload-labs' 1042 | }, { 1043 | 'Name': 'Web渗透靶机系统', 1044 | 'Title': '一个用于渗透透测试演练的WEB系统,用于提升寻找网站能力,也可以用于web安全教学', 1045 | 'Href': 'https://github.com/78778443/permeate' 1046 | }, { 1047 | 'Name': 'Web漏洞靶机平台', 1048 | 'Title': '一个好玩的Web安全-漏洞测试平台', 1049 | 'Href': 'https://github.com/zhuifengshaonianhanlu/pikachu' 1050 | }, { 1051 | 'Name': 'vulnstack红日靶场', 1052 | 'Title': '红日靶场', 1053 | 'Href': 'http://vulnstack.qiyuanxuetang.net/' 1054 | }] 1055 | }, { 1056 | "pageT2": "技能图谱", 1057 | "pageC2": [{ 1058 | 'Name': '安全技能路线 - SecWiki', 1059 | 'Title': '安全技能 -SecWiki', 1060 | 'Href': 'https://www.sec-wiki.com/skill/index?navisec' 1061 | }, { 1062 | 'Name': '安全研发技能表 - 知道创宇', 1063 | 'Title': '知行合一 守正出奇', 1064 | 'Href': 'http://blog.knownsec.com/Knownsec_RD_Checklist/index.html' 1065 | }, { 1066 | 'Name': 'StuQ技能图谱', 1067 | 'Title': 'StuQ实践驱动的IT职业学习和服务平台', 1068 | 'Href': 'https://github.com/TeamStuQ/skill-map' 1069 | }, { 1070 | 'Name': '安全思维导图', 1071 | 'Title': '收集整理的安全类思维导图', 1072 | 'Href': 'https://github.com/coco413/SecMind' 1073 | }] 1074 | }] 1075 | }, { 1076 | "pageT1": "开发编程", 1077 | "pageC1": [{ 1078 | "pageT2": "技术社区", 1079 | "pageC2": [{ 1080 | 'Name': 'V2EX', 1081 | 'Title': 'V2EX 是一个关于分享和探索的地方', 1082 | 'Href': 'https://www.v2ex.com/?tab=hot' 1083 | }, { 1084 | 'Name': 'VC驿站', 1085 | 'Title': 'C语言 C++ MFC 编程学习交流论坛', 1086 | 'Href': 'http://www.cctry.com/' 1087 | }, { 1088 | 'Name': '力扣', 1089 | 'Title': '全球极客职业技能成长平台', 1090 | 'Href': 'https://leetcode-cn.com/' 1091 | }, { 1092 | 'Name': '牛客网', 1093 | 'Title': '牛客网', 1094 | 'Href': 'https://www.nowcoder.com/' 1095 | }, { 1096 | 'Name': 'Github热点', 1097 | 'Title': 'Github热点', 1098 | 'Href': 'https://github.com/trending' 1099 | }, { 1100 | 'Name': 'LearnKu', 1101 | 'Title': '终身编程者的知识社区', 1102 | 'Href': 'https://learnku.com' 1103 | }] 1104 | }, { 1105 | "pageT2": "开发框架", 1106 | "pageC2": [{ 1107 | 'Name': 'FastAdmin后台框架', 1108 | 'Title': '基于ThinkPHP5+Bootstrap的极速后台开发框架', 1109 | 'Href': 'https://github.com/karsonzhang/fastadmin' 1110 | }, { 1111 | 'Name': 'X-admin后台框架', 1112 | 'Title': 'X-admin基于layui的轻量级前端后台管理框架', 1113 | 'Href': 'http://x.xuebingsi.com/' 1114 | }, { 1115 | 'Name': 'YiiBoot后台框架', 1116 | 'Title': '通用管理后台系统', 1117 | 'Href': 'https://gitee.com/penngo/chadmin' 1118 | }, { 1119 | 'Name': 'layui后台框架', 1120 | 'Title': '通用管理后台系统', 1121 | 'Href': 'https://www.layuiweb.com/' 1122 | }, { 1123 | 'Name': 'Dcat-admin后台框架', 1124 | 'Title': 'Dcat-admin后台框架', 1125 | 'Href': 'https://github.com/jqhph/dcat-admin' 1126 | }, { 1127 | 'Name': 'Typecho建站', 1128 | 'Title': 'Typecho建站', 1129 | 'Href': 'https://typecho.me/' 1130 | }, { 1131 | 'Name': 'WordPress建站', 1132 | 'Title': 'WordPress是一款能让您建立出色网站、博客或应用的开源软件', 1133 | 'Href': 'https://cn.wordpress.org/' 1134 | }, , { 1135 | 'Name': 'Docsify建站', 1136 | 'Title': '静态生成wiki站点', 1137 | 'Href': 'https://docsify.js.org/#/', 1138 | }, { 1139 | 'Name': 'Ant UI框架', 1140 | 'Title': 'AntUI框架', 1141 | 'Href': 'https://pro.ant.design/index-cn' 1142 | }, { 1143 | 'Name': 'Element UI框架', 1144 | 'Title': 'Element UI框架', 1145 | 'Href': 'https://element.eleme.io/' 1146 | }, { 1147 | 'Name': 'Iview UI框架', 1148 | 'Title': 'IviewUI框架', 1149 | 'Href': 'http://v1.iviewui.com/' 1150 | }, { 1151 | 'Name': 'TDesign UI框架', 1152 | 'Title': 'TDesign UI框架', 1153 | 'Href': 'https://github.com/Tencent/tdesign' 1154 | }, { 1155 | 'Name': 'Naive UI', 1156 | 'Title': 'NaiveUI框架', 1157 | 'Href': 'https://www.naiveui.com' 1158 | }, { 1159 | 'Name': 'Arco UI框架', 1160 | 'Title': 'Arco UI框架', 1161 | 'Href': 'https://arco.design/', 1162 | "New": "1" 1163 | }, { 1164 | 'Name': 'Semi UI框架', 1165 | 'Title': 'Semi UI框架', 1166 | 'Href': 'https://semi.design/zh-CN/', 1167 | "New": "1" 1168 | }, { 1169 | 'Name': 'UDCDesign UI框架', 1170 | 'Title': 'UDCDesign UI框架', 1171 | 'Href': 'https://findesign.jd.com/#/home', 1172 | "New": "1" 1173 | }, { 1174 | 'Name': 'Gin-vue UI框架', 1175 | 'Title': 'Gin-vue UI框架', 1176 | 'Href': 'https://demo.gin-vue-admin.com/#/layout/dashboard', 1177 | "New": "1" 1178 | }, { 1179 | 'Name': '小红书设计规范', 1180 | 'Title': '小红书设计规范', 1181 | 'Href': 'https://rpdc.xiaohongshu.com/52-design-principles', 1182 | "New": "1" 1183 | }, { 1184 | 'Name': '蚂蚁设计规范', 1185 | 'Title': '蚂蚁设计规范', 1186 | 'Href': 'https://2x.ant.design/docs/spec/alignment-cn', 1187 | "New": "1" 1188 | }, { 1189 | 'Name': 'Xena僵尸网络框架', 1190 | 'Title': 'Xena僵尸网络框架', 1191 | 'Href': 'https://xena.network/' 1192 | }, { 1193 | 'Name': 'Flutter开发框架', 1194 | 'Title': 'Flutter开发框架', 1195 | 'Href': 'https://flutter.cn/' 1196 | }, { 1197 | 'Name': 'Electron开发框架', 1198 | 'Title': 'Electron开发框架', 1199 | 'Href': 'https://www.electronjs.org/' 1200 | }] 1201 | }, { 1202 | "pageT2": "接口调用", 1203 | "pageC2": [{ 1204 | 'Name': '腾讯图片识别API接口', 1205 | 'Title': '万象优图', 1206 | 'Href': 'https://cloud.tencent.com/act/event/ci_demo.html' 1207 | }, { 1208 | 'Name': '京东API接口', 1209 | 'Title': 'RTBAsia提供“非人类流量”甄别API,和精确地理定位API。', 1210 | 'Href': 'https://wx.jcloud.com/' 1211 | }, { 1212 | 'Name': '阿里图像识别API接口', 1213 | 'Title': '专注内容安全检测服务,助您开启轻便的内容安全运营模式', 1214 | 'Href': 'https://m.aliyun.com/markets/aliyun/act/lvwangdemo#testOnline' 1215 | }, { 1216 | 'Name': '高德地图API接口', 1217 | 'Title': '高德开放平台', 1218 | 'Href': 'http://lbs.amap.com/' 1219 | }, { 1220 | 'Name': '聚合数据API接口', 1221 | 'Title': '聚合第三方平台', 1222 | 'Href': 'https://www.juhe.cn' 1223 | }, { 1224 | 'Name': 'Apifox管理平台', 1225 | 'Title': 'API 设计、开发、测试一体化协作平台', 1226 | 'Href': 'https://apifox.com/' 1227 | }] 1228 | }, { 1229 | "pageT2": "项目外包", 1230 | "pageC2": [{ 1231 | 'Name': 'A5站点', 1232 | 'Title': '中国最大的互联网交易平台,域名,网站,广告交易', 1233 | 'Href': 'http://www.a5.net/' 1234 | }, { 1235 | 'Name': '猪八戒', 1236 | 'Title': '中国领先的一站式的企业全生命周期服务平台', 1237 | 'Href': 'http://www.zbj.com/' 1238 | }, { 1239 | 'Name': '程序员客栈', 1240 | 'Title': '程序员兼职,程序员私活,程序员接单平台-程序员客栈', 1241 | 'Href': 'https://www.proginn.com/cat/' 1242 | }, { 1243 | 'Name': '不上班研究所', 1244 | 'Title': '不上班研究所 - 自由职业者交流学习成长平台_T站', 1245 | 'Href': 'https://www.toocool.cc/' 1246 | }] 1247 | }, { 1248 | "pageT2": "资源文献", 1249 | "pageC2": [{ 1250 | 'Name': '谷歌机器学习课程', 1251 | 'Title': '谷歌机器学习课程', 1252 | 'Href': 'https://developers.google.cn/machine-learning/crash-course/' 1253 | }, { 1254 | 'Name': '产品经理的人工智能学习库', 1255 | 'Title': '产品经理的人工智能学习库', 1256 | 'Href': 'https://easyai.tech/' 1257 | }, { 1258 | 'Name': 'Awesome-ml-for-cybersecurity', 1259 | 'Title': '机器学习中文资料', 1260 | 'Href': 'https://github.com/jivoi/awesome-ml-for-cybersecurity/blob/master/README_ch.md' 1261 | }, { 1262 | 'Name': 'Electron中文文档', 1263 | 'Title': 'Electron中文文档', 1264 | 'Href': 'https://wizardforcel.gitbooks.io/electron-doc/content/tutorial/quick-start.html' 1265 | }, { 1266 | 'Name': 'Chrome开发者工具中文手册', 1267 | 'Title': 'Chrome开发者工具中文手册', 1268 | 'Href': 'https://github.com/CN-Chrome-DevTools/CN-Chrome-DevTools' 1269 | }, { 1270 | 'Name': 'Chrome插件开发文档', 1271 | 'Title': 'Chrome插件开发全攻略', 1272 | 'Href': 'https://github.com/sxei/chrome-plugin-demo' 1273 | }, { 1274 | 'Name': 'WEB前端知识库', 1275 | 'Title': 'WEB前端知识库,Frontend Knowledge Base', 1276 | 'Href': 'https://github.com/a233894432/Frontend_Knowledge_Base' 1277 | }, { 1278 | 'Name': 'Kali中文说明', 1279 | 'Title': 'Kali Linux Tools中文说明书', 1280 | 'Href': 'https://github.com/louchaooo/kali-tools-zh' 1281 | }, { 1282 | 'Name': 'Burp Suite官方中文版', 1283 | 'Title': '官方在 Burp Suite 所放出的Support Center中的帮助文档翻译而来的中文版', 1284 | 'Href': 'https://www.gitbook.com/book/yw9381/burp_suite_doc_zh_cn/details' 1285 | }, { 1286 | 'Name': 'DevOps元素周期表', 1287 | 'Title': 'DevOps 实践、敏捷实践、精益实践提炼出来的知识体系。', 1288 | 'Href': 'https://devops.phodal.com/home' 1289 | }, { 1290 | 'Name': '命令Cheatsheets', 1291 | 'Title': 'collection of cheatsheets', 1292 | 'Href': 'https://devhints.io/', 1293 | }, { 1294 | 'Name': 'quickref代码块', 1295 | 'Title': 'Here are some cheatsheets and quick references contributed by open source angels.', 1296 | 'Href': 'https://quickref.me/' 1297 | }, { 1298 | 'Name': 'MSDN系统下载', 1299 | 'Title': 'MSDN 我告诉你', 1300 | 'Href': 'http://itellyou.cn/' 1301 | }, { 1302 | 'Name': '尝鲜派IOS下载', 1303 | 'Title': '尝鲜派Apple系列更新', 1304 | 'Href': 'https://ibeta.me/' 1305 | }, { 1306 | 'Name': 'Docker 极速下载镜像', 1307 | 'Title': 'Docker 极速下载镜像', 1308 | 'Href': 'https://get.daocloud.io/' 1309 | }, { 1310 | 'Name': '工业自动化专业导航', 1311 | 'Title': '工业自动化专业导航', 1312 | 'Href': 'https://at.stiny.cn/' 1313 | }, { 1314 | 'Name': '中国改革开放全记录', 1315 | 'Title': '中国改革开放全记录', 1316 | 'Href': 'http://www.reformdata.org/records/1978.shtml' 1317 | }, { 1318 | 'Name': '商务部对外投资合作国别指南', 1319 | 'Title': '商务部对外投资合作国别指南', 1320 | 'Href': 'http://fec.mofcom.gov.cn/article/gbdqzn/' 1321 | }, { 1322 | 'Name': '书栈网', 1323 | 'Title': '书栈网 · BookStack_程序员IT互联网开源编程书籍免费阅读,助您【码】力十足!', 1324 | 'Href': 'https://www.bookstack.cn/' 1325 | }, { 1326 | 'Name': 'The Algorithms开源算法库', 1327 | 'Title': 'GitHub最大的开源算法库', 1328 | 'Href': 'https://the-algorithms.com/zh_Hans' 1329 | }] 1330 | }] 1331 | }, { 1332 | "pageT1": "产品设计", 1333 | "pageC1": [{ 1334 | "pageT2": "产品社区", 1335 | "pageC2": [{ 1336 | 'Name': '产品壹佰', 1337 | 'Title': '产品壹佰 | 优质的产品经理学习网站', 1338 | 'Href': 'http://www.chanpin100.com/' 1339 | }, { 1340 | 'Name': 'PMCAFF社区', 1341 | 'Title': 'PMCAFF产品经理社区 - 产品经理人气组织,产品爱好者学习交流社区,专注互联网产品研究', 1342 | 'Href': 'https://www.pmcaff.com/' 1343 | }, { 1344 | 'Name': '人人都是产品经理', 1345 | 'Title': '人人都是产品经理', 1346 | 'Href': 'http://www.woshipm.com/' 1347 | }, { 1348 | 'Name': '少数派', 1349 | 'Title': '高效工作,品质生活官方', 1350 | 'Href': 'https://sspai.com/' 1351 | }, { 1352 | 'Name': 'V2EX', 1353 | 'Title': 'V2EX 是一个关于分享和探索的地方', 1354 | 'Href': 'https://www.v2ex.com/' 1355 | }, { 1356 | 'Name': 'Pkmer知识管理社区', 1357 | 'Title': '打造东半球强大的知识管理社区', 1358 | 'Href': 'https://pkmer.cn/#home' 1359 | }, { 1360 | 'Name': '站酷', 1361 | 'Title': '站酷 (ZCOOL) - 设计师互动平台 - 打开站酷,发现更好的设计!', 1362 | 'Href': 'https://www.zcool.com.cn/' 1363 | }, { 1364 | 'Name': '优设网', 1365 | 'Title': '优设网 - UISDC - 设计师交流学习平台 - 看设计文章,学软件教程,找灵感素材,尽在优设网!', 1366 | 'Href': 'https://www.uisdc.com/' 1367 | }, { 1368 | 'Name': '搞定设计', 1369 | 'Title': '稿定设计-做图做视频必备_在线设计神器_海量版权素材模板', 1370 | 'Href': 'https://www.gaoding.com/' 1371 | }, { 1372 | 'Name': 'MasterGo', 1373 | 'Title': 'MasterGo', 1374 | 'Href': 'https://mastergo.com/' 1375 | },] 1376 | }, { 1377 | "pageT2": "设计素材", 1378 | "pageC2": [{ 1379 | 'Name': '阿里矢量图库', 1380 | 'Title': '阿里矢量图库', 1381 | 'Href': 'https://www.iconfont.cn/' 1382 | }, { 1383 | 'Name': 'icones矢量图库', 1384 | 'Title': 'icones矢量图库', 1385 | 'Href': 'https://icones.js.org/' 1386 | }, { 1387 | 'Name': 'Mastergo资源库', 1388 | 'Title': '海量资源为你的创意工作注入活力', 1389 | 'Href': 'https://mastergo.com/community/' 1390 | }, { 1391 | 'Name': '工业图扑软件', 1392 | 'Title': '构建先进 2D 和 3D 可视化所需要的一切', 1393 | 'Href': 'https://hightopo.com/index.html' 1394 | }, { 1395 | 'Name': '易知微可视化', 1396 | 'Title': '数字孪生看见数字化的无限可能', 1397 | 'Href': 'https://easyv.cloud/', 1398 | "New": "1" 1399 | }, { 1400 | 'Name': '来画动画设计', 1401 | 'Title': '长期深耕于数字创作创意工具领域, 致力为千万用户提供高效卓越服务', 1402 | 'Href': 'https://www.laihua.com/' 1403 | }, { 1404 | 'Name': '镝数图表设计', 1405 | 'Title': '在线动态图表工具-零代码数据大屏可视化', 1406 | 'Href': 'https://dycharts.com/' 1407 | }, { 1408 | 'Name': 'Apache ECharts库', 1409 | 'Title': '一个基于 JavaScript 的开源可视化图表库', 1410 | 'Href': 'https://echarts.apache.org/zh/index.html' 1411 | }, { 1412 | 'Name': '蚂蚁G6 图可视化引擎', 1413 | 'Title': 'G6 是一个简单、易用、完备的图可视化引擎', 1414 | 'Href': 'https://g6.antv.vision/zh/examples/' 1415 | }, { 1416 | 'Name': '蚂蚁X6 图编辑引擎', 1417 | 'Title': 'X6 是基于 HTML 和 SVG 的图编辑引擎,提供低成本的定制能力和开箱即用的内置扩展,方便我们快速搭建 DAG 图、ER 图、流程图、血缘图等应用。', 1418 | 'Href': 'https://x6.antv.antgroup.com/' 1419 | }, { 1420 | 'Name': '秀米', 1421 | 'Title': 'H5制作及图文排版在线工具', 1422 | 'Href': 'https://xiumi.us/' 1423 | }, { 1424 | 'Name': '在线PS', 1425 | 'Title': 'uupoop | Online Photo Editor', 1426 | 'Href': 'https://www.uupoop.com/#/' 1427 | }, { 1428 | 'Name': 'DataV可视化', 1429 | 'Title': 'DataV旨让更多的人看到数据可视化的魅力,帮助非专业的工程师通过图形化的界面轻松搭建专业水准的', 1430 | 'Href': 'https://data.aliyun.com/visual/datav' 1431 | }, { 1432 | 'Name': '造数', 1433 | 'Title': '在线可视化工具', 1434 | 'Href': 'https://www.zaoshu.io/' 1435 | }, { 1436 | 'Name': '积木报表', 1437 | 'Title': '打造 “简单 | 专业 | 智能” 的数据可视化工具,报表与大屏设计', 1438 | 'Href': 'http://jimureport.com/' 1439 | }, { 1440 | 'Name': 'Diagrams在线图表绘画', 1441 | 'Title': 'Diagrams在线图表绘画', 1442 | 'Href': 'https://app.diagrams.net/' 1443 | }, { 1444 | 'Name': '文图', 1445 | 'Title': '文图旨在为用户打造一个可在线编辑、即时生成数据报告的工具', 1446 | 'Href': 'https://wentu.io/' 1447 | }, { 1448 | 'Name': 'iSlide PPT素材', 1449 | 'Title': '让PPT设计简单起来', 1450 | 'Href': 'https://www.islide.cc/' 1451 | }, { 1452 | 'Name': '优品PPT', 1453 | 'Title': 'PPT模板免费下载_精美免费PPT模板下载', 1454 | 'Href': 'https://www.ypppt.com/' 1455 | }, { 1456 | 'Name': '稻壳儿PPT模板', 1457 | 'Title': 'WPS模板内容服务平台', 1458 | 'Href': 'https://www.docer.com/' 1459 | }, { 1460 | 'Name': '专利顾如', 1461 | 'Title': '专利搜索', 1462 | 'Href': 'https://www.patentguru.com/cn/search?q=' 1463 | }, { 1464 | 'Name': 'FineBI数据分析', 1465 | 'Title': 'FineBI数据分析', 1466 | 'Href': 'https://www.finebi.com/' 1467 | }, { 1468 | 'Name': '专利顾如', 1469 | 'Title': '专利搜索', 1470 | 'Href': 'https://www.patentguru.com/cn/search?q=' 1471 | }] 1472 | }, { 1473 | "pageT2": "协作平台", 1474 | "pageC2": [{ 1475 | 'Name': '蓝湖', 1476 | 'Title': '蓝湖 - 高效的产品设计协作平台', 1477 | 'Href': 'https://lanhuapp.com/' 1478 | }, { 1479 | 'Name': 'Trello', 1480 | 'Title': '协同合作平台', 1481 | 'Href': 'https://trello.com' 1482 | }, { 1483 | 'Name': '酷家乐', 1484 | 'Title': '全空间房屋云设计软件平台,为数字化升级提供一站式的解决方案', 1485 | 'Href': 'https://b.kujiale.com/' 1486 | }, { 1487 | 'Name': '码前', 1488 | 'Title': '码前DevBefore-一站式需求+原型+UI自动化智能设计平台', 1489 | 'Href': 'https://www.devbefore.com/product' 1490 | }] 1491 | }] 1492 | }, { 1493 | "pageT1": "实用工具", 1494 | "pageC1": [ 1495 | { 1496 | "pageT2": "AI工具", 1497 | "pageC2": [{ 1498 | 'Name': 'Midjourney AI画图', 1499 | 'Title': 'Midjourney', 1500 | 'Href': 'https://www.midjourneyai.ai/zh-CN' 1501 | }, { 1502 | 'Name': 'ChatGPT角色切换版', 1503 | 'Title': 'ChatGPT角色切换版', 1504 | 'Href': 'http://hhgo.huhuwang.cn/' 1505 | }, { 1506 | 'Name': '阿里通义', 1507 | 'Title': '阿里通义', 1508 | 'Href': 'https://tongyi.aliyun.com/' 1509 | }, { 1510 | 'Name': 'AI驿站', 1511 | 'Title': 'AI驿站', 1512 | 'Href': 'https://www.51aiyz.com/' 1513 | }, { 1514 | 'Name': '深言达意', 1515 | 'Title': '懂文字,更懂你', 1516 | 'Href': 'https://www.shenyandayi.com/' 1517 | }, { 1518 | 'Name': 'PMAI', 1519 | 'Title': 'PMAI', 1520 | 'Href': 'https://www.pm-ai.cn/' 1521 | }, { 1522 | 'Name': 'AI工具集', 1523 | 'Title': 'AI工具集', 1524 | 'Href': 'https://ai-bot.cn/' 1525 | }] 1526 | }, { 1527 | "pageT2": "内容运营", 1528 | "pageC2": [{ 1529 | 'Name': '芦笋录屏', 1530 | 'Title': '极简视频录制工具,同时录制人像和屏幕,美颜、虚拟头像等让视频信息更生动。', 1531 | 'Href': 'https://lusun.com/' 1532 | }, { 1533 | 'Name': '芦笋提词器', 1534 | 'Title': '一款支持智能跟读、隐形提词的应用;告别忘词,一镜到底', 1535 | 'Href': 'https://tcq.lusun.com/' 1536 | }] 1537 | }, { 1538 | "pageT2": "效率工具", 1539 | "pageC2": [{ 1540 | 'Name': 'Things3', 1541 | 'Title': 'GTD日常清单记录', 1542 | 'Href': 'https://culturedcode.com/' 1543 | }, { 1544 | 'Name': '潮汐', 1545 | 'Title': '专注工作、学习、减压、冥想与白噪音的番茄钟计时器', 1546 | 'Href': 'https://itunes.apple.com/cn/app/id1077776989' 1547 | }, { 1548 | 'Name': 'Inoreader', 1549 | 'Title': 'Inoreader - The content reader for power users who want to save time.', 1550 | 'Href': 'https://inoreader.com' 1551 | }, { 1552 | 'Name': 'RSSHub', 1553 | 'Title': '万物皆可RSS', 1554 | 'Href': 'https://docs.rsshub.app/' 1555 | }, { 1556 | 'Name': 'Feeddd', 1557 | 'Title': 'feeddd', 1558 | 'Href': 'https://feeddd.org/feeds' 1559 | }, { 1560 | 'Name': 'Distill', 1561 | 'Title': '网页监控提醒', 1562 | 'Href': 'https://distill.io/apps/web-monitor/' 1563 | }, { 1564 | 'Name': 'IFTTT', 1565 | 'Title': '让复杂的事情简单化,让重复的事情自动化', 1566 | 'Href': 'https://ifttt.com' 1567 | }] 1568 | }, { 1569 | "pageT2": "编码转换", 1570 | "pageC2": [{ 1571 | 'Name': 'Codebeautify格式转换大全', 1572 | 'Title': 'Codebeautify格式转换大全', 1573 | 'Href': 'https://codebeautify.org/' 1574 | }, { 1575 | 'Name': '在线解密大全', 1576 | 'Title': 'NaviSec.it解密', 1577 | 'Href': 'https://navisec.it/密码在线解密大全/' 1578 | }, { 1579 | 'Name': 'Somd5', 1580 | 'Title': '输入让你无语的MD5', 1581 | 'Href': 'https://www.somd5.com/' 1582 | }, { 1583 | 'Name': 'BASE64解密', 1584 | 'Title': 'BASE64加密解密', 1585 | 'Href': 'http://base64.xpcha.com/' 1586 | }, { 1587 | 'Name': 'JSFUCK编码', 1588 | 'Title': 'JSFUCK', 1589 | 'Href': 'http://www.jsfuck.com/' 1590 | }, { 1591 | 'Name': 'HTML解密', 1592 | 'Title': 'HTML源代码加密/解密', 1593 | 'Href': 'http://www.91live.com/jmjm.htm' 1594 | }, { 1595 | 'Name': '摩斯密码', 1596 | 'Title': 'morse电码', 1597 | 'Href': 'http://tool.lu/morse/' 1598 | }] 1599 | }, { 1600 | "pageT2": "代理打码", 1601 | "pageC2": [{ 1602 | 'Name': '阿布云代理', 1603 | 'Title': '阿布云', 1604 | 'Href': 'https://www.abuyun.com' 1605 | }, { 1606 | 'Name': '快代理', 1607 | 'Title': '快代理', 1608 | 'Href': 'https://www.kuaidaili.com/' 1609 | }, { 1610 | 'Name': 'socketpro代理', 1611 | 'Title': 'socketpro代理', 1612 | 'Href': 'https://www.socketpro.site/zh/order/new' 1613 | }, { 1614 | 'Name': 'tly12代理', 1615 | 'Title': 'tly12代理', 1616 | 'Href': 'https://www.tly12.com/modules/index.php' 1617 | }, { 1618 | 'Name': '超人打码', 1619 | 'Title': '超人打码', 1620 | 'Href': 'http://www.chaorendama.com/' 1621 | }] 1622 | }, { 1623 | "pageT2": "匿名服务", 1624 | "pageC2": [{ 1625 | 'Name': 'Protonvpn', 1626 | 'Title': 'Protonvpn', 1627 | 'Href': 'https://protonvpn.com/blog/free-vpn-service-launch/' 1628 | }, { 1629 | 'Name': 'Protonmail', 1630 | 'Title': 'Protonmail', 1631 | 'Href': 'https://protonmail.com/' 1632 | }, { 1633 | 'Name': '匿名短信', 1634 | 'Title': '在线接收短信验证码', 1635 | 'Href': 'https://yunduanxin.net/' 1636 | }, { 1637 | 'Name': '匿名短信(备用)', 1638 | 'Title': '在线接收短信验证码', 1639 | 'Href': 'https://www.materialtools.com/' 1640 | }, { 1641 | 'Name': '匿名短信(备用)', 1642 | 'Title': '在线接收短信验证码', 1643 | 'Href': 'http://www.z-sms.com/' 1644 | }, { 1645 | 'Name': '匿名短信(备用)', 1646 | 'Title': '在线接收短信验证码', 1647 | 'Href': 'https://www.storytrain.info/' 1648 | }, { 1649 | 'Name': '匿名短信(备用)', 1650 | 'Title': '在线接收短信验证码', 1651 | 'Href': 'https://zh.mytrashmobile.com/' 1652 | }, { 1653 | 'Name': 'TempoMail临时邮箱', 1654 | 'Title': '临时邮箱、临时邮、临时电子邮箱、24小时邮箱', 1655 | 'Href': 'https://www.tempo-mail.com' 1656 | }, { 1657 | 'Name': 'moakt临时邮箱', 1658 | 'Title': '临时邮箱、临时邮、临时电子邮箱、24小时邮箱', 1659 | 'Href': 'https://moakt.com/zh' 1660 | }, { 1661 | 'Name': 'Tmpmail临时邮箱', 1662 | 'Title': '临时邮箱、临时邮、临时电子邮箱、24小时邮箱', 1663 | 'Href': 'https://github.com/sdushantha/tmpmail' 1664 | }, { 1665 | 'Name': '临时邮箱', 1666 | 'Title': '临时邮箱、临时邮、临时电子邮箱、24小时邮箱', 1667 | 'Href': 'http://24mail.chacuo.net/' 1668 | }, { 1669 | 'Name': '临时邮箱(备用)', 1670 | 'Title': '临时邮箱、临时邮、临时电子邮箱、24小时邮箱', 1671 | 'Href': 'https://www.guerrillamail.com/' 1672 | }, { 1673 | 'Name': '临时邮箱(备用)', 1674 | 'Title': '临时邮箱、临时邮、临时电子邮箱、24小时邮箱', 1675 | 'Href': 'http://mail.bccto.me/' 1676 | }, { 1677 | 'Name': '临时邮箱(备用)', 1678 | 'Title': '临时邮箱、临时邮、临时电子邮箱、24小时邮箱', 1679 | 'Href': 'https://10minutemail.org/' 1680 | }, { 1681 | 'Name': '临时邮箱(备用)', 1682 | 'Title': '临时邮箱、临时邮、临时电子邮箱、24小时邮箱', 1683 | 'Href': 'http://mailnesia.com/' 1684 | }, { 1685 | 'Name': '临时邮箱(备用)', 1686 | 'Title': '临时邮箱、临时邮、临时电子邮箱、24小时邮箱', 1687 | 'Href': 'https://mail.rev1sion.net/' 1688 | }, { 1689 | 'Name': '临时教育邮箱(备用)', 1690 | 'Title': '临时教育邮箱、临时邮、临时电子邮箱、24小时邮箱', 1691 | 'Href': 'https://mail.mjj.edu.ge/' 1692 | }] 1693 | }, { 1694 | "pageT2": "其他工具", 1695 | "pageC2": [{ 1696 | 'Name': '微信文件传输助手网页版', 1697 | 'Title': '微信文件传输助手网页版', 1698 | 'Href': 'https://filehelper.weixin.qq.com/' 1699 | }, { 1700 | 'Name': '网易云音乐外链', 1701 | 'Title': '网易云音乐外链', 1702 | 'Href': 'http://music.163.com/song/media/outer/url?id=281951.mp3' 1703 | }, { 1704 | 'Name': '在线生成漂亮的代码分享图', 1705 | 'Title': '在线生成漂亮的代码分享图', 1706 | 'Href': 'https://carbon.now.sh/' 1707 | }, { 1708 | 'Name': '在线手写字体生成', 1709 | 'Title': '在线手写字体生成', 1710 | 'Href': 'https://saurabhdaware.github.io/text-to-handwriting/' 1711 | }, { 1712 | 'Name': '在线手写字体转换', 1713 | 'Title': '在线手写字体转换', 1714 | 'Href': 'https://10015.io/tools/text-to-handwriting-converter' 1715 | }, { 1716 | 'Name': 'OCR文字识别', 1717 | 'Title': '图片转文字在线 - 图片文字提取 - 网页OCR文字识别 - 白描网页版', 1718 | 'Href': 'https://web.baimiaoapp.com/' 1719 | }, { 1720 | 'Name': 'curl转其他语言工具', 1721 | 'Title': 'curl转其他语言工具', 1722 | 'Href': 'https://curl.trillworks.com/' 1723 | }, { 1724 | 'Name': 'Element UI表单设计及代码生成器', 1725 | 'Title': 'Element UI表单设计及代码生成器', 1726 | 'Href': 'https://mrhj.gitee.io/form-generator' 1727 | }, { 1728 | 'Name': '超清游戏壁纸站', 1729 | 'Title': 'deadendthrills', 1730 | 'Href': 'https://www.deadendthrills.com/' 1731 | }, { 1732 | 'Name': '口红色号识别', 1733 | 'Title': '口红颜色可视化', 1734 | 'Href': 'http://zhangwenli.com/lipstick/' 1735 | }, { 1736 | 'Name': '百度镜子', 1737 | 'Title': '百度镜子', 1738 | 'Href': 'https://baidujingzi.com/' 1739 | }, { 1740 | 'Name': '让我帮你百度一下', 1741 | 'Title': '献给所有喜欢问他人问题而不是自己去搜索的人.', 1742 | 'Href': 'http://baidu.apphb.com/' 1743 | }, { 1744 | 'Name': '在线EXIF查看', 1745 | 'Title': '图虫EXIF查看器', 1746 | 'Href': 'https://exif.cn/' 1747 | }, { 1748 | 'Name': '在线文档翻译', 1749 | 'Title': '在线文档翻译', 1750 | 'Href': 'https://dashboard.doctranslator.com/translations/edit?locale=zh' 1751 | }, { 1752 | 'Name': 'DeepL文档翻译', 1753 | 'Title': 'DeepL文档翻译', 1754 | 'Href': 'https://www.deepl.com/zh/pro/select-country#team' 1755 | }, { 1756 | 'Name': '表情包站点', 1757 | 'Title': '表情包站点', 1758 | 'Href': 'https://www.zhuangbi.info/' 1759 | }, { 1760 | 'Name': '批量打开网址', 1761 | 'Title': '迅速打开多个链接', 1762 | 'Href': 'http://www.openurls.com.cn/' 1763 | }, { 1764 | 'Name': 'Server酱', 1765 | 'Title': '迅速打开多个链接', 1766 | 'Href': '从服务器、路由器等设备上推消息到手机的工具' 1767 | }, { 1768 | 'Name': 'Github图标', 1769 | 'Title': 'Github图标', 1770 | 'Href': 'https://octodex.github.com/' 1771 | }, { 1772 | 'Name': 'GitHub指定文件下载', 1773 | 'Title': 'GitHub指定文件下载', 1774 | 'Href': 'http://blog.luckly-mjw.cn/tool-show/github-directory-downloader/index.html' 1775 | }, { 1776 | 'Name': 'GitHub国内源同步', 1777 | 'Title': 'GitCode——开源代码托管平台,独立第三方开源社区', 1778 | 'Href': 'https://gitcode.net/mirrors/' 1779 | }, { 1780 | 'Name': '微软产品激活工具箱', 1781 | 'Title': '微软产品激活工具箱', 1782 | 'Href': 'https://pkeytools.azurewebsites.net/ShareKeys' 1783 | }, { 1784 | 'Name': '终端录屏', 1785 | 'Title': '终端录屏', 1786 | 'Href': 'https://asciinema.org/' 1787 | }, { 1788 | 'Name': 'pastebin文本', 1789 | 'Title': 'pastebin', 1790 | 'Href': 'https://pastebin.com/raw/' 1791 | }, { 1792 | 'Name': 'command-not-found', 1793 | 'Title': 'Install any command on any operating system.', 1794 | 'Href': 'https://command-not-found.com/' 1795 | }, { 1796 | 'Name': 'Fakeupdate', 1797 | 'Title': '假装 Windows 升级界面', 1798 | 'Href': 'http://fakeupdate.net/' 1799 | }, { 1800 | 'Name': '发送QQ好友和群组', 1801 | 'Title': '伪造发送内容', 1802 | 'Href': 'http://connect.qq.com/widget/shareqq/index.html?url=http://freebuf.com&desc=&title=%E8%B0%B7%E6%AD%8C%E6%90%9C%E7%B4%A2&summary=%E8%B0%B7%E6%AD%8C%E4%B8%80%E4%B8%8B,%E4%BD%A0%E5%B0%B1%E7%9F%A5%E9%81%93&pics=http://image.3001.net/images/20170821/15032849352940.png&flash=&site=http://freebuf.com/###' 1803 | }, { 1804 | 'Name': 'Inoreader优惠', 1805 | 'Title': 'inoreader优惠', 1806 | 'Href': 'https://www.keepitsimple.fr/code-promo-inoreader' 1807 | }, { 1808 | 'Name': '电影狗', 1809 | 'Title': '电影狗 - 专业电影搜索引擎', 1810 | 'Href': 'https://www.dianyinggou.com/' 1811 | }, { 1812 | 'Name': '盘盘电影', 1813 | 'Title': '盘盘电影', 1814 | 'Href': 'https://t.me/s/YunPanPan?q=' 1815 | }, { 1816 | 'Name': '不死鸟电影分享', 1817 | 'Title': '不死鸟电影分享', 1818 | 'Href': 'https://iui.su/hot/' 1819 | }, { 1820 | 'Name': '努努视频', 1821 | 'Title': '努努视频', 1822 | 'Href': 'https://www.nnyy6.top/' 1823 | }, { 1824 | 'Name': '12点影视', 1825 | 'Title': '12点影视', 1826 | 'Href': 'https://www.12yingshi.com/' 1827 | }, { 1828 | 'Name': '爱笑聚影音分享', 1829 | 'Title': '爱笑聚影音分享', 1830 | 'Href': 'https://www.axjbt.com/' 1831 | }, { 1832 | 'Name': '低端影视', 1833 | 'Title': '低端影视', 1834 | 'Href': 'https://ddrk.me/' 1835 | }, { 1836 | 'Name': '哔嘀影视', 1837 | 'Title': '哔嘀影视', 1838 | 'Href': 'https://www.btbdys.com/' 1839 | }, { 1840 | 'Name': '极简壁纸', 1841 | 'Title': '极简壁纸', 1842 | 'Href': 'https://bz.zzzmh.cn/index' 1843 | }, { 1844 | 'Name': '今日热点', 1845 | 'Title': '今日热点汇总', 1846 | 'Href': 'https://lvv2.com/' 1847 | }, { 1848 | 'Name': '全历史', 1849 | 'Title': '全历史', 1850 | 'Href': 'https://www.allhistory.com' 1851 | }, { 1852 | 'Name': 'OSLAW导航站', 1853 | 'Title': '法规文献一站导航', 1854 | 'Href': 'http://www.oslaw.net/' 1855 | }, { 1856 | 'Name': '云网盘之家搜索', 1857 | 'Title': '百度云盘资源搜索下载', 1858 | 'Href': 'http://wowenda.com/' 1859 | }, { 1860 | 'Name': '大圣网盘搜索', 1861 | 'Title': '百度云盘资源搜索下载', 1862 | 'Href': 'https://www.dashengpan.com/' 1863 | }, { 1864 | 'Name': '凌风云网盘搜索', 1865 | 'Title': '百度云盘资源搜索下载', 1866 | 'Href': 'https://www.lingfengyun.com/' 1867 | }, { 1868 | 'Name': '云盘资源网', 1869 | 'Title': '云盘资源网是完全免费的云盘资源分享平台!我们为所有百度网盘、阿里云盘、360云盘、微云、坚果云等所有云盘用户提供服务!您可以自由分享和获取各类云盘网盘资源', 1870 | 'Href': 'https://www.yunpanziyuan.com/' 1871 | }, { 1872 | 'Name': 'gofile网盘', 1873 | 'Title': 'gofile网盘', 1874 | 'Href': 'https://gofile.io/welcome' 1875 | }, { 1876 | 'Name': '在线扒站', 1877 | 'Title': '一键将指定网页的HTML、CSS、JS等前端资源打包下载', 1878 | 'Href': 'https://bazhan.wang/' 1879 | }, { 1880 | 'Name': '共享苹果美区ID', 1881 | 'Title': '共享苹果美区ID', 1882 | 'Href': 'https://jc.zbjs888.com/doc/460/' 1883 | }, { 1884 | 'Name': '在线工具箱', 1885 | 'Title': '在线工具箱', 1886 | 'Href': 'http://ctf.ssleye.com' 1887 | }, { 1888 | 'Name': '在线工具箱(备用)', 1889 | 'Title': '在线工具箱', 1890 | 'Href': 'http://www.bejson.com/' 1891 | }, { 1892 | 'Name': '在线工具箱(备用)', 1893 | 'Title': '在线工具箱', 1894 | 'Href': 'http://tools.bugscaner.com/' 1895 | }, { 1896 | 'Name': '在线工具箱(备用)', 1897 | 'Title': '在线工具箱', 1898 | 'Href': 'https://www.daohangtx.com/html/tools.html' 1899 | }, { 1900 | 'Name': '腾讯帮小忙在线工具箱', 1901 | 'Title': '腾讯帮小忙在线工具箱', 1902 | 'Href': 'https://tool.browser.qq.com/' 1903 | }, { 1904 | 'Name': 'MikuTools在线工具箱', 1905 | 'Title': 'MikuTools在线工具箱', 1906 | 'Href': 'https://tools.miku.ac/' 1907 | }] 1908 | }] 1909 | }, { 1910 | "pageT1": "攻防辅助", 1911 | "pageC1": [{ 1912 | "pageT2": "信息收集", 1913 | "pageC2": [{ 1914 | 'Name': '在线子域查询(Findsubdomains)', 1915 | 'Title': 'Findsubdomains', 1916 | 'Href': 'https://findsubdomains.com/' 1917 | }, { 1918 | 'Name': '在线子域查询(spyse)', 1919 | 'Title': 'spyse', 1920 | 'Href': 'https://spyse.com/' 1921 | }, { 1922 | 'Name': '在线子域查询(Securitytrails)', 1923 | 'Title': 'Securitytrails', 1924 | 'Href': 'https://securitytrails.com' 1925 | // fqywaz40179@chacuo.net alk58106@zwoho.com 1926 | // var tag2=document.getElementsByClassName('aggregated-link mobile-hidden'); for (var i=0;i
  • ' + oPageT1 + '
  • '; 12 | oNavs+= nav_lists; 13 | 14 | var pageC1 = oBject['pageC1']; 15 | 16 | oFronts += '
    ' + oPageT1 + '
    '; 17 | for(sum2 in pageC1){ 18 | var oPage2 = pageC1[sum2]; 19 | var oPageT2 = oPage2['pageT2']; 20 | // console.log(oPageT2); 21 | // console.log(sum2); 22 | var pageC2 = oPage2['pageC2']; 23 | 24 | oFronts += '
    ' + oPageT2 + '
    '; 25 | for(sum3 in pageC2){ 26 | var oPage3 = pageC2[sum3]; 27 | var oNames = oPage3['Name']; 28 | var oTitles = oPage3['Title']; 29 | var oHrefs = oPage3['Href']; 30 | var oNews = oPage3['New']; 31 | var nNt = ""; 32 | if(oNews == 1){ 33 | nNt = 'NEW'; 34 | } 35 | // console.log(oNames); 36 | // console.log(oTitles); 37 | // 38 | oFronts += '
    ' + oNames + '
    ' + nNt; 39 | } 40 | oFronts += "
    "; 41 | } 42 | oFronts += "
    "; 43 | } 44 | // #nav 45 | oNavs = ''; 46 | oFronts = '
    ' + oFronts + '
    '; 47 | // console.log(oFronts); 48 | 49 | document.getElementById("nav").innerHTML = oNavs; 50 | document.getElementById("content").innerHTML = oFronts; 51 | 52 | // window.onload=function(){ 53 | // var hrefId='_'+location.href.split('#')[1]; 54 | // //alert(hrefId); 55 | // var hrefHeight=document.getElementById(hrefId).offsetTop; 56 | // $("html, body").animate({"scroll-top": hrefHeight-70},600,'easeInOutQuint'); 57 | // }; 58 | 59 | //返回顶部 60 | $(document).on('click','#backTop',function(){ 61 | $("html, body").animate({"scroll-top":0},600,'easeInOutQuint'); 62 | }); 63 | 64 | //页面滚动到距顶部600px出现/消失返回顶部按钮 65 | $(window).scroll(function(){ 66 | var targetTop = $(this).scrollTop(); 67 | 68 | if(targetTop > 600){ 69 | $('#backTop').animate({'right':'0'},200); 70 | }else if(targetTop <= 600){ 71 | $('#backTop').stop(); 72 | $('#backTop').animate({'right':'-40px'},200); 73 | } 74 | }); 75 | 76 | //顶端导航跳转 77 | $(document).on('click','.nav_list',function(){ 78 | var targetId='_'+$(this).attr('href').substr(1); 79 | var targetHeight=document.getElementById(targetId).offsetTop; 80 | $("html, body").animate({"scroll-top": targetHeight-70},600,'easeInOutQuint'); 81 | 82 | // $('.nav_list li').css('color','#fff'); 83 | // $(this).find('li').css('color','#22F2C8'); 84 | }); 85 | 86 | //刷新页面跳转 87 | var hrefId='_'+location.href.split('#')[1]; 88 | //alert(hrefId); 89 | if(location.href.split('#')[1]){ 90 | var hrefHeight=document.getElementById(hrefId).offsetTop; 91 | $("html, body").animate({"scroll-top": hrefHeight-70},600,'easeInOutQuint'); 92 | } 93 | }); 94 | //a标签title提示 95 | $(function() { 96 | $("a[title]").each(function() { 97 | var a = $(this); 98 | var title = a.attr('title'); 99 | if (title == undefined || title == "") return; 100 | a.data('title', title).removeAttr('title').hover( 101 | 102 | function() { 103 | var offset = a.offset(); 104 | $("
    ").appendTo($("body")).html(title).css({ 105 | top: offset.top + a.outerHeight() + 10, 106 | left: offset.left + a.outerWidth()/2 + 1 107 | }).fadeIn(function() { 108 | var pop = $(this); 109 | setTimeout(function() { 110 | pop.remove(); 111 | }, pop.text().length * 800); 112 | }); 113 | }, function() { 114 | $("#TitleTip").remove(); 115 | }); 116 | }); 117 | }); 118 | jQuery.easing['jswing'] = jQuery.easing['swing']; 119 | 120 | jQuery.extend( jQuery.easing, 121 | { 122 | def: 'easeOutQuad', 123 | swing: function (x, t, b, c, d) { 124 | //alert(jQuery.easing.default); 125 | return jQuery.easing[jQuery.easing.def](x, t, b, c, d); 126 | }, 127 | easeInQuad: function (x, t, b, c, d) { 128 | return c*(t/=d)*t + b; 129 | }, 130 | easeOutQuad: function (x, t, b, c, d) { 131 | return -c *(t/=d)*(t-2) + b; 132 | }, 133 | easeInOutQuad: function (x, t, b, c, d) { 134 | if ((t/=d/2) < 1) return c/2*t*t + b; 135 | return -c/2 * ((--t)*(t-2) - 1) + b; 136 | }, 137 | easeInCubic: function (x, t, b, c, d) { 138 | return c*(t/=d)*t*t + b; 139 | }, 140 | easeOutCubic: function (x, t, b, c, d) { 141 | return c*((t=t/d-1)*t*t + 1) + b; 142 | }, 143 | easeInOutCubic: function (x, t, b, c, d) { 144 | if ((t/=d/2) < 1) return c/2*t*t*t + b; 145 | return c/2*((t-=2)*t*t + 2) + b; 146 | }, 147 | easeInQuart: function (x, t, b, c, d) { 148 | return c*(t/=d)*t*t*t + b; 149 | }, 150 | easeOutQuart: function (x, t, b, c, d) { 151 | return -c * ((t=t/d-1)*t*t*t - 1) + b; 152 | }, 153 | easeInOutQuart: function (x, t, b, c, d) { 154 | if ((t/=d/2) < 1) return c/2*t*t*t*t + b; 155 | return -c/2 * ((t-=2)*t*t*t - 2) + b; 156 | }, 157 | easeInQuint: function (x, t, b, c, d) { 158 | return c*(t/=d)*t*t*t*t + b; 159 | }, 160 | easeOutQuint: function (x, t, b, c, d) { 161 | return c*((t=t/d-1)*t*t*t*t + 1) + b; 162 | }, 163 | easeInOutQuint: function (x, t, b, c, d) { 164 | if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b; 165 | return c/2*((t-=2)*t*t*t*t + 2) + b; 166 | }, 167 | easeInSine: function (x, t, b, c, d) { 168 | return -c * Math.cos(t/d * (Math.PI/2)) + c + b; 169 | }, 170 | easeOutSine: function (x, t, b, c, d) { 171 | return c * Math.sin(t/d * (Math.PI/2)) + b; 172 | }, 173 | easeInOutSine: function (x, t, b, c, d) { 174 | return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b; 175 | }, 176 | easeInExpo: function (x, t, b, c, d) { 177 | return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b; 178 | }, 179 | easeOutExpo: function (x, t, b, c, d) { 180 | return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b; 181 | }, 182 | easeInOutExpo: function (x, t, b, c, d) { 183 | if (t==0) return b; 184 | if (t==d) return b+c; 185 | if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b; 186 | return c/2 * (-Math.pow(2, -10 * --t) + 2) + b; 187 | }, 188 | easeInCirc: function (x, t, b, c, d) { 189 | return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b; 190 | }, 191 | easeOutCirc: function (x, t, b, c, d) { 192 | return c * Math.sqrt(1 - (t=t/d-1)*t) + b; 193 | }, 194 | easeInOutCirc: function (x, t, b, c, d) { 195 | if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b; 196 | return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b; 197 | }, 198 | easeInElastic: function (x, t, b, c, d) { 199 | var s=1.70158;var p=0;var a=c; 200 | if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3; 201 | if (a < Math.abs(c)) { a=c; var s=p/4; } 202 | else var s = p/(2*Math.PI) * Math.asin (c/a); 203 | return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b; 204 | }, 205 | easeOutElastic: function (x, t, b, c, d) { 206 | var s=1.70158;var p=0;var a=c; 207 | if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3; 208 | if (a < Math.abs(c)) { a=c; var s=p/4; } 209 | else var s = p/(2*Math.PI) * Math.asin (c/a); 210 | return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b; 211 | }, 212 | easeInOutElastic: function (x, t, b, c, d) { 213 | var s=1.70158;var p=0;var a=c; 214 | if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5); 215 | if (a < Math.abs(c)) { a=c; var s=p/4; } 216 | else var s = p/(2*Math.PI) * Math.asin (c/a); 217 | if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b; 218 | return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b; 219 | }, 220 | easeInBack: function (x, t, b, c, d, s) { 221 | if (s == undefined) s = 1.70158; 222 | return c*(t/=d)*t*((s+1)*t - s) + b; 223 | }, 224 | easeOutBack: function (x, t, b, c, d, s) { 225 | if (s == undefined) s = 1.70158; 226 | return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b; 227 | }, 228 | easeInOutBack: function (x, t, b, c, d, s) { 229 | if (s == undefined) s = 1.70158; 230 | if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b; 231 | return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b; 232 | }, 233 | easeInBounce: function (x, t, b, c, d) { 234 | return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b; 235 | }, 236 | easeOutBounce: function (x, t, b, c, d) { 237 | if ((t/=d) < (1/2.75)) { 238 | return c*(7.5625*t*t) + b; 239 | } else if (t < (2/2.75)) { 240 | return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b; 241 | } else if (t < (2.5/2.75)) { 242 | return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b; 243 | } else { 244 | return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b; 245 | } 246 | }, 247 | easeInOutBounce: function (x, t, b, c, d) { 248 | if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b; 249 | return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b; 250 | } 251 | }); 252 | // Search 253 | 254 | // description: 新导航 255 | // date: 2015-10-21 256 | // header.v1.css 257 | // update:3 258 | $(function() { 259 | // 搜索输入隐藏下拉菜单 260 | $(".search-val").keydown(function(){ 261 | $('.search-select ul').hide(); 262 | }); 263 | //滑过导航显示子导航 264 | $(".nav-hd li").hover( function () { 265 | $(this).find("a").addClass("on"); 266 | $(this).find(".subnav-hd").show(); 267 | }, 268 | function () { 269 | $(this).find("a").removeClass("on"); 270 | $(this).find(".subnav-hd").hide(); 271 | } ); 272 | 273 | $('#quickTab .tab-wrap').find('a').each(function(){ 274 | var tmpurl=$(this).attr('href') +'&random='+ Math.random(); 275 | $(this).attr('href',tmpurl); 276 | }); 277 | //点击去动态消息提示; 278 | // $('#quickTab ul li').click(function(){ 279 | 280 | // var weizhi = String($(this).index())+','; 281 | 282 | // var span = $(this).find('span'); 283 | // var bellspan = $('.icon-bell').nextAll('span'); 284 | // if(span.length==1){ 285 | // var cat = $(this).attr('rel'); 286 | // var bellnum = bellspan.text(); 287 | // bellnum =parseInt(bellnum); 288 | // var yidu=0; 289 | // var data ={ 290 | // uid:navuid, 291 | // cat:cat 292 | // }; 293 | 294 | // var host = window.location.host; 295 | // if(host=='www.ui.cn'){ 296 | // $.ajax({ 297 | // type:'get', 298 | // dataType:'json', 299 | // url:'/delnotice', 300 | // data:data, 301 | // success:function(data){ 302 | // if ( data.state == true ) { 303 | // span.remove(); 304 | // yidu = data.yiread; 305 | // bellnum = bellnum - yidu; 306 | // if(bellnum>0){ 307 | // bellspan.text(bellnum); 308 | // }else{ 309 | // bellspan.prevAll('.icon-bell').css('color','#CED7DE') 310 | // bellspan.remove(); 311 | // } 312 | // nav_loc = nav_loc.replace(weizhi,''); 313 | // }else{ 314 | // } 315 | // }, 316 | // error:function(){ 317 | // } 318 | // }); 319 | // }else if(host.indexOf('ui.cn')){ 320 | // $.ajax({ 321 | // type:'post', 322 | // dataType:'jsonp', 323 | // url:'http://www.ui.cn/delnotice', 324 | // data:data, 325 | // jsonpCallback:'DFEDFE', 326 | // success:function(data){ 327 | // if ( data.state == true ) { 328 | // span.remove(); 329 | // yidu = data.yiread; 330 | // bellnum = bellnum - yidu; 331 | // if(bellnum>0){ 332 | // bellspan.text(bellnum); 333 | // }else{ 334 | // bellspan.prevAll('.icon-bell').css('color','#CED7DE') 335 | // bellspan.remove(); 336 | // } 337 | // nav_loc = nav_loc.replace(weizhi,''); 338 | // }else{ 339 | // } 340 | // }, 341 | // error:function(){ 342 | // } 343 | // }); 344 | // } 345 | 346 | // } 347 | 348 | // }); 349 | //兼容个人中心,立即激活的样式。 350 | $(".jsemailverify").parent('div').parent('li').css("background","#fff7e7").find('a').addClass('f14').css('display','block'); 351 | 352 | $(".quick-item").hover( function () { 353 | $(this).addClass('on'); 354 | $(this).find('.quick-menu').show(); 355 | }, 356 | function () { 357 | $(this).removeClass('on'); 358 | $(this).find('.quick-menu').hide(); 359 | } ); 360 | 361 | 362 | $(".quick-item").mouseenter(function(){ 363 | if($(this).find('.quick-menu').attr('id')=='quickTab' && nav_loc.length>0){ 364 | var navi = nav_loc.substr(0,1); // 获取第一个展开S 365 | navi = parseInt(navi); 366 | tabNav.eq(navi).trigger('click');//默认有动态 展开项 367 | } 368 | }); 369 | 370 | 371 | 372 | 373 | // 消息选项卡 374 | $(".quick-tab .tab-wrap .tab-cont").hide(); 375 | $(".quick-tab .tab-wrap .tab-cont").eq(0).show(); 376 | $(".quick-tab .tab-bar li").eq(0).addClass('on'); 377 | 378 | var tabNav = $(".quick-tab .tab-bar li"); 379 | tabNav.click(function(){ 380 | var index = $(".quick-tab .tab-bar li").index(this); //获取当前点击li的索引值 381 | 382 | tabNav.removeClass('on'); 383 | tabNav.eq(index).addClass('on'); 384 | $(".quick-tab .tab-wrap ul").hide(); 385 | $(".quick-tab .tab-wrap ul").eq(index).show(); 386 | }); 387 | $(".search-hd-btn").click(function(ev){ 388 | var ev = ev || event, // enent做兼容 389 | isTrue = $(".search-hd").is(".on"); // 判断.search-hd是否是展开状态 390 | ev.stopPropagation(); // 阻止冒泡 391 | if($(".search-hd").addClass('on').find('input').val() == ""){ // 在输入框没有文字时执行 392 | if(isTrue){ // isTrue等于 true 移除on,false就添加on 393 | $(".search-hd").removeClass('on').find('input').blur(); 394 | $('.search-select ul').hide(); 395 | }else{ 396 | $(".search-hd").addClass('on').find('input').focus(); 397 | } 398 | }else{ //提交事件search-hd 399 | $(".search-hd").find('input').focus(); 400 | if(isTrue){ 401 | $("#searchForm").submit(); 402 | }else{ 403 | 404 | } 405 | } 406 | }) 407 | $(".search-filter").click(function(ev){ 408 | ev.stopPropagation(); 409 | }) 410 | $(document).click(function(){ 411 | $(".search-hd").removeClass('on').find('input').blur(); 412 | }); 413 | //回车提交 414 | $(document).on("keydown","#keywords",function(e){ 415 | var keyVal = $(this).val(); 416 | var keyCode = e.keyCode ? e.keyCode : e.which ? e.which : e.charCode; 417 | if(keyVal=='' && keyCode==13){ 418 | e.preventDefault(); 419 | } 420 | }) 421 | 422 | // 搜索分类 423 | $(".search-filter").hover(function(){ 424 | $(this).find('ul').show(); 425 | },function(){ 426 | $(this).find('ul').hide(); 427 | }) 428 | // selectBoxSer (".search-filter"); 429 | $(".search-filter ul a").click(function(){ 430 | var textVal = $(this).text(); 431 | var tVal = $(this).attr("data-rel"); 432 | $(".search-filter ul li").removeClass("on"); 433 | $(this).parent().addClass("on"); 434 | $("#sType").val(tVal); 435 | $(this).parents(".search-filter").find(".tit").text(textVal); 436 | $(this).parents(".search-filter").find(".options").hide(); 437 | return false; 438 | }); 439 | 440 | // 搜索提示 441 | selectBoxSer (".search-select"); 442 | $(".search-select ul a").click(function(){ 443 | var textVal = $(this).text(); 444 | $(".search-val").val(textVal); 445 | $(this).parents(".search-select").find(".options").hide(); 446 | // $(".search-hd").find('input').focus();搜索下拉选择后获取焦点 447 | return false; 448 | }); 449 | 450 | }); 451 | // 搜索选项下拉 452 | selectBoxSer = function(box){ 453 | $(box).click(function(){ 454 | var $this = $(this); 455 | $this.blur(); 456 | var options = $this.find('.options').css('display'); 457 | 458 | if( options == 'none' && $(".search-val[type=text]").val()=="" ){ // 459 | $this.find(".options").show(); 460 | 461 | } else { 462 | $this.find(".options").hide(); 463 | } 464 | /*点击任何地方关闭层*/ 465 | $(document).click(function(event){ 466 | var tar = $(event.target).attr("class"); 467 | if( tar != $this ){ 468 | $this.find(".options").hide(); 469 | } 470 | }); 471 | return false; 472 | 473 | }); 474 | }; 475 | // 百度搜索 476 | function s4() { 477 | var v = f.k.value 478 | window.open("http://www.baidu.com/s?wd=" + v, "7"); 479 | return false; 480 | } 481 | --------------------------------------------------------------------------------