lanscape 1.3.8b1__py3-none-any.whl → 1.3.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of lanscape might be problematic. Click here for more details.
- lanscape/ui/static/css/style.css +8 -0
- lanscape/ui/templates/scan/config.html +160 -168
- {lanscape-1.3.8b1.dist-info → lanscape-1.3.9.dist-info}/METADATA +1 -1
- {lanscape-1.3.8b1.dist-info → lanscape-1.3.9.dist-info}/RECORD +7 -7
- {lanscape-1.3.8b1.dist-info → lanscape-1.3.9.dist-info}/WHEEL +0 -0
- {lanscape-1.3.8b1.dist-info → lanscape-1.3.9.dist-info}/licenses/LICENSE +0 -0
- {lanscape-1.3.8b1.dist-info → lanscape-1.3.9.dist-info}/top_level.txt +0 -0
lanscape/ui/static/css/style.css
CHANGED
|
@@ -115,6 +115,14 @@ hr {
|
|
|
115
115
|
border-color: var(--border-color);
|
|
116
116
|
margin: 20px 0;
|
|
117
117
|
}
|
|
118
|
+
|
|
119
|
+
.config-sections > .config-section {
|
|
120
|
+
border-top: 1px solid var(--border-color);
|
|
121
|
+
margin-top: 20px;
|
|
122
|
+
padding-top: 20px;
|
|
123
|
+
padding-bottom: 20px;
|
|
124
|
+
}
|
|
125
|
+
|
|
118
126
|
h1.title{
|
|
119
127
|
cursor: pointer;
|
|
120
128
|
margin: 0;
|
|
@@ -27,203 +27,195 @@
|
|
|
27
27
|
</div>
|
|
28
28
|
</div>
|
|
29
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
|
-
|
|
30
|
+
<div class="config-sections">
|
|
31
|
+
<div class="form-group mt-2 config-section">
|
|
32
|
+
<h6>Device Detection</h6>
|
|
33
|
+
<div class="row mt-2">
|
|
34
|
+
<div class="col">
|
|
35
|
+
<label class="mb-1">Lookup Type</label>
|
|
36
|
+
<div id="lookup-type-group" class="d-flex flex-wrap gap-3">
|
|
37
|
+
<div class="form-check">
|
|
38
|
+
<input class="form-check-input lookup-type-input" type="checkbox" id="lookup_icmp" value="ICMP">
|
|
39
|
+
<label class="form-check-label" for="lookup_icmp">ICMP</label>
|
|
40
|
+
</div>
|
|
41
|
+
<div class="form-check">
|
|
42
|
+
<!-- ARP lookup does not always work. Depends on host system -->
|
|
43
|
+
<input
|
|
44
|
+
class="form-check-input lookup-type-input"
|
|
45
|
+
type="checkbox"
|
|
46
|
+
id="lookup_arp_lookup"
|
|
47
|
+
value="ARP_LOOKUP"
|
|
48
|
+
{{ '' if is_arp_supported else 'disabled' }}
|
|
49
|
+
/>
|
|
50
|
+
<label class="form-check-label" for="lookup_arp_lookup">
|
|
51
|
+
ARP Lookup
|
|
52
|
+
</label>
|
|
53
|
+
{% if not is_arp_supported %}
|
|
54
|
+
<span
|
|
55
|
+
class="material-symbols-outlined arp-help-ico"
|
|
56
|
+
data-bs-toggle="tooltip"
|
|
57
|
+
data-bs-placement="top"
|
|
58
|
+
title="ARP lookup is not supported on this system, click for more info"
|
|
59
|
+
onclick="window.open('https://github.com/mdennis281/LANscape/blob/main/support/arp-issues.md', '_blank')"
|
|
60
|
+
>
|
|
61
|
+
help
|
|
62
|
+
</span>
|
|
63
|
+
{% endif %}
|
|
64
|
+
</div>
|
|
65
|
+
<div class="form-check">
|
|
66
|
+
<input class="form-check-input lookup-type-input" type="checkbox" id="lookup_icmp_then_arp" value="ICMP_THEN_ARP">
|
|
67
|
+
<label class="form-check-label" for="lookup_icmp_then_arp">ICMP then ARP Cache</label>
|
|
68
|
+
</div>
|
|
69
|
+
<div class="form-check">
|
|
70
|
+
<input class="form-check-input lookup-type-input" type="checkbox" id="lookup_poke_then_arp" value="POKE_THEN_ARP">
|
|
71
|
+
<label class="form-check-label" for="lookup_poke_then_arp">Poke then ARP Cache</label>
|
|
72
|
+
</div>
|
|
72
73
|
</div>
|
|
73
74
|
</div>
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
<input type="number" id="t_cnt_isalive" class="form-control">
|
|
75
|
+
<div class="col">
|
|
76
|
+
<label for="t_cnt_isalive">Device Lookup Threads</label>
|
|
77
|
+
<input type="number" id="t_cnt_isalive" class="form-control">
|
|
78
|
+
</div>
|
|
79
79
|
</div>
|
|
80
80
|
</div>
|
|
81
|
-
</div>
|
|
82
81
|
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
</div>
|
|
101
|
-
</div>
|
|
102
|
-
<div class="row mt-2">
|
|
103
|
-
<div class="col">
|
|
104
|
-
<label for="ping_timeout" class="form-label">Timeout Per Ping (sec)</label>
|
|
105
|
-
<input type="number" step="0.1" id="ping_timeout" class="form-control">
|
|
82
|
+
<div id="section-ping" class="form-group mt-2 config-section">
|
|
83
|
+
<h6>Device Detection <span class=text-color>/</span> Ping Settings</h6>
|
|
84
|
+
<div class="row">
|
|
85
|
+
<div class="col-3">
|
|
86
|
+
<label for="ping_attempts" class="form-label">Ping Attempts</label>
|
|
87
|
+
<input type="number" id="ping_attempts" class="form-control">
|
|
88
|
+
</div>
|
|
89
|
+
<div class="col-1 descriptor">X</div>
|
|
90
|
+
<div class="col-3">
|
|
91
|
+
<label for="ping_ping_count" class="form-label">Ping Count</label>
|
|
92
|
+
<input type="number" id="ping_ping_count" class="form-control">
|
|
93
|
+
</div>
|
|
94
|
+
<div class="col-1 descriptor">=</div>
|
|
95
|
+
<div class="col-3">
|
|
96
|
+
<label for="total-ping-attempts">Max pings per device</label>
|
|
97
|
+
<input type="number" id="total-ping-attempts" class="form-control" readonly>
|
|
98
|
+
</div>
|
|
106
99
|
</div>
|
|
107
|
-
<div class="
|
|
108
|
-
<
|
|
109
|
-
|
|
100
|
+
<div class="row mt-2">
|
|
101
|
+
<div class="col">
|
|
102
|
+
<label for="ping_timeout" class="form-label">Timeout Per Ping (sec)</label>
|
|
103
|
+
<input type="number" step="0.1" id="ping_timeout" class="form-control">
|
|
104
|
+
</div>
|
|
105
|
+
<div class="col">
|
|
106
|
+
<label for="ping_retry_delay" class="form-label">Delay Between Attempts (sec)</label>
|
|
107
|
+
<input type="number" step="0.1" id="ping_retry_delay" class="form-control">
|
|
108
|
+
</div>
|
|
110
109
|
</div>
|
|
111
110
|
</div>
|
|
112
|
-
</div>
|
|
113
111
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
112
|
+
<div id="section-arp" class="form-group mt-2 config-section">
|
|
113
|
+
<h6>Device Detection <span class=text-color>/</span> ARP Settings</h6>
|
|
114
|
+
<div class="row">
|
|
115
|
+
<div class="col">
|
|
116
|
+
<label for="arp_attempts" class="form-label">Attempts</label>
|
|
117
|
+
<input type="number" id="arp_attempts" class="form-control">
|
|
118
|
+
</div>
|
|
119
|
+
<div class="col">
|
|
120
|
+
<label for="arp_timeout" class="form-label">Timeout</label>
|
|
121
|
+
<input type="number" step="0.1" id="arp_timeout" class="form-control">
|
|
122
|
+
</div>
|
|
125
123
|
</div>
|
|
126
124
|
</div>
|
|
127
|
-
</div>
|
|
128
125
|
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
126
|
+
<div id="section-arp-cache" class="form-group mt-2 div-hide config-section">
|
|
127
|
+
<h6>Device Detection <span class=text-color>/</span> ARP Cache Settings</h6>
|
|
128
|
+
<div class="row">
|
|
129
|
+
<div class="col">
|
|
130
|
+
<label for="arp_cache_attempts" class="form-label">Attempts</label>
|
|
131
|
+
<input type="number" id="arp_cache_attempts" class="form-control">
|
|
132
|
+
</div>
|
|
133
|
+
<div class="col">
|
|
134
|
+
<label for="arp_cache_wait_before" class="form-label">Wait Before (sec)</label>
|
|
135
|
+
<input type="number" step="0.1" id="arp_cache_wait_before" class="form-control">
|
|
136
|
+
</div>
|
|
140
137
|
</div>
|
|
141
138
|
</div>
|
|
142
|
-
</div>
|
|
143
139
|
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
140
|
+
<div id="section-poke" class="form-group mt-2 div-hide config-section">
|
|
141
|
+
<h6>Device Detection <span class=text-color>/</span> Poke Settings</h6>
|
|
142
|
+
<div class="row">
|
|
143
|
+
<div class="col">
|
|
144
|
+
<label for="poke_attempts" class="form-label">Attempts</label>
|
|
145
|
+
<input type="number" id="poke_attempts" class="form-control">
|
|
146
|
+
</div>
|
|
147
|
+
<div class="col">
|
|
148
|
+
<label for="poke_timeout" class="form-label">Timeout (sec)</label>
|
|
149
|
+
<input type="number" step="0.1" id="poke_timeout" class="form-control">
|
|
150
|
+
</div>
|
|
155
151
|
</div>
|
|
156
152
|
</div>
|
|
157
|
-
</div>
|
|
158
|
-
|
|
159
|
-
<hr>
|
|
160
153
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
154
|
+
<div class="form-group mt-2 config-section">
|
|
155
|
+
<h6>Port Testing</h6>
|
|
156
|
+
<div class="row">
|
|
157
|
+
<div class="col-3">
|
|
158
|
+
<label for="t_cnt_port_scan">Device Scan Threads</label>
|
|
159
|
+
<input type="number" id="t_cnt_port_scan" class="form-control">
|
|
160
|
+
</div>
|
|
161
|
+
<div class="col-1 descriptor">X</div>
|
|
162
|
+
<div class="col-3">
|
|
163
|
+
<label for="t_cnt_port_test">Port Test Threads</label>
|
|
164
|
+
<input type="number" id="t_cnt_port_test" class="form-control">
|
|
165
|
+
</div>
|
|
166
|
+
<div class="col-1 descriptor">=</div>
|
|
167
|
+
<div class="col-3">
|
|
168
|
+
<label for="total-port-tests">Total concurrent tests</label>
|
|
169
|
+
<input type="number" id="total-port-tests" class="form-control" readonly>
|
|
170
|
+
</div>
|
|
177
171
|
</div>
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
</
|
|
172
|
+
<div class="row mt-2">
|
|
173
|
+
<div class="col">
|
|
174
|
+
<label for="port_list">Port List</label>
|
|
175
|
+
<div class="port-list-wrapper">
|
|
176
|
+
<select id="port_list" class="port-list">
|
|
177
|
+
<option value="both">ARP + Ping</option>
|
|
178
|
+
<option value="arp">ARP Only</option>
|
|
179
|
+
<option value="ping">Ping Only</option>
|
|
180
|
+
</select>
|
|
181
|
+
</div>
|
|
188
182
|
</div>
|
|
189
183
|
</div>
|
|
190
184
|
</div>
|
|
191
|
-
<hr>
|
|
192
185
|
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
186
|
+
<div class="form-group mt-2 config-section">
|
|
187
|
+
<h6>Stages</h6>
|
|
188
|
+
<div class="form-check"
|
|
189
|
+
data-bs-toggle="tooltip"
|
|
190
|
+
data-bs-placement="right"
|
|
191
|
+
title="Find Devices using ARP or Ping (always on)"
|
|
192
|
+
>
|
|
193
|
+
<input class="form-check-input" disabled type="checkbox" id="task_find_devices" checked>
|
|
194
|
+
<label class="form-check-label" for="task_find_devices">Find Devices</label>
|
|
195
|
+
</div>
|
|
196
|
+
<div class="form-check"
|
|
197
|
+
data-bs-toggle="tooltip"
|
|
198
|
+
data-bs-placement="right"
|
|
199
|
+
title="Find open ports on devices"
|
|
200
|
+
>
|
|
201
|
+
<input class="form-check-input" type="checkbox" id="task_scan_ports">
|
|
202
|
+
<label class="form-check-label" for="task_scan_ports">Scan Ports</label>
|
|
203
|
+
</div>
|
|
204
|
+
<div class="form-check"
|
|
205
|
+
data-bs-toggle="tooltip"
|
|
206
|
+
data-bs-placement="right"
|
|
207
|
+
title="Determine services running on open ports (no supporting UI yet)"
|
|
208
|
+
>
|
|
209
|
+
<input class="form-check-input" type="checkbox" id="task_scan_port_services">
|
|
210
|
+
<label class="form-check-label" for="task_scan_port_services">Scan Port Services</label>
|
|
211
|
+
</div>
|
|
218
212
|
</div>
|
|
219
213
|
</div>
|
|
220
214
|
|
|
221
|
-
</div>
|
|
222
|
-
|
|
223
215
|
</div>
|
|
224
216
|
<div class="modal-footer border-secondary">
|
|
225
217
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
|
|
226
218
|
</div>
|
|
227
219
|
</div>
|
|
228
220
|
</div>
|
|
229
|
-
</div>
|
|
221
|
+
</div>
|
|
@@ -36,7 +36,7 @@ lanscape/ui/blueprints/api/tools.py,sha256=IhY_ldrnVYuZKFv6gsevr9LL5gfTnmVuR95zF
|
|
|
36
36
|
lanscape/ui/blueprints/web/__init__.py,sha256=NvgnjP0X4LwqVhSEyh5RUzoG45N44kHK1MEFlfvBxTg,118
|
|
37
37
|
lanscape/ui/blueprints/web/routes.py,sha256=883puFTHePUEgwS4a2-Co6-gdLwr5NbOx0goUck7054,3571
|
|
38
38
|
lanscape/ui/static/lanscape.webmanifest,sha256=07CqA-PQsO35KJD8R96sI3Pxix6UuBjijPDCuy9vM3s,446
|
|
39
|
-
lanscape/ui/static/css/style.css,sha256=
|
|
39
|
+
lanscape/ui/static/css/style.css,sha256=6Mxpwtu4zYB9z42Aq7U1UREcMHEq2GlN5Pa91963a0k,17757
|
|
40
40
|
lanscape/ui/static/img/ico/android-chrome-192x192.png,sha256=JmFT6KBCCuoyxMV-mLNtF9_QJbVBvfWPUizKN700fi8,18255
|
|
41
41
|
lanscape/ui/static/img/ico/android-chrome-512x512.png,sha256=88Jjx_1-4XAnZYz64KP6FdTl_kYkNG2_kQIKteQwSh4,138055
|
|
42
42
|
lanscape/ui/static/img/ico/apple-touch-icon.png,sha256=tEJlLwBZtF4v-NC90YCfRJQ2prTsF4i3VQLK_hnv2Mw,16523
|
|
@@ -61,14 +61,14 @@ lanscape/ui/templates/scan.html,sha256=00QX2_1S_1wGzk42r00LjEkJvoioCLs6JgjOibi6r
|
|
|
61
61
|
lanscape/ui/templates/shutdown.html,sha256=iXVCq2yl5TjZfNFl4esbDJra3gJA2VQpae0jj4ipy9w,701
|
|
62
62
|
lanscape/ui/templates/core/head.html,sha256=eZiebt24xYd_NALe-fFL25rb4uFjUrF4XJjxFH61MgM,779
|
|
63
63
|
lanscape/ui/templates/core/scripts.html,sha256=rSRi4Ut8iejajMPhOc5bzEz-Z3EHxpj_3PxwwyyhmTQ,640
|
|
64
|
-
lanscape/ui/templates/scan/config.html,sha256=
|
|
64
|
+
lanscape/ui/templates/scan/config.html,sha256=O4XtwMq3Dz6gaRpADqsse1MAyfmJOhfxQune2n7WdMQ,12113
|
|
65
65
|
lanscape/ui/templates/scan/export.html,sha256=Nvs_unojzT3qhN_ZnEgYHou2C9wqWGr3dVr2UiLnYjY,749
|
|
66
66
|
lanscape/ui/templates/scan/ip-table-row.html,sha256=RANDsfW4xBATdtiLrxUlRouFSjgwetZqdzH-MJgj2mE,4740
|
|
67
67
|
lanscape/ui/templates/scan/ip-table.html,sha256=CP7AG8WHOgy3AyYCIN0wA2wO6n0H1X0F9IOncQtpPvE,914
|
|
68
68
|
lanscape/ui/templates/scan/overview.html,sha256=xWj9jWDPg2KcPLvS8fnSins23_UXjKCdb2NJwNG2U2Q,1176
|
|
69
69
|
lanscape/ui/templates/scan/scan-error.html,sha256=wmAYQ13IJHUoO8fAGNDjMvNml7tu4rsIU3Vav71ETlA,999
|
|
70
|
-
lanscape-1.3.
|
|
71
|
-
lanscape-1.3.
|
|
72
|
-
lanscape-1.3.
|
|
73
|
-
lanscape-1.3.
|
|
74
|
-
lanscape-1.3.
|
|
70
|
+
lanscape-1.3.9.dist-info/licenses/LICENSE,sha256=VLoE0IrNTIc09dFm7hMN0qzk4T3q8V0NaPcFQqMemDs,1070
|
|
71
|
+
lanscape-1.3.9.dist-info/METADATA,sha256=Xw0PX-Yc8Kmv4Ii_rk2GbH9mBtaHNhPxSm5FkqBxIJU,3121
|
|
72
|
+
lanscape-1.3.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
73
|
+
lanscape-1.3.9.dist-info/top_level.txt,sha256=E9D4sjPz_6H7c85Ycy_pOS2xuv1Wm-ilKhxEprln2ps,9
|
|
74
|
+
lanscape-1.3.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|