Giter VIP home page Giter VIP logo

Comments (3)

ufrisk avatar ufrisk commented on July 17, 2024

If debugging Windows it should auto-generate a memory.dmp file which you should be able to open in WinDbg.

Setting breakpoints and such aren't working though, but it will detect os, kernel and processes and automatically download required symbols and such.

If wanting to patch something you'll have to open process virtual memory (or physical memory) in your hexeditor and patch. Note tho that patching .exe/,dll/.sys image in one process will likely patch it in all processes since writes goes down to physical memory. Patching heaps/stacks and such generally have no such side effects.

image

from memprocfs.

leolongvu avatar leolongvu commented on July 17, 2024

Is it your intend not to include the dump file per process or is it my PC that doesnt have one?

from memprocfs.

ufrisk avatar ufrisk commented on July 17, 2024

only full dump is currently available, I'm unsure about per-process minidumps, it's on my todo-list to look into but I'm not sure about the complexibility.

you should be able to switch into process context in WinDbg already though .... replace the ffff-value in .process with your process EPROCESS address.

kd> .process /r /p ffff8b8f8a5780c0
kd> lmu
start             end                 module name
00007ff6`d2f40000 00007ff6`d2f48000   LogonUI    (deferred)             
00007ff8`dcc20000 00007ff8`dcf54000   msftedit   (deferred)  
...

0: kd> u 00007ff6`d2f41010
LogonUI!wWinMain:
00007ff6`d2f41010 4053            push    rbx
00007ff6`d2f41012 4883ec70        sub     rsp,70h
00007ff6`d2f41016 498bd8          mov     rbx,r8
00007ff6`d2f41019 ff1561210000    call    qword ptr [LogonUI!_imp_GetCurrentProcess (00007ff6`d2f43180)]
...

from memprocfs.

Related Issues (20)

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.