1 |
42fe4405
|
Wojtek Kosior
|
<!DOCTYPE html>
|
2 |
|
|
<!--
|
3 |
|
|
SPDX-License-Identifier: GPL-3.0-or-later OR CC-BY-SA-4.0
|
4 |
|
|
|
5 |
|
|
Show details of how Haketilo handled given page and allow querying
|
6 |
|
|
repositories for custom scripts.
|
7 |
|
|
|
8 |
|
|
This file is part of Haketilo.
|
9 |
|
|
|
10 |
|
|
Copyright (C) 2022 Wojtek Kosior <koszko@koszko.org>
|
11 |
|
|
|
12 |
|
|
File is dual-licensed. You can choose either GPLv3+, CC BY-SA or both.
|
13 |
|
|
|
14 |
|
|
This program is free software: you can redistribute it and/or modify
|
15 |
|
|
it under the terms of the GNU General Public License as published by
|
16 |
|
|
the Free Software Foundation, either version 3 of the License, or
|
17 |
|
|
(at your option) any later version.
|
18 |
|
|
|
19 |
|
|
This program is distributed in the hope that it will be useful,
|
20 |
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
21 |
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
22 |
|
|
GNU General Public License for more details.
|
23 |
|
|
|
24 |
|
|
You should have received a copy of the GNU General Public License
|
25 |
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
26 |
|
|
|
27 |
|
|
I, Wojtek Kosior, thereby promise not to sue for violation of this file's
|
28 |
|
|
licenses. Although I request that you do not make use of this code in a
|
29 |
|
|
proprietary program, I am not going to enforce this in court.
|
30 |
|
|
-->
|
31 |
|
|
<html>
|
32 |
|
|
<head>
|
33 |
|
|
<meta charset="utf-8"/>
|
34 |
|
|
<title>Haketilo popup</title>
|
35 |
|
|
#LOADCSS html/reset.css
|
36 |
|
|
#LOADCSS html/base.css
|
37 |
|
|
#LOADCSS html/grid.css
|
38 |
|
|
<style>
|
39 |
|
|
#IF TEST
|
40 |
|
|
html {
|
41 |
|
|
background-color: #444;
|
42 |
|
|
}
|
43 |
|
|
#ENDIF
|
44 |
|
|
|
45 |
|
|
html, body {
|
46 |
|
|
width: 400px;
|
47 |
|
|
overflow-x: hidden;
|
48 |
|
|
overflow-y: auto;
|
49 |
|
|
}
|
50 |
|
|
|
51 |
|
|
#page_info_container {
|
52 |
|
|
padding: 0.4em;
|
53 |
|
|
}
|
54 |
|
|
|
55 |
|
|
#info_form, #unprivileged_page_info {
|
56 |
|
|
display: grid;
|
57 |
|
|
grid-template-columns: auto;
|
58 |
|
|
}
|
59 |
|
|
|
60 |
|
|
#info_form * {
|
61 |
4c6a2323
|
Wojtek Kosior
|
text-align: center;
|
62 |
42fe4405
|
Wojtek Kosior
|
white-space: nowrap;
|
63 |
|
|
text-overflow: ellipsis;
|
64 |
|
|
overflow-x: hidden;
|
65 |
|
|
}
|
66 |
|
|
|
67 |
|
|
#info_form label {
|
68 |
|
|
padding-bottom: 0.2em;
|
69 |
|
|
}
|
70 |
|
|
#info_form label+span, .top_but_container {
|
71 |
|
|
padding-bottom: 0.5em;
|
72 |
|
|
}
|
73 |
|
|
</style>
|
74 |
|
|
</head>
|
75 |
|
|
<body>
|
76 |
|
|
<!-- It contains just templates, we can include it at the top -->
|
77 |
|
|
#INCLUDE html/repo_query.html
|
78 |
|
|
<div id="page_info_container">
|
79 |
|
|
<div id="loading_info">
|
80 |
|
|
Loading page info...
|
81 |
|
|
</div>
|
82 |
|
|
<div id="info_form" class="hide">
|
83 |
|
|
<label>Page URL:</label>
|
84 |
|
|
<span id="page_url"></span>
|
85 |
|
|
<label id="privileged_page_info" class="hide">Privileged page</label>
|
86 |
|
|
<div id="unprivileged_page_info" class="hide">
|
87 |
|
|
<label>Scripts blocked:</label>
|
88 |
|
|
<span id="scripts_blocked"></span>
|
89 |
|
|
<label>Injected payload:</label>
|
90 |
|
|
<span id="injected_payload"></span>
|
91 |
|
|
<label>Mapping used:</label>
|
92 |
|
|
<span id="mapping_used"></span>
|
93 |
|
|
</div>
|
94 |
|
|
</div>
|
95 |
|
|
<div class="text_center top_but_container">
|
96 |
|
|
<button id="search_resources_but" class="hide">
|
97 |
|
|
Search for custom resources
|
98 |
|
|
</button>
|
99 |
|
|
</div>
|
100 |
|
|
<div class="text_center">
|
101 |
|
|
<button id="settings_but">
|
102 |
|
|
Open settings
|
103 |
|
|
</button>
|
104 |
|
|
</div>
|
105 |
|
|
</div>
|
106 |
|
|
<div id="repo_query_container" class="hide">
|
107 |
|
|
<!-- Repo query view will be dynamically inserted here. -->
|
108 |
|
|
</div>
|
109 |
|
|
#LOADJS html/popup.js
|
110 |
|
|
</body>
|
111 |
|
|
</html>
|