T1MOXA 1 Report post Posted June 27, 2018 The first time you log in to your account for some reason turns on Steam-Guard.Why is this happening and can it be avoided ?I'd like to keep my account unprotected. Quote Share this post Link to post Share on other sites
T1MOXA 1 Report post Posted June 27, 2018 What I did:Register for an account.I authorize on the account without Steam-Guard using nodejs. (All OK.) Then I try to log on to another device using nodejs again.And steam for some reason begins to ask the code. Quote Share this post Link to post Share on other sites
Dr. McKay 278 Report post Posted June 27, 2018 I don't believe it's currently possible from this module to disable Steam Guard entirely. Quote Share this post Link to post Share on other sites
T1MOXA 1 Report post Posted June 27, 2018 The fact is that before using the module - the protection is disabled, and then for some reason it turns on by itself. Quote Share this post Link to post Share on other sites
T1MOXA 1 Report post Posted June 27, 2018 (edited) By the way, if I understand correctly, one request is enough to disable.steam.on('webSession', (sessionID, cookies) => { let cookiejar = request.jar(); for (let arr of cookies) { cookiejar.setCookie(arr, 'https://store.steampowered.com'); } request({ method: 'POST', uri: 'https://store.steampowered.com/twofactor/manage_action' jar: cookiejar, simple: false, form: { action: 'actuallynone', sessionid: sessionID } }); }); Edited June 27, 2018 by T1MOXA Quote Share this post Link to post Share on other sites
Dr. McKay 278 Report post Posted June 27, 2018 The fact is that before using the module - the protection is disabled, and then for some reason it turns on by itself. This is normal. Steam turns on Steam Guard automatically after you login via the client a few times. Quote Share this post Link to post Share on other sites
T1MOXA 1 Report post Posted June 27, 2018 This is normal. Steam turns on Steam Guard automatically after you login via the client a few times.There's no way to avoid it ? Quote Share this post Link to post Share on other sites
Dr. McKay 278 Report post Posted June 27, 2018 Nope. Quote Share this post Link to post Share on other sites