This is really simple application that allows you to store the data from multiple accounts and
get the TOTP-based Steam Authentication code for any of stored accounts.
Based on steam-totp
npm install
Simply fill the credentials of your accounts to data.json
file in format:
{
"%USERNAME%": {
"shared": "%SHARED_SECRET%", // username and shared secret needed for Steam Guard
"pass": "qwerty123" // other credentials are not necessary but will be displayed
}
}
Remember other credentials stored only for better usabilty of tool and not necessary for Steam Guard Code generation.
Then generate Steam Guard token (you can specify many of account names):
node index.js %USERNAME%
node index.js %USERNAME_1% %USERNAME_2% .. %USERNAME_N%
node index.js account_username
# account_username:
# qwerty123
# 12345
or verbose version
node index.js -v account_username
# account_username:
# shared: some_shared_secret
# identity: some_identity_secret
# pass: qwerty123
# 12345