-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.56 KB
/
index.html
File metadata and controls
45 lines (42 loc) · 1.56 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
<!DOCTYPE HTML>
<html>
<head>
<title>Revogi 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>Revogi Smartmeter - Exploit</h1>
<p>Revogi Smart power meter works on BLuetooth Low Energy. When the device is in discovery mode, device can be discovered and exploited remotely using web pages.
smart power meter can be turned on and off.</p>
</div>
</div>
<nav>
<ul>
<li><button onclick="device_connect()">CONNECT</button></li>
<li><button onclick="exploit_on()">ON</button></li>
<li><button onclick="exploit_off()">OFF</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>