Jump to content

Jeocou

Members
  • Posts

    3
  • Joined

  • Last visited

Jeocou's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Once again, it's not a mail spammer. Look, i'll search for DEO.EXE (Random name), and let's see what we get http://www.removespywaretips.com/exe-d/deo-exe.html Virus. Let's now search for UKL.EXE, random name too http://www.novirus365.org/exeviruses/40335.html Virus. Any short filename can be a virus nowadays, I am right, or am I not? Fine, now let's keep on with the original subject. ___________________________________________ So, I got this .EXE that I fount in my computer, it's a command line game, therefore it has a very poor ammount of memory allocations and is just perfect for testing AutoIt and it's memory reading possibilities. Even though I spent some time searching and testing, I can't get my code to work. So once again, and this will sadly be the last one since I have 1 more post until tomorrow : Can someone that doesn't distrust people at first sight help me out with this? Many thanks in advance, Jeocou.
  2. That's not the EXE i'm using, the one i'm using is a simple game coded in C by someone I know for training purposes, it's the first exe that I fount in my PC that wouldn't have tons of memory allocations, the less data, the easier it is to search for it You can rest assured i'm not having any malicious intentions
  3. Hello AutoIt community ! I just started coding in AutoIt, and i'm trying to read the value of an address, after some search, I ended up finding this UDF called NomadMemory, that apparently is the best ones out there. Although, since i'm not good at Memory Addresses, Hex, Ascii, etc, I tried to write a simple script that would generate a GUI, with a label that would be updated with the value of a process memory address, here's what I got : #include <NomadMemory.au3> $pid = ProcessExists("MMer.exe") $address = "040A2EF8" $openmem = _MemoryOpen($pid) ; $Value = _MemoryRead($address, $openmem) ; FORM $Form1 = GUICreate("Form1", 144, 165, 390, 185) $listenlabel = GUICtrlCreateLabel($Value, 16, 16, 107, 17) GUISetState(@SW_SHOW) ; END OF FORM while 1 GUICtrlDelete($listenlabel) $listenlabel = GUICtrlCreateLabel($Value, 16, 16, 107, 17) WEnd So basically this is supposed to do the following : Get the PID of "MMer.exe", open the memory using that PID, read an Address (040A2EF8) from that process, create a form with the value of the address written in it, and update the value every once in a while. Although, it doesn't seem to work, do you see any errors in my code? Thanks in advance !
×
×
  • Create New...