Diving into Windows Keyboard Driver

Поділитися
Вставка
  • Опубліковано 15 тра 2024
  • In this video I will demonstrate how you can cause funny behavior of the Windows PS/2 keyboard driver by connecting with a kernel debugger and modifying the assembly.
    Checkout my channel welcome link for setup information about windbg and VirtualBox.
    You can grab the Windows 10 ISO from the Microsoft official website.
    Articles:
    - reactos.org/wiki/I8042prt.sys
    - wiki.osdev.org/%228042%22_PS/...
  • Наука та технологія

КОМЕНТАРІ • 101

  • @yeong126
    @yeong126 5 днів тому +82

    This is mind blowing. The fact that you can just modify the kernal on the fly through a serial port is crazy. Wow.

    • @soundspark
      @soundspark 5 годин тому +1

      At the same time you can disable the serial debugger in bcdedit. Especially important since many motherboards still ship with a hardware serial port.

  • @kipchickensout
    @kipchickensout 20 днів тому +286

    i didn't even know you were allowed to debug the kernel that easily
    nice video!

    • @jedimasternoob
      @jedimasternoob 17 днів тому +7

      Yea, this is pretty spicy info! I can see it being used for some not so good uses.

    • @niewazneniewazne1890
      @niewazneniewazne1890 6 днів тому +12

      You are, likely to debug your own drivers.

    • @KiraSlith
      @KiraSlith 5 днів тому +7

      Same, I thought we lost the serial kernel debugger on Windows 98. UA-cam casually dropping this knowledge bomb in my recommended videos was a welcome surprise.

    • @ciano5475
      @ciano5475 День тому

      ​@@KiraSlith XP added the FireWire as a channel, newer version maybe ethernet

  • @sqrtof81
    @sqrtof81 20 днів тому +96

    I don't think I've ever seen such a concise and easy to follow explanation of low-level stuff like this. Very, very cool!

  • @MrOnlineCoder
    @MrOnlineCoder 24 дні тому +111

    If I remember correctly, osdev may also mention about a specific byte sequence you send or read from ps/2 keyboard in order to initiate system reboot, which is often used in hobby kernels and I guess I've even seen it in linux somewhere

    • @0xfadead
      @0xfadead 24 дні тому +6

      Do you mean Ctrl-Alt-Delete?
      That was used to reboot computers in the DOS days

    • @komram4396
      @komram4396 24 дні тому +24

      @@0xfadead nah, there is a keycode for reboot, i have an 90s keyboard with such key and it works in modern operating systems.

    • @nathanielcleland6566
      @nathanielcleland6566 24 дні тому +35

      @@0xfadead No, in the old days the RESET line of the x86 CPU was connected to the 8042 keyboard controller. Ctrl+Alt+Delete is just a sequence of key presses given special meaning in the OS.
      But if you poll port 0x64 until the controller is ready, then write 0xFE, it resets the CPU to its initial state, rebooting the system. Although this is actually how you switched out of 16 bit protected mode back into real mode on the 80286 as well (as memory stays powered, you can hook into the reset handler and skip system initialization).
      void reboot()
      {
      uint8_t good = 0x02;
      while (good & 0x02)
      good = inb(0x64);
      outb(0x64, 0xFE);
      halt();
      }

    • @0xfadead
      @0xfadead 24 дні тому +6

      @@nathanielcleland6566 Ah lol, didn't know about that. It makes much more sense. Thanks for the swift response!

    • @ktheveg
      @ktheveg 20 днів тому +7

      Linux has something called "Magic SysRQ". For modern devices, you can press & hold ALT, then tap PrintScreen. This activates the SysRQ, then while holding down ALT, press B to reboot.

  • @spirosgaliatsatos4384
    @spirosgaliatsatos4384 24 дні тому +47

    Reminds me when I used to do assembly in DOS. I used this port to detect a keypress instead of using the BIOS int 16h keyboard services

  • @HAGSLAB
    @HAGSLAB 23 дні тому +51

    Very nice demonstration of debugging a remote Windows machine :)

    • @milk-it
      @milk-it 19 днів тому +2

      Absolutely gorgeous elucidation.

    • @xfxpositions
      @xfxpositions 14 днів тому +1

      @@milk-it indeed

  • @bmx666bmx666
    @bmx666bmx666 24 дні тому +24

    Bless you man! You explained how to connect and debug Windows in 10 minutes! Always fantastic! 🥳😀

  • @BengalEmpire767
    @BengalEmpire767 21 день тому +17

    Nooo, windbg😢. Haha lol, its almost amazing how the app became a meme.
    Jokes aside, this is actually a very good video. You have earned a new subscriber.❤

  • @slendi9623
    @slendi9623 День тому

    I didn't know that WinDbg contained an assembler, that's so neat!

  • @mauriciolima1088
    @mauriciolima1088 День тому

    Thanks for the video it's great how you make complex low-level stuff so easy to follow! Thanks!!

  • @Glitch-569
    @Glitch-569 6 днів тому +2

    yoo new keyboard layout wertyu

  • @Cyba_IT
    @Cyba_IT 13 годин тому

    If you don't already have a job at Microsoft then you should man. Great stuff.

  • @SSnQ_LPCWSTR
    @SSnQ_LPCWSTR 20 днів тому

    Thanks for yet another educational vid, Nir!

  • @0bamo0
    @0bamo0 12 днів тому +2

    Is there a point to it ? No.
    Does it make it more interesting? Yes

  • @ronalerquinigoagurto555
    @ronalerquinigoagurto555 24 дні тому +5

    I would recommend making a video about hypervisor internals

  • @TheTim2626
    @TheTim2626 24 дні тому +4

    thanks bro, really nice demonstration of windows driver debbuging, love it !!!!

  • @waleedalrashed1411
    @waleedalrashed1411 14 днів тому

    As always , concise video debugging low-level code , I am really curious how have you come about learning "low-level computing" and how have yoi built the experience ? was it Computer architecture courses at Uni orworking somewhere where you were involved in that field ?

  • @nonsuch
    @nonsuch 23 дні тому

    Smart.... Brains.... (Bugs Bunny reference 😄). Awesome work! Cheers🥂

  • @ocry3310
    @ocry3310 14 днів тому

    this is what we need in this community!!

  • @inqmusician2
    @inqmusician2 17 днів тому

    You can create enigma codes with this.

  • @nithssh
    @nithssh 11 днів тому

    Thanks for this, TIL OS dev wiki.

  • @SuperElephant
    @SuperElephant 5 днів тому +1

    Short and precise demo of reverse engineering the kernel with ASM. Amazing and entertaining stuff!

  • @FurqanHun
    @FurqanHun 5 днів тому

    never thought someone would explain assembly and i'd understand it (idk assembly)

  • @____.__._.._
    @____.__._.._ 7 днів тому

    That was fun to watch and I dont even code, thx

  • @granitium
    @granitium 2 дні тому

    Yo I didn't know my pc had an entire PS2 just through port

  • @tentimesful
    @tentimesful 21 день тому +1

    I did engineering work where I had to do alot of copying and pasting, well the ctrl+c failed alot and didnt know if I copied or not.. so made a program that would listen to my keyboard and show green in taskbar if I pressed ctrl+c or ctrl+v(paste) lol... and it helps.. well I student at university I was reminded him saying that they make ctrl difficult to press as in previous gaming it could be pressed with other buttons that disrupt the gaming so you really need to press it hard, my current laptop didnt needed a hard ctrl press but now it does for copy and paste what a shame... and if the manifacturers are really doing that to people do stop that garbage and make the press easier even for ctrl...

  • @sourkefir
    @sourkefir 5 днів тому +1

    Never knew debugging the kernel was that easy. Nice video, you've got yourself a subscriber!

  • @ancestrall794
    @ancestrall794 19 днів тому

    Awesome video bro

  • @adamz1671
    @adamz1671 24 дні тому +5

    this is cool

  • @teamredstudio7012
    @teamredstudio7012 20 днів тому +1

    This is super fascinating! I have a bit of experience with x64 assembly but I don't really know how drivers work. I always wondered what the kernel debugging was for and if we can use it. Can we also debug the kernel of an installation on itself without a VM?

    • @nirlichtman
      @nirlichtman  20 днів тому +5

      Local kernel debugging is possible but it won't have all the abilities that you have when you do remote kernel debugging ( learn.microsoft.com/en-us/windows-hardware/drivers/debugger/performing-local-kernel-debugging ), BTW you can also debug another physical computer, it doesn't have to be a VM

    • @teamredstudio7012
      @teamredstudio7012 19 днів тому +1

      @@nirlichtman Wow! Thanks! I'm gonna have some fun with this!

  • @Potew
    @Potew 7 днів тому

    Wow, this was almost impossible to understand. I imagine debugging a graphics driver…

  • @dsagman
    @dsagman 19 днів тому

    fantastic!

  • @KiraSlith
    @KiraSlith 5 днів тому +3

    I didn't even know you could hook Windows' kernel debugger on retail after Windows 98, let alone retail Windows 10. I imagine there's a fair number of failsafes and hardware-level mechanics to keep you from doing anything super fun with it, like Commodore-style cheating like the olden days, but it's still neat.

  • @amanda_bynes226
    @amanda_bynes226 18 днів тому

    subscribed forever

  • @justinnamilee
    @justinnamilee 19 днів тому +2

    Neat! Maybe cleaner to jne over the increment and have them both use the same ret, no? xD

  • @MichalCanecky
    @MichalCanecky 14 годин тому

    Where did the extra space after the ret instruction come from? Was the driver compiled like this?

  • @MattTrevett
    @MattTrevett 4 дні тому

    Not sure if this is a logical question, but can the debugger debug itself in the kernel scope? Or does that even make sense?

  • @ahmadshami5847
    @ahmadshami5847 24 дні тому +3

    That's awesome! I'm wondering though why when the cmp instruction was set the address jumped from ...64 to ...68? It doesn't seem like the instruction is using any large values to fill up what I presume is 32 bytes (ig each address can store 8 bytes but please correct me if I'm wrong).

    • @b4ttlemast0r
      @b4ttlemast0r 24 дні тому

      I think each address just refers to a single byte (the address itself is what's 64-bits)

    • @ahmadshami5847
      @ahmadshami5847 24 дні тому

      @@b4ttlemast0r yeah idk maybe that could something related to the OS kernel or maybe even the hardware itself. But still even then it doesn't make sense for me that a compare instruction would require 4 bytes if that's the case.

    • @nirlichtman
      @nirlichtman  24 дні тому +3

      The cmp instruction took in total 4 bytes even though we are in 64 bit, since the jump in this case is relative and not absolute so the machine code doesn't need to store the entire 8 bytes of the memory address

    • @ahmadshami5847
      @ahmadshami5847 24 дні тому

      hmmm... okay, I must say I'm still kinda new to low level machine stuff, but that's fascinating. So what I understood is that the cmp instruction could make use of those 4 addresses but it didn't so it just skipped them, right?

    • @nirlichtman
      @nirlichtman  24 дні тому

      @@ahmadshami5847 could you elaborate what exactly you mean?

  • @Creative_404
    @Creative_404 3 дні тому

    i dont understan anything but im still watch all vid

  • @NikkiMcMistie
    @NikkiMcMistie 6 днів тому

    How will it error out once the register overflows when you press the last mapped key and it increments it by 1?

  • @milckshakebeans8356
    @milckshakebeans8356 18 днів тому +4

    Why did they add the padding to the functions?

    • @kell2185
      @kell2185 7 днів тому +7

      The padding is for alignment! For several reasons (hardware, cache...), functions are 16-bit aligned and the remaining space is usually filled with instruction "INT 3" (breaks execution if hit) as a safety measure. You'll notice all functions start at a 0-ending address. 😉

  • @gabrielv.4358
    @gabrielv.4358 День тому

    Hello!! can you tell me if its possible to "emulate" (Change) the status of an gamepad joystick?? I wish to use two of them, but they both assign to the same buttons, but I wish they were 2 separate controllers so I could use 4 "analogs" instead of 2. Thank you so much

  • @TunifyBasic
    @TunifyBasic 19 днів тому +1

    it's a good video with simple explanation but i hope that you do a video about the execution flow and the pe/mz format it's weird format to me. elf is easy understandable. but windows has weird executables they store charachters as if they were 16bit not 8bit and things like that....

    • @mikeuk1927
      @mikeuk1927 18 днів тому +1

      It's just UTF-16, it's not that bad. Buy yeah, PE is kind of weird, too complex for my liking

  • @Damglador
    @Damglador 16 днів тому

    I hear "screw up" - I watch video until the end🗿

  • @ferna2294
    @ferna2294 18 днів тому

    This is next level shit. I love it.

  • @ismbks
    @ismbks 18 днів тому +1

    you don't see this type of content anywhere on youtube

  • @sf-petru
    @sf-petru День тому

    I didn't understand the last part, why it won't show the next char in ASCII, but the next chart on the physical keyboard

    • @nirlichtman
      @nirlichtman  День тому

      That is because we are increasing the keyboard scan code by one and not the ASCII characters (the keyboard doesn't work with ASCII, the encoding happens in a higher level)

  • @Neuer_Alias_erstellen
    @Neuer_Alias_erstellen 20 днів тому

    cool - i wonder if malware could abuse windows Debugging on a windows VM

  • @betaswithWack0
    @betaswithWack0 3 дні тому +2

    funny that I get this recommended to me, given that I've had to write custom keyboard drivers for NT4 (on PowerPC) recently, and kbdclass expects to receive PS/2 scancodes so I had to convert USB HID to PS/2 scancodes...

  • @hoteny
    @hoteny 24 дні тому +4

    1:02 whats the other driver then?

    • @Hallilo
      @Hallilo 24 дні тому +3

      the ps2 keyboard driver is responsible for reading the hardware level data from the I/O port, kbdclass is a higher level driver that communicates with the ps2 driver and gives some consistency to the os with abstraction (correct me if im wrong)

  • @WhileTrueCode
    @WhileTrueCode 6 днів тому

    nice video! tho i think it would be safer to push/pop flags since ur adding a cmp, right? but who cares for a quick demo lol

  • @gabrielv.4358
    @gabrielv.4358 День тому

    I find it very unecessary to login into windows, let alone in a VM, But ok. Cool video

  • @PavitraGolchha
    @PavitraGolchha 24 дні тому +2

    How to remap Copilot key to R Ctrl key on newer windows laptops? Custom drivers or registry hacks? PowerToys works but doesn't work on all apps.

    • @mertemr
      @mertemr 24 дні тому +4

      you can use autohotkey.

    • @fluffball1415
      @fluffball1415 19 днів тому +1

      Can remap it in the registry, that'll work in administrator level applications.

  • @milk-it
    @milk-it 19 днів тому +1

    Something tells me the peanuts in MS support aren't exactly diving this deep into your issue when you call Microsoft for support 🤣

  • @SqualidsargeStudios
    @SqualidsargeStudios 18 днів тому

    I’ve noticed one thing, you seem to press pretty danged hard on keys and buttons every now and again.

  • @MsTatakai
    @MsTatakai 3 дні тому

    So, now remove the input lag from USB drivers nyeeeehhehe if it were that ez

    • @lychy645
      @lychy645 День тому

      lol just use a ps2 device

    • @MsTatakai
      @MsTatakai День тому

      @@lychy645 Yeah i know that =P i was kinda trolling right now XD
      But now that you say that... is there any Gamepad as PS/2 ? that would be amazing, no?

  • @SASTSimon
    @SASTSimon 2 дні тому

    What

  • @gokul2003g
    @gokul2003g 24 дні тому +6

    Screw up some linux stuff next, please.

    • @_lun4r_
      @_lun4r_ 24 дні тому +9

      The screwed up keyboard for Linux already exists, check the videos

    • @gokul2003g
      @gokul2003g 24 дні тому

      @@_lun4r_ ooh 👍

    • @vlc-cosplayer
      @vlc-cosplayer 19 днів тому +2

      You can't scam people into getting tech support if you break Linux!

  • @RahulNarsing-lx9pi
    @RahulNarsing-lx9pi 24 дні тому +5

    yay, i am first

  • @basvandenburg-uy8iw
    @basvandenburg-uy8iw 10 днів тому +1

    Can you stop ending 99% of sentences with a high note?