Jump to content
McKay Development

Void

Member
  • Posts

    1
  • Joined

  • Last visited

Everything posted by Void

  1. Hello , So basically, we're using steambot, by jessecar96. All of my current bots accs are linked to the mobile auth on my iPhone. I've retrieved the shared_secret & identity_secret from my steam app for each account. We were able to login and generate the totp sucessfully, but we're not having any success when it comes to generating the trade confirmation. We switched one of the bots to the desktop authenticator (also made by jessecar) and were able to generate the maFile and everything worked successfully. The only problem with this is the account now has a 15 day cool down. We are trying our best to avoid this as we are hoping to release our project within the next week or less. My question is, would it be possible to copy the same maFile format from our working account on the desktop and use the layout for the rest of our accounts? I am able to retrieve all the details for shared_secret, serial_number, revocation_code, uri, server_time, account_name, token_gid, identity_secret, secret_1, and status from the files extracted from my iPhone for each account. Only problem is, I don't know what will happen if we use the same device_id from our account on the desktop auth as well as the same sessionID, SteamLogin, SteamLoginSecure, WebCookie, and OAuthToken. Will it work? // Example 1 account { "shared_secret": "11111111111111111111111111", "serial_number": "11111111111111111", "revocation_code": "R11111", "uri": "otpauth://totp/Steam:example1?secret=1111111111111111111111111111&issuer=Steam", "server_time": 1111111111, "account_name": "Example1", "token_gid": "11111111111111", "identity_secret": "1111111111111111111111111", "secret_1": "1111111111111111111111", "status": 1, "device_id": "android:1111111111-1111-111111-1111111", "fully_enrolled": false, "Session": { "SessionID": "11111111111111111111111", "SteamLogin": "Example 1 SteamID64Here%7C%1111111111111111111111111111111111", "SteamLoginSecure": "Example 1 SteamID64Here%7C%1111111111111111111111111111111111", "WebCookie": "1111111111111111111111111111111111", "OAuthToken": "11111111111111111111111111111111111", "SteamID": Example 1 SteamID64 } } // Example 2 account { "shared_secret": "22222222222222222222222", "serial_number": "222222222222", "revocation_code": "R22222", "uri": "otpauth://totp/Steam:example2?secret=22222222222222222222222222222&issuer=Steam", "server_time": 2222222222, "account_name": "Example2", "token_gid": "2222222222222222", "identity_secret": "2222222222222222222222", "secret_1": "22222222222222222222222", "status": 1, "device_id": "android:1111111111-1111-111111-1111111", // we keep the same device_id as our example 1 "fully_enrolled": false, "Session": { "SessionID": "11111111111111111111111", // we keep the same sessionID from example 1 "SteamLogin": "Example 2 SteamID64Here%7C%1111111111111111111111111111111111", // we keep the same SteamLogin from example 1 other then the steamID64 "SteamLoginSecure": "Example 2 SteamID64Here%7C%1111111111111111111111111111111111", // we keep the same SteamLoginSecure from example 1 other then the steamID64 "WebCookie": "1111111111111111111111111111111111", // we keep the same WebCooke from example 1 "OAuthToken": "11111111111111111111111111111111111", // we keep the same OAuth from example 1 "SteamID": Example 2 SteamID64 } }
×
×
  • Create New...