├── .gitattributes ├── .gitignore ├── LICENSE ├── README.MD ├── memory.sln └── memory ├── Memory.cs ├── Properties └── AssemblyInfo.cs ├── bin └── Release │ └── memory.dll └── memory.csproj /.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]eleases/ 20 | x64/ 21 | x86/ 22 | [Aa][Rr][Mm]/ 23 | [Aa][Rr][Mm]64/ 24 | bld/ 25 | [Oo]bj/ 26 | [Ll]og/ 27 | 28 | # Visual Studio 2015/2017 cache/options directory 29 | .vs/ 30 | # Uncomment if you have tasks that create the project's static files in wwwroot 31 | #wwwroot/ 32 | 33 | # Visual Studio 2017 auto generated files 34 | Generated\ Files/ 35 | 36 | # MSTest test Results 37 | [Tt]est[Rr]esult*/ 38 | [Bb]uild[Ll]og.* 39 | 40 | # NUNIT 41 | *.VisualState.xml 42 | TestResult.xml 43 | 44 | # Build Results of an ATL Project 45 | [Dd]ebugPS/ 46 | [Rr]eleasePS/ 47 | dlldata.c 48 | 49 | # Benchmark Results 50 | BenchmarkDotNet.Artifacts/ 51 | 52 | # .NET Core 53 | project.lock.json 54 | project.fragment.lock.json 55 | artifacts/ 56 | 57 | # StyleCop 58 | StyleCopReport.xml 59 | 60 | # Files built by Visual Studio 61 | *_i.c 62 | *_p.c 63 | *_h.h 64 | *.ilk 65 | *.meta 66 | *.obj 67 | *.iobj 68 | *.pch 69 | *.pdb 70 | *.ipdb 71 | *.pgc 72 | *.pgd 73 | *.rsp 74 | *.sbr 75 | *.tlb 76 | *.tli 77 | *.tlh 78 | *.tmp 79 | *.tmp_proj 80 | *_wpftmp.csproj 81 | *.log 82 | *.vspscc 83 | *.vssscc 84 | .builds 85 | *.pidb 86 | *.svclog 87 | *.scc 88 | 89 | # Chutzpah Test files 90 | _Chutzpah* 91 | 92 | # Visual C++ cache files 93 | ipch/ 94 | *.aps 95 | *.ncb 96 | *.opendb 97 | *.opensdf 98 | *.sdf 99 | *.cachefile 100 | *.VC.db 101 | *.VC.VC.opendb 102 | 103 | # Visual Studio profiler 104 | *.psess 105 | *.vsp 106 | *.vspx 107 | *.sap 108 | 109 | # Visual Studio Trace Files 110 | *.e2e 111 | 112 | # TFS 2012 Local Workspace 113 | $tf/ 114 | 115 | # Guidance Automation Toolkit 116 | *.gpState 117 | 118 | # ReSharper is a .NET coding add-in 119 | _ReSharper*/ 120 | *.[Rr]e[Ss]harper 121 | *.DotSettings.user 122 | 123 | # JustCode is a .NET coding add-in 124 | .JustCode 125 | 126 | # TeamCity is a build add-in 127 | _TeamCity* 128 | 129 | # DotCover is a Code Coverage Tool 130 | *.dotCover 131 | 132 | # AxoCover is a Code Coverage Tool 133 | .axoCover/* 134 | !.axoCover/settings.json 135 | 136 | # Visual Studio code coverage results 137 | *.coverage 138 | *.coveragexml 139 | 140 | # NCrunch 141 | _NCrunch_* 142 | .*crunch*.local.xml 143 | nCrunchTemp_* 144 | 145 | # MightyMoose 146 | *.mm.* 147 | AutoTest.Net/ 148 | 149 | # Web workbench (sass) 150 | .sass-cache/ 151 | 152 | # Installshield output folder 153 | [Ee]xpress/ 154 | 155 | # DocProject is a documentation generator add-in 156 | DocProject/buildhelp/ 157 | DocProject/Help/*.HxT 158 | DocProject/Help/*.HxC 159 | DocProject/Help/*.hhc 160 | DocProject/Help/*.hhk 161 | DocProject/Help/*.hhp 162 | DocProject/Help/Html2 163 | DocProject/Help/html 164 | 165 | # Click-Once directory 166 | publish/ 167 | 168 | # Publish Web Output 169 | *.[Pp]ublish.xml 170 | *.azurePubxml 171 | # Note: Comment the next line if you want to checkin your web deploy settings, 172 | # but database connection strings (with potential passwords) will be unencrypted 173 | *.pubxml 174 | *.publishproj 175 | 176 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 177 | # checkin your Azure Web App publish settings, but sensitive information contained 178 | # in these scripts will be unencrypted 179 | PublishScripts/ 180 | 181 | # NuGet Packages 182 | *.nupkg 183 | # The packages folder can be ignored because of Package Restore 184 | **/[Pp]ackages/* 185 | # except build/, which is used as an MSBuild target. 186 | !**/[Pp]ackages/build/ 187 | # Uncomment if necessary however generally it will be regenerated when needed 188 | #!**/[Pp]ackages/repositories.config 189 | # NuGet v3's project.json files produces more ignorable files 190 | *.nuget.props 191 | *.nuget.targets 192 | 193 | # Microsoft Azure Build Output 194 | csx/ 195 | *.build.csdef 196 | 197 | # Microsoft Azure Emulator 198 | ecf/ 199 | rcf/ 200 | 201 | # Windows Store app package directories and files 202 | AppPackages/ 203 | BundleArtifacts/ 204 | Package.StoreAssociation.xml 205 | _pkginfo.txt 206 | *.appx 207 | 208 | # Visual Studio cache files 209 | # files ending in .cache can be ignored 210 | *.[Cc]ache 211 | # but keep track of directories ending in .cache 212 | !?*.[Cc]ache/ 213 | 214 | # Others 215 | ClientBin/ 216 | ~$* 217 | *~ 218 | *.dbmdl 219 | *.dbproj.schemaview 220 | *.jfm 221 | *.pfx 222 | *.publishsettings 223 | orleans.codegen.cs 224 | 225 | # Including strong name files can present a security risk 226 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 227 | #*.snk 228 | 229 | # Since there are multiple workflows, uncomment next line to ignore bower_components 230 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 231 | #bower_components/ 232 | # ASP.NET Core default setup: bower directory is configured as wwwroot/lib/ and bower restore is true 233 | **/wwwroot/lib/ 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 341 | 342 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 343 | MigrationBackup/ 344 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 BluePie 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- 1 | # (c#) dll for Array of bytes [AOB] scan with wildcard,Reading process memeory, Writing process memory. 2 | 3 | >A standalone dll library written in c# for for wildcard AOB scan, reading and writing from process, its an old lib that I created and used for my personel use. Maybe this would help new modders, I recently stumbled upon this, so here it is. 4 | 5 | # [![latest release][release]][release link] [![license][license badge]][license link] 6 | 7 | [license badge]: https://img.shields.io/github/license/aghontpi/MemoryPatternScanner 8 | [license link]: https://github.com/aghontpi/MemoryPatternScanner/blob/master/LICENSE 9 | [release link]: https://github.com/aghontpi/MemoryPatternScanner/releases 10 | [release]: https://img.shields.io/github/v/release/aghontpi/MemoryPatternScanner?include_prereleases 11 | 12 | ## Some insights. 13 | 14 | This was developed in visual studio 2013 and was done when I started learning modding so dont expect geat code(although I retouched some of it now.) 15 | 16 | ### Just wanna use the dll? 17 | 18 | * download the dll 19 | * add a reference to the dll 20 | * 'using memory' must be added 21 | * check how other stuff is implemented in the source from here. 22 | 23 | ### Wanna Add some modifications? 24 | 25 | * clone-fork the repo do as you wish. 26 | 27 | ## Usage 28 | 29 | #### Methods available 30 | 31 | The following methods assumes that you have selected the process, set the handle, set the module 32 | and set the pattern to scan. 33 | 34 | ClassName: Scanner. 35 | 36 | * bool writeBytes(Process process, ulong address, byte[] bytesToWrite) 37 | 38 | * bool writeBytes(Process process, ulong address, String pattern) 39 | 40 | * byte[] getBackupBytes() 41 | 42 | * ulong FindPattern() 43 | 44 | * bool WriteProcessMemory(IntPtr hProcess,IntPtr lpBaseAddress,byte[] lpBuffer,int dwSize,out IntPtr lpNumberOfBytesWritten) 45 | 46 | * bool ReadProcessMemory(IntPtr hProcess,IntPtr lpBaseAddress,byte[] lpBuffer,int dwSize,out IntPtr lpNumberOfBytesRead) 47 | 48 | ## Example 49 | 50 | I didn't include all the process memeory stuff below, but those can be used to, its available in the memory class, check source. 51 | 52 | ```js 53 | 54 | Process process = the selected process that you want to use. 55 | 56 | below could be set via constructor or set via setters, check the source. 57 | 58 | Scanner Obj = new Scanner(process,process.Handle,"80 00 41 ?? ?? 00 00 ?? ?? ?? ?? ?? ?? 00 00 00 00 00"); 59 | 60 | 61 | Obj.setModule(process.MainModule); 62 | 63 | Obj.FindPattern() 64 | 65 | the below could be done for writing found bytes, 66 | 67 | memObj.writeBytes(process, memObj.FindPattern(), "00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"); 68 | 69 | you could also do below to get the backup bytes which you wrote for ex, you would get this region 70 | 80 00 41 ?? ?? 00 00 ?? ?? ?? ?? ?? ?? 00 00 00 00 00, the placeholder with real values. 71 | 72 | memObj.getBackupBytes(); 73 | ``` 74 | ## Built With 75 | 76 | * c# 77 | * a newbie modder back in the day. 78 | 79 | ## Authors 80 | 81 | * **aghontpi (aka) Bluepie** [aghontpi](https://github.com/aghontpi) 82 | 83 | ## Meta 84 | 85 | aghontpi (aka) bluepie – [@bluepie](https://twitter.com/aghontpi) – aghontpi@gmail.com 86 | 87 | ## License 88 | 89 | This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details 90 | -------------------------------------------------------------------------------- /memory.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2013 4 | VisualStudioVersion = 12.0.40629.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "memory", "memory\memory.csproj", "{DCA24B17-CD1B-4FD4-9482-296F27A0C80C}" 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 | {DCA24B17-CD1B-4FD4-9482-296F27A0C80C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {DCA24B17-CD1B-4FD4-9482-296F27A0C80C}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {DCA24B17-CD1B-4FD4-9482-296F27A0C80C}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {DCA24B17-CD1B-4FD4-9482-296F27A0C80C}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /memory/Memory.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Runtime.InteropServices; 4 | using System.Diagnostics; 5 | 6 | 7 | namespace memory 8 | { 9 | public abstract class Memory 10 | { 11 | [DllImport("kernel32.dll")] 12 | protected static extern bool ReadProcessMemory( 13 | IntPtr hProcess, 14 | IntPtr lpBaseAddress, 15 | byte[] lpBuffer, 16 | int dwSize, 17 | out IntPtr lpNumberOfBytesRead); 18 | 19 | [DllImport("kernel32.dll")] 20 | protected static extern bool WriteProcessMemory( 21 | IntPtr hProcess, 22 | IntPtr lpBaseAddress, 23 | byte[] lpBuffer, 24 | int dwSize, 25 | out IntPtr lpNumberOfBytesWritten); 26 | 27 | public abstract ulong FindPattern(); 28 | 29 | public abstract bool writeBytes(Process process, ulong address, byte[] bytesToWrite); 30 | public abstract bool writeBytes(Process process, ulong address, String pattern); 31 | 32 | public abstract void setBackupBytes(Process process, ulong address, byte[] bytesToWrite); 33 | public abstract byte[] getBackupBytes(); 34 | 35 | 36 | } 37 | 38 | public class Scanner : Memory 39 | { 40 | private Process lprocess; 41 | private String lpattern; 42 | private IntPtr handleProcess; 43 | private ProcessModule localModule; 44 | private byte[] backupBytes = null; 45 | 46 | public Scanner(Process process, IntPtr handle = default(IntPtr), String pattern = "" ) 47 | { 48 | lprocess = process; 49 | lpattern = pattern; 50 | handleProcess = handle; 51 | } 52 | 53 | public void setPattern(String pattern) { lpattern = pattern; } 54 | 55 | public void setHandle(IntPtr handle) { handleProcess = handle; } 56 | 57 | public void setModule(ProcessModule module) { localModule = module; } 58 | 59 | private byte[] ConvertPattern(String pattern) 60 | { 61 | List convertertedArray = new List(); 62 | foreach (String each in pattern.Split(' ')) 63 | { 64 | if (each == "??") { convertertedArray.Add(Convert.ToByte("0", 16)); } 65 | else{ convertertedArray.Add(Convert.ToByte(each,16)); } 66 | } 67 | return convertertedArray.ToArray(); 68 | 69 | } 70 | 71 | private ulong scanLogic(byte[] localModulebytes, byte[] convertedByteArray) 72 | { 73 | ulong address = 0; 74 | for (int indexAfterBase = 0; indexAfterBase < localModulebytes.Length; indexAfterBase++) 75 | { 76 | bool noMatch = false; 77 | if (localModulebytes[indexAfterBase] != convertedByteArray[0]) 78 | continue; 79 | for (var MatchedIndex = 0; MatchedIndex < convertedByteArray.Length && indexAfterBase + MatchedIndex < localModulebytes.Length; MatchedIndex++) 80 | { 81 | if (convertedByteArray[MatchedIndex] == 0x0) 82 | continue; 83 | if (convertedByteArray[MatchedIndex] != localModulebytes[indexAfterBase + MatchedIndex]) 84 | { 85 | noMatch = true; 86 | break; 87 | } 88 | } 89 | if (!noMatch) 90 | return (ulong)localModule.BaseAddress + (ulong)indexAfterBase; 91 | } 92 | return address; 93 | } 94 | 95 | public override ulong FindPattern() 96 | { 97 | IntPtr bytesRead; 98 | byte[] localModulebytes = new byte[localModule.ModuleMemorySize]; 99 | byte[] convertedByteArray = ConvertPattern(lpattern); 100 | Memory.ReadProcessMemory(handleProcess,localModule.BaseAddress,localModulebytes,localModule.ModuleMemorySize,out bytesRead); 101 | return scanLogic(localModulebytes,convertedByteArray); 102 | 103 | } 104 | 105 | public override bool writeBytes(Process process, ulong address, byte[] bytesToWrite) 106 | { 107 | IntPtr bytesWritten = IntPtr.Zero; 108 | setBackupBytes(process,address,bytesToWrite); 109 | Memory.WriteProcessMemory(process.Handle, (IntPtr)address, bytesToWrite, bytesToWrite.Length, out bytesWritten); 110 | if (bytesWritten == IntPtr.Zero) { return false; } 111 | else { return true; } 112 | } 113 | public override bool writeBytes(Process process, ulong address, String pattern) 114 | { 115 | IntPtr bytesWritten = IntPtr.Zero; 116 | byte[] bytesToWrite = ConvertPattern(pattern); 117 | return writeBytes(process, address, bytesToWrite); 118 | 119 | } 120 | 121 | public override void setBackupBytes(Process process, ulong address, byte[] bytesToWrite) 122 | { 123 | IntPtr bytesRead = IntPtr.Zero; 124 | backupBytes = new byte[bytesToWrite.Length]; 125 | Memory.ReadProcessMemory(process.Handle, (IntPtr)address, backupBytes, bytesToWrite.Length, out bytesRead); 126 | } 127 | 128 | public override byte[] getBackupBytes() 129 | { 130 | return backupBytes; 131 | } 132 | } 133 | 134 | 135 | } 136 | -------------------------------------------------------------------------------- /memory/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | using System.Resources; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("custom aob scanner wildcard, rpm ,wpm.")] 10 | [assembly: AssemblyDescription("lib file.")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("BluePie")] 13 | [assembly: AssemblyProduct("library.")] 14 | [assembly: AssemblyCopyright("Copyright © 2019")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | 18 | // Setting ComVisible to false makes the types in this assembly not visible 19 | // to COM components. If you need to access a type in this assembly from 20 | // COM, set the ComVisible attribute to true on that type. 21 | [assembly: ComVisible(false)] 22 | 23 | // The following GUID is for the ID of the typelib if this project is exposed to COM 24 | [assembly: Guid("754a8761-2a25-466f-a546-ddacfdbc1bb2")] 25 | 26 | // Version information for an assembly consists of the following four values: 27 | // 28 | // Major Version 29 | // Minor Version 30 | // Build Number 31 | // Revision 32 | // 33 | // You can specify all the values or you can default the Build and Revision Numbers 34 | // by using the '*' as shown below: 35 | // [assembly: AssemblyVersion("1.0.*")] 36 | [assembly: AssemblyVersion("1.0.0.0")] 37 | [assembly: AssemblyFileVersion("1.0.0.0")] 38 | [assembly: NeutralResourcesLanguageAttribute("en")] 39 | -------------------------------------------------------------------------------- /memory/bin/Release/memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghontpi/MemoryPatternScanner/25371230220a628c0308e9fd3102473ff02b3ae9/memory/bin/Release/memory.dll -------------------------------------------------------------------------------- /memory/memory.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {DCA24B17-CD1B-4FD4-9482-296F27A0C80C} 8 | Library 9 | Properties 10 | memory 11 | memory 12 | v3.5 13 | 512 14 | 15 | 16 | true 17 | full 18 | false 19 | bin\Debug\ 20 | DEBUG;TRACE 21 | prompt 22 | 4 23 | 24 | 25 | pdbonly 26 | true 27 | bin\Release\ 28 | TRACE 29 | prompt 30 | 0 31 | 32 | 33 | false 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 55 | --------------------------------------------------------------------------------