Replies: 4 comments 1 reply
-
What are other methods? Don't wanna actually root my phone and wanna keep a copy of authenticator on my phone. |
Beta Was this translation helpful? Give feedback.
-
mac tip: |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
If you have root and LSPosed installed on your Android phone, you can get the Steam Guard Token with the following LSPosed module: After installing the app, you must activate the module in LSPosed and check that the Steam app is checked. Then restart the cell phone. After restarting, open the Steam app and the Steam Guard data will automatically be copied to the phone's clipboard. The Steam Guard data is available in a json formatted string. |
Beta Was this translation helpful? Give feedback.
-
I don't see this documented yet so I'm going to document it here.
Here's how you extract the Steam TOTP secret from the Steam 3.0 Android app. The easiest way is to just use a rooted phone but there are other methods (not mentioned here because they are quite complicated).
shared_secret
field, this is your TOTP secret. You can't use it directly however, as it's in Base64. You need to convert it into Base32.printf 'PUT YOUR shared_secret HERE' | base64 -d | base32
printf '9jMbHnerWZPtmzjdyEexyEnyHS8=' | base64 -d | base32
shared_secret
in the top left "Control" that says "Push". The output in the top right "Control" that says "Pull" will be your TOTP secret.Beta Was this translation helpful? Give feedback.
All reactions