steam-account-creator / Steam-Account-Generator

Steam Account Generator by DedSec
MIT License
106 stars 36 forks source link

Using own webservice to provide the steam mail and temp address #76

Closed ItsOnlyMeNL closed 4 years ago

ItsOnlyMeNL commented 4 years ago

Hi,

What if i would use my own webserver and mailservice that give all these information? What response does the application wants from the webserver so it can extract the url it needs to open to activate the account?

string dataxx = jsonResponse.First.ToString();
string[] words = (Regex.Split(dataxx, "stoken="));
string[] words9 = (Regex.Split(words[1], "&"));
string[] words1 = (Regex.Split(dataxx, "creationid="));
string[] words2 = Regex.Split(words1[1], " ");

So when it sends the request for: GET /v2?e=SteamUserLogin%40my.private.domain What does it wants in response?

When i reply back with an json array with 'message': "<<< THE STEAM MAIL >>>" it fails and says no mail received.

ItsOnlyMeNL commented 4 years ago

Nvm, i got it fixed ty