-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpanel.html
84 lines (77 loc) · 3.05 KB
/
panel.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
84
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="icon" href="/images/cat-default.png">
<link rel="stylesheet" href="panel.css" />
<!-- Info: title is used to check if this tab is open -->
<title>✔ Active Ninja Hacker Cat</title>
</head>
<body>
<div id="main">
<audio src="sounds/miau1.mp3" id="sound"></audio>
<div id="sidebar">
<img class="avatar" alt="Script Kitty" id="cat-default" src="images/cat-default.png">
<img class="avatar avatar-left" alt="Script Kitty" id="cat-panic" src="images/cat-panic.png">
<img class="avatar avatar-left" alt="Script Kitty" id="cat-laugh" src="images/cat-laugh.png">
<img class="avatar" alt="Script Kitty" id="cat-love" src="images/cat-love.png">
<img class="avatar avatar-left" alt="Script Kitty" id="cat-omg" src="images/cat-omg.png">
<label for="autoRequest">
<input type="checkbox" checked="checked" id="autoRequest">
Check while browsing
</label><br />
<label for="checkboxCritPOC" class="checkbox-rules">
<input type="checkbox" checked="checked" id="checkboxCritPOC">
Check crit. PoC
</label><br />
<label for="checkboxVersions" class="checkbox-rules">
<input type="checkbox" checked="checked" id="checkboxVersions">
Check versions
</label><br />
<label for="checkboxWeb" class="checkbox-rules">
<input type="checkbox" checked="checked" id="checkboxWeb">
Check web security
</label><br />
<label for="checkboxLeaks" class="checkbox-rules">
<input type="checkbox" checked="checked" id="checkboxLeaks">
Check leaky files
</label><br />
<label for="checkboxFuzzing" class="checkbox-rules">
<input type="checkbox" checked="checked" id="checkboxFuzzing">
Fuzz all params
</label>
<div class="stats" id="stats">No request sent yet...</div>
<p class="small">
Please use Ninja Hacker Cat with care. Your IP can be blocked or you could
be disrupting web servers. If you close this tab all checks will stop.
</p>
</div>
<div id="content">
<div id="messageBox"></div>
<a href="#" id="reset" class="hidden"><img width="22" height="20" src="trash.svg"> Remove all alerts</a>
<p>
Dear human,<br />
thanks for checking your web applications for baaaaad
security vulnerabilities. Ninja Hacker Cat is free and my source code
can be found <a href="https://github.com/Leetcore/ninja-hacker-cat">on GitHub</a>.
</p>
<p>
If you close this tab (or uncheck the box) i will stop snooping around
and take a nap.
</p>
<p>
You can buy me cat food with
<a href="https://github.com/sponsors/Leetcore">GitHub</a>
or <a href="https://ko-fi.com/leetcore">Ko-Fi</a>.
</p>
<p>
xoxo, 😻 Script Kitty!
</p>
</div>
</div>
<div id="footer">
Built by <a href="https://www.1337core.de/">1337core</a>
</div>
<script src="scripts/main.js" type="module"></script>
</body>
</html>