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


Main | Index

Carbon Copy Access Edition 5.51.277- VBOX 4.3

Type : Communication Program
Protection : VBOX 4.3
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.
I got Carbon Copy Access Edition from : www.compaq.com
If you look in to the folder " C:\Program Files\Carbon Copy AE\"
we can see a file named "VSetupT.exe"

Secret Behind VSetupT.EXE :

VSetupT.EXE make four important files in your computer :

C:\os291494.bin
C:\WINDOWS\SYSTEM\ws057043.ocx

C:\WINDOWS\Vbox\Licenses\ _5.51.277_5044.lic
C:\WINDOWS\Vbox\Licenses\ _5.51.277_5044.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\{EADF629A-E6FB-4AE5-8D2E-B6F995A7C0A8}
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.ini\{C2CD9A01-9F53-4411-35FA-3ECCB27B86B3}

These keys are made on first run .

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

C:\os291494.bin
C:\WINDOWS\SYSTEM\ws057043.ocx
C:\WINDOWS\Vbox\Licenses\ _5.51.277_5044.lic
C:\WINDOWS\Vbox\Licenses\ _5.51.277_5044.prf

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

HKEY_CLASSES_ROOT\CLSID\{EADF629A-E6FB-4AE5-8D2E-B6F995A7C0A8}
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.ini\{C2CD9A01-9F53-4411-35FA-3ECCB27B86B3}

Now last step :

Run the file "VSetupT.exe" to produce a fresh 30 DAY TRIAL copy.Which is found inside :
"C:\Program Files\Carbon Copy AE\"

NB : I don't know if same registry keys are made by VBOX on all computers ,any way I am
releasing crack file.Please inform me if it doesn't work on your machine.
//===================================================================================
//GL_CrAck_F0rCe
//***********************************
//email : [email protected]
//web : www.glcrackforce.50megs.com
//***********************************
//===================================================================
#include <windows.h>
//===================================================================
int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,
LPSTR lpCmdLine,int nShowCmd)
{
//===============================================================
char InfoText[] = "GL_CrAck_F0rCe - Carbon Copy Access Edition 5.51.277";
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[] = "{EADF629A-E6FB-4AE5-8D2E-B6F995A7C0A8}";
char seckey[] = "{C2CD9A01-9F53-4411-35FA-3ECCB27B86B3}";
//===============================================================
//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\\.ini",&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\\ _5.51.277_5044.lic");
strcat(sysdir,"\\ws057043.ocx");
//===============================================================
if(!DeleteFile(windir))
{
MessageBox(NULL,"Unable to deleted Lic File ...",InfoText,MB_OK);
error = true;
}
//===============================================================
GetWindowsDirectory(windir,sizeof(windir));
strcat(windir,"\\Vbox\\Licenses\\ _5.51.277_5044.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,"\\os291494.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);
}

//===============================================================
//Execute VSetupT.exe
ZeroMemory(&si,sizeof(si));
si.cb = sizeof(si);
cl = GetCommandLine();

if (!CreateProcess("VSetupT.exe",cl, NULL, NULL,FALSE,
NORMAL_PRIORITY_CLASS,NULL, NULL,&si, &pi))
{
MessageBox(NULL,"Unable to load \"VSetupT.exe\" ...",InfoText,MB_OK);
error = true;
}else
{
MessageBox(NULL,"Loaded \"VSetupT.exe\" ...",InfoText,MB_OK);
}
//===============================================================

return 0;

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