Creating Accounts When Password Page is Up

If the website you’re running requires an account and password page has gone up, then you can use the following method below to create an account while password page is up.

1. Open Chrome

2. Go to the website you wish to make an account for.

3. Right click on the browser and click Inspect Element

4. Click on console

5. Paste the following code snippet into the console. Replace firstName, lastName, email, & password with correct details for the account you want to create.

---------------------------------------------------Start Below--------------------------------------

const firstName = 'Bob';
const lastName = 'Smith';
const email = 'test123@gmail.com';
const password = 'justAPassword';
var data = "form_type=create_customer&utf8=%E2%9C%93&customer%5Bfirst_name%5D=" + firstName + "&customer%5Blast_name%5D=" + lastName + "&customer%5Bemail%5D=" + email + "&customer%5Bpassword%5D=" + password;
jQuery.post('/account', data).done(function (response) {
    var logErrors = jQuery(response).find('.errors').text();
    if (logErrors != '' && logErrors != 'undefined') {
        alert(logErrors);
    }
    else {
        alert('Account created!');
    }
}).fail(function () {
    alert('Failed to create account! Please try different details or activate a VPN!');
});

----------------------------------------------------Stop Above -------------------------------------

6. Press ENTER in the console.

7. Add /challenge to the end of the URL you are currently on. For example, for the store https://shop.mambaandmambacita.orgarrow-up-right, you would do the following - https://shop.mambaandmambacita.org/challengearrow-up-right

8. Solve the captcha challenge and click submit.

9. Check your email for the account creation confirmation message.

Last updated