Best offers
|
Core i7 I7-920 Quad Core Processor... | $349.99 Dell Home More info |
|
Phenom II X4 965 Black Edition Quad... | $195.99 Newegg.com More info |
|
Core i5 750 Qaud Core Processor... | $199.99 Newegg.com More info |
|
P7P55D Motherboard (Intel Socket H... | $144.99 Newegg.com More info |
|
M4A785TD-V EVO AMD 785G/SB710 Socket... | $99.99 Newegg.com More info |
Undervolting Your Phenom II And Core 2 Processors
Did you know that PC power consumption can be reduced by as much as 35 W just by cutting back on CPU voltage? We looked for the best stable undervolt settings for Core 2 Quad and Phenom II X4 processors without giving up performance. Read More
-
Desktop Linux For The Windows Power User
Are you a die-hard Windows user, sworn to shun all things Apple, yet (secretly) intimidated by the pocket-protector stereotype of Linux? Fear not! We got our hands on Ubuntu 9.04 and walk you through getting it running in this step-by-step guide. Read More
-
Toaster RAID Returns, Better Than Ever
Back in 2001, Dave Goeke shared his first Linux-based NAS with us, which was literally packaged inside a toaster. His design has undergone several revisions (and a number of newer platforms) since then. Read on about his latest toaster-based RAID. Read More
- fusion for intel
- amd fusion intel cpu
- hacked amd fusion
- my drives are opening in another window
- amd fusion hack
- will amd fusion work with intel processors
- amd fusion for intel cpu hack
- how do i make amd fusion work with intel
- is amd fusion good
- is like amd fusion
- modify file new menu
- intel software like amd fusion
- intel program like amd fusion
- how to turn on pc without press button
Partners
The Games selection
crazy :
PC Breakdown
What is worst than a Fatal Error occuring during a game you did not save? Unleash your rage at your PC in this game. Blow it to pieces, it feels so...
|
adventure :
Scoobydoo: Episode 2
The sequel of Scooby and Sammy's adventures. Same principle as in the previous episode (available on this website). Click on "Instructions" to see...
|
Sponsored links
Hack: Run AMD Fusion Game Util on Intel CPUs
Next news
AMD recently released version 1.0 of its Fusion Gaming utility, but despite efforts to keep the software out of the hands of Intel users, the software can quickly be made compatible with all processors.
AMD released version 1.0 of its AMD Fusion for Gaming utility, which allows users a simple and fast way to prepare their Windows PCs for gaming. With the press of a button, the application can be used to automatically close down non-essential services, enhance the hard drive performance and even overclock the GPU and CPU.
Unfortunately for many, the AMD Fusion for Gaming utility is limited to only systems with an AMD processor, although that limitation is artificially imposed by AMD. The good news is, overcoming such an artificial limitation is often a trivial matter, which we will now demonstrate.
The first step required in this process is the download and installation of the AMD Fusion for Gaming v1.0 utility, located here. The application should install fine, even if the system does not have an AMD processor. Attempting to run the application though, without an AMD processor, will result in a notification stating that an AMD processor is required for the application to function.
Now, the next several steps can just be observed, but if you wish to follow along, you will need a debugging application and a system with a non-AMD processor. We used Ollydbg v1.10 for our debugging needs, which can be downloaded for free here.
Open Ollydbg, making sure it is run as an adminstrator, if required. Through Ollydbg, we will open (Menu > File > Open) the main executable of the AMD Fusion for Gaming utility that we had already installed, which has the filename "AMDFusion.exe". Becareful not to confuse this file with the installation file. This file is likely located in the following directory:
C:\Program Files\AMD\AMD Fusion for Gaming 1.0
If you are not already familiar with assembly code or software debugging, the seemingly cryptic code that should now appear in Ollydbg may take some time to understand. Teaching how to read assembly code though is beyond the scope of this article, but the following steps should still be simple enough to follow even without any previous experience.
As we already know, the AMDfusion.exe application seems to check if the current system uses an AMD processor and halts the applicatoin if there is none present. What we want to do is find and modify this processor-checking portion of code in the application, so that the application either bypasses the processor-check or is tricked it into thinking that we are running an AMD processor.
To do this, we will want to right-click the mouse in the main sub-window of Ollydbg, which should bring up a menu. From this menu, we want to select "Search for" and then "All referenced text strings". This in turn opens up another window, listing all the text strings that the AMDfusion.exe application uses. If you do not see the "Search for" menu option when you right click, you might be right-clicking in the wrong area.
On a hunch, we want to look through this list of text strings, keeping our eyes open for anything that may seem suspicious. Less than half of the way down the list, we should see the following suspicious text strings: "AuthenticAMD", "GenuineIntel", "CyrixInstead" and "CentaurHauls". These text strings are CPU identifiers and are likely used in determining what brand of processor the system is using.
Lets find out where in the application these text strings are being used and see if we can modify the code to our favor. To do this, right click the "AuthenticAMD" text string and select from the menu, "Follow in Dissassembler". We should now see where the "AuthenticAMD" text string is being used in the actual code; apparently the "GenuineIntel" text string is used not far away from it either.
Now that we are at the portion of code that seems to be where we want to be at, lets start making some modifications. One obvious thing we can try is to just switch the lines of code that the "AuthenticAMD" and "GenuineIntel" text strings are mentioned in. For example, the two lines of code as displayed on our system are "PUSH AMDFusio.00420E64" (for AMD) and "PUSH AMDFusio.00420E54" (for Intel), so switching them around simply means modifying a single digit in each line of code- the 6 and the 5. Simply double click the code you wish to modify to edit it. When you double click on the code, the code might appear a bit different, such as "PUSH 420E54", but do not worry, just modify the single digit that needs changing.
Once we have modified the two lines of code, the debugger should now allow us to run the AMDfusion application on Intel-based systems. To test this out, in Ollydbg lets run the loaded application (Menu > Debug > Run). The AMDfusion application should run now fine on an Intel-based system!
However, the changes we have just made in the debugger to the application are temporary. The actual AMDFusion.exe file was not modifed by the debugger when we modified those lines of code and to do so requires actually altering the file itself manually. This can be accomplished by using a hex editor. Do not quit the debugger yet though if you have it open, we will still need to refer to it in just a bit. If you wish to modify the AMD Fusion for Gaming ultility to work with your Intel-based system, you will need to atleast do the follow steps.
There are several free hex editors available for download online, but the one that we will be using can be found here. Install and open the hex editor, making sure to run the hex editor as an Administrator. Open the AMDFusion.exe file from within the hex editor (Menu > File > Open). Now, from the menu, select "Search" and then "Find". We want to search for the lines of hex code that we modified in the debugger. In our case, the first line of hex code we modified was "68 64 0E 42 00", so we enter that and hit "OK".
The hex editor should quickly find the line of code that we are searching for in the AMDFusion.exe file and once it does, we will need to modify it like we did in the debugger. In this case, we need to change "68 64 0E 42 00" to "68 54 0E 42 00". We also need to find the hex code "68 54 0E 42 00" and modify it to "68 64 0E 42 00", while being careful not to confuse it with the line of code we just changed. The above embedded image highlights which bytes of code need changing.
Once we properly modify these two bytes of hex code, we will need to save the file. To be safe, I recommend saving the file as a new file name, such as "IntelFusion.exe". You will not be able to save the file as the original name if the file is in use or is currently running.
Now, you should be able to run the newly modified file from the "AMD Fusion for Gaming 1.0" folder on an Intel-based PC, without problem. We are not responsible however for any problems or issues you may encounter with this procedure, nor do we endorse the modification of the AMDFusion.exe application. It is interesting to note however that bypassing CD checks, trial limitations and product key registrations can often be achieved using a very simliar manner to what was shown here.
Source : Tom's Hardware US
- ATI or NVIDIA please help [Graphic & Displays]
- AMD Fusion for Gaming [Games General]
- Which processor for my gaming build? [CPU & Components]
- Intel and DirectX 10 support--is ATI/AMD in serious trouble? [Graphic & Displays]
- Slowdown after upgrade [Homebuilt Systems]
Questions? Ask Tom's community!








C'mon AMD, you've got to better then that to keep your software, yours.
now thats just crap...hehehe...thats just like intel to me...
Any performance numbers before and after?
I like manual OC better. Auto overclock are usually crappy and unstable.
Why would you post such a thing? I see this as equivalent to piracy, except that AMD is giving it away to its customers. They go out and design a program that makes Windows Vista orders of magnitude more friendly, give it away for free to their customers, and you post instructions on how to steal it. Is this a good way to encourage them to make more useful applications?
For shame
Wow, I thought this would be a brief article about the hack, not the actual hack. If Tom's is posting this now, should I worry about being infected by a botnet on here sometime soon too?
"useful"??? You don't think this placebo crap actually improves performance, do you? If you need to shut down services to gain extra FPS in your games I suggest you add an extra stick of RAM in your system.
You can customize the program to best fit your system. There are three pre-configured profiles though, some of which actually do require ATI graphics or an AMD processor to fully function. (ie: overclocking)
The most basic profile simply seems to disable background services. On an old AMD Sempron machine, running Windows XP and Nvidia-based graphics, we compared performance before and after with 3DMark06 while using the basic profile. We saw virtually no performance difference. Results will likely vary, from system to system, of course.
The more advanced profiles will likely result in more substantial gains.
For shame
Steal? its free you can't steal something if its free LoL........
It may not actually do a whole lot for performance, but it might help system stability by preventing certain background services from suddenly deciding to being a resource hog.
If you do actually have an AMD CPU or ATI graphics card, the auto-overclocking feature might actually be of some use. Intel users will not benefit from these features, it seems.
Just did this, the first part "look for authenticAMD" this comments don't exist in their lastest program. But you can use the hex editor to find the statement and change it. I ran a simply CSS test with 4 gigs of ram on windows 7 got 375 fps before, after running program at "expert" level get 396 fps. Thats for anyone that wanted an example, GL HF.
The procedure was posted for educational purposes, so if it does not work for everyone, I'm sorry, but you get the idea I hope. I'm sure even AMD users will find this article interesting.
@ smithereen
Toms Didn't tell us in any way how to "steal" this software, they told us how to mod it to do more then it originally would.
You wouldn't say overclocking from 3.0Ghz to 3.6Ghz is stealing money because they (intel/amd/via/whoever) also sell a 3.6Ghz chip, would you?
Or perhaps you would if a utility came out which unlocked the multiplier on all processors (black editions or not).
There seem to be a lot of pro/con piracy articles and comments lately.
Having something like this on toms is nice; as a coder it not only lets me know that it can be done to other software, but also my own. Why I didn't think of it, idk, guess I had to much hardware and not enough software on my mind.
Either way, a 'hack' like this could be very useful to a lot of people who are not pirates.
Just because it "could be very useful" to people with other intentions does not justify posting it in the first place. That is like saying posting how to commit murder "could be useful" to hunters. Also, I wouldn't say this is similar in any why to overclocking, or that it is merely being "modded to do more than it originally would". It is a copyrighted piece of software that AMD released as a bonus or an incentive to its customers, not for Intel's, and I do not see why Intel users are entitled to AMD's hard work.
i had no difference i ran 3dMark06 and scored a whole 2 points higher so yea this is sort of useless
@smithereen
This is a site for information. to say toms isn't justified to post information is like saying information is illegal. This is the free world, where ideas and knowledge flow freely (if AMD cares that it is this easy now they can fix it because someone found it and freely posted it). If you want to live in a justified world move to china.
Next you'll be telling us we should burn all programming books so that the people who figured this out wouldn't have the learning tools to know how next time.
And for the sake of argument. To kill someone you need only slice their throat from behind with a sharp knife. Make sure the slice is deep and across the airways as this will improve you chances of stopping life. free world, freedom of the press, STFU (or rather don't because it's a free country, but we dont have to listen to your naivety)
Welcome to Reverse Engineering.
Um, was it really necessary to put in the paragraph that it is 'interesting' that you can use this technique we just showed to steal software?
Also, this is a pretty crappy thing to do, AMD developed this software and it is a bit of a 'reward' to people running AMD gear, you guys just killed it, why would AMD bother developing this sort of stuff if a mainstream computer 'news' site is going to joyfully tell people how to crack it. Sure some people would have worked it out anyway, but for an enthusiast site to do this is pretty pathetic really. If I was AMD I'd come after you under the DMCA or similar, you are intentionally helping to ruin there business, not cool.
It is not naive to believe that a 'news site' is being unethical by producing step-by step instructions that will directly harm another business. It is news perhaps to post that people are using it on intel, even news to say it was as simple as hex editing, to show the step by step as a tutorial is for warez sites, not for a news service. It is simply unethical, as a journalist, I personally wouldn't do it.
It's a Sad Day that TomsHardware is posting material on how to hack software licensing check.
The Forum Moderators are so good at preventing the discussion of such topics but you turn around and write an article on how to do it?
That's it, I'm done with this shit. I'm boycotting Tom's until you do something to fix this. You should remove the article and then OFFER AMD A PUBLIC APOLOGY. You guys are douche bags. I was pissed off when you destroyed Tom's Games, but now this? Shame, I will miss you, but if I worked for AMD I'd be pissed then sue the shit out of you.
PS- FIRE THE FUCKER WHO WROTE THIS AND THE EDITOR WHO APPROVED IT.
GOOD DAY.
This isnt a 'software licensing hack'. Seriously, if AMD was THAT concearned about protecting their ip with this, they would have set countermeasures in place, and written a more stringent EULA. I can promise you Toms/Best of Media isnt stupid enough to post something like this without reading the program EULA, and risk a lawsuit with a hardware giant. So stop the bitching.
And I'd much rather see a how-to on a decent editorial site than see a hacked .exe on torrents with a repackaged virus. Thanks for the info Toms. I always wanted to use the fusion. I am afterall a HUGE AMD customer, even if my gaming machine doesnt use their old tech processors. (I use mainly AMD dualcore chips in 90% of the home PC's I make.)
LOL... Even free software is protected by copyright laws the moment it was created.
I'm a bit disappointed at Tom's right now. I find this rather disturbing and unethical from my point of view. I guess its ok to post something about it but not how to actually do it.
And besides, Intel wouldn't need this since their i7's are faster than AMD's by default.
I agree that it is a nice idea to have a software like this run on any system. Can't we wait for someone else to do it from scratch? or perhaps wait for AMD to release a version that will work on all systems?
But Tom's, cracking Fusion like this... Seriously?
Everyone should just get Apple Macs and be done with all this PC tinkering hoo hoo!
Articles like this by writers at THG suck! I agree that the writer and editor that approved it should be disciplined.
Everyone should just get Apple Macs and be done with all this PC tinkering hoo hoo!
+ 1
I'm in the process of retrofitting my newly downloaded and hacked fusion with Intel graphics. But I havent settled on a name yet. What should it be?
Oh, and nice 'macbook' and 'macbook' pro. It couldnt be more obvious that you're the same person.
Oh, and nice 'macbook' and 'macbook' pro. It couldnt be more obvious that you're the same person.
I'm not, but it looks that way doesn't it.
Do I sense a TomsHackWare.com soon?
Steal? its free you can't steal something if its free LoL........
You clearly don't know one thing about copyrights!