├── .gitattributes ├── .gitignore ├── Images ├── Factory.png ├── General.png ├── Live.png ├── Parental.png ├── Security.png ├── Unknown1.png └── Unknown2.png ├── LICENSE.txt ├── README.md ├── XboxEepromEditor.sln └── XboxEepromEditor ├── App.config ├── Controls └── ValidatedTextBox.cs ├── Cryptography ├── Checksum.cs ├── HmacSha1.cs └── RC4.cs ├── Eeprom.cs ├── Extensions ├── ArrayExtensions.cs ├── ControlExtensions.cs ├── NumericExtensions.cs └── StringExtensions.cs ├── Forms ├── MainForm.Designer.cs ├── MainForm.cs └── MainForm.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Types ├── AudioSettings.cs ├── DvdPlaybackZone.cs ├── EepromVersion.cs ├── GameRating.cs ├── Language.cs ├── MovieRating.cs ├── PasscodeButton.cs ├── Region.cs ├── UnknownFlags.cs ├── VideoSettings.cs ├── VideoStandard.cs └── XboxTimeZone.cs ├── Util.cs ├── XboxEepromEditor.csproj ├── icon.ico └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/Factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/Images/Factory.png -------------------------------------------------------------------------------- /Images/General.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/Images/General.png -------------------------------------------------------------------------------- /Images/Live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/Images/Live.png -------------------------------------------------------------------------------- /Images/Parental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/Images/Parental.png -------------------------------------------------------------------------------- /Images/Security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/Images/Security.png -------------------------------------------------------------------------------- /Images/Unknown1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/Images/Unknown1.png -------------------------------------------------------------------------------- /Images/Unknown2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/Images/Unknown2.png -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/README.md -------------------------------------------------------------------------------- /XboxEepromEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor.sln -------------------------------------------------------------------------------- /XboxEepromEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/App.config -------------------------------------------------------------------------------- /XboxEepromEditor/Controls/ValidatedTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Controls/ValidatedTextBox.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Cryptography/Checksum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Cryptography/Checksum.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Cryptography/HmacSha1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Cryptography/HmacSha1.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Cryptography/RC4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Cryptography/RC4.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Eeprom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Eeprom.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Extensions/ArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Extensions/ArrayExtensions.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Extensions/ControlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Extensions/ControlExtensions.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Extensions/NumericExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Extensions/NumericExtensions.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Forms/MainForm.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Forms/MainForm.resx -------------------------------------------------------------------------------- /XboxEepromEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Program.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /XboxEepromEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /XboxEepromEditor/Types/AudioSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Types/AudioSettings.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Types/DvdPlaybackZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Types/DvdPlaybackZone.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Types/EepromVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Types/EepromVersion.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Types/GameRating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Types/GameRating.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Types/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Types/Language.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Types/MovieRating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Types/MovieRating.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Types/PasscodeButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Types/PasscodeButton.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Types/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Types/Region.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Types/UnknownFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Types/UnknownFlags.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Types/VideoSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Types/VideoSettings.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Types/VideoStandard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Types/VideoStandard.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Types/XboxTimeZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Types/XboxTimeZone.cs -------------------------------------------------------------------------------- /XboxEepromEditor/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/Util.cs -------------------------------------------------------------------------------- /XboxEepromEditor/XboxEepromEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/XboxEepromEditor.csproj -------------------------------------------------------------------------------- /XboxEepromEditor/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/icon.ico -------------------------------------------------------------------------------- /XboxEepromEditor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ernegien/XboxEepromEditor/HEAD/XboxEepromEditor/packages.config --------------------------------------------------------------------------------