juzjus10 / Epic-Account-Creator

Apache License 2.0
23 stars 18 forks source link

unlink 2FA #12

Closed tcmaps closed 4 years ago

tcmaps commented 4 years ago

as mailosaurus is a trial, it may be wise to disable 2FA after securing the game.

i use this code:

`
await driver.get('https://www.epicgames.com/account/password'); await driver.wait(until.titleIs('Change Your Password'), 150000); await driver.sleep(3000) await driver.executeScript('var tutu = document.getElementsByClassName("email-auth"); tutu[0].click();') await driver.wait(until.elementLocated(By.className('common-disable-container')), 150000); await driver.executeScript('var toto = document.getElementsByClassName("proceed-btn"); toto[0].click();') await driver.sleep(1000);

`

tcmaps commented 4 years ago

you can also just XHR-POST to https://www.epicgames.com/account/v2/security/ajaxRemoveTwoFactorAuthMethod with content type=email

sd1123 commented 4 years ago

Thanks for the code above! I figured it out where to place the code lol. it worked for me. I will try to pull request it

sam1e-dev commented 4 years ago

where to put it? i have already 30 accounts xd what now to unlink them all?

sd1123 commented 4 years ago

Uhh I dont know how to unlink them automatically but you can unlink the new ones you can create. I uploaded it to my github account. I changed it.

On Wed, May 20, 2020, 7:46 PM xdc-dev notifications@github.com wrote:

where to put it? i have already 30 accounts xd what now to unlink them all?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/juzjus10/Epic-Account-Creator/issues/12#issuecomment-631795661, or unsubscribe https://github.com/notifications/unsubscribe-auth/AC2T2P6JKZULAIEZGHTKQFLRSRTTTANCNFSM4NGLOIEA .

tcmaps commented 4 years ago

it could be done with parts of the script to write a login + unlink one, just parse accounts.txt and loop.

Bafmaaan commented 4 years ago

Do you have discord? @tcmaps

juzjus10 commented 4 years ago

Added in latest commit