nopnop
03-30-2009, 02:58 PM
Hi all
I'm trying to reverse the application http://www.netleix.fr/download/VideoPosterInstaller.msi
which need FRAMEWORK 3.5 to work
the serial seems to be easy to find with reflector , but the pb is the web registration :
string[] strArray = client.DownloadString("http://www.netleix.fr/registration/activate.php?product=videoposter&serial=" + this.Serial + "&hardwareid=" + this.GetHardwareID()).Split(new char[] { '$' });
if (!(strArray[0] == "OK"))
{
throw new Exception(HttpUtility.HtmlDecode(strArray[0]));
}
string str2 = strArray[1];
if (str2 != this.GenerateActivationCode())
{
throw new Exception("bad boy");
So I've decided to disassemble the EXE, drop the web registration chek, and the recompile it.
but each time I try to recompile it, i've got an error
Even if I try to compile it again without any changes, I"ve got some errors;
what can I do ?
I'm trying to reverse the application http://www.netleix.fr/download/VideoPosterInstaller.msi
which need FRAMEWORK 3.5 to work
the serial seems to be easy to find with reflector , but the pb is the web registration :
string[] strArray = client.DownloadString("http://www.netleix.fr/registration/activate.php?product=videoposter&serial=" + this.Serial + "&hardwareid=" + this.GetHardwareID()).Split(new char[] { '$' });
if (!(strArray[0] == "OK"))
{
throw new Exception(HttpUtility.HtmlDecode(strArray[0]));
}
string str2 = strArray[1];
if (str2 != this.GenerateActivationCode())
{
throw new Exception("bad boy");
So I've decided to disassemble the EXE, drop the web registration chek, and the recompile it.
but each time I try to recompile it, i've got an error
Even if I try to compile it again without any changes, I"ve got some errors;
what can I do ?