MHS start bug

Find a Bug? Have a Problem? Like to Suggest a Feature? Do it Here

Moderators: g3nuin3, SpeedWing, WhiteHat, mezzo

Postby L. Spiro » Tue Jan 22, 2008 10:09 am

I know what the problem is but I expected the previous modifications to fix it. If they didn’t, there is one thing I can do to be mostly sure it will be fixed. I am just at work right now so I can’t code it right this second (even though it will only take a second to code).

Also, future versions are going to have this feature auto-disabled when it fails once, and you can re-enable it in the Options. I have it set to always enabled now to make sure people report any problems they have.


L. Spiro
User avatar
L. Spiro
L. Spiro
 
Posts: 3129
Joined: Mon Jul 17, 2006 10:14 pm
Location: Tokyo, Japan

Postby ventuz » Tue Jan 22, 2008 1:08 pm

New MHS lock up on launch for me too. I'm running Wins XP Pro, Intel Quad Core. One time I managed to open MHS, but it locked up 1/4 of CPU (25% running constantly, unable to shut down MHS from Task Manager).
ventuz
I Ask A Lot Of Questions
 
Posts: 15
Joined: Mon Jan 14, 2008 2:08 pm

Postby L. Spiro » Tue Jan 22, 2008 2:13 pm

See if this version fixes the problem.
I was able to work on this during my lunch break.

http://www.memoryhacking.com/MemHack/MHS4.0.0.13.rar


L. Spiro
User avatar
L. Spiro
L. Spiro
 
Posts: 3129
Joined: Mon Jul 17, 2006 10:14 pm
Location: Tokyo, Japan

Postby ventuz » Tue Jan 22, 2008 2:24 pm

Nah it didn't fix.. What happened is I lost mouse control for a while, but I was still able to see window activity (arrow keys to high light different icon, AIM ads banner going, etc), and it still used 25% of CPU constantly. I also lost all program control (all of them are not responding), I had to push "reset" button to reboot.
ventuz
I Ask A Lot Of Questions
 
Posts: 15
Joined: Mon Jan 14, 2008 2:08 pm

Postby mezzo » Wed Jan 23, 2008 1:17 am

the updated version does something different.. the PC doesn't seem to crash, but it still uses one full core and it doesn't return control to windows..
ie. I can still see the performance bars of task manager move, but I don't have mouse or keyboard control.. (there is also no MHS window).. only thing I can do is press the reset button.
- No thanks, I already have a penguin -
User avatar
mezzo
El Mariachi
 
Posts: 739
Joined: Mon Apr 30, 2007 10:27 pm
Location: Antwerp

Postby SpeedWing » Wed Jan 23, 2008 4:01 am

same with me atm
User avatar
SpeedWing
Defragler
 
Posts: 2031
Joined: Tue Jan 01, 2008 1:00 am
Location: If there is a Will there is a Solution.

Postby mezzo » Wed Jan 23, 2008 5:11 pm

Hey L.Spiro are you still looking into this issue or do I find a single core machine for the newer version of MHS ?

(just so I know, thanks)
- No thanks, I already have a penguin -
User avatar
mezzo
El Mariachi
 
Posts: 739
Joined: Mon Apr 30, 2007 10:27 pm
Location: Antwerp

Postby L. Spiro » Wed Jan 23, 2008 6:12 pm

Number of cores and operating system have nothing to do with it.
My Intel Vista duel-core runs it fine and so do my both of my single-core XP’s, one Intel and one AMD.
I thought it might be AMD + multiple cores but someone posted about his Intel locking up.


If you have the urge, you may be able to help by reformatting and seeing if that fixes it. Then I would have an idea if it is related to another driver on your computer or something along these lines.

It might also be a timing issue.
Take version 4.0.0.12.
Open any process.
Load the Disassembler and look at the list of functions in the Kernel Functions tab.
Select NtOpenProcess and go to that function. Above it you will see a bunch of NOP commands which you are free to edit.
Select some of them, right-click, and NOP Selected (which will not actually change anything but will cause a write into kernel RAM).

If it works (does not lock up), it is most likely a timing issue, since I am certain the functions for reading/writing kernel RAM are 100% stable.
Then I would be assured that it would be fixed once I change it to do this after start-up instead of during.



Also, when I added the ability to search kernel RAM I noticed when it read addresses in the range above 0xFAXXXXXX it would stutter and stutter and then lock up the same way you have now.
Yet when I started my Hex Editor at address 0xF9000000 and scrolled through the entire range up to 0xFFFFFFFF it never locked up.

So there is some mystery related to reading some addresses up in that range, but I fixed it so it would not do that at the start-up.
I also got the same stuttering when I released this because I had the thread priority on high, but it never locked up. I changed it back to normal and it has been fine since, with no stutter at all, but this did not fix your problem.



Another mystery is that for one person I disabled all of the tricky kernel business and his computer got even worse.



I need to know the exact specs of every computer that is having this problem.


L. Spiro
User avatar
L. Spiro
L. Spiro
 
Posts: 3129
Joined: Mon Jul 17, 2006 10:14 pm
Location: Tokyo, Japan

Postby ventuz » Wed Jan 23, 2008 8:40 pm

Take version 4.0.0.12.
Open any process.
Load the Disassembler and look at the list of functions in the Kernel Functions tab.
Select NtOpenProcess and go to that function. Above it you will see a bunch of NOP commands which you are free to edit.
Select some of them, right-click, and NOP Selected (which will not actually change anything but will cause a write into kernel RAM).

If it works (does not lock up), it is most likely a timing issue, since I am certain the functions for reading/writing kernel RAM are 100% stable.
Then I would be assured that it would be fixed once I change it to do this after start-up instead of during.


That part worked fine for me. Computer spec:

Win XP Pro
Intel 2.4 Ghz core 2 quad
1024 ram memory
nvidia 512 ram video card
250 GB harddrive
DirectX 9c

Umm, I don't know what else to list that matters.
ventuz
I Ask A Lot Of Questions
 
Posts: 15
Joined: Mon Jan 14, 2008 2:08 pm

Postby mezzo » Wed Jan 23, 2008 11:17 pm

t might also be a timing issue.
Take version 4.0.0.12.
Open any process.
Load the Disassembler and look at the list of functions in the Kernel Functions tab.
Select NtOpenProcess and go to that function. Above it you will see a bunch of NOP commands which you are free to edit.
Select some of them, right-click, and NOP Selected (which will not actually change anything but will cause a write into kernel RAM).


there are no NOP'S there, it's a bunch of INT3h's (CC)
(sorry bout the crappy pic)

Image

UPDATE: and overwriting the int 3's is not possible... MHS refuses to do it.
Last edited by mezzo on Wed Jan 23, 2008 11:29 pm, edited 1 time in total.
- No thanks, I already have a penguin -
User avatar
mezzo
El Mariachi
 
Posts: 739
Joined: Mon Apr 30, 2007 10:27 pm
Location: Antwerp

Postby SpeedWing » Wed Jan 23, 2008 11:24 pm

u needed the specs. here u go

Image

second

Image

3rd

Image

4rd

Image

fift

Image

sixt

Image


i hope u can find anything

good luck :)
User avatar
SpeedWing
Defragler
 
Posts: 2031
Joined: Tue Jan 01, 2008 1:00 am
Location: If there is a Will there is a Solution.

Postby wrzecion » Thu Jan 24, 2008 1:58 am

I have it too on X2 Athlon. I wait about 1h and my computer still freez.

But one time mhs start for a few seconds and fall down...
wrzecion
I Ask A Lot Of Questions
 
Posts: 15
Joined: Sat Jan 05, 2008 10:03 pm
Location: Poland, Bydgoszcz

Postby deathlord » Thu Jan 24, 2008 8:17 am

the problem i have with the new version of mhs is when i open it my pc restarts. i dont have any other programs open when i open mhs up. Can someone plz help me.


thx
deathlord
I Have A Few Questions
 
Posts: 2
Joined: Thu Jan 24, 2008 8:15 am

Postby L. Spiro » Thu Jan 24, 2008 10:14 am

I found a small bug that might be causing this problem.
Download again: http://www.memoryhacking.com/MemHack/MHS4.0.0.13.rar


L. Spiro
User avatar
L. Spiro
L. Spiro
 
Posts: 3129
Joined: Mon Jul 17, 2006 10:14 pm
Location: Tokyo, Japan

Postby L. Spiro » Thu Jan 24, 2008 1:06 pm

If it does not work, try this:
http://www.memoryhacking.com/MemHack/MHS.rar


L. Spiro
User avatar
L. Spiro
L. Spiro
 
Posts: 3129
Joined: Mon Jul 17, 2006 10:14 pm
Location: Tokyo, Japan

PreviousNext

Return to Bugs/Problems/Suggestions

Who is online

Users browsing this forum: No registered users and 0 guests