-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (147 loc) · 5.18 KB
/
index.html
File metadata and controls
148 lines (147 loc) · 5.18 KB
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
<!DOCTYPE html>
<html>
<head>
<title>AndroShell</title>
<link rel="icon" type="image/png" href="img/AndroShell.png">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {
background-color: black;
margin: 0;
padding: 0;
font-family: 'Courier Prime', monospace;
}
header {
background-color: #fe7f28;
color: black;
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px 20px;
position: relative;
}
.nav-logo {
display: flex;
align-items: center;
}
.nav-logo img {
height: 70px;
width: auto;
margin-right: 10px;
}
.nav-links {
background-color: #fe7f28;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
font-size: 16px;
border-radius: 20px;
transition: background-color 0.3s, transform 0.3s;
}
.nav-links:hover {
background-color: #ff9900;
transform: translateY(-5px);
color: black;
}
.about-us-button {
background-color: black;
color: #fe7f28;
padding: 10px 20px;
border: none;
cursor: pointer;
font-size: 16px;
border-radius: 20px;
transition: background-color 0.3s, transform 0.3s, color 0.3s;
position: absolute;
top: 50%;
right: 30px;
transform: translateY(-50%);
text-decoration: none;
font-family: 'Courier Prime', monospace;
}
.about-us-button:hover {
background-color: white;
transform: translateY(-50%) translateX(3px);
color: black;
}
.section-container {
display: flex;
flex-direction: row;
align-items: center;
max-height: calc(100vh - 40px);
overflow: hidden;
padding: 50px;
}
.phone-image {
flex: 1;
max-width: 50%;
max-height: 75vh;
width: auto;
height: auto;
object-fit: contain;
}
.description {
flex: 1;
padding: 20px;
color: white;
}
.button-container {
display: flex;
flex-direction: column;
align-items: flex-start;
margin-top: 20px;
}
.download-button {
background-color: #fe7f28;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
font-size: 16px;
border-radius: 20px;
transition: background-color 0.3s, transform 0.3s;
text-decoration: none;
}
.download-button:hover {
background-color: #ff9900;
transform: translateY(-5px);
color: black;
}
.colored-header {
color: #fe7f28;
margin-top: 10px;
}
</style>
</head>
<body>
<header>
<div class="nav-logo">
<a href="https://theresurrectedodyssey.github.io/AndroShell/">
<img src="img/AndroShell_header.png" alt="AndroShell Logo">
</a>
</div>
<a href="https://theresurrectedodyssey.github.io/" class="about-us-button">About Us</a>
</header>
<section class="section-container">
<img class="phone-image" src="img/AndroShell_execution.png" alt="AndroShell">
<div class="description">
<h1 class="colored-header">About AndroShell</h1>
<p>AndroShell is a versatile Android app that empowers Android pentesters to interact with their device using a custom terminal interface. With AndroShell, you can execute commands, perform system and root-level operations. It gives you the power of ADB Shell within the app.</p>
<h2 class="colored-header">Requirements</h2>
<p>Device needs to be Rooted (Tested with Magisk)</p>
<h2 class="colored-header">Minimum Required Android Version</h2>
<p>Android 4.1</p>
<h2 class="colored-header">Optimal Performance Requirement</h2>
<p>Android 8.0 and above...</p>
<div class="button-container">
<a href="https://github.com/theresurrectedodyssey/AndroShell/blob/main/Releases/Version0.0.1/" class="download-button">Download AndroShell v0.0.1</a>
</div>
</div>
</section>
</body>
</html>