├── Steam Two ├── on.ico ├── side.ico ├── favicon.ico ├── Properties │ ├── Settings.settings │ ├── Settings.Designer.cs │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── App.xaml.cs ├── packages.config ├── AddAccount.xaml.cs ├── App.xaml ├── AddAccount.xaml ├── GetInput.xaml ├── LocalSteamController.cs ├── steamChatWindow.xaml ├── ToolWindow.xaml ├── GetInput.xaml.cs ├── BotMainWindow.xaml ├── MainWindow.xaml ├── Encryption.cs ├── steamChatWindow.xaml.cs ├── Settings.xaml ├── AccountController.cs ├── BotMainWindow.xaml.cs ├── ToolWindow.xaml.cs ├── SteamTwo.csproj ├── Settings.xaml.cs ├── MainWindow.xaml.cs └── SteamBotController.cs ├── SteamTwo Launcher ├── App.config ├── Properties │ ├── Settings.settings │ ├── Settings.Designer.cs │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── SteamTwo Launcher.csproj └── Program.cs ├── README.md ├── Steam Two.sln ├── .gitattributes ├── .gitignore └── LICENSE /Steam Two/on.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/on.ico -------------------------------------------------------------------------------- /Steam Two/side.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/side.ico -------------------------------------------------------------------------------- /Steam Two/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/favicon.ico -------------------------------------------------------------------------------- /SteamTwo Launcher/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Steam Two/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /SteamTwo Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Steam Two/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace SteamTwo 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Steam Two/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Steam-Two 2 | 3 | ### main login 4 | 5 | 6 | ![mainlogin](https://imgur.com/jczl2qm.png) 7 | 8 | 9 | ### bot login 10 | 11 | 12 | ![botlogin](https://imgur.com/IegtlcG.png) 13 | 14 | 15 | ### logged in steam tookkit 16 | 17 | ![toolkit](https://imgur.com/849wXQp.png) 18 | 19 | 20 | ### encrypt passwords 21 | 22 | 23 | ![encryption](https://imgur.com/bAlr9xY.png) 24 | 25 | 26 | ### add account page 27 | 28 | 29 | ![add account](https://imgur.com/LiMrTbz.png) 30 | 31 | 32 | ### steam 2 step auth support 33 | 34 | 35 | ![twostep](https://imgur.com/AaytB1N.png) 36 | 37 | 38 | ### settings 39 | 40 | 41 | ![setting](https://imgur.com/h68leac.png) 42 | 43 | 44 | ### settings 45 | 46 | 47 | ![App](https://imgur.com/6VJBqr3.png) 48 | 49 | ![App](https://imgur.com/qvXBQxY.png) 50 | -------------------------------------------------------------------------------- /Steam Two/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace SteamTwo.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.7.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /SteamTwo Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace SteamTwo_Launcher.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Steam Two/AddAccount.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Windows; 3 | using System.Windows.Threading; 4 | 5 | namespace SteamTwo 6 | { 7 | /// 8 | /// Interaction logic for AddAccount.xaml 9 | /// 10 | public partial class AddAccount 11 | { 12 | bool givenInput = false; // wait for add account button to be pressed 13 | 14 | public AddAccount() 15 | { 16 | InitializeComponent(); 17 | } 18 | 19 | //ignore the parameter lol, overiding doesnt work so 20 | //once add account button is pressed it returns username and password 21 | public String[] Show(String lol) 22 | { 23 | Show(); 24 | while (!givenInput) 25 | { 26 | try 27 | { 28 | Application.Current.Dispatcher.Invoke(DispatcherPriority.Background, new Action(delegate { })); 29 | 30 | } catch (Exception) { } 31 | } 32 | return new string[] { textbox1.Text, textbox2.Text , desktopAuth.IsChecked.ToString()}; 33 | } 34 | 35 | //add account button 36 | private void button1_Click(object sender, RoutedEventArgs e) 37 | { 38 | givenInput = true; 39 | } 40 | } 41 | 42 | } 43 | -------------------------------------------------------------------------------- /Steam Two/App.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /SteamTwo Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("SteamTwo Launcher")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("SteamTwo Launcher")] 13 | [assembly: AssemblyCopyright("Copyright © 2018")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("86699279-dd50-46ea-a69e-53475e5b8e6d")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Steam Two/AddAccount.xaml: -------------------------------------------------------------------------------- 1 | 10 | 11 |