Giter VIP home page Giter VIP logo

Comments (10)

T-vK avatar T-vK commented on May 24, 2024

I think I saw another C++ library that was similar to this one, but I can't find it anymore.

Did you run your program with admin privileges?
You mention you used example2. Did you ensure that there is a process that is called notepad.exe?

from memory-hacking-class.

SDarkMagic avatar SDarkMagic commented on May 24, 2024

Yes, I have tried running as admin, and yes I have a process called notepad.exe

from memory-hacking-class.

T-vK avatar T-vK commented on May 24, 2024

You should check GetLastError after every function call and post the results here.
Also, can you make sure that Memory.GetProcessId returns a valid process id and that OpenProcess retuirns a valid process handle?
Also, please check if Memory.GetDebugPrivileges successfully enables SeDebugPrivilege on your process. This can be done using https://github.com/processhacker/processhacker

from memory-hacking-class.

SDarkMagic avatar SDarkMagic commented on May 24, 2024

SeDebugPrivelege gets enabled successfully. Memory.GetProcessId also functions correctly and returns a valid process ID, same goes for OpenProcess. When I run GetLastError it returns 0 up through Memory.GetModuleBase, upon which it starts to return 299.

from memory-hacking-class.

T-vK avatar T-vK commented on May 24, 2024

I think the error comes from EnumProcessModules. You could try replacing all occurrences of EnumProcessModules with EnumProcessModulesEx which has an additional parameter (the 5th parameter) which can be used to specify what kinds of modules to enumerate. Possible values for this parameter are:

  • LIST_MODULES_32BIT
  • LIST_MODULES_64BIT
  • LIST_MODULES_ALL
  • LIST_MODULES_DEFAULT

Try if one of these fix the issue.

More info on EnumProcessModulesEx can be found here: https://docs.microsoft.com/en-us/windows/win32/api/psapi/nf-psapi-enumprocessmodulesex

I think it's possible that notepad.exe used to be 32-bit at the time I tested this and that it's now 64-bit and thus doesn't work anymore by simply using EnumProcessModules, but I don't know for sure.

from memory-hacking-class.

SDarkMagic avatar SDarkMagic commented on May 24, 2024

I tried doing this, but it kept yelling at me about EnumProcessModulesEx not being defined. I looked into it, but I couldn't figure out how to fix this issue. Stranger still is that Windows.h is still being included in the file.

from memory-hacking-class.

T-vK avatar T-vK commented on May 24, 2024

That's weird. You might have to install a newer version of the Windows SDK and then maybe also tell GCC to use that newer version if that doesn't happen automatically.

from memory-hacking-class.

SDarkMagic avatar SDarkMagic commented on May 24, 2024

I tried looking into doing that, but I couldn't quite figure out how. Is there a guide for that that you could point me to by any chance?

from memory-hacking-class.

T-vK avatar T-vK commented on May 24, 2024

I think you just need to download an SDK installer and then install it.
https://developer.microsoft.com/en-us/windows/downloads/sdk-archive/

But it might depend on what version of Windows you use and how you have installed GCC.

from memory-hacking-class.

SDarkMagic avatar SDarkMagic commented on May 24, 2024

So I've been tinkering with stuff trying to get this to work for a while, and I decided to have it output the current debug privelege value to the console, and apparently it's failing to set the proper priveleges. I also went in and uncomment the line std::cout << "Failed to enable privilege, error:\n>> " << GetLastError() << std::endl;, and sure enough it's throwing an error 1300.

from memory-hacking-class.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.