Guest User

Untitled

a guest
Apr 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.48 KB | None | 0 0
  1. #include <pointer.au3>
  2.  
  3.  
  4.  
  5. $pid = InputBox("Podaj pid","PID")
  6.  
  7.  $hProc = _MemoryOpen($pid, 0x1F0FFF, true)
  8.  
  9. GUICreate("Test",160,120)
  10. $l = GUICtrlCreateLabel(0,30,40,120)
  11. GUISetState()
  12.  
  13. while 1
  14. $base = _MemoryModuleGetBaseAddress($pid, "CWK.exe")
  15. $pointer =  _MemoryRead($base+0x128694, $hProc)
  16. $pointer += 0x474
  17. $readed =  _MemoryRead($pointer, $hProc)
  18. $readed+=0x42C
  19. $SEK = _MemoryRead($readed, $hProc)
  20.  
  21.  
  22.  
  23.  
  24. GUICtrlSetData($l,"Sec:"&$SEK)
  25. Sleep(200)
  26. WEnd
Add Comment
Please, Sign In to add comment