├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── SACModuleBase ├── Attributes │ └── SACModuleInfoAttribute.cs ├── Enums │ └── Captcha │ │ └── CaptchaStatus.cs ├── ISACBase.cs ├── ISACHandlerCaptcha.cs ├── ISACHandlerMailBox.cs ├── ISACHandlerReCaptcha.cs ├── ISACLogger.cs ├── ISACUserInterface.cs ├── Models │ ├── Capcha │ │ ├── CaptchaRequest.cs │ │ ├── CaptchaResponse.cs │ │ └── ReCaptchaRequest.cs │ ├── ConfigManager.cs │ ├── Mail │ │ ├── MailBoxMailItem.cs │ │ ├── MailBoxRequest.cs │ │ └── MailBoxResponse.cs │ └── SACInitialize.cs ├── Properties │ └── AssemblyInfo.cs ├── SACModuleBase.csproj └── packages.config ├── SampleModule ├── AllInOneSample │ └── AllHere.cs ├── Gui │ ├── Configuration.Designer.cs │ ├── Configuration.cs │ └── Configuration.resx ├── ImageCaptcha.cs ├── MailBox.cs ├── Misc.cs ├── Models │ ├── CaptchaConfig.cs │ └── MailConfig.cs ├── Properties │ ├── AssemblyInfo.cs │ └── DataSources │ │ ├── SampleModule.Models.CaptchaConfig.datasource │ │ └── SampleModule.Models.MailConfig.datasource ├── ReCaptcha.cs ├── SampleModule.csproj └── packages.config ├── SteamAccCreator.sln ├── SteamAccCreator ├── App.config ├── Defaults │ ├── Mail.cs │ └── Web.cs ├── Enums │ ├── CaptchaService.cs │ ├── ProxyStatus.cs │ └── ProxyType.cs ├── File │ ├── FileManager.cs │ └── SaveType.cs ├── Firefox │ ├── AccessibleHandler.dll │ ├── AccessibleMarshal.dll │ ├── IA2Marshal.dll │ ├── breakpadinjector.dll │ ├── d3dcompiler_47.dll │ ├── freebl3.dll │ ├── lgpllibs.dll │ ├── libEGL.dll │ ├── libGLESv2.dll │ ├── mozavcodec.dll │ ├── mozavutil.dll │ ├── mozglue.dll │ ├── nss3.dll │ ├── nssckbi.dll │ ├── nssdbm3.dll │ ├── omni.ja │ ├── plugin-container.exe │ ├── plugin-hang-ui.exe │ ├── qipcap.dll │ ├── softokn3.dll │ └── xul.dll ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Gui │ ├── AccountCreator.cs │ ├── AddGameDialog.Designer.cs │ ├── AddGameDialog.cs │ ├── AddGameDialog.resx │ ├── CaptchaDialog.Designer.cs │ ├── CaptchaDialog.cs │ ├── CaptchaDialog.resx │ ├── InputDialog.Designer.cs │ ├── InputDialog.cs │ ├── InputDialog.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── ReCaptchaDialog.Designer.cs │ ├── ReCaptchaDialog.cs │ └── ReCaptchaDialog.resx ├── Interfaces │ └── ICaptchaDialog.cs ├── Logger.cs ├── Models │ ├── CaptchaSolutionsConfig.cs │ ├── CaptchaSolvingConfig.cs │ ├── Configuration.cs │ ├── CredentialConfig.cs │ ├── GameInfo.cs │ ├── GamesConfig.cs │ ├── MailConfig.cs │ ├── ModuleBinding.cs │ ├── ModuleManager.cs │ ├── OutputConfig.cs │ ├── ProfileConfig.cs │ ├── ProxyConfig.cs │ ├── ProxyItem.cs │ ├── RuCaptchaConfig.cs │ └── Steam │ │ └── UploadProfileImage.cs ├── ModuleExtends.cs ├── ModuleLogger.cs ├── NLog.config ├── Pathes.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── DataSources │ │ ├── SACModuleBase.ISACBase.datasource │ │ ├── SteamAccCreator.Models.CaptchaSolutionsConfig.datasource │ │ ├── SteamAccCreator.Models.ModuleBinding.datasource │ │ ├── SteamAccCreator.Models.ProfileConfig.datasource │ │ ├── SteamAccCreator.Models.ProxyItem.datasource │ │ └── SteamAccCreator.Models.RuCaptchaConfig.datasource │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SteamAccCreator.csproj ├── Utility.cs ├── Web │ ├── Captcha │ │ └── CaptchaSolution.cs │ ├── Error.cs │ ├── HttpHandler.cs │ ├── MailHandler.cs │ ├── ProxyManager.cs │ └── Updater │ │ ├── Enums │ │ └── UpdateChannelEnum.cs │ │ ├── Models │ │ ├── DownloadLinks.cs │ │ ├── Misc.cs │ │ ├── Updates.cs │ │ └── VersionInfo.cs │ │ ├── UpdateInfo.cs │ │ └── UpdaterHandler.cs ├── packages.config └── photo_2018-12-26_15-38-43.ico └── appveyor.yml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/README.md -------------------------------------------------------------------------------- /SACModuleBase/Attributes/SACModuleInfoAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/Attributes/SACModuleInfoAttribute.cs -------------------------------------------------------------------------------- /SACModuleBase/Enums/Captcha/CaptchaStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/Enums/Captcha/CaptchaStatus.cs -------------------------------------------------------------------------------- /SACModuleBase/ISACBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/ISACBase.cs -------------------------------------------------------------------------------- /SACModuleBase/ISACHandlerCaptcha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/ISACHandlerCaptcha.cs -------------------------------------------------------------------------------- /SACModuleBase/ISACHandlerMailBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/ISACHandlerMailBox.cs -------------------------------------------------------------------------------- /SACModuleBase/ISACHandlerReCaptcha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/ISACHandlerReCaptcha.cs -------------------------------------------------------------------------------- /SACModuleBase/ISACLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/ISACLogger.cs -------------------------------------------------------------------------------- /SACModuleBase/ISACUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/ISACUserInterface.cs -------------------------------------------------------------------------------- /SACModuleBase/Models/Capcha/CaptchaRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/Models/Capcha/CaptchaRequest.cs -------------------------------------------------------------------------------- /SACModuleBase/Models/Capcha/CaptchaResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/Models/Capcha/CaptchaResponse.cs -------------------------------------------------------------------------------- /SACModuleBase/Models/Capcha/ReCaptchaRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/Models/Capcha/ReCaptchaRequest.cs -------------------------------------------------------------------------------- /SACModuleBase/Models/ConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/Models/ConfigManager.cs -------------------------------------------------------------------------------- /SACModuleBase/Models/Mail/MailBoxMailItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/Models/Mail/MailBoxMailItem.cs -------------------------------------------------------------------------------- /SACModuleBase/Models/Mail/MailBoxRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/Models/Mail/MailBoxRequest.cs -------------------------------------------------------------------------------- /SACModuleBase/Models/Mail/MailBoxResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/Models/Mail/MailBoxResponse.cs -------------------------------------------------------------------------------- /SACModuleBase/Models/SACInitialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/Models/SACInitialize.cs -------------------------------------------------------------------------------- /SACModuleBase/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SACModuleBase/SACModuleBase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/SACModuleBase.csproj -------------------------------------------------------------------------------- /SACModuleBase/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SACModuleBase/packages.config -------------------------------------------------------------------------------- /SampleModule/AllInOneSample/AllHere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SampleModule/AllInOneSample/AllHere.cs -------------------------------------------------------------------------------- /SampleModule/Gui/Configuration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SampleModule/Gui/Configuration.Designer.cs -------------------------------------------------------------------------------- /SampleModule/Gui/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SampleModule/Gui/Configuration.cs -------------------------------------------------------------------------------- /SampleModule/Gui/Configuration.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SampleModule/Gui/Configuration.resx -------------------------------------------------------------------------------- /SampleModule/ImageCaptcha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SampleModule/ImageCaptcha.cs -------------------------------------------------------------------------------- /SampleModule/MailBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SampleModule/MailBox.cs -------------------------------------------------------------------------------- /SampleModule/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SampleModule/Misc.cs -------------------------------------------------------------------------------- /SampleModule/Models/CaptchaConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SampleModule/Models/CaptchaConfig.cs -------------------------------------------------------------------------------- /SampleModule/Models/MailConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SampleModule/Models/MailConfig.cs -------------------------------------------------------------------------------- /SampleModule/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SampleModule/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SampleModule/Properties/DataSources/SampleModule.Models.CaptchaConfig.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SampleModule/Properties/DataSources/SampleModule.Models.CaptchaConfig.datasource -------------------------------------------------------------------------------- /SampleModule/Properties/DataSources/SampleModule.Models.MailConfig.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SampleModule/Properties/DataSources/SampleModule.Models.MailConfig.datasource -------------------------------------------------------------------------------- /SampleModule/ReCaptcha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SampleModule/ReCaptcha.cs -------------------------------------------------------------------------------- /SampleModule/SampleModule.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SampleModule/SampleModule.csproj -------------------------------------------------------------------------------- /SampleModule/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SampleModule/packages.config -------------------------------------------------------------------------------- /SteamAccCreator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator.sln -------------------------------------------------------------------------------- /SteamAccCreator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/App.config -------------------------------------------------------------------------------- /SteamAccCreator/Defaults/Mail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Defaults/Mail.cs -------------------------------------------------------------------------------- /SteamAccCreator/Defaults/Web.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Defaults/Web.cs -------------------------------------------------------------------------------- /SteamAccCreator/Enums/CaptchaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Enums/CaptchaService.cs -------------------------------------------------------------------------------- /SteamAccCreator/Enums/ProxyStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Enums/ProxyStatus.cs -------------------------------------------------------------------------------- /SteamAccCreator/Enums/ProxyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Enums/ProxyType.cs -------------------------------------------------------------------------------- /SteamAccCreator/File/FileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/File/FileManager.cs -------------------------------------------------------------------------------- /SteamAccCreator/File/SaveType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/File/SaveType.cs -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/AccessibleHandler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/AccessibleHandler.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/AccessibleMarshal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/AccessibleMarshal.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/IA2Marshal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/IA2Marshal.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/breakpadinjector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/breakpadinjector.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/d3dcompiler_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/d3dcompiler_47.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/freebl3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/freebl3.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/lgpllibs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/lgpllibs.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/libEGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/libEGL.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/libGLESv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/libGLESv2.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/mozavcodec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/mozavcodec.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/mozavutil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/mozavutil.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/mozglue.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/mozglue.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/nss3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/nss3.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/nssckbi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/nssckbi.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/nssdbm3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/nssdbm3.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/omni.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/omni.ja -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/plugin-container.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/plugin-container.exe -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/plugin-hang-ui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/plugin-hang-ui.exe -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/qipcap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/qipcap.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/softokn3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/softokn3.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/xul.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/xul.dll -------------------------------------------------------------------------------- /SteamAccCreator/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/FodyWeavers.xml -------------------------------------------------------------------------------- /SteamAccCreator/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/FodyWeavers.xsd -------------------------------------------------------------------------------- /SteamAccCreator/Gui/AccountCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/AccountCreator.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/AddGameDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/AddGameDialog.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/AddGameDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/AddGameDialog.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/AddGameDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/AddGameDialog.resx -------------------------------------------------------------------------------- /SteamAccCreator/Gui/CaptchaDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/CaptchaDialog.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/CaptchaDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/CaptchaDialog.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/CaptchaDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/CaptchaDialog.resx -------------------------------------------------------------------------------- /SteamAccCreator/Gui/InputDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/InputDialog.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/InputDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/InputDialog.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/InputDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/InputDialog.resx -------------------------------------------------------------------------------- /SteamAccCreator/Gui/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/MainForm.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/MainForm.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/MainForm.resx -------------------------------------------------------------------------------- /SteamAccCreator/Gui/ReCaptchaDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/ReCaptchaDialog.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/ReCaptchaDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/ReCaptchaDialog.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/ReCaptchaDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/ReCaptchaDialog.resx -------------------------------------------------------------------------------- /SteamAccCreator/Interfaces/ICaptchaDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Interfaces/ICaptchaDialog.cs -------------------------------------------------------------------------------- /SteamAccCreator/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Logger.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/CaptchaSolutionsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Models/CaptchaSolutionsConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/CaptchaSolvingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Models/CaptchaSolvingConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Models/Configuration.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/CredentialConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Models/CredentialConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/GameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Models/GameInfo.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/GamesConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Models/GamesConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/MailConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Models/MailConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/ModuleBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Models/ModuleBinding.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/ModuleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Models/ModuleManager.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/OutputConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Models/OutputConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/ProfileConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Models/ProfileConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/ProxyConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Models/ProxyConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/ProxyItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Models/ProxyItem.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/RuCaptchaConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Models/RuCaptchaConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/Steam/UploadProfileImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Models/Steam/UploadProfileImage.cs -------------------------------------------------------------------------------- /SteamAccCreator/ModuleExtends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/ModuleExtends.cs -------------------------------------------------------------------------------- /SteamAccCreator/ModuleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/ModuleLogger.cs -------------------------------------------------------------------------------- /SteamAccCreator/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/NLog.config -------------------------------------------------------------------------------- /SteamAccCreator/Pathes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Pathes.cs -------------------------------------------------------------------------------- /SteamAccCreator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Program.cs -------------------------------------------------------------------------------- /SteamAccCreator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SteamAccCreator/Properties/DataSources/SACModuleBase.ISACBase.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/DataSources/SACModuleBase.ISACBase.datasource -------------------------------------------------------------------------------- /SteamAccCreator/Properties/DataSources/SteamAccCreator.Models.CaptchaSolutionsConfig.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/DataSources/SteamAccCreator.Models.CaptchaSolutionsConfig.datasource -------------------------------------------------------------------------------- /SteamAccCreator/Properties/DataSources/SteamAccCreator.Models.ModuleBinding.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/DataSources/SteamAccCreator.Models.ModuleBinding.datasource -------------------------------------------------------------------------------- /SteamAccCreator/Properties/DataSources/SteamAccCreator.Models.ProfileConfig.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/DataSources/SteamAccCreator.Models.ProfileConfig.datasource -------------------------------------------------------------------------------- /SteamAccCreator/Properties/DataSources/SteamAccCreator.Models.ProxyItem.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/DataSources/SteamAccCreator.Models.ProxyItem.datasource -------------------------------------------------------------------------------- /SteamAccCreator/Properties/DataSources/SteamAccCreator.Models.RuCaptchaConfig.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/DataSources/SteamAccCreator.Models.RuCaptchaConfig.datasource -------------------------------------------------------------------------------- /SteamAccCreator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/Resources.resx -------------------------------------------------------------------------------- /SteamAccCreator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/Settings.settings -------------------------------------------------------------------------------- /SteamAccCreator/SteamAccCreator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/SteamAccCreator.csproj -------------------------------------------------------------------------------- /SteamAccCreator/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Utility.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Captcha/CaptchaSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Captcha/CaptchaSolution.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Error.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/HttpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Web/HttpHandler.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/MailHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Web/MailHandler.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/ProxyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Web/ProxyManager.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Updater/Enums/UpdateChannelEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Updater/Enums/UpdateChannelEnum.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Updater/Models/DownloadLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Updater/Models/DownloadLinks.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Updater/Models/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Updater/Models/Misc.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Updater/Models/Updates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Updater/Models/Updates.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Updater/Models/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Updater/Models/VersionInfo.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Updater/UpdateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Updater/UpdateInfo.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Updater/UpdaterHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Updater/UpdaterHandler.cs -------------------------------------------------------------------------------- /SteamAccCreator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/packages.config -------------------------------------------------------------------------------- /SteamAccCreator/photo_2018-12-26_15-38-43.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/SteamAccCreator/photo_2018-12-26_15-38-43.ico -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashesh3/Steam-Account-Generator/HEAD/appveyor.yml --------------------------------------------------------------------------------