
Originally Posted by
UniverseGaming
actually ur wrong ;)
Code:
bool GetHW_Info()
{
char serialNumber[1024];
get_drive_serial_number( "C:\\", serialNumber );
if( !stricmp(RSA_Decrypt( 0 ), serialNumber) )
{
return false;
}
return false;
}
if( !stricmp(RSA_Decrypt( 0 ), serialNumber) )
the !stricmp means if not equal to
which means if the hard drive serial is not equal to the serial number found in the license file return true which disables the guard if not return false there for returning false on both tricks the guard into thinking theres a valid license
please read the code b4 u make yourself look ignorant.
i just love how people assume they know what they are talking about.... when they have no freaking idea...
and by saying that that is incorrect your saying that iMods method is incorrect because that was his idea to make it work.
Not really true dude ;) i never would use
PHP Code:
bool GetHW_Info()
{
char serialNumber[1024];
get_drive_serial_number( "C:\\", serialNumber );
if( !stricmp(RSA_Decrypt( 0 ), serialNumber) )
{
return false;
}
return false;
}
My code would look like
PHP Code:
bool GetHW_Info()
{
return true;
}