├── .gitattributes ├── .gitignore ├── PS5 Firmware Checker.sln ├── PS5 Firmware Checker ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Helper.cs ├── PS5 Firmware Checker.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── packages.config └── ps_playstation_logo.ico └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.rsuser 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | 13 | # User-specific files (MonoDevelop/Xamarin Studio) 14 | *.userprefs 15 | 16 | # Build results 17 | [Dd]ebug/ 18 | [Dd]ebugPublic/ 19 | [Rr]elease/ 20 | [Rr]eleases/ 21 | x64/ 22 | x86/ 23 | [Aa][Rr][Mm]/ 24 | [Aa][Rr][Mm]64/ 25 | bld/ 26 | [Bb]in/ 27 | [Oo]bj/ 28 | [Ll]og/ 29 | 30 | # Visual Studio 2015/2017 cache/options directory 31 | .vs/ 32 | # Uncomment if you have tasks that create the project's static files in wwwroot 33 | #wwwroot/ 34 | 35 | # Visual Studio 2017 auto generated files 36 | Generated\ Files/ 37 | 38 | # MSTest test Results 39 | [Tt]est[Rr]esult*/ 40 | [Bb]uild[Ll]og.* 41 | 42 | # NUNIT 43 | *.VisualState.xml 44 | TestResult.xml 45 | 46 | # Build Results of an ATL Project 47 | [Dd]ebugPS/ 48 | [Rr]eleasePS/ 49 | dlldata.c 50 | 51 | # Benchmark Results 52 | BenchmarkDotNet.Artifacts/ 53 | 54 | # .NET Core 55 | project.lock.json 56 | project.fragment.lock.json 57 | artifacts/ 58 | 59 | # StyleCop 60 | StyleCopReport.xml 61 | 62 | # Files built by Visual Studio 63 | *_i.c 64 | *_p.c 65 | *_h.h 66 | *.ilk 67 | *.meta 68 | *.obj 69 | *.iobj 70 | *.pch 71 | *.pdb 72 | *.ipdb 73 | *.pgc 74 | *.pgd 75 | *.rsp 76 | *.sbr 77 | *.tlb 78 | *.tli 79 | *.tlh 80 | *.tmp 81 | *.tmp_proj 82 | *_wpftmp.csproj 83 | *.log 84 | *.vspscc 85 | *.vssscc 86 | .builds 87 | *.pidb 88 | *.svclog 89 | *.scc 90 | 91 | # Chutzpah Test files 92 | _Chutzpah* 93 | 94 | # Visual C++ cache files 95 | ipch/ 96 | *.aps 97 | *.ncb 98 | *.opendb 99 | *.opensdf 100 | *.sdf 101 | *.cachefile 102 | *.VC.db 103 | *.VC.VC.opendb 104 | 105 | # Visual Studio profiler 106 | *.psess 107 | *.vsp 108 | *.vspx 109 | *.sap 110 | 111 | # Visual Studio Trace Files 112 | *.e2e 113 | 114 | # TFS 2012 Local Workspace 115 | $tf/ 116 | 117 | # Guidance Automation Toolkit 118 | *.gpState 119 | 120 | # ReSharper is a .NET coding add-in 121 | _ReSharper*/ 122 | *.[Rr]e[Ss]harper 123 | *.DotSettings.user 124 | 125 | # JustCode is a .NET coding add-in 126 | .JustCode 127 | 128 | # TeamCity is a build add-in 129 | _TeamCity* 130 | 131 | # DotCover is a Code Coverage Tool 132 | *.dotCover 133 | 134 | # AxoCover is a Code Coverage Tool 135 | .axoCover/* 136 | !.axoCover/settings.json 137 | 138 | # Visual Studio code coverage results 139 | *.coverage 140 | *.coveragexml 141 | 142 | # NCrunch 143 | _NCrunch_* 144 | .*crunch*.local.xml 145 | nCrunchTemp_* 146 | 147 | # MightyMoose 148 | *.mm.* 149 | AutoTest.Net/ 150 | 151 | # Web workbench (sass) 152 | .sass-cache/ 153 | 154 | # Installshield output folder 155 | [Ee]xpress/ 156 | 157 | # DocProject is a documentation generator add-in 158 | DocProject/buildhelp/ 159 | DocProject/Help/*.HxT 160 | DocProject/Help/*.HxC 161 | DocProject/Help/*.hhc 162 | DocProject/Help/*.hhk 163 | DocProject/Help/*.hhp 164 | DocProject/Help/Html2 165 | DocProject/Help/html 166 | 167 | # Click-Once directory 168 | publish/ 169 | 170 | # Publish Web Output 171 | *.[Pp]ublish.xml 172 | *.azurePubxml 173 | # Note: Comment the next line if you want to checkin your web deploy settings, 174 | # but database connection strings (with potential passwords) will be unencrypted 175 | *.pubxml 176 | *.publishproj 177 | 178 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 179 | # checkin your Azure Web App publish settings, but sensitive information contained 180 | # in these scripts will be unencrypted 181 | PublishScripts/ 182 | 183 | # NuGet Packages 184 | *.nupkg 185 | # The packages folder can be ignored because of Package Restore 186 | **/[Pp]ackages/* 187 | # except build/, which is used as an MSBuild target. 188 | !**/[Pp]ackages/build/ 189 | # Uncomment if necessary however generally it will be regenerated when needed 190 | #!**/[Pp]ackages/repositories.config 191 | # NuGet v3's project.json files produces more ignorable files 192 | *.nuget.props 193 | *.nuget.targets 194 | 195 | # Microsoft Azure Build Output 196 | csx/ 197 | *.build.csdef 198 | 199 | # Microsoft Azure Emulator 200 | ecf/ 201 | rcf/ 202 | 203 | # Windows Store app package directories and files 204 | AppPackages/ 205 | BundleArtifacts/ 206 | Package.StoreAssociation.xml 207 | _pkginfo.txt 208 | *.appx 209 | 210 | # Visual Studio cache files 211 | # files ending in .cache can be ignored 212 | *.[Cc]ache 213 | # but keep track of directories ending in .cache 214 | !?*.[Cc]ache/ 215 | 216 | # Others 217 | ClientBin/ 218 | ~$* 219 | *~ 220 | *.dbmdl 221 | *.dbproj.schemaview 222 | *.jfm 223 | *.pfx 224 | *.publishsettings 225 | orleans.codegen.cs 226 | 227 | # Including strong name files can present a security risk 228 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 229 | #*.snk 230 | 231 | # Since there are multiple workflows, uncomment next line to ignore bower_components 232 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 233 | #bower_components/ 234 | 235 | # RIA/Silverlight projects 236 | Generated_Code/ 237 | 238 | # Backup & report files from converting an old project file 239 | # to a newer Visual Studio version. Backup files are not needed, 240 | # because we have git ;-) 241 | _UpgradeReport_Files/ 242 | Backup*/ 243 | UpgradeLog*.XML 244 | UpgradeLog*.htm 245 | ServiceFabricBackup/ 246 | *.rptproj.bak 247 | 248 | # SQL Server files 249 | *.mdf 250 | *.ldf 251 | *.ndf 252 | 253 | # Business Intelligence projects 254 | *.rdl.data 255 | *.bim.layout 256 | *.bim_*.settings 257 | *.rptproj.rsuser 258 | *- Backup*.rdl 259 | 260 | # Microsoft Fakes 261 | FakesAssemblies/ 262 | 263 | # GhostDoc plugin setting file 264 | *.GhostDoc.xml 265 | 266 | # Node.js Tools for Visual Studio 267 | .ntvs_analysis.dat 268 | node_modules/ 269 | 270 | # Visual Studio 6 build log 271 | *.plg 272 | 273 | # Visual Studio 6 workspace options file 274 | *.opt 275 | 276 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 277 | *.vbw 278 | 279 | # Visual Studio LightSwitch build output 280 | **/*.HTMLClient/GeneratedArtifacts 281 | **/*.DesktopClient/GeneratedArtifacts 282 | **/*.DesktopClient/ModelManifest.xml 283 | **/*.Server/GeneratedArtifacts 284 | **/*.Server/ModelManifest.xml 285 | _Pvt_Extensions 286 | 287 | # Paket dependency manager 288 | .paket/paket.exe 289 | paket-files/ 290 | 291 | # FAKE - F# Make 292 | .fake/ 293 | 294 | # JetBrains Rider 295 | .idea/ 296 | *.sln.iml 297 | 298 | # CodeRush personal settings 299 | .cr/personal 300 | 301 | # Python Tools for Visual Studio (PTVS) 302 | __pycache__/ 303 | *.pyc 304 | 305 | # Cake - Uncomment if you are using it 306 | # tools/** 307 | # !tools/packages.config 308 | 309 | # Tabs Studio 310 | *.tss 311 | 312 | # Telerik's JustMock configuration file 313 | *.jmconfig 314 | 315 | # BizTalk build output 316 | *.btp.cs 317 | *.btm.cs 318 | *.odx.cs 319 | *.xsd.cs 320 | 321 | # OpenCover UI analysis results 322 | OpenCover/ 323 | 324 | # Azure Stream Analytics local run output 325 | ASALocalRun/ 326 | 327 | # MSBuild Binary and Structured Log 328 | *.binlog 329 | 330 | # NVidia Nsight GPU debugger configuration file 331 | *.nvuser 332 | 333 | # MFractors (Xamarin productivity tool) working folder 334 | .mfractor/ 335 | 336 | # Local History for Visual Studio 337 | .localhistory/ 338 | 339 | # BeatPulse healthcheck temp database 340 | healthchecksdb -------------------------------------------------------------------------------- /PS5 Firmware Checker.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30330.147 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PS5 Firmware Checker", "PS5 Firmware Checker\PS5 Firmware Checker.csproj", "{AF210555-F5E6-425C-BCFE-829DC80096B4}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {AF210555-F5E6-425C-BCFE-829DC80096B4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {AF210555-F5E6-425C-BCFE-829DC80096B4}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {AF210555-F5E6-425C-BCFE-829DC80096B4}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {AF210555-F5E6-425C-BCFE-829DC80096B4}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {49DF96F1-829D-4C57-BF72-6C10EBC8C785} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /PS5 Firmware Checker/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PS5 Firmware Checker/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace PS5_Firmware_Checker 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 32 | this.darkSectionPanel1 = new DarkUI.Controls.DarkSectionPanel(); 33 | this.tbLinkRec = new DarkUI.Controls.DarkTextBox(); 34 | this.darkLabel13 = new DarkUI.Controls.DarkLabel(); 35 | this.darkGroupBox2 = new DarkUI.Controls.DarkGroupBox(); 36 | this.cbRegionRecovery = new DarkUI.Controls.DarkComboBox(); 37 | this.tbMandatoryRec = new DarkUI.Controls.DarkTextBox(); 38 | this.tbFwSizeRec = new DarkUI.Controls.DarkTextBox(); 39 | this.tbFwVersionRec = new DarkUI.Controls.DarkTextBox(); 40 | this.tbSdkVersionRec = new DarkUI.Controls.DarkTextBox(); 41 | this.tbLabelRec = new DarkUI.Controls.DarkTextBox(); 42 | this.darkLabel8 = new DarkUI.Controls.DarkLabel(); 43 | this.darkLabel9 = new DarkUI.Controls.DarkLabel(); 44 | this.darkLabel10 = new DarkUI.Controls.DarkLabel(); 45 | this.darkLabel11 = new DarkUI.Controls.DarkLabel(); 46 | this.darkLabel12 = new DarkUI.Controls.DarkLabel(); 47 | this.darkSectionPanel2 = new DarkUI.Controls.DarkSectionPanel(); 48 | this.darkGroupBox1 = new DarkUI.Controls.DarkGroupBox(); 49 | this.btnDownloadRecovery = new DarkUI.Controls.DarkButton(); 50 | this.cbRegionSystem = new DarkUI.Controls.DarkComboBox(); 51 | this.tbFwSize = new DarkUI.Controls.DarkTextBox(); 52 | this.tbFwVersion = new DarkUI.Controls.DarkTextBox(); 53 | this.tbSdkVersion = new DarkUI.Controls.DarkTextBox(); 54 | this.tbLabel = new DarkUI.Controls.DarkTextBox(); 55 | this.darkLabel4 = new DarkUI.Controls.DarkLabel(); 56 | this.darkLabel3 = new DarkUI.Controls.DarkLabel(); 57 | this.darkLabel2 = new DarkUI.Controls.DarkLabel(); 58 | this.darkLabel1 = new DarkUI.Controls.DarkLabel(); 59 | this.darkDockPanel1 = new DarkUI.Docking.DarkDockPanel(); 60 | this.darkLabel6 = new DarkUI.Controls.DarkLabel(); 61 | this.btnDownloadSystem = new DarkUI.Controls.DarkButton(); 62 | this.tbSha256 = new DarkUI.Controls.DarkTextBox(); 63 | this.darkLabel5 = new DarkUI.Controls.DarkLabel(); 64 | this.darkSectionPanel1.SuspendLayout(); 65 | this.darkGroupBox2.SuspendLayout(); 66 | this.darkSectionPanel2.SuspendLayout(); 67 | this.darkGroupBox1.SuspendLayout(); 68 | this.SuspendLayout(); 69 | // 70 | // darkSectionPanel1 71 | // 72 | this.darkSectionPanel1.Controls.Add(this.tbLinkRec); 73 | this.darkSectionPanel1.Controls.Add(this.darkLabel13); 74 | this.darkSectionPanel1.Controls.Add(this.darkGroupBox2); 75 | this.darkSectionPanel1.Controls.Add(this.tbMandatoryRec); 76 | this.darkSectionPanel1.Controls.Add(this.tbFwSizeRec); 77 | this.darkSectionPanel1.Controls.Add(this.tbFwVersionRec); 78 | this.darkSectionPanel1.Controls.Add(this.tbSdkVersionRec); 79 | this.darkSectionPanel1.Controls.Add(this.tbLabelRec); 80 | this.darkSectionPanel1.Controls.Add(this.darkLabel8); 81 | this.darkSectionPanel1.Controls.Add(this.darkLabel9); 82 | this.darkSectionPanel1.Controls.Add(this.darkLabel10); 83 | this.darkSectionPanel1.Controls.Add(this.darkLabel11); 84 | this.darkSectionPanel1.Controls.Add(this.darkLabel12); 85 | this.darkSectionPanel1.Location = new System.Drawing.Point(523, 189); 86 | this.darkSectionPanel1.Name = "darkSectionPanel1"; 87 | this.darkSectionPanel1.SectionHeader = "Recovery Firmware Info"; 88 | this.darkSectionPanel1.Size = new System.Drawing.Size(179, 169); 89 | this.darkSectionPanel1.TabIndex = 0; 90 | // 91 | // tbLinkRec 92 | // 93 | this.tbLinkRec.Location = new System.Drawing.Point(182, 203); 94 | this.tbLinkRec.Name = "tbLinkRec"; 95 | this.tbLinkRec.Size = new System.Drawing.Size(154, 23); 96 | this.tbLinkRec.TabIndex = 26; 97 | // 98 | // darkLabel13 99 | // 100 | this.darkLabel13.AutoSize = true; 101 | this.darkLabel13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220))))); 102 | this.darkLabel13.Location = new System.Drawing.Point(33, 209); 103 | this.darkLabel13.Name = "darkLabel13"; 104 | this.darkLabel13.Size = new System.Drawing.Size(29, 15); 105 | this.darkLabel13.TabIndex = 25; 106 | this.darkLabel13.Text = "Link"; 107 | // 108 | // darkGroupBox2 109 | // 110 | this.darkGroupBox2.Controls.Add(this.cbRegionRecovery); 111 | this.darkGroupBox2.Location = new System.Drawing.Point(36, 242); 112 | this.darkGroupBox2.Name = "darkGroupBox2"; 113 | this.darkGroupBox2.Size = new System.Drawing.Size(300, 118); 114 | this.darkGroupBox2.TabIndex = 24; 115 | this.darkGroupBox2.TabStop = false; 116 | this.darkGroupBox2.Text = "Download Recovery Firmware"; 117 | // 118 | // cbRegionRecovery 119 | // 120 | this.cbRegionRecovery.FormattingEnabled = true; 121 | this.cbRegionRecovery.Items.AddRange(new object[] { 122 | "Australia", 123 | "Brazil", 124 | "China", 125 | "European Union", 126 | "Japan", 127 | "Korea", 128 | "Latin/Central America", 129 | "United States", 130 | "Russia", 131 | "Southeast Asia", 132 | "Taiwan", 133 | "United Kingdom"}); 134 | this.cbRegionRecovery.Location = new System.Drawing.Point(71, 32); 135 | this.cbRegionRecovery.Name = "cbRegionRecovery"; 136 | this.cbRegionRecovery.Size = new System.Drawing.Size(159, 24); 137 | this.cbRegionRecovery.TabIndex = 0; 138 | // 139 | // tbMandatoryRec 140 | // 141 | this.tbMandatoryRec.Location = new System.Drawing.Point(182, 172); 142 | this.tbMandatoryRec.Name = "tbMandatoryRec"; 143 | this.tbMandatoryRec.Size = new System.Drawing.Size(154, 23); 144 | this.tbMandatoryRec.TabIndex = 22; 145 | // 146 | // tbFwSizeRec 147 | // 148 | this.tbFwSizeRec.Location = new System.Drawing.Point(182, 142); 149 | this.tbFwSizeRec.Name = "tbFwSizeRec"; 150 | this.tbFwSizeRec.Size = new System.Drawing.Size(154, 23); 151 | this.tbFwSizeRec.TabIndex = 21; 152 | // 153 | // tbFwVersionRec 154 | // 155 | this.tbFwVersionRec.Location = new System.Drawing.Point(182, 112); 156 | this.tbFwVersionRec.Name = "tbFwVersionRec"; 157 | this.tbFwVersionRec.Size = new System.Drawing.Size(154, 23); 158 | this.tbFwVersionRec.TabIndex = 20; 159 | // 160 | // tbSdkVersionRec 161 | // 162 | this.tbSdkVersionRec.Location = new System.Drawing.Point(182, 82); 163 | this.tbSdkVersionRec.Name = "tbSdkVersionRec"; 164 | this.tbSdkVersionRec.Size = new System.Drawing.Size(154, 23); 165 | this.tbSdkVersionRec.TabIndex = 19; 166 | // 167 | // tbLabelRec 168 | // 169 | this.tbLabelRec.Location = new System.Drawing.Point(182, 52); 170 | this.tbLabelRec.Name = "tbLabelRec"; 171 | this.tbLabelRec.Size = new System.Drawing.Size(154, 23); 172 | this.tbLabelRec.TabIndex = 18; 173 | // 174 | // darkLabel8 175 | // 176 | this.darkLabel8.AutoSize = true; 177 | this.darkLabel8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220))))); 178 | this.darkLabel8.Location = new System.Drawing.Point(33, 176); 179 | this.darkLabel8.Name = "darkLabel8"; 180 | this.darkLabel8.Size = new System.Drawing.Size(111, 15); 181 | this.darkLabel8.TabIndex = 16; 182 | this.darkLabel8.Text = "Mandatory update :"; 183 | // 184 | // darkLabel9 185 | // 186 | this.darkLabel9.AutoSize = true; 187 | this.darkLabel9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220))))); 188 | this.darkLabel9.Location = new System.Drawing.Point(33, 146); 189 | this.darkLabel9.Name = "darkLabel9"; 190 | this.darkLabel9.Size = new System.Drawing.Size(84, 15); 191 | this.darkLabel9.TabIndex = 15; 192 | this.darkLabel9.Text = "Firmware size :"; 193 | // 194 | // darkLabel10 195 | // 196 | this.darkLabel10.AutoSize = true; 197 | this.darkLabel10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220))))); 198 | this.darkLabel10.Location = new System.Drawing.Point(33, 116); 199 | this.darkLabel10.Name = "darkLabel10"; 200 | this.darkLabel10.Size = new System.Drawing.Size(103, 15); 201 | this.darkLabel10.TabIndex = 14; 202 | this.darkLabel10.Text = "Firmware version :"; 203 | // 204 | // darkLabel11 205 | // 206 | this.darkLabel11.AutoSize = true; 207 | this.darkLabel11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220))))); 208 | this.darkLabel11.Location = new System.Drawing.Point(33, 86); 209 | this.darkLabel11.Name = "darkLabel11"; 210 | this.darkLabel11.Size = new System.Drawing.Size(75, 15); 211 | this.darkLabel11.TabIndex = 13; 212 | this.darkLabel11.Text = "SDK version :"; 213 | // 214 | // darkLabel12 215 | // 216 | this.darkLabel12.AutoSize = true; 217 | this.darkLabel12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220))))); 218 | this.darkLabel12.Location = new System.Drawing.Point(33, 56); 219 | this.darkLabel12.Name = "darkLabel12"; 220 | this.darkLabel12.Size = new System.Drawing.Size(90, 15); 221 | this.darkLabel12.TabIndex = 12; 222 | this.darkLabel12.Text = "Firmware label :"; 223 | // 224 | // darkSectionPanel2 225 | // 226 | this.darkSectionPanel2.Controls.Add(this.tbSha256); 227 | this.darkSectionPanel2.Controls.Add(this.darkLabel5); 228 | this.darkSectionPanel2.Controls.Add(this.darkGroupBox1); 229 | this.darkSectionPanel2.Controls.Add(this.tbFwSize); 230 | this.darkSectionPanel2.Controls.Add(this.tbFwVersion); 231 | this.darkSectionPanel2.Controls.Add(this.tbSdkVersion); 232 | this.darkSectionPanel2.Controls.Add(this.tbLabel); 233 | this.darkSectionPanel2.Controls.Add(this.darkLabel4); 234 | this.darkSectionPanel2.Controls.Add(this.darkLabel3); 235 | this.darkSectionPanel2.Controls.Add(this.darkLabel2); 236 | this.darkSectionPanel2.Controls.Add(this.darkLabel1); 237 | this.darkSectionPanel2.Location = new System.Drawing.Point(24, 21); 238 | this.darkSectionPanel2.Name = "darkSectionPanel2"; 239 | this.darkSectionPanel2.SectionHeader = "System Firmware Info"; 240 | this.darkSectionPanel2.Size = new System.Drawing.Size(399, 337); 241 | this.darkSectionPanel2.TabIndex = 1; 242 | // 243 | // darkGroupBox1 244 | // 245 | this.darkGroupBox1.Controls.Add(this.btnDownloadSystem); 246 | this.darkGroupBox1.Controls.Add(this.darkLabel6); 247 | this.darkGroupBox1.Controls.Add(this.cbRegionSystem); 248 | this.darkGroupBox1.Location = new System.Drawing.Point(38, 197); 249 | this.darkGroupBox1.Name = "darkGroupBox1"; 250 | this.darkGroupBox1.Size = new System.Drawing.Size(326, 118); 251 | this.darkGroupBox1.TabIndex = 12; 252 | this.darkGroupBox1.TabStop = false; 253 | this.darkGroupBox1.Text = "Download System Firmware"; 254 | // 255 | // btnDownloadRecovery 256 | // 257 | this.btnDownloadRecovery.Location = new System.Drawing.Point(110, 334); 258 | this.btnDownloadRecovery.Name = "btnDownloadRecovery"; 259 | this.btnDownloadRecovery.Size = new System.Drawing.Size(231, 23); 260 | this.btnDownloadRecovery.TabIndex = 1; 261 | this.btnDownloadRecovery.Text = "Download"; 262 | this.btnDownloadRecovery.Visible = false; 263 | this.btnDownloadRecovery.Click += new System.EventHandler(this.btnDownloadRecovery_Click); 264 | // 265 | // cbRegionSystem 266 | // 267 | this.cbRegionSystem.FormattingEnabled = true; 268 | this.cbRegionSystem.Items.AddRange(new object[] { 269 | "Australia", 270 | "Brazil", 271 | "China", 272 | "European Union", 273 | "Japan", 274 | "Korea", 275 | "Latin/Central America", 276 | "United States", 277 | "Russia", 278 | "Southeast Asia", 279 | "Taiwan", 280 | "United Kingdom"}); 281 | this.cbRegionSystem.Location = new System.Drawing.Point(144, 32); 282 | this.cbRegionSystem.Name = "cbRegionSystem"; 283 | this.cbRegionSystem.Size = new System.Drawing.Size(131, 24); 284 | this.cbRegionSystem.TabIndex = 0; 285 | // 286 | // tbFwSize 287 | // 288 | this.tbFwSize.Location = new System.Drawing.Point(184, 133); 289 | this.tbFwSize.Name = "tbFwSize"; 290 | this.tbFwSize.Size = new System.Drawing.Size(180, 23); 291 | this.tbFwSize.TabIndex = 9; 292 | // 293 | // tbFwVersion 294 | // 295 | this.tbFwVersion.Location = new System.Drawing.Point(184, 46); 296 | this.tbFwVersion.Name = "tbFwVersion"; 297 | this.tbFwVersion.Size = new System.Drawing.Size(180, 23); 298 | this.tbFwVersion.TabIndex = 8; 299 | // 300 | // tbSdkVersion 301 | // 302 | this.tbSdkVersion.Location = new System.Drawing.Point(184, 104); 303 | this.tbSdkVersion.Name = "tbSdkVersion"; 304 | this.tbSdkVersion.Size = new System.Drawing.Size(180, 23); 305 | this.tbSdkVersion.TabIndex = 7; 306 | // 307 | // tbLabel 308 | // 309 | this.tbLabel.Location = new System.Drawing.Point(184, 75); 310 | this.tbLabel.Name = "tbLabel"; 311 | this.tbLabel.Size = new System.Drawing.Size(180, 23); 312 | this.tbLabel.TabIndex = 6; 313 | // 314 | // darkLabel4 315 | // 316 | this.darkLabel4.AutoSize = true; 317 | this.darkLabel4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220))))); 318 | this.darkLabel4.Location = new System.Drawing.Point(35, 137); 319 | this.darkLabel4.Name = "darkLabel4"; 320 | this.darkLabel4.Size = new System.Drawing.Size(84, 15); 321 | this.darkLabel4.TabIndex = 3; 322 | this.darkLabel4.Text = "Firmware size :"; 323 | // 324 | // darkLabel3 325 | // 326 | this.darkLabel3.AutoSize = true; 327 | this.darkLabel3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220))))); 328 | this.darkLabel3.Location = new System.Drawing.Point(35, 50); 329 | this.darkLabel3.Name = "darkLabel3"; 330 | this.darkLabel3.Size = new System.Drawing.Size(103, 15); 331 | this.darkLabel3.TabIndex = 2; 332 | this.darkLabel3.Text = "Firmware version :"; 333 | // 334 | // darkLabel2 335 | // 336 | this.darkLabel2.AutoSize = true; 337 | this.darkLabel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220))))); 338 | this.darkLabel2.Location = new System.Drawing.Point(35, 108); 339 | this.darkLabel2.Name = "darkLabel2"; 340 | this.darkLabel2.Size = new System.Drawing.Size(75, 15); 341 | this.darkLabel2.TabIndex = 1; 342 | this.darkLabel2.Text = "SDK version :"; 343 | // 344 | // darkLabel1 345 | // 346 | this.darkLabel1.AutoSize = true; 347 | this.darkLabel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220))))); 348 | this.darkLabel1.Location = new System.Drawing.Point(35, 79); 349 | this.darkLabel1.Name = "darkLabel1"; 350 | this.darkLabel1.Size = new System.Drawing.Size(90, 15); 351 | this.darkLabel1.TabIndex = 0; 352 | this.darkLabel1.Text = "Firmware label :"; 353 | // 354 | // darkDockPanel1 355 | // 356 | this.darkDockPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(63)))), ((int)(((byte)(65))))); 357 | this.darkDockPanel1.Dock = System.Windows.Forms.DockStyle.Fill; 358 | this.darkDockPanel1.Location = new System.Drawing.Point(0, 0); 359 | this.darkDockPanel1.Name = "darkDockPanel1"; 360 | this.darkDockPanel1.Size = new System.Drawing.Size(447, 379); 361 | this.darkDockPanel1.TabIndex = 2; 362 | // 363 | // darkLabel6 364 | // 365 | this.darkLabel6.AutoSize = true; 366 | this.darkLabel6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220))))); 367 | this.darkLabel6.Location = new System.Drawing.Point(46, 35); 368 | this.darkLabel6.Name = "darkLabel6"; 369 | this.darkLabel6.Size = new System.Drawing.Size(78, 15); 370 | this.darkLabel6.TabIndex = 28; 371 | this.darkLabel6.Text = "Select server :"; 372 | // 373 | // btnDownloadSystem 374 | // 375 | this.btnDownloadSystem.Location = new System.Drawing.Point(48, 74); 376 | this.btnDownloadSystem.Name = "btnDownloadSystem"; 377 | this.btnDownloadSystem.Size = new System.Drawing.Size(231, 23); 378 | this.btnDownloadSystem.TabIndex = 29; 379 | this.btnDownloadSystem.Text = "Download"; 380 | this.btnDownloadSystem.Click += new System.EventHandler(this.btnDownloadSystem_Click_1); 381 | // 382 | // tbSha256 383 | // 384 | this.tbSha256.Location = new System.Drawing.Point(184, 162); 385 | this.tbSha256.Name = "tbSha256"; 386 | this.tbSha256.Size = new System.Drawing.Size(180, 23); 387 | this.tbSha256.TabIndex = 14; 388 | // 389 | // darkLabel5 390 | // 391 | this.darkLabel5.AutoSize = true; 392 | this.darkLabel5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220))))); 393 | this.darkLabel5.Location = new System.Drawing.Point(35, 166); 394 | this.darkLabel5.Name = "darkLabel5"; 395 | this.darkLabel5.Size = new System.Drawing.Size(111, 15); 396 | this.darkLabel5.TabIndex = 13; 397 | this.darkLabel5.Text = "SHA256 checksum :"; 398 | // 399 | // Form1 400 | // 401 | this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); 402 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 403 | this.ClientSize = new System.Drawing.Size(447, 379); 404 | this.Controls.Add(this.darkSectionPanel2); 405 | this.Controls.Add(this.darkDockPanel1); 406 | this.Controls.Add(this.darkSectionPanel1); 407 | this.Controls.Add(this.btnDownloadRecovery); 408 | this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 409 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; 410 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 411 | this.MaximizeBox = false; 412 | this.MinimizeBox = false; 413 | this.Name = "Form1"; 414 | this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; 415 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 416 | this.Text = "PS5 Firmware Checker"; 417 | this.Load += new System.EventHandler(this.Form1_Load); 418 | this.darkSectionPanel1.ResumeLayout(false); 419 | this.darkSectionPanel1.PerformLayout(); 420 | this.darkGroupBox2.ResumeLayout(false); 421 | this.darkSectionPanel2.ResumeLayout(false); 422 | this.darkSectionPanel2.PerformLayout(); 423 | this.darkGroupBox1.ResumeLayout(false); 424 | this.darkGroupBox1.PerformLayout(); 425 | this.ResumeLayout(false); 426 | 427 | } 428 | 429 | #endregion 430 | 431 | private DarkUI.Controls.DarkSectionPanel darkSectionPanel1; 432 | private DarkUI.Controls.DarkGroupBox darkGroupBox2; 433 | private DarkUI.Controls.DarkComboBox cbRegionRecovery; 434 | private DarkUI.Controls.DarkTextBox tbMandatoryRec; 435 | private DarkUI.Controls.DarkTextBox tbFwSizeRec; 436 | private DarkUI.Controls.DarkTextBox tbFwVersionRec; 437 | private DarkUI.Controls.DarkTextBox tbSdkVersionRec; 438 | private DarkUI.Controls.DarkTextBox tbLabelRec; 439 | private DarkUI.Controls.DarkLabel darkLabel8; 440 | private DarkUI.Controls.DarkLabel darkLabel9; 441 | private DarkUI.Controls.DarkLabel darkLabel10; 442 | private DarkUI.Controls.DarkLabel darkLabel11; 443 | private DarkUI.Controls.DarkLabel darkLabel12; 444 | private DarkUI.Controls.DarkSectionPanel darkSectionPanel2; 445 | private DarkUI.Controls.DarkGroupBox darkGroupBox1; 446 | private DarkUI.Controls.DarkButton btnDownloadRecovery; 447 | private DarkUI.Controls.DarkComboBox cbRegionSystem; 448 | private DarkUI.Controls.DarkTextBox tbFwSize; 449 | private DarkUI.Controls.DarkTextBox tbFwVersion; 450 | private DarkUI.Controls.DarkTextBox tbSdkVersion; 451 | private DarkUI.Controls.DarkTextBox tbLabel; 452 | private DarkUI.Controls.DarkLabel darkLabel4; 453 | private DarkUI.Controls.DarkLabel darkLabel3; 454 | private DarkUI.Controls.DarkLabel darkLabel2; 455 | private DarkUI.Controls.DarkLabel darkLabel1; 456 | private DarkUI.Controls.DarkTextBox tbLinkRec; 457 | private DarkUI.Controls.DarkLabel darkLabel13; 458 | private DarkUI.Controls.DarkLabel darkLabel6; 459 | private DarkUI.Docking.DarkDockPanel darkDockPanel1; 460 | private DarkUI.Controls.DarkButton btnDownloadSystem; 461 | private DarkUI.Controls.DarkTextBox tbSha256; 462 | private DarkUI.Controls.DarkLabel darkLabel5; 463 | } 464 | } 465 | 466 | -------------------------------------------------------------------------------- /PS5 Firmware Checker/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | using System.Xml.Linq; 11 | using DarkUI; 12 | using DarkUI.Forms; 13 | 14 | namespace PS5_Firmware_Checker 15 | { 16 | public partial class Form1 : DarkUI.Forms.DarkForm 17 | { 18 | public Form1() 19 | { 20 | InitializeComponent(); 21 | } 22 | 23 | private void ShowError(string text) 24 | { 25 | DarkMessageBox.ShowError(text, "Error"); 26 | } 27 | 28 | private void Form1_Load(object sender, EventArgs e) 29 | { 30 | if(Helper.CheckForInternetConnection() == false) 31 | { 32 | ShowError("No internet network detected. Please check your internet connection. Program will exit."); 33 | Application.Exit(); 34 | } 35 | 36 | try 37 | { 38 | Helper.ParseRetailFirmware(); 39 | //system 40 | tbLabel.Text = Helper.SystemFirmware.FirmwareLabel; 41 | tbSdkVersion.Text = Helper.SystemFirmware.SdkVersion; 42 | tbFwVersion.Text = Helper.SystemFirmware.FirmwareVersion; 43 | tbFwSize.Text = Helper.SystemFirmware.Size; 44 | tbSha256.Text = Helper.SystemFirmware.Sha256; 45 | //tbMandatory.Text = Helper.SystemFirmware.Mandatory.ToString(); 46 | //tbMd5.Text = Helper.SystemFirmware.Md5; 47 | //tbLink.Text = Helper.SystemFirmware.Link; 48 | 49 | ////recovery 50 | //tbLabelRec.Text = Helper.RecoveryFirmware.FirmwareLabel; 51 | //tbSdkVersionRec.Text = Helper.RecoveryFirmware.SdkVersion; 52 | //tbFwVersionRec.Text = Helper.RecoveryFirmware.FirmwareVersion; 53 | //tbFwSizeRec.Text = Helper.RecoveryFirmware.Size; 54 | //tbMandatoryRec.Text = Helper.RecoveryFirmware.Mandatory.ToString(); 55 | //tbMd5Rec.Text = Helper.RecoveryFirmware.Md5; 56 | //tbLinkRec.Text = Helper.RecoveryFirmware.Link; 57 | } 58 | catch (Exception ex) { ShowError(ex.Message); } 59 | } 60 | 61 | private void btnDownloadRecovery_Click(object sender, EventArgs e) 62 | { 63 | if (cbRegionSystem.SelectedText == "") 64 | return; 65 | string url = ""; 66 | if (cbRegionSystem.SelectedText == "Southeast Asia") 67 | { 68 | Helper.SystemFirmware.Link = Helper.SystemFirmware.Link.Replace("dus01", "dsa01"); 69 | url = Helper.SystemFirmware.Link + "?dest=sa"; 70 | } 71 | else if (cbRegionSystem.SelectedText == "United Kingdom") 72 | { 73 | Helper.SystemFirmware.Link = Helper.SystemFirmware.Link.Replace("dsa01", "duk01"); 74 | url = Helper.SystemFirmware.Link + "?dest=uk"; 75 | } 76 | else if (cbRegionSystem.SelectedText == "Australia") 77 | { 78 | Helper.SystemFirmware.Link = Helper.SystemFirmware.Link.Replace("dsa01", "dau01"); 79 | url = Helper.SystemFirmware.Link + "?dest=au"; 80 | } 81 | else if (cbRegionSystem.SelectedText == "Brazil") 82 | { 83 | Helper.SystemFirmware.Link = Helper.SystemFirmware.Link.Replace("dsa01", "dbr01"); 84 | url = Helper.SystemFirmware.Link + "?dest=br"; 85 | } 86 | else if (cbRegionSystem.SelectedText == "China") 87 | { 88 | Helper.SystemFirmware.Link = Helper.SystemFirmware.Link.Replace("dsa01", "dcn01"); 89 | url = Helper.SystemFirmware.Link + "?dest=cn"; 90 | } 91 | else if (cbRegionSystem.SelectedText == "European Union") 92 | { 93 | Helper.SystemFirmware.Link = Helper.SystemFirmware.Link.Replace("dsa01", "deu01"); 94 | url = Helper.SystemFirmware.Link + "?dest=eu"; 95 | } 96 | else if (cbRegionSystem.SelectedText == "Latin/Central America") 97 | { 98 | Helper.SystemFirmware.Link = Helper.SystemFirmware.Link.Replace("dsa01", "dmx01"); 99 | url = Helper.SystemFirmware.Link + "?dest=mx"; 100 | } 101 | else if (cbRegionSystem.SelectedText == "Rusia") 102 | { 103 | Helper.SystemFirmware.Link = Helper.SystemFirmware.Link.Replace("dsa01", "dru01"); 104 | url = Helper.SystemFirmware.Link + "?dest=ru"; 105 | } 106 | else if (cbRegionSystem.SelectedText == "Taiwan") 107 | { 108 | Helper.SystemFirmware.Link = Helper.SystemFirmware.Link.Replace("dsa01", "dtw01"); 109 | url = Helper.SystemFirmware.Link + "?dest=tw"; 110 | } 111 | else if (cbRegionSystem.SelectedText == "Japan") 112 | { 113 | Helper.SystemFirmware.Link = Helper.SystemFirmware.Link.Replace("dsa01", "djp01"); 114 | url = Helper.SystemFirmware.Link + "?dest=jp"; 115 | } 116 | else if (cbRegionSystem.SelectedText == "Korea") 117 | { 118 | Helper.SystemFirmware.Link = Helper.SystemFirmware.Link.Replace("dsa01", "dkr01"); 119 | url = Helper.SystemFirmware.Link + "?dest=kr"; 120 | } 121 | else if (cbRegionSystem.SelectedText == "United States") 122 | { 123 | url = Helper.SystemFirmware.Link + "?dest=us"; 124 | } 125 | } 126 | 127 | 128 | private void btnDownloadSystem_Click_1(object sender, EventArgs e) 129 | { 130 | if (cbRegionSystem.SelectedItem == null) 131 | return; 132 | string url = ""; 133 | if (cbRegionSystem.SelectedItem == "Southeast Asia") 134 | { 135 | url = Helper.SystemFirmware.Link; 136 | } 137 | else if (cbRegionSystem.SelectedItem == "United Kingdom") 138 | { 139 | url = Helper.SystemFirmware.Link.Replace("dsa01", "duk01").Replace("?dest=sa", "?dest=uk"); 140 | } 141 | else if (cbRegionSystem.SelectedItem == "Australia") 142 | { 143 | url = Helper.SystemFirmware.Link.Replace("dsa01", "dau01").Replace("?dest=sa", "?dest=au"); 144 | } 145 | else if (cbRegionSystem.SelectedItem == "Brazil") 146 | { 147 | url = Helper.SystemFirmware.Link.Replace("dsa01", "dbr01").Replace("?dest=sa", "?dest=br"); 148 | } 149 | else if (cbRegionSystem.SelectedItem == "China") 150 | { 151 | url = Helper.SystemFirmware.Link.Replace("dsa01", "dcn01").Replace("?dest=sa", "?dest=cn"); 152 | } 153 | else if (cbRegionSystem.SelectedItem == "European Union") 154 | { 155 | url = Helper.SystemFirmware.Link.Replace("dsa01", "deu01").Replace("?dest=sa", "?dest=eu"); 156 | } 157 | else if (cbRegionSystem.SelectedItem == "Latin/Central America") 158 | { 159 | url = Helper.SystemFirmware.Link.Replace("dsa01", "dmx01").Replace("?dest=sa", "?dest=mx"); 160 | } 161 | else if (cbRegionSystem.SelectedItem == "Rusia") 162 | { 163 | url = Helper.SystemFirmware.Link.Replace("dsa01", "dru01").Replace("?dest=sa", "?dest=ru"); 164 | } 165 | else if (cbRegionSystem.SelectedItem == "Taiwan") 166 | { 167 | url = Helper.SystemFirmware.Link.Replace("dsa01", "dtw01").Replace("?dest=sa", "?dest=tw"); 168 | } 169 | else if (cbRegionSystem.SelectedItem == "Japan") 170 | { 171 | url = Helper.SystemFirmware.Link.Replace("dsa01", "djp01").Replace("?dest=sa", "?dest=jp"); 172 | } 173 | else if (cbRegionSystem.SelectedItem == "Korea") 174 | { 175 | url = Helper.SystemFirmware.Link.Replace("dsa01", "dkr01").Replace("?dest=sa", "?dest=kr"); 176 | } 177 | else if (cbRegionSystem.SelectedItem == "United States") 178 | { 179 | url = Helper.SystemFirmware.Link.Replace("dsa01", "dus01").Replace("?dest=sa", "?dest=us"); 180 | } 181 | System.Diagnostics.Process.Start(url); 182 | } 183 | } 184 | } 185 | -------------------------------------------------------------------------------- /PS5 Firmware Checker/Helper.cs: -------------------------------------------------------------------------------- 1 | using ByteSizeLib; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Net; 6 | using System.Net.NetworkInformation; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Xml.Linq; 10 | 11 | namespace PS5_Firmware_Checker 12 | { 13 | public class Helper 14 | { 15 | public static bool CheckForInternetConnection() 16 | { 17 | try 18 | { 19 | Ping myPing = new Ping(); 20 | string host = "google.com"; 21 | byte[] buffer = new byte[32]; 22 | int timeout = 1000; 23 | PingOptions pingOptions = new PingOptions(); 24 | PingReply reply = myPing.Send(host, timeout, buffer, pingOptions); 25 | if (reply.Status != IPStatus.Success) 26 | { 27 | return false; 28 | } 29 | return true; 30 | } 31 | catch 32 | { 33 | return false; 34 | } 35 | } 36 | 37 | public static void ParseRetailFirmware() 38 | { 39 | //using (WebClient retailDownloadXML = new WebClient()) 40 | //SystemFirmware.DownloadString = retailDownloadXML.DownloadString("https://fus01.ps5.update.playstation.net/update/ps5/official/tJMRE80IbXnE9YuG0jzTXgKEjIMoabr6/list/us/updatelist.xml"); 41 | //XDocument xdoc = XDocument.Parse(SystemFirmware.DownloadString); 42 | 43 | var nasdaq = string.Format(@"https://fsa01.ps5.update.playstation.net/update/ps5/official/tJMRE80IbXnE9YuG0jzTXgKEjIMoabr6/list/sa/updatelist.xml"); 44 | using (WebClient wc = new WebClient()) 45 | { 46 | ServicePointManager 47 | .ServerCertificateValidationCallback += 48 | (send, cert, chain, sslPolicyErrors) => true; 49 | wc.Headers.Add("cookie", ""); 50 | 51 | SystemFirmware.DownloadString = wc.DownloadString(nasdaq); 52 | XDocument xdoc = XDocument.Parse(SystemFirmware.DownloadString); 53 | //system pup 54 | xdoc.Descendants("region").Select(sys => new 55 | { 56 | label = sys.Element("system_pup").Attribute("label").Value, 57 | sdkVersion = sys.Element("system_pup").Attribute("sdk_version").Value, 58 | fwVersion = sys.Element("system_pup").Attribute("upd_version").Value, 59 | }).ToList().ForEach(sys => 60 | { 61 | SystemFirmware.FirmwareLabel = sys.label; 62 | SystemFirmware.SdkVersion = sys.sdkVersion; 63 | SystemFirmware.FirmwareVersion = sys.fwVersion; 64 | }); 65 | //xdoc.Descendants("force_update").Select(misc => new 66 | //{ 67 | // mandatory = misc.Element("system").Attribute("level0_system_version"), 68 | //}).ToList().ForEach(misc => 69 | //{ 70 | // SystemFirmware.MandatoryString = misc.mandatory.ToString(); 71 | // SystemFirmware.MandatoryString = SystemFirmware.MandatoryString.Replace("level0_system_version", "").Replace("\"", "").Replace("=", ""); 72 | // if (SystemFirmware.FirmwareVersion != SystemFirmware.MandatoryString) 73 | // SystemFirmware.Mandatory = false; 74 | // else 75 | // SystemFirmware.Mandatory = true; 76 | //}); 77 | xdoc.Descendants("update_data").Select(misc => new 78 | { 79 | Size = misc.Element("image").Attribute("size").Value, 80 | }).ToList().ForEach(misc => 81 | { 82 | SystemFirmware.SizeString = misc.Size; 83 | var size_int = Convert.ToInt32(SystemFirmware.SizeString); 84 | SystemFirmware.Size = ByteSize.FromBytes(size_int).ToString(); 85 | }); 86 | xdoc.Descendants("update_data").Select(misc => new 87 | { 88 | Link = misc.Element("image").Value 89 | 90 | }).ToList().ForEach(misc => 91 | { 92 | SystemFirmware.Link = misc.Link.ToString().Replace("", "").Replace("?dest=sa", "").Replace(">", "").Replace(SystemFirmware.Size, "").Replace(SystemFirmware.SizeString, ""); ; 93 | }); 94 | SystemFirmware.Sha256 = SystemFirmware.Link.Substring(SystemFirmware.Link.IndexOf('_') + 10); 95 | string SysMd5 = SystemFirmware.Sha256.Split('/')[0]; 96 | SystemFirmware.Sha256 = SysMd5.ToUpper(); 97 | #region recovery 98 | //recovery pup 99 | //xdoc.Descendants("recovery_pup").Select(misc => new 100 | //{ 101 | // size = misc.Element("image").Attribute("size"), 102 | //}).ToList().ForEach(misc => 103 | //{ 104 | // RecoveryFirmware.SizeString = misc.size.ToString().Replace("size=", "").Replace("\"", ""); 105 | // var size_int = Convert.ToInt32(RecoveryFirmware.SizeString); 106 | // RecoveryFirmware.Size = ByteSize.FromBytes(size_int).ToString(); 107 | //}); 108 | //xdoc.Descendants("recovery_pup").Select(misc => new 109 | //{ 110 | // Link = misc.Element("image") 111 | //}).ToList().ForEach(misc => 112 | //{ 113 | // RecoveryFirmware.Link = misc.Link.ToString().Replace("", "").Replace("?dest=sa", "").Replace(">", "").Replace(RecoveryFirmware.SizeString, ""); 114 | //}); 115 | //xdoc.Descendants("recovery_pup").Select(rec => new 116 | //{ 117 | // label = rec.Element("system_pup").Attribute("label"), 118 | // sdkVersion = rec.Element("system_pup").Attribute("sdk_version"), 119 | // fwVersion = rec.Element("system_pup").Attribute("version"), 120 | 121 | //}).ToList().ForEach(rec => 122 | //{ 123 | // RecoveryFirmware.FirmwareLabel = rec.label.ToString().Replace("label=", "").Replace("\"", ""); 124 | // RecoveryFirmware.SdkVersion = rec.sdkVersion.ToString().Replace("sdk_version=", "").Replace("\"", ""); 125 | // RecoveryFirmware.FirmwareVersion = rec.fwVersion.ToString().Replace("version=", "").Replace("\"", ""); 126 | //}); 127 | //RecoveryFirmware.Md5 = RecoveryFirmware.Link.Substring(RecoveryFirmware.Link.IndexOf('_') + 10); 128 | //string recMd5 = RecoveryFirmware.Md5.Split('/')[0]; 129 | //RecoveryFirmware.Md5 = recMd5.ToUpper(); 130 | #endregion recovery 131 | } 132 | 133 | 134 | 135 | } 136 | 137 | public static void ParseBetaFirmware() 138 | { 139 | // Directory.CreateDirectory(path + "\\Temp"); 140 | 141 | // try 142 | // { 143 | // var nasdaq = string.Format(@"https://fus01.ps4.update.playstation.net/update/ps4/beta/list/us/ps4-eap-updatelist_PR2daYNOWIyy6WYwNw5JVwsRAWMl85Av.xml"); 144 | // using (WebClient wc = new WebClient()) 145 | // { 146 | // ServicePointManager 147 | //.ServerCertificateValidationCallback += 148 | //(send, cert, chain, sslPolicyErrors) => true; 149 | // wc.Headers.Add("cookie", ""); 150 | 151 | // wc.DownloadFile(nasdaq, path + "\\Temp\\ps4-eap-updatelist.xml"); 152 | // } 153 | 154 | // XDocument beta_read = XDocument.Load(path + @"\\Temp\ps4-eap-updatelist.xml"); 155 | // beta_read.Descendants("region").Select(sys => new 156 | // { 157 | // sdkVersion_BETA = sys.Element("system_pup").Attribute("sdk_version"), 158 | // fwVersion_BETA = sys.Element("system_pup").Attribute("version"), 159 | 160 | // }).ToList().ForEach(sys => 161 | // { 162 | // string sdkbeta = sys.sdkVersion_BETA.ToString().Replace("sdk_version=", "").Replace("\"", "").Replace(".", ""); 163 | // string first_4 = sdkbeta.Substring(0, 4); 164 | // string first_4_final = first_4.Substring(1, 3); 165 | // string last_4 = sdkbeta.Substring(4, 4); 166 | // string last_4_final = last_4.Substring(0, 1); 167 | // tbSDKBETA.Text = first_4_final.Insert(1, ".") + " B" + last_4_final; 168 | 169 | // string rollback = sys.fwVersion_BETA.ToString().Replace("version=", "").Replace("\"", "").Replace(".", ""); 170 | // string first_4_rollback = rollback.Substring(0, 4); 171 | // string first_4_rollback_final = first_4_rollback.Substring(1, 3); 172 | 173 | // tbFWVersionBETA.Text = first_4_rollback_final.Insert(1, "."); 174 | // }); 175 | // } 176 | // catch 177 | // { 178 | // MessageBox.Show("Could not retrieved beta firmware info", "PS4 Firmware Checker"); 179 | // } 180 | } 181 | 182 | public class SystemFirmware 183 | { 184 | private static string DownloadString_; 185 | internal static string DownloadString 186 | { 187 | get { return DownloadString_; } 188 | set { DownloadString_ = value; } 189 | } 190 | private static string FirmwareLabel_; 191 | public static string FirmwareLabel 192 | { 193 | get { return FirmwareLabel_; } 194 | set { FirmwareLabel_ = value; } 195 | } 196 | private static string SdkVersion_; 197 | public static string SdkVersion 198 | { 199 | get { return SdkVersion_; } 200 | set { SdkVersion_ = value; } 201 | } 202 | private static string FirmwareVersion_; 203 | public static string FirmwareVersion 204 | { 205 | get { return FirmwareVersion_; } 206 | set { FirmwareVersion_ = value; } 207 | } 208 | private static string SizeString_; 209 | internal static string SizeString 210 | { 211 | get { return SizeString_; } 212 | set { SizeString_ = value; } 213 | } 214 | private static string Size_; 215 | public static string Size 216 | { 217 | get { return Size_; } 218 | set { Size_ = value; } 219 | } 220 | private static string MandatoryString_; 221 | internal static string MandatoryString 222 | { 223 | get { return MandatoryString_; } 224 | set { MandatoryString_ = value; } 225 | } 226 | private static bool Mandatory_; 227 | public static bool Mandatory 228 | { 229 | get { return Mandatory_; } 230 | set { Mandatory_ = value; } 231 | } 232 | private static string Sha256_; 233 | public static string Sha256 234 | { 235 | get { return Sha256_; } 236 | set { Sha256_ = value; } 237 | } 238 | private static string Link_; 239 | public static string Link 240 | { 241 | get { return Link_; } 242 | set { Link_ = value; } 243 | } 244 | } 245 | public class RecoveryFirmware 246 | { 247 | private static string DownloadString_; 248 | internal static string DownloadString 249 | { 250 | get { return DownloadString_; } 251 | set { DownloadString_ = value; } 252 | } 253 | private static string FirmwareLabel_; 254 | public static string FirmwareLabel 255 | { 256 | get { return FirmwareLabel_; } 257 | set { FirmwareLabel_ = value; } 258 | } 259 | private static string SdkVersion_; 260 | public static string SdkVersion 261 | { 262 | get { return SdkVersion_; } 263 | set { SdkVersion_ = value; } 264 | } 265 | private static string FirmwareVersion_; 266 | public static string FirmwareVersion 267 | { 268 | get { return FirmwareVersion_; } 269 | set { FirmwareVersion_ = value; } 270 | } 271 | private static string SizeString_; 272 | internal static string SizeString 273 | { 274 | get { return SizeString_; } 275 | set { SizeString_ = value; } 276 | } 277 | private static string Size_; 278 | public static string Size 279 | { 280 | get { return Size_; } 281 | set { Size_ = value; } 282 | } 283 | private static string MandatoryString_; 284 | internal static string MandatoryString 285 | { 286 | get { return MandatoryString_; } 287 | set { MandatoryString_ = value; } 288 | } 289 | private static bool Mandatory_; 290 | public static bool Mandatory 291 | { 292 | get { return Mandatory_; } 293 | set { Mandatory_ = value; } 294 | } 295 | private static string Md5_; 296 | public static string Md5 297 | { 298 | get { return Md5_; } 299 | set { Md5_ = value; } 300 | } 301 | private static string Link_; 302 | public static string Link 303 | { 304 | get { return Link_; } 305 | set { Link_ = value; } 306 | } 307 | } 308 | } 309 | } 310 | -------------------------------------------------------------------------------- /PS5 Firmware Checker/PS5 Firmware Checker.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {AF210555-F5E6-425C-BCFE-829DC80096B4} 8 | WinExe 9 | PS5_Firmware_Checker 10 | PS5 Firmware Checker 11 | v4.7.2 12 | 512 13 | true 14 | true 15 | 16 | 17 | AnyCPU 18 | true 19 | full 20 | false 21 | bin\Debug\ 22 | DEBUG;TRACE 23 | prompt 24 | 4 25 | 26 | 27 | AnyCPU 28 | pdbonly 29 | true 30 | bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 35 | 36 | 37 | ..\packages\ByteSize.2.0.0\lib\net45\ByteSize.dll 38 | 39 | 40 | ..\..\..\..\Desktop\Active C# Projects\PS4 PKG Tool\DarkUI-master-master\DarkUI\bin\Debug\DarkUI.dll 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | Form 57 | 58 | 59 | Form1.cs 60 | 61 | 62 | 63 | 64 | 65 | Form1.cs 66 | 67 | 68 | ResXFileCodeGenerator 69 | Resources.Designer.cs 70 | Designer 71 | 72 | 73 | True 74 | Resources.resx 75 | 76 | 77 | 78 | SettingsSingleFileGenerator 79 | Settings.Designer.cs 80 | 81 | 82 | True 83 | Settings.settings 84 | True 85 | 86 | 87 | 88 | 89 | 90 | 91 | -------------------------------------------------------------------------------- /PS5 Firmware Checker/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace PS5_Firmware_Checker 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /PS5 Firmware Checker/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("PS5 Firmware Checker")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("PS5 Firmware Checker")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 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("af210555-f5e6-425c-bcfe-829dc80096b4")] 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 | -------------------------------------------------------------------------------- /PS5 Firmware Checker/Properties/Resources.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 PS5_Firmware_Checker.Properties 12 | { 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources 26 | { 27 | 28 | private static global::System.Resources.ResourceManager resourceMan; 29 | 30 | private static global::System.Globalization.CultureInfo resourceCulture; 31 | 32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 33 | internal Resources() 34 | { 35 | } 36 | 37 | /// 38 | /// Returns the cached ResourceManager instance used by this class. 39 | /// 40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 41 | internal static global::System.Resources.ResourceManager ResourceManager 42 | { 43 | get 44 | { 45 | if ((resourceMan == null)) 46 | { 47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PS5_Firmware_Checker.Properties.Resources", typeof(Resources).Assembly); 48 | resourceMan = temp; 49 | } 50 | return resourceMan; 51 | } 52 | } 53 | 54 | /// 55 | /// Overrides the current thread's CurrentUICulture property for all 56 | /// resource lookups using this strongly typed resource class. 57 | /// 58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 59 | internal static global::System.Globalization.CultureInfo Culture 60 | { 61 | get 62 | { 63 | return resourceCulture; 64 | } 65 | set 66 | { 67 | resourceCulture = value; 68 | } 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /PS5 Firmware Checker/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /PS5 Firmware Checker/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 PS5_Firmware_Checker.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 | -------------------------------------------------------------------------------- /PS5 Firmware Checker/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /PS5 Firmware Checker/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /PS5 Firmware Checker/ps_playstation_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearlxcore/PS5-Firmware-Checker/e321679079029e22a0e359ff196eea6287a4b367/PS5 Firmware Checker/ps_playstation_logo.ico -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PS5-Firmware-Checker 2 | Check and download the latest PS5 system firmware. Credit to Siliccan for updatelist.xml. 3 | --------------------------------------------------------------------------------