Network: WoW Gold | WoW Accounts | MPS Games | FPSowned
MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides
Homepage »      Register »      Hall of Fame »      Ranks And Awards »      Advertise »      Marketplace »
 
Sign up



Do you like this excellent information? Then Donate HERE to remove ads and support the MMOwned community.


Go Back   MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides > Programming > Programming section > C#

C# Discussions about C#

Reply
 
LinkBack Thread Tools
  #1  
Old 03-25-2009
CbRooT is offline.
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
  
 
Join Date: Mar 2009
Posts: 1
Reputation: 3
Codes C# Easy Memory Operations

Before code, !! IMPORTANT !!:
Only get the 'Process HANDLE' when you'll use it.
'Process.Handle' property gives an handle.
Process.GetProcess...() is almost equals the 'OpenProcess(...)' api.
This means, when you request a process instance,
Windows creates new handle for process and lefts it opened.
And when you read 'Process.Handle' property on different times/different zones of code, you'll see each Handle will be different. (sometimes Windows returns same open handle but there's no guarantee).

Whatever... I only want to warn you because I made sick of researching process memory operations and it didn't work because of i requested new handles...
And I didn't find a good information in google. Is no one knows this?? I got angry


Here are some methods for 'Write/Read Process Memory':
And, sorry for my bad English.



Code:
using System;
using System.Text;
using System.Collections.Generic;
using System.Diagnostics;



public class PMemTest {
   #region API Decls.
        [DllImport( "kernel32.dll", EntryPoint = "WriteProcessMemory", SetLastError = true )]
    public static extern int WriteProcessMemory( IntPtr hProcess, IntPtr lpAddr, byte[] lpBuffer, int nSize, ref int lpNumberOfBytesWritten );
        [DllImport( "kernel32.dll", EntryPoint = "ReadProcessMemory", SetLastError = true )]
    public static extern int ReadProcessMemory( IntPtr hProcess, IntPtr lpAddr, byte[] lpBuffer, int nSize, ref int lpNumberOfBytesWritten );
   #endregion

    public int getCurrentProcessId() { return Process.GetCurrentProcess().Id; }

    public bool writeMemory(int pid, IntPtr lpAddr, byte[] buffer) {
        Process.EnterDebugMode();      // Usally, this isn't needed. Gives the process 'SeDebugPriviledge' (if logged user has 'Administrator' rights - or 'Debug' rigths.

        Process[] processArr=Process.GetProcessById(pid);
        if (processArr==null || processArr.Length==0)
           return false;

        int len = buffer.Length;
        int bytes = 0;
        Process p=processArr[0];
        IntPtr hProcess = p.Handle;
        WriteProcessMemory( hProcess, lpAddr, buffer, len, ref bytes );
        return (bytes>0);
    }

    public bool readMemory(int pid, IntPtr lpAddr, byte[] buffer) {
        Process.EnterDebugMode();      // Usally, this isn't needed. Gives the process 'SeDebugPriviledge' (if logged user has 'Administrator' rights - or 'Debug' rigths.

        Process[] processArr=Process.GetProcessById(pid);
        if (processArr==null || processArr.Length==0)
           return false;

        int len = buffer.Length;
        int bytes = 0;
        Process p=processArr[0];
        IntPtr hProcess = p.Handle;
        ReadProcessMemory( hProcess, lpAddr, buffer, len, ref bytes );
        return (bytes>0);
    }
Reply With Quote


Donate to remove ads, get your "DONATOR title, and get access to the MMOwned community's elite Shoutbawx.

  #2  
Old 05-06-2009
kakamunsug is offline.
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
  
 
Join Date: Dec 2008
Posts: 20
Reputation: -4
Points: 230, Level: 1
Points: 230, Level: 1 Points: 230, Level: 1 Points: 230, Level: 1
Level up: 58%, 170 Points needed
Level up: 58% Level up: 58% Level up: 58%
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%

Notice that this will NOT work for games such as WoW which does indeed protect their game a bit. Using VirtualProtect you can simulate wow in another state of which it allows you to read and edit as you please.

Just a heads up, using "BlackMagic" dll is a very nice thing to do when Shynd put down such great work to it.
Reply With Quote
  #3  
Old 05-08-2009
Krillere's Avatar
Krillere is offline.
Contributor
  
 
Join Date: Nov 2007
Location: Dænemark!
Posts: 578
Reputation: 101
Points: 3,364, Level: 5
Points: 3,364, Level: 5 Points: 3,364, Level: 5 Points: 3,364, Level: 5
Level up: 71%, 236 Points needed
Level up: 71% Level up: 71% Level up: 71%
Activity: 2.8%
Activity: 2.8% Activity: 2.8% Activity: 2.8%

kakamunsug, do you have an example of how to edit wow ? Will we need to use Packets or just special code? :-)
__________________


Can't figure out how to use Pocket Gnome?
http://www.mmowned.com/forums/wow-guides/263672-mac-pocket-gnome-guide.html
Reply With Quote
  #4  
Old 05-09-2009
spawnfestis's Avatar
spawnfestis is offline.
Master Sergeant
  
 
Join Date: May 2009
Posts: 78
Reputation: 64
Points: 1,532, Level: 3
Points: 1,532, Level: 3 Points: 1,532, Level: 3 Points: 1,532, Level: 3
Level up: 19%, 568 Points needed
Level up: 19% Level up: 19% Level up: 19%
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%

Quote:
Originally Posted by Krillere View Post
kakamunsug, do you have an example of how to edit wow ? Will we need to use Packets or just special code? :-)
Either use VirtualProtect() invoked, or use BlackMagic.dll.
Reply With Quote
  #5  
Old 05-10-2009
visitor is offline.
Contributor
  
 
Join Date: Mar 2008
Location: Behind you
Posts: 197
Reputation: 85
Points: 1,536, Level: 3
Points: 1,536, Level: 3 Points: 1,536, Level: 3 Points: 1,536, Level: 3
Level up: 20%, 564 Points needed
Level up: 20% Level up: 20% Level up: 20%
Activity: 0.3%
Activity: 0.3% Activity: 0.3% Activity: 0.3%

im using Visual Studio's C# and it always says (not only at this code):
Code:
Error	1	The type or namespace name 'DllImport' could not be found (are you missing a using directive or an assembly reference?)	C:\Users\Viktor\AppData\Local\Temporary Projects\ConsoleApplication1\Program.cs	11	10	ConsoleApplication1
Please help
mod: solved
Code:
using System.Runtime.InteropServices;
__________________

Last edited by visitor; 05-10-2009 at 02:53 PM.
Reply With Quote
  #6  
Old 05-11-2009
Nesox's Avatar
Nesox is offline.
MaiN's Biatch
Legendary User
  
 
Join Date: Mar 2007
Location: Managed Heap
Posts: 1,243
Nominated 47 Times in 4 Posts
Nominated TOTM/W Award(s): 2
Reputation: 767
Points: 48,016, Level: 33
Points: 48,016, Level: 33 Points: 48,016, Level: 33 Points: 48,016, Level: 33
Level up: 1%, 3,384 Points needed
Level up: 1% Level up: 1% Level up: 1%
Activity: 5.2%
Activity: 5.2% Activity: 5.2% Activity: 5.2%

Lol i must say.. here's a small example using BlackMagic:

Code:
Process[] processes = Process.GetProcessByName("Wow");
BlackMagic wow = new BlackMagic(processes[0].Id);

uint playerBase = wow.ReaUint(wow.ReadUInt(wow.ReadUint(0x010B65F4) + 0x34) + 0x24);

private void Health
{
    get { return wow.ReadInt(wow.ReadUInt(playerBase + 0x08) + 0x17 * 4); }
}

private void MaxHealth
{
    get { return wow.ReadInt(wow.ReadUInt(playerBase + 0x08) + 0x1F * 4); }
}

while(true)
{
    Console.WriteLine("Health:{0}/{1}", Health, MaxHealth);  
}
the descriptor offsets are from Cypher's descriptor dump.
the pointer at 0x08 from a object points to the start of the descriptor array.
And the reason you multiply it with 4 is because it's aligned evry 4 bytes
__________________
[Only registered and activated users can see links. ]

Warrior 60 | Druid 60 | Shaman 67 | Rogue 68 | Warlock 80 | Mage 80 | Hunter 80 | Death-knight 80 | Priest 80 | Paladin 80
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On



All times are GMT -4. The time now is 04:56 PM.




Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513