diff --git a/payload/user/remote_access/pager-webui/www/index.html b/payload/user/remote_access/pager-webui/www/index.html index c0eb881..5b465e6 100644 --- a/payload/user/remote_access/pager-webui/www/index.html +++ b/payload/user/remote_access/pager-webui/www/index.html @@ -267,7 +267,7 @@ - + diff --git a/payload/user/remote_access/pager-webui/www/js/views.js b/payload/user/remote_access/pager-webui/www/js/views.js index 8b6649a..ec6ecf0 100644 --- a/payload/user/remote_access/pager-webui/www/js/views.js +++ b/payload/user/remote_access/pager-webui/www/js/views.js @@ -1,5 +1,4 @@ 'use strict'; - const views = {}; const h = (tag, attrs, ...children) => { @@ -1157,8 +1156,11 @@ const ATTACK_TABS = [ function attacksShell(root, activeHash) { root.appendChild(h('h1', { class: 'page-title', text: 'Attacks' })); tabBar(root, ATTACK_TABS, activeHash); - return h('div', {}, h('div', { class: 'muted', style: 'font-size:12px;margin:8px 0' }, + const box = h('div', {}); + box.appendChild(h('div', { class: 'muted', style: 'font-size:12px;margin:8px 0' }, 'Targets: only networks you are authorized to test. The device is the source of truth — every change is verified against it.')); + root.appendChild(box); + return box; } function attackBadge(ap) {