-
Notifications
You must be signed in to change notification settings - Fork 0
/
tools.html
83 lines (79 loc) · 3.18 KB
/
tools.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
<!DOCTYPE html>
<html>
<head>
<meta name="generator"
content="HTML Tidy for HTML5 (experimental) for Windows https://github.com/w3c/tidy-html5/tree/c63cc39"/>
<title>Android Repository Analyzer - Tools</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="assets/w3.css"/>
<link rel="stylesheet" href="assets/w3-theme-teal.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"/>
<style>
p {
text-align: justify;
text-justify: inter-word;
}
td{
text-align: left;
padding: 5px;
}
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<!-- Header -->
<header class="w3-container w3-theme w3-padding" id="myHeader">
<div class="w3-center">
<a href='index.html' class='w3-bar-item w3-button w3-hover-theme'>
<h4>Android Repository Analyzer</h4>
</a>
<h1 class="w3-xxxlarge w3-animate-bottom">Tools</h1>
</div>
</header>
<div class="w3-center w3-padding-32">
<div class="w3-card w3-container">
<p>A description of the tools utilized in this research is provided below:</p>
<table>
<thead>
<th>Tool Name</th>
<th>Purpose</th>
</thead>
<tbody>
<tr>
<td>M-Perm</td>
<td>This tool is utilized to discover under and over-privileges within an apps permission structure
<br>
<h6><i><a href="https://mperm.github.io/" target="balnk">More Information</a></i></h6>
</td>
</tr>
<tr>
<td>P-Lint</td>
<td>This tool is utilized to detect Android specific bad permission-based practices (i.e. permission smells) in an app
<br>
<h6><i><a href="https://p-lint.github.io/" target="balnk">More Information</a></i></h6>
</td>
</tr>
<tr>
<td>oSARA</td>
<td>This tool is utilized to bulk clone project repositories and extract an apps permission-related details from the repository
<br>
<h6><i><a href="osara.html" >More Information</a></i></h6>
</td>
</tr>
</tbody>
</table>
<br>
<a href="index.html"><i class="fa fa-home w3-text-theme" style="font-size:23px;"></i></a>
<i class="fa fa-ellipsis-v w3-text-theme" style="font-size:15px;"></i>
<a href="tools.html"><i class="fa fa-wrench w3-text-theme" style="font-size:23px;"></i></a>
<i class="fa fa-ellipsis-v w3-text-theme" style="font-size:15px;"></i>
<a href="data.html"><i class="fa fa-th w3-text-theme" style="font-size:23px;"></i></a>
<i class="fa fa-ellipsis-v w3-text-theme" style="font-size:15px;"></i>
<a href="contact.html"><i class="fa fa-comment w3-text-theme" style="font-size:23px;"></i></a>
</div>
</div>
</body>
</html>