forked from WatchDogs-CS416/WatchDogs-CS416.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·226 lines (211 loc) · 13.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
xmlns:fb="http://ogp.me/ns/fb#">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Watch Dogs | Security Analysis of Android Applications</title>
<meta name="description" content="Team Watch Dogs | Security Analysis of Android Applications">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Team Watch Dogs | CS416[2020]">
<link rel="image_src" href="https://i.redd.it/p8vw8ggae1751.jpg">
<link rel="shortcut icon" type="image/x-icon" href="assets/img/favicon.png">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/highlight.min.css">
<link rel="stylesheet" href="assets/css/animate.css">
<link rel="stylesheet" href="assets/css/style.css?v5">
</head>
<body class="body-bg" style="position: relative;" data-spy="scroll" data-target="#side_menu" data-offset=92>
<div class="preloader">
<pre class="canvas"></pre>
<div class="loading">
<span>L</span><span>O</span><span>A</span><span>D</span><span>I</span><span>N</span><span>G</span><span> </span>
</div>
</div>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark sticky-top">
<a class="navbar-brand" href="./">Team Watch Dogs</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item active"><a class="nav-link" href="./index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="./android_application_fundamentals.html">Android Fundamentals</a></li>
<li class="nav-item"><a class="nav-link" href="./reverse_engineering.html">Reverse Engineering</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="./security_analysis.html">
Security Analysis
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="./security_analysis.html#static-analysis">Static Analysis</a>
<a class="dropdown-item" href="./security_analysis.html#dynamic-analysis">Dynamic Analysis</a>
<a class="dropdown-item" href="./security_analysis.html#data-storage-analysis">Data Storage Analysis</a>
<a class="dropdown-item" href="./security_analysis.html#cryptography">Cryptography</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="./other_topics.html">
Other Topics
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="./other_topics.html#rooting-android-device">Rooting Android Device</a>
<a class="dropdown-item" href="./other_topics.html#android-malware">Android Malware</a>
<a class="dropdown-item" href="./other_topics.html#useful-tools">Useful Tools</a>
</div>
</li>
</ul>
</div>
</nav>
<div style="margin-top:30px">
<section id="home" class="section container my-5">
<div class="row">
<div class="col-sm-12 my-3 py-5">
<div class="d-flex flex-row align-items-center justify-content-between">
<div style="flex: 3" class="d-flex align-items-center justify-content-center mr-5 waypt-animate animated">
<p style="font-size: 1.15em">
Android is one of the most popular operating systems (OS) when considering all general-purpose computing platforms like smartphones, tablets, etc. There are around 2 billion users and 3 million applications that run on Android OS. So, ensuring the security of the application becomes the most critical part of the development process.
<br>
<br>
This website aims to provide a basic overview of Android Fundamentals, Android security analysis techniques and other topics related to Android security.
</p>
</div>
<div style="flex: 2" class="d-flex align-items-center justify-content-center ml-5 waypt-animate animated">
<div class="home-img d-flex align-items-center justify-content-center">
<img src="assets/img/home/hero_section.png" alt="Android Security" class="img-fluid" style="min-width: 45vw">
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section py-5" id="rooting-android-device" style="background: #323232">
<div class="container py-5">
<h2 class="content-title text-center position-relative waypt-animate animated"><span class="underline">About this Website</span></h2>
<br>
<p class="text-center waypt-animate animated" style="font-size: 1.15em">
We have tried to include all the basic aspects of android application fundamental and security analysis techniques. For a beginner, who wants to learn about mobile application security analysis and pentesting, This website is a right step to begin with.
<br>
We have included the following topics in this website:
</p>
<br>
<div class="d-flex">
<div style="flex: 3" class="d-flex justify-content-center align-items-end flex-column p-3">
<h3 class="content-sub-title waypt-animate animated">Android Application Fundamentals</h3>
<p style="text-align: right; font-size: 1.15em" class="waypt-animate animated">
Android App is a software designed to run on an Android device or emulator. The term also refers to an APK file which stands for Android package. This file is a Zip archive containing app code, resources, and meta information. Android apps can be written in Kotlin, Java, and C++ and are run inside Virtual Machine. This section provides an overview of components involved in an Android Application.
</p>
<a href="android_application_fundamentals.html" class="btn btn-secondary waypt-animate animated" style="font-size: 1.15em">Start Learning</a>
</div>
<div style="flex: 2" class="d-flex justify-content-center align-items-start waypt-animate animated">
<div class="home-img d-flex align-items-center justify-content-center p-3">
<img src="assets/img/home/android_app_fundamental_1.png" alt="Android App Fundamentals" class="img-fluid">
</div>
</div>
</div>
<br>
<div class="d-flex flex-row-reverse">
<div style="flex: 3" class="d-flex justify-content-center align-items-start flex-column p-3">
<h3 class="content-sub-title waypt-animate animated">Reverse Engineering</h3>
<p style="text-align: left; font-size: 1.15em" class="waypt-animate animated">
Reverse engineering a mobile app is the process of analyzing the compiled app to extract information about its source code. The goal of reverse engineering is to comprehend the code. Reverse engineering is the process of reconstructing the semantics of a compiled program's source code. In other words, you take the program apart, run it, simulate parts of it, and do other unspeakable things to it to understand what it does and how.
</p>
<a href="reverse_engineering.html" class="btn btn-secondary waypt-animate animated" style="font-size: 1.15em">Start Learning</a>
</div>
<div style="flex: 2" class="d-flex justify-content-center align-items-start waypt-animate animated">
<div class="home-img d-flex align-items-center justify-content-center p-3">
<img src="assets/img/home/reverse_eng.svg" alt="Reverse Engineering" class="img-fluid">
</div>
</div>
</div>
<br>
<div class="d-flex">
<div style="flex: 3" class="d-flex justify-content-center align-items-end flex-column p-3">
<h3 class="content-sub-title waypt-animate animated">Security Analysis</h3>
<p style="text-align: right; font-size: 1.15em" class="waypt-animate animated">
Mobile applications often process sensitive data, which is the key target of many cybercriminals. When working with such data, developers must do their best to ensure its protection. One way to improve the security of a mobile app is to perform mobile application security analysis.
<br>
This article will be helpful to Android developers who want to know more about mobile app security analysis and improve the security of their apps.
</p>
<a href="security_analysis.html" class="btn btn-secondary waypt-animate animated" style="font-size: 1.15em">Start Learning</a>
</div>
<div style="flex: 2" class="d-flex justify-content-center align-items-start waypt-animate animated">
<div class="home-img d-flex align-items-center justify-content-center p-3">
<img src="assets/img/home/security_analysis_1.png" alt="Security Analysis" class="img-fluid">
</div>
</div>
</div>
<br>
<div class="d-flex flex-row-reverse">
<div style="flex: 3" class="d-flex justify-content-center align-items-start flex-column p-3">
<h3 class="content-sub-title waypt-animate animated">Other Topics</h3>
<ul style="text-align: left; font-size: 1.15em" class="waypt-animate animated">
<li>
Rooting Android Device
</li>
<li>
Android Malware
</li>
<li>
Top Security Analysis Tools and their functions
</li>
</ul>
<a href="other_topics.html" class="btn btn-secondary waypt-animate animated" style="font-size: 1.15em">Start Learning</a>
</div>
<div style="flex: 2" class="d-flex justify-content-center align-items-start waypt-animate animated">
<div class="home-img d-flex align-items-center justify-content-center p-3">
<img src="assets/img/home/other.png" alt="Other Topics" class="img-fluid">
</div>
</div>
</div>
</div>
</section>
<section id="about_us" class="section py-5">
<div class="container py-5">
<h2 class="content-title text-center position-relative pb-5 waypt-animate animated"><span class="underline">Team</span></h2>
<div class="d-flex align-items-center justify-content-around">
<div class="custom-card waypt-animate animated">
<div class="d-flex flex-column align-items-center justify-content-center">
<div class="name"><b>Bhavik Suthar</b></div>
<div class="dept">Mechanical Engineering</div>
<div class="email"><a href="mailto:[email protected]">[email protected]</a></div>
</div>
</div>
<div class="custom-card waypt-animate animated">
<div class="d-flex flex-column align-items-center justify-content-center">
<div class="name"><b>Preetam Pinnada</b></div>
<div class="dept">Electrical Engineering</div>
<div class="email"><a href="mailto:[email protected]">[email protected]</a></div>
</div>
</div>
<div class="custom-card waypt-animate animated">
<div class="d-flex flex-column align-items-center justify-content-center">
<div class="name"><b>Vyankatesh Sawalapurkar</b></div>
<div class="dept">Mechanical Engineering</div>
<div class="email"><a href="mailto:[email protected]">[email protected]</a></div>
</div>
</div>
<div class="custom-card waypt-animate animated">
<div class="d-flex flex-column align-items-center justify-content-center">
<div class="name"><b>Amey Gohil</b></div>
<div class="dept">Mechanical Engineering</div>
<div class="email"><a href="mailto:[email protected]">[email protected]</a></div>
</div>
</div>
</div>
</div>
</section>
</div>
<footer>
<div class="text-center bg-dark text-light p-3 h6" style="margin-bottom:0; font-family: monospace">
<div>Developed by Team Watch Dogs [CS416 2021 | IIT Bombay]</div>
</div>
</footer>
<script src="./assets/js/vendor/jquery-3.5.1.min.js"></script>
<script src="./assets/js/bootstrap.min.js"></script>
<script src="./assets/js/jquery.waypoints.min.js"></script>
<script src="./assets/js/highlight.min.js"></script>
<script src="./assets/js/waypt.js"></script>
<script src="./assets/js/main.js?v4"></script>
</body>
</html>