[PR #11] [MERGED] Location, Location, Location #218

Closed
opened 2026-01-29 21:07:16 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/SabreTools/BinaryObjectScanner/pull/11
Author: @mnadareski
Created: 9/11/2020
Status: Merged
Merged: 9/11/2020
Merged by: @mnadareski

Base: masterHead: location


📝 Commits (10+)

  • 118d940 Add index to all content checks
  • a3cba15 Get mostly onto byte arrays
  • 2c65947 Migrate as much as possible to byte array
  • 1b5ba79 Minor cleanup
  • cc9dafe Cleanup comments, fix search
  • 45086dd Safer CABs and auto-log on test
  • 2ba8787 Comments and better SecuROM
  • 9c95e39 Cleanup, Wise Detection, archives
  • ed96ffe Minor fixes
  • 5c5b71d Add externals, cleanup README

📊 Changes

78 files changed (+6610 additions, -1355 deletions)

View changed files

📝 BurnOutSharp.sln (+2 -1)
📝 BurnOutSharp/BurnOutSharp.csproj (+26 -13)
📝 BurnOutSharp/BurnOutSharp.nuspec (+2 -1)
📝 BurnOutSharp/EVORE.cs (+72 -78)
BurnOutSharp/External/HLLib/HLExtract.Net/HLLib.cs (+1663 -0)
BurnOutSharp/External/HLLib/HLExtract.Net/Program.cs (+1158 -0)
BurnOutSharp/External/StormLibSharp/MpqArchive.cs (+414 -0)
BurnOutSharp/External/StormLibSharp/MpqArchiveCompactingEventArgs.cs (+49 -0)
BurnOutSharp/External/StormLibSharp/MpqFileStream.cs (+185 -0)
BurnOutSharp/External/StormLibSharp/Native/Callbacks.cs (+17 -0)
BurnOutSharp/External/StormLibSharp/Native/MpqArchiveSafeHandle.cs (+26 -0)
BurnOutSharp/External/StormLibSharp/Native/MpqFileSafeHandle.cs (+27 -0)
BurnOutSharp/External/StormLibSharp/Native/NativeMethods.cs (+497 -0)
BurnOutSharp/External/StormLibSharp/Native/SFileInfoClass.cs (+70 -0)
BurnOutSharp/External/StormLibSharp/Native/SFileOpenArchiveFlags.cs (+26 -0)
BurnOutSharp/External/StormLibSharp/Native/Win32Methods.cs (+60 -0)
📝 BurnOutSharp/External/psxt001z/LibCrypt.cs (+2 -2)
BurnOutSharp/FileType/BFPK.cs (+122 -0)
BurnOutSharp/FileType/BZip2.cs (+67 -0)
BurnOutSharp/FileType/Executable.cs (+254 -0)

...and 58 more files

📄 Description

By far the largest change to the codebase in a long time. This includes:

  • Numerous bugfixes, issue fixes, etc.
  • New supported archive formats
  • Better tracking of copy protections found
  • Locations within files where copy protections found (if applicable)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/SabreTools/BinaryObjectScanner/pull/11 **Author:** [@mnadareski](https://github.com/mnadareski) **Created:** 9/11/2020 **Status:** ✅ Merged **Merged:** 9/11/2020 **Merged by:** [@mnadareski](https://github.com/mnadareski) **Base:** `master` ← **Head:** `location` --- ### 📝 Commits (10+) - [`118d940`](https://github.com/SabreTools/BinaryObjectScanner/commit/118d9404c71c45f2eab2d51aa2b84fcec433e529) Add index to all content checks - [`a3cba15`](https://github.com/SabreTools/BinaryObjectScanner/commit/a3cba158495d03b8298ecc91eb04293b767ee290) Get mostly onto byte arrays - [`2c65947`](https://github.com/SabreTools/BinaryObjectScanner/commit/2c65947c9d223b1ab802d4323e67ed192e7fdbe4) Migrate as much as possible to byte array - [`1b5ba79`](https://github.com/SabreTools/BinaryObjectScanner/commit/1b5ba79d40049152dc8bf401c7198ee09e7ab70e) Minor cleanup - [`cc9dafe`](https://github.com/SabreTools/BinaryObjectScanner/commit/cc9dafe26a1c36a5ba4c1b01e466b72fce799e85) Cleanup comments, fix search - [`45086dd`](https://github.com/SabreTools/BinaryObjectScanner/commit/45086dd8f6e1598213ef746bb7845164d9423c7a) Safer CABs and auto-log on test - [`2ba8787`](https://github.com/SabreTools/BinaryObjectScanner/commit/2ba8787696fe3ed26fe2d21582524e7e2de78fb7) Comments and better SecuROM - [`9c95e39`](https://github.com/SabreTools/BinaryObjectScanner/commit/9c95e39ffd088e1d1684d5ca67fd8ea29c02ad45) Cleanup, Wise Detection, archives - [`ed96ffe`](https://github.com/SabreTools/BinaryObjectScanner/commit/ed96ffe33447762859b535adf18170722322f727) Minor fixes - [`5c5b71d`](https://github.com/SabreTools/BinaryObjectScanner/commit/5c5b71d5b25140190b7cf06ebf512cb418effb81) Add externals, cleanup README ### 📊 Changes **78 files changed** (+6610 additions, -1355 deletions) <details> <summary>View changed files</summary> 📝 `BurnOutSharp.sln` (+2 -1) 📝 `BurnOutSharp/BurnOutSharp.csproj` (+26 -13) 📝 `BurnOutSharp/BurnOutSharp.nuspec` (+2 -1) 📝 `BurnOutSharp/EVORE.cs` (+72 -78) ➕ `BurnOutSharp/External/HLLib/HLExtract.Net/HLLib.cs` (+1663 -0) ➕ `BurnOutSharp/External/HLLib/HLExtract.Net/Program.cs` (+1158 -0) ➕ `BurnOutSharp/External/StormLibSharp/MpqArchive.cs` (+414 -0) ➕ `BurnOutSharp/External/StormLibSharp/MpqArchiveCompactingEventArgs.cs` (+49 -0) ➕ `BurnOutSharp/External/StormLibSharp/MpqFileStream.cs` (+185 -0) ➕ `BurnOutSharp/External/StormLibSharp/Native/Callbacks.cs` (+17 -0) ➕ `BurnOutSharp/External/StormLibSharp/Native/MpqArchiveSafeHandle.cs` (+26 -0) ➕ `BurnOutSharp/External/StormLibSharp/Native/MpqFileSafeHandle.cs` (+27 -0) ➕ `BurnOutSharp/External/StormLibSharp/Native/NativeMethods.cs` (+497 -0) ➕ `BurnOutSharp/External/StormLibSharp/Native/SFileInfoClass.cs` (+70 -0) ➕ `BurnOutSharp/External/StormLibSharp/Native/SFileOpenArchiveFlags.cs` (+26 -0) ➕ `BurnOutSharp/External/StormLibSharp/Native/Win32Methods.cs` (+60 -0) 📝 `BurnOutSharp/External/psxt001z/LibCrypt.cs` (+2 -2) ➕ `BurnOutSharp/FileType/BFPK.cs` (+122 -0) ➕ `BurnOutSharp/FileType/BZip2.cs` (+67 -0) ➕ `BurnOutSharp/FileType/Executable.cs` (+254 -0) _...and 58 more files_ </details> ### 📄 Description By far the largest change to the codebase in a long time. This includes: - Numerous bugfixes, issue fixes, etc. - New supported archive formats - Better tracking of copy protections found - Locations within files where copy protections found (if applicable) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 21:07:16 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: SabreTools/BinaryObjectScanner#218