-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (47 loc) · 1.84 KB
/
index.html
File metadata and controls
50 lines (47 loc) · 1.84 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
<!DOCTYPE HTML>
<html>
<head>
<title>MagicBlue Exploit</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<div class="content">
<div class="inner">
<h1>MagicBlue - Exploit</h1>
<p>MagicBlue smart bulb works on BLuetooth Low Energy. When the light is in discovery mode, it can be exploited remotely using web pages.
Light can be switched ON,OFF and Change colors</p>
</div>
</div>
<nav>
<ul>
<li><button onclick="device_connect()">CONNECT</button></li>
<li><button onclick="light_on()">ON</button></li>
<li><button onclick="light_off()">OFF</button></li>
<li><button onclick="color_red()">RED</button></li>
<li><button onclick="color_green()">GREEN</button></li>
<li><button onclick="color_blue()">BLUE</button></li>
<li><button onclick="color_white()">WHITE</button></li>
<li><button onclick="color_rainbow()">RAINBOW</button></li>
<li><button onclick="device_disconnect()">DISCONNECT</button></li>
</ul>
</nav>
</header>
<!-- Footer -->
<footer id="footer">
<p class="copyright">© just2exploit <a href="https://github.com/just2exploit">github</a>.!!!Works Only in Google Chrome!!!</p>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/exploit.js"></script>
<script src="assets/js/sweetalert.min.js"></script>
</body>
</html>