Closed tcmaps closed 4 years ago
you can also just XHR-POST to https://www.epicgames.com/account/v2/security/ajaxRemoveTwoFactorAuthMethod
with content type=email
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
where to put it? i have already 30 accounts xd what now to unlink them all?
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 .
it could be done with parts of the script to write a login + unlink one, just parse accounts.txt and loop.
Do you have discord? @tcmaps
Added in latest commit
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);
`