├── .python-version ├── overrides ├── plugins │ ├── __init__.py │ ├── search │ │ ├── __init__.py │ │ └── plugin.py │ ├── social │ │ └── __init__.py │ └── tags │ │ └── __init__.py ├── assets │ ├── javascripts │ │ └── lunr │ │ │ └── min │ │ │ ├── lunr.jp.min.js │ │ │ ├── lunr.vi.min.js │ │ │ ├── lunr.multi.min.js │ │ │ ├── lunr.th.min.js │ │ │ ├── lunr.zh.min.js │ │ │ ├── lunr.ja.min.js │ │ │ ├── lunr.hi.min.js │ │ │ ├── lunr.stemmer.support.min.js │ │ │ ├── lunr.sv.min.js │ │ │ ├── lunr.da.min.js │ │ │ ├── lunr.no.min.js │ │ │ └── lunr.nl.min.js │ ├── images │ │ └── favicon.png │ └── stylesheets │ │ └── palette.cbb835fc.min.css.map ├── partials │ ├── comments.html │ ├── javascripts │ │ ├── outdated.html │ │ ├── announce.html │ │ ├── palette.html │ │ ├── base.html │ │ ├── content.html │ │ └── consent.html │ ├── language.html │ ├── logo.html │ ├── actions.html │ ├── tabs.html │ ├── source.html │ ├── copyright.html │ ├── toc-item.html │ ├── social.html │ ├── integrations │ │ ├── analytics.html │ │ └── analytics │ │ │ └── google.html │ ├── content.html │ ├── source-file.html │ ├── tags.html │ ├── tabs-item.html │ ├── toc.html │ ├── languages │ │ ├── id.html │ │ ├── th.html │ │ ├── nn.html │ │ ├── et.html │ │ ├── tr.html │ │ ├── no.html │ │ ├── fa.html │ │ ├── cs.html │ │ ├── da.html │ │ ├── sk.html │ │ ├── ar.html │ │ ├── uk.html │ │ ├── vi.html │ │ ├── zh-Hant.html │ │ ├── ca.html │ │ ├── hi.html │ │ ├── fi.html │ │ ├── ro.html │ │ ├── af.html │ │ ├── nl.html │ │ ├── bn.html │ │ ├── eo.html │ │ ├── ka.html │ │ ├── si.html │ │ ├── zh-TW.html │ │ ├── my.html │ │ ├── mn.html │ │ ├── bg.html │ │ ├── is.html │ │ ├── kr.html │ │ ├── ja.html │ │ ├── hu.html │ │ ├── pl.html │ │ ├── ms.html │ │ ├── gl.html │ │ ├── lv.html │ │ ├── sh.html │ │ ├── sr.html │ │ ├── zh.html │ │ ├── it.html │ │ ├── hy.html │ │ ├── mk.html │ │ ├── pt-BR.html │ │ ├── pt.html │ │ ├── sv.html │ │ ├── ru.html │ │ ├── ur.html │ │ ├── es.html │ │ ├── lt.html │ │ ├── he.html │ │ ├── tl.html │ │ ├── uz.html │ │ ├── el.html │ │ ├── sl.html │ │ ├── fr.html │ │ ├── hr.html │ │ ├── de.html │ │ └── en.html │ ├── nav.html │ ├── icons.html │ ├── palette.html │ ├── feedback.html │ ├── consent.html │ ├── search.html │ ├── footer.html │ ├── nav-item.html │ └── header.html ├── main.html ├── 404.html ├── overrides │ ├── main.html │ ├── partials │ │ ├── content.html │ │ └── actions.html │ ├── home.html │ ├── blog.html │ └── assets │ │ └── stylesheets │ │ └── main.8a4f01ed.min.css.map └── mkdocs_theme.yml ├── .gitignore ├── README.md ├── docs ├── 1 │ └── 1.md ├── index.md └── imgs │ └── cover.jpg ├── site ├── assets │ ├── javascripts │ │ └── lunr │ │ │ └── min │ │ │ ├── lunr.jp.min.js │ │ │ ├── lunr.vi.min.js │ │ │ ├── lunr.multi.min.js │ │ │ ├── lunr.th.min.js │ │ │ ├── lunr.ta.min.js │ │ │ ├── lunr.zh.min.js │ │ │ ├── lunr.ja.min.js │ │ │ ├── lunr.hi.min.js │ │ │ ├── lunr.stemmer.support.min.js │ │ │ ├── lunr.ko.min.js │ │ │ ├── lunr.sv.min.js │ │ │ ├── lunr.da.min.js │ │ │ ├── lunr.no.min.js │ │ │ └── lunr.nl.min.js │ ├── images │ │ └── favicon.png │ └── stylesheets │ │ ├── palette.cbb835fc.min.css.map │ │ ├── palette.2505c338.min.css.map │ │ └── extra.0d2c79a8.min.css.map ├── sitemap.xml.gz ├── pdf │ └── document.pdf ├── sitemap.xml ├── overrides │ └── assets │ │ └── stylesheets │ │ └── main.8a4f01ed.min.css.map └── search │ └── search_index.json └── mkdocs.yml /.python-version: -------------------------------------------------------------------------------- 1 | 3.8.12 2 | -------------------------------------------------------------------------------- /overrides/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overrides/plugins/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overrides/plugins/social/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overrides/plugins/tags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | */.DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [](https://pve.sqlsec.com/) 2 | 3 | -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | template: overrides/home.html 3 | title: 主页 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.jp.min.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /overrides/assets/javascripts/lunr/min/lunr.jp.min.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /docs/imgs/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqlsec/MobileSecurity/HEAD/docs/imgs/cover.jpg -------------------------------------------------------------------------------- /site/sitemap.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqlsec/MobileSecurity/HEAD/site/sitemap.xml.gz -------------------------------------------------------------------------------- /site/pdf/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqlsec/MobileSecurity/HEAD/site/pdf/document.pdf -------------------------------------------------------------------------------- /overrides/partials/comments.html: -------------------------------------------------------------------------------- 1 | {#- 2 | This file was automatically generated - do not edit 3 | -#} 4 | -------------------------------------------------------------------------------- /site/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqlsec/MobileSecurity/HEAD/site/assets/images/favicon.png -------------------------------------------------------------------------------- /overrides/main.html: -------------------------------------------------------------------------------- 1 | {#- 2 | This file was automatically generated - do not edit 3 | -#} 4 | {% extends "base.html" %} 5 | -------------------------------------------------------------------------------- /overrides/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqlsec/MobileSecurity/HEAD/overrides/assets/images/favicon.png -------------------------------------------------------------------------------- /overrides/404.html: -------------------------------------------------------------------------------- 1 | {#- 2 | This file was automatically generated - do not edit 3 | -#} 4 | {% extends "main.html" %} 5 | {% block content %} 6 |
13 | {{ config.extra.consent.description }}
14 | 15 | 37 | 56 | -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ja.min.js: -------------------------------------------------------------------------------- 1 | !function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var r="2"==e.version[0];e.ja=function(){this.pipeline.reset(),this.pipeline.add(e.ja.trimmer,e.ja.stopWordFilter,e.ja.stemmer),r?this.tokenizer=e.ja.tokenizer:(e.tokenizer&&(e.tokenizer=e.ja.tokenizer),this.tokenizerFn&&(this.tokenizerFn=e.ja.tokenizer))};var t=new e.TinySegmenter;e.ja.tokenizer=function(i){var n,o,s,p,a,u,m,l,c,f;if(!arguments.length||null==i||void 0==i)return[];if(Array.isArray(i))return i.map(function(t){return r?new e.Token(t.toLowerCase()):t.toLowerCase()});for(o=i.toString().toLowerCase().replace(/^\s+/,""),n=o.length-1;n>=0;n--)if(/\S/.test(o.charAt(n))){o=o.substring(0,n+1);break}for(a=[],s=o.length,c=0,l=0;c<=s;c++)if(u=o.charAt(c),m=c-l,u.match(/\s/)||c==s){if(m>0)for(p=t.segment(o.slice(l,c)).filter(function(e){return!!e}),f=l,n=0;n