forked from william31212/pentest_chrome_extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
68 lines (66 loc) · 1.57 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="./js/semantic/jquery-3.1.1.min.js"></script>
<script src="./js/semantic/semantic.min.js"></script>
<script src="./js/popup.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.css">
</head>
<style>
html, body
{
height: 150%;
width: 700px;
}
body {
border: 10px solid transparent;
display: flex;
flex-direction: column;
}
</style>
<body>
<div class="text-center">
<h1>Hacking tools</h1>
<p>testing...</p>
</div>
<div class="ui styled fluid accordion">
<div class="active title">
<i class="dropdown icon"></i>
Shodan
</div>
<div class="active content">
<span>shodan content</span>
</div>
<div class="title">
<i class="dropdown icon"></i>
Virustotal
</div>
<div class="content">
<span>virustotal content</span>
</div>
<div class="title">
<i class="dropdown icon"></i>
Web attack payloads
</div>
<div class="content">
<ul>
<li>XSS</li>
<li>SQLi</li>
<li>Other</li>
</ul>
<p>payload list you can use<br /> <br /></p>
</div>
<div class="title">
<i class="dropdown icon"></i>
Made by~
</div>
<div class="content">
<p>mu mu, halloworld, 123ojp, jerry wu</p>
</div>
</div>
</body>
</html>