-
Notifications
You must be signed in to change notification settings - Fork 22
/
index.html
105 lines (104 loc) · 5.05 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Mobile Security Framework - MobSF Documentation">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta property="og:title" content="Mobile Security Framework - MobSF Documentation" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="Mobile Security Framework - MobSF is an automated, all-in-one mobile application (Android/iOS/Windows) pen-testing, malware analysis and security assessment framework capable of performing static and dynamic analysis." />
<meta property="og:description" content="Mobile Security Framework - MobSF Documentation." />
<link rel="canonical" href="https://mobsf.github.io/docs/" />
<meta property="og:url" content="https://mobsf.github.io/docs/" />
<meta property="og:site_name" content="Mobile Security Framework - MobSF Documentation" />
<meta name="msvalidate.01" content="9FDE03C356CDA2D9DC2D54EDA15DEACE" />
<meta name="google-site-verification" content="T8-4vgy01_26cojaqJMxRfKE_Q5EL_NpnlyTQEPV7wM" />
<script type="application/ld+json">
{"@type":"WebSite","url":"https://mobsf.github.io/docs/","name":"Mobile Security Framework - MobSF Documentation","headline":"Mobile Security Framework - MobSF Documentation","description":"Mobile Security Framework (MobSF) is an automated, all-in-one mobile application (Android/iOS/Windows) pen-testing, malware analysis and security assessment framework capable of performing static and dynamic analysis.","@context":"https://schema.org"}</script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/theme-simple-dark.css">
<!-- Google Font Link for Merriweather -->
<link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&display=swap" rel="stylesheet">
<style>
/* Optional: Custom styling for the translate element */
#google_translate_element {
margin: 10px 0;
}
/* Apply Merriweather font with Arial and sans-serif as fallbacks */
body {
font-family: 'Merriweather', 'Libre Baskerville', Arial, sans-serif;
font-size: 18px;
line-height: 1.6;
}
/* Optional: Style headers */
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
color: #222;
}
/* Style the markdown section for padding and spacing */
.markdown-section {
max-width: 65%;
margin: auto;
padding: 15px;
}
</style>
</head>
<body>
<div id="app">
</div>
<script>
// Docsify Configuration
window.$docsify = {
name: 'MobSF Documentation',
repo: 'https://github.com/MobSF/Mobile-Security-Framework-MobSF',
loadSidebar: true,
loadNavbar: true,
subMaxLevel: 2,
search: {
maxAge: 86400000, // Expiration time in milliseconds (default: 1 day)
paths: 'auto', // Paths to be indexed (default: 'auto')
placeholder: 'Type to search',
noData: 'No Results!',
depth: 2, // Headline depth to be indexed (default: 2)
},
}
// Google Tag Manager
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-160159852-1');
// Google Translate
function googleTranslateElementInit() {
new google.translate.TranslateElement(
{pageLanguage: 'en'},
'google_translate_element');
}
// Check if the URL has a query parameter named 'id'
window.addEventListener('hashchange', () => {
const urlParams = new URLSearchParams(window.location.search);
if (!urlParams.has('id')) {
// Scroll to the top if 'id' parameter is not present
window.scrollTo(0, 0);
}
});
</script>
<script async="" src="https://www.googletagmanager.com/gtag/js?id=UA-160159852-1"></script>
<script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-bash.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-batch.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-python.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/mermaid/dist/mermaid.js"></script>
<script src="//unpkg.com/docsify-mermaid@latest/dist/docsify-mermaid.js"></script>
<script>
// Mermaid Configuration
mermaid.initialize({
startOnLoad: true,
});
</script>
</body>
</html>