Web : http://mxb.cjb.net
Contact Me : [email protected] or [email protected]


Main | Index

Adobe LiveMotion 1.0.2.14 - VBOX 4.3.1

Type : Animation
Protection : VBOX 4.3.1
Tech : RegEdit & File delete


Crack :

Have you ever wondered how VBOX keeps track of your 30 day trial.
VBOX is realy a good protector.But it has its own weak points.

"VSetupT.EXE" is used to make valid LIC files while installing any VBOX 4.3.1 protected

software.If we are able to delete secret registry key and files ,we can use "VSetupT.EXE"

to extend our trial period to what ever we whish :)

In Adobe Live Motion - I was unable to find "VSetupT.EXE".It seems that install
sheild has packed this baby ...

Secret Behind VSetupT.EXE :

VSetupT.EXE make four important files in your computer :

C:\os035552.bin
C:\WINDOWS\SYSTEM\ws434187.ocx

C:\WINDOWS\Vbox\Licenses\Live Motion_1.0.2_A2DA.lic
C:\WINDOWS\Vbox\Licenses\Live Motion_1.0.2_A2DA.prf

These files control "30 DAY Trial" :)
I used RegMon to find secret registry keys.
VBOX also creates two secret key in registry :

HKEY_CLASSES_ROOT\CLSID\{E2DE9032-785F-3661-A217-83160344F9D3}
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.dll\{6B857E45-7263-290E-83FF-C2F0156EE890}

These keys are made on first run .

So my point is that if your trial period is over delete following files :

C:\os035552.bin
C:\WINDOWS\SYSTEM\ws434187.ocx
C:\WINDOWS\Vbox\Licenses\Live Motion_1.0.2_A2DA.lic
C:\WINDOWS\Vbox\Licenses\Live Motion_1.0.2_A2DA.prf

And also use "Regedit.exe" which comes with your windows9x to delete following RegKey:

HKEY_CLASSES_ROOT\CLSID\{E2DE9032-785F-3661-A217-83160344F9D3}
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.dll\{6B857E45-7263-290E-83FF-C2F0156EE890}

Now last step :

Uninstall Adobe Live Motion and again reinstall it ... this is done because we were unable to
obtain "VSetupT.exe" which produces LIC files ....

NB : I don't know if same registry keys are made by VBOX on all computers.
//===================================================================================
//MxB Net
//***********************************
//email : [email protected]
//web : http://mxb.cjb.net
//***********************************
//Adobe Live Motion 1.0.2.14
//===================================================================
#include <windows.h>
//===================================================================
int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,
LPSTR lpCmdLine,int nShowCmd)
{
//===============================================================
char InfoText[] = "MxB - Adobe Live Motion 1.0.2.14";
long lResult = 0;
HKEY hKey =0;
int i =0;

char windir[MAX_PATH];
char sysdir[MAX_PATH];
bool error = false;
PROCESS_INFORMATION pi;
STARTUPINFO si;
char* cl;
//===============================================================
char firstkey[] = "{E2DE9032-785F-3661-A217-83160344F9D3}";
char seckey[] = "{6B857E45-7263-290E-83FF-C2F0156EE890}";
//===============================================================
//Delete Registry Keys
//===============================================================
//First Key
lResult = RegOpenKey(HKEY_CLASSES_ROOT,"CLSID",&hKey);

if(lResult != ERROR_SUCCESS)
{
MessageBox(NULL,"Unable to open Registry..exiting",InfoText,MB_OK);
return 0;
}
lResult = RegDeleteKey(hKey,firstkey);
if(lResult != ERROR_SUCCESS)
{
MessageBox(NULL,"Unable to deleted First Key ...",InfoText,MB_OK);
error = true;
}

RegCloseKey(hKey);
//================================================================
//Second Key
lResult = RegOpenKey(HKEY_LOCAL_MACHINE,"SOFTWARE\\Classes\\.dll",&hKey);

if(lResult != ERROR_SUCCESS)
{
MessageBox(NULL,"Unable to open Registry..exiting",InfoText,MB_OK);
return 0;
}

lResult = RegDeleteKey(hKey,seckey);
if(lResult != ERROR_SUCCESS)
{
MessageBox(NULL,"Unable to deleted Second Key ...",InfoText,MB_OK);
error = true;
}

RegCloseKey(hKey);

//===============================================================
//Delete Files ...
GetWindowsDirectory(windir,sizeof(windir));
GetSystemDirectory(sysdir,sizeof(sysdir));
strcat(windir,"\\Vbox\\Licenses\\Live Motion_1.0.2_A2DA.lic");
strcat(sysdir,"\\ws434187.ocx");
//===============================================================
if(!DeleteFile(windir))
{
MessageBox(NULL,"Unable to deleted Lic File ...",InfoText,MB_OK);
error = true;
}
//===============================================================
GetWindowsDirectory(windir,sizeof(windir));
strcat(windir,"\\Vbox\\Licenses\\Live Motion_1.0.2_A2DA.prf");

if(!DeleteFile(windir))
{
MessageBox(NULL,"Unable to deleted Prf File ...",InfoText,MB_OK);
error = true;
}
//================================================================
if(!DeleteFile(sysdir))
{
MessageBox(NULL,"Unable to deleted OCX File ...",InfoText,MB_OK);
error = true;
}
//===============================================================
//Delete os*****.bin
GetWindowsDirectory(windir,sizeof(windir));

for(i=0;i < MAX_PATH;i++)
{
if(windir[i] == '\\')
{
windir[i] = '\0';
}
}
strcat(windir,"\\os035552.bin");

if(!DeleteFile(windir))
{
MessageBox(NULL,"Unable to deleted BIN File ...",InfoText,MB_OK);
error = true;
}
//===============================================================
if(error ==false)
{
MessageBox(NULL,"Removed VBOX Files and Registry Keys ...",InfoText,MB_OK);
}

//===============================================================

if(error == false)
MessageBox(NULL,"Now please run the \"Setup.exe\" after uninstalling Live Motion",
InfoText,MB_OK);
return 0;

}
//===================================================================================