Debugging Windows Internals with x64dbg!

Поделиться
HTML-код
  • Опубликовано: 8 сен 2024

Комментарии • 11

  • @SK0M4ADC7
    @SK0M4ADC7 5 месяцев назад +1

    Thank you very much Sir!!!!

  • @ShxwnGrxhxm
    @ShxwnGrxhxm 5 месяцев назад +1

    Man... can't believe I got caught up at work and missed it!

  • @falanavictor1986
    @falanavictor1986 5 месяцев назад

    I love you Stephen. You are my daily motivation

  • @gitgudsec
    @gitgudsec 5 месяцев назад +1

    epic stream!

  • @mcacyber
    @mcacyber 5 месяцев назад +1

    thanks a lot

  • @CHRISTIVN.OFFICIAL
    @CHRISTIVN.OFFICIAL 5 месяцев назад +1

    can't believe I missed the stream.

  • @eduardschreder1623
    @eduardschreder1623 5 месяцев назад

    Duncan, for the "trace coverage", what is the difference between bit/byte/word?

  • @lPlanetarizado
    @lPlanetarizado 5 месяцев назад +1

    maybe unrelated to x64dbg, but in windows "context" structures have all the same information (like registers and stuff)? because alot of structures have a "context" field and i never know what the data means

    • @OffByOneSecurity
      @OffByOneSecurity  5 месяцев назад

      I did a stream on recreating undocumented structs on Windows using IDA Pro. One of the reasons I bring this up is that during that stream, I had to deal with the context structure for a given thread during an exception handler. The thread caused an access violation to a Guard Page, and the handler needed some of the register values at the moment in time when the exception was triggered.. So, think of the context as a snapshot of the state of the processor registers at a given moment in time. Same thing when you context switch out of a process and to another one (e.g. Notepad to Calc). In order to continue where you left off, the state of all registers and such are stored in something called the Process Control Block (PCB).

    • @lPlanetarizado
      @lPlanetarizado 5 месяцев назад

      @@OffByOneSecurity i see, thanks alot

    • @OffByOneSecurity
      @OffByOneSecurity  5 месяцев назад +1

      You actually inspired me to create a short video, as this question has been asked quite a few times. Hope it helps... ruclips.net/video/dz8CSaQRfzE/видео.html