4 Commits
v1.1 ... main

Author SHA1 Message Date
Deja
91f6797d51 README.md
Fixed a small grammatical error.
2024-08-22 14:58:06 +00:00
Deja
930c30677f v1.1.2 (2)
General bug fixes. This update is recommended for everyone.
2024-08-22 14:35:53 +00:00
Deja
b8e22740e2 v1.1.2 (1)
General bug fixes. This update is recommended for everyone.
2024-08-22 14:33:12 +00:00
Deja
bb247bafc0 v1.1.1
Added ban prevention and refined the code.
2024-08-22 02:38:56 +00:00
6 changed files with 157 additions and 38 deletions

View File

@@ -2,16 +2,24 @@
A simple and efficient server emulator for DVDFab products; including DVDFab, StreamFab, MusicFab and more...
## Mirrors
_**I do not have a GitHub repository for this project. If you see this project on GitHub, it is an unofficial mirror. The only official source is [The CDM-Project](https://cdm-project.com).**_
## Installation
Download the distribution (`DVDFabServerEmulator.zip`) and unpack it to a directory you can easily access.
Download the [latest distribution (`DVDFabServerEmulator.zip`)](https://cdm-project.com/Deja/DVDFabServerEmulator/releases/latest) and unpack it to a directory you can easily access.
Afterwards, run the runtime script (`start.bat`) and enjoy! You can now install and use any DVDFab software locally without having to connect to external authentication servers.
Afterwards, run the runtime script (`start.bat`) and enjoy! You can now install and use any DVDFab software locally without having to connect to any external authentication servers.
Please note that you will need to keep the emulator/proxy running whilst using DVDFab software.
_**It is a requirement for you to press (`CTRL-C`) to disconnect from the local proxy after you're done using it, as it can interfere with other programs.**_
_If you closed the emulator without pressing (`CTRL-C`), you can run the clean-up script (`stop.bat`)._
## Notes
This project is not affiliated with StreamFab or any other subsidiary of DVDFab and is only intended to allow legitimately licensed users of the DVDFab software suite to use their rightfully purchased software offline without having to connect to an offshore authentication server.
This project is not affiliated with StreamFab or any other subsidiary of DVDFab, and does not contain any copyrighted work.
It is not intended to promote or encourage piracy of any kind, and should only be used by legitimate owners of DVDFab software.
This software is only intended to allow legitimately licensed users of the DVDFab software suite to use their rightfully purchased software without having to connect to any external authentication servers, it is not intended to promote or encourage piracy of any kind, and should only be used by legitimate owners of DVDFab software.

135
index.js
View File

@@ -1,5 +1,5 @@
/*
DVDFab Server Emulator v1.1
DVDFab Server Emulator v1.1.2
*/
// Libraries
@@ -8,14 +8,91 @@ const path = require('path');
const crypto = require('crypto');
const mockttp = require('mockttp');
// Configuration
// Classes
class Session {
constructor() {
this.emailDomains = ['hotmail.com', 'gmail.com', 'yahoo.com', 'outlook.com', 'protonmail.com', 'yandex.com'];
this.emailCharacters = 'abcdefghijklmnopqrstuvwxyz0123456789.-';
this.currentEmail = null;
this.currentMachineId = null;
this.usage = 0;
this.generateNewIdentity();
}
generateRandomString(length) {
return Array(length).fill(null).map(() => this.emailCharacters.charAt(Math.floor(Math.random() * this.emailCharacters.length))).join('');
}
generateMacAddress() {
const macBytes = Array.from({ length: 12 }, () => Math.floor(Math.random() * 256));
const firstMac = macBytes.slice(0, 6).map(_ => _.toString(16).padStart(2, '0')).join('-');
const secondMac = macBytes.slice(6).map(_ => _.toString(16).padStart(2, '0')).join('-');
return `${firstMac}:${secondMac}`;
}
generateNewIdentity() {
this.currentEmail = `${this.generateRandomString(Math.floor(Math.random() * 10) + 5)}@${this.emailDomains[Math.floor(Math.random() * this.emailDomains.length)]}`;
this.currentMachineId = this.generateMacAddress();
}
patchBoundary(data) {
if (this.usage === 3) {
this.usage = 0;
this.generateNewIdentity();
}
const macRegex = /^([0-9a-f]{2}-){5}[0-9a-f]{2}(:([0-9a-f]{2}-){5}[0-9a-f]{2})?/;
const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
const subscriptionRegex = /^365$/;
for (const key in data) {
const value = data[key];
if (macRegex.test(value)) {
data[key] = this.currentMachineId;
} else if (emailRegex.test(value)) {
data[key] = this.currentEmail;
} else if (subscriptionRegex.test(value)) {
data[key] = 'trial';
}
}
this.usage++;
return data;
}
}
// Constants
const productList = fs.readFileSync(path.join(__dirname, 'products.txt'), 'utf8').trim().split('\n').map(Number);
const daysLeft = Math.floor((new Date('9999-12-31T23:59:59.999Z') - new Date()) / 1000 / 60 / 60 / 24);
const currentDate = new Date();
const currentVersion = fs.readFileSync(path.join(__dirname, 'version.txt'), 'utf8').trim();
const randomToken = crypto.randomBytes(16).toString('hex');
// Ticket
// Functions
function parseBoundary(data, boundary) {
const parts = data.split(`--${boundary}`).filter(part => part.trim() && part !== '--');
const formData = {};
parts.forEach(part => {
const match = /Content-Disposition: form-data; name="([^"]+)"\r\n\r\n([\s\S]+)/.exec(part);
if (match) {
formData[match[1]] = match[2].trim();
}
});
return formData;
}
function buildMultipartBody(data, boundary) {
let body = '';
for (const [key, value] of Object.entries(data)) {
body += `--${boundary}\r\nContent-Disposition: form-data; name="${key}"\r\n\r\n${value}\r\n`;
}
body += `--${boundary}--\r\n`;
return body;
}
// Runtime
const ticket = ['1'];
productList.forEach((product) => {
ticket.push(`${product}:${253402300799}`);
@@ -35,6 +112,7 @@ ticket.push('TM:0');
(async () => {
const https = await mockttp.generateCACertificate();
const proxyServer = mockttp.getLocal({ https });
const session = new Session();
proxyServer.forPost(/https:\/\/.+\/auth\/v[0-5]+\//).thenReply(200,
ticket.join('|')
@@ -67,7 +145,7 @@ ticket.push('TM:0');
);
proxyServer.forPost(/https:\/\/drm-u[0-9]+\.dvdfab\.cn\/ak\/re\/downloadex\//).thenReply(200,
'{"R":"0","num":69420,"count":"69420"}',
'{"R":"0","num":100,"count":"100"}',
{ 'content-type': 'text/html; charset=UTF-8' }
);
@@ -77,23 +155,46 @@ ticket.push('TM:0');
proxyServer.forPost(/https:\/\/.+\/\/products\/client_upgrade_license_v2/).thenCloseConnection();
proxyServer.forPost(/^https:\/\/.+\/ak\/uc_v[0-9]+\//).thenPassThrough({
beforeRequest: async (originalRequest) => {
if (originalRequest.headers['content-type'] && originalRequest.headers['content-type'].includes('multipart/form-data')) {
const boundaryMatch = /boundary=(.+)/.exec(originalRequest.headers['content-type']);
if (boundaryMatch) {
const boundary = boundaryMatch[1];
const formData = parseBoundary(originalRequest.body.buffer.toString(), boundary);
const patchedData = session.patchBoundary(formData);
const newBody = buildMultipartBody(patchedData, boundary);
originalRequest.body = Buffer.from(newBody);
originalRequest.headers['content-length'] = Buffer.byteLength(newBody).toString();
}
}
return originalRequest;
}
});
await proxyServer.forUnmatchedRequest().thenPassThrough();
proxyServer.start(8000)
console.log();
console.log(" +=============================================================+");
console.log(" | DVDFab Server Emulator has started... |");
console.log(" | You may now use any DVDFab software. |");
console.log(" | Press CTRL-C or close this window to stop the emulator. |");
console.log(" | You can safely ignore any errors. |");
console.log(" +=============================================================+");
console.log(" | If you have any problems with your network after |");
console.log(" | disconnecting from the local proxy, please run the |");
console.log(" | 'stop.bat' script. |");
console.log(" +=============================================================+");
console.log(" | If you got this script from anywhere apart from |");
console.log(" | The CDM-Project, you likely have a malicious copy. |");
console.log(" +=============================================================+");
console.log(' +=============================================================+');
console.log(' | DVDFab Server Emulator has started... |');
console.log(' | You may now use any DVDFab software. |');
console.log(' | Press CTRL-C to stop the emulator. |');
console.log(' | You can safely ignore any errors. |');
console.log(' +=============================================================+');
console.log(' | If you got this script from anywhere apart from |');
console.log(' | The CDM-Project, you likely have a malicious copy. |');
console.log(' +=============================================================+');
console.log();
console.log(' !-------------------------------------------------------------!');
console.log(' ! !!!!!!!!! READ THIS OR YOU WILL SUFFER, LITERALLY !!!!!!!!! !');
console.log(' !-------------------------------------------------------------!');
console.log(' ! ONCE YOU ARE READY, DO NOT JUST CLOSE THE EMULATOR! !');
console.log(' ! Using CTRL-C will properly disconnect you from the proxy. !');
console.log(' ! If you used the CLOSE BUTTON, run the \'stop.bat\' script. !');
console.log(' !-------------------------------------------------------------!');
console.log();
})();

View File

@@ -1,14 +1,14 @@
{
"name": "dvdfabserveremulator",
"version": "1.0.0",
"description": "Emulate DVDFab's license server locally.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "AGPL-3.0-only",
"dependencies": {
"mockttp": "^3.15.1"
}
}
{
"name": "dvdfabserveremulator",
"version": "1.1.2",
"description": "A simple and efficient server emulator for DVDFab products; including DVDFab, StreamFab, MusicFab and more...",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "AGPL-3.0-only",
"dependencies": {
"mockttp": "^3.15.1"
}
}

View File

@@ -1,6 +1,16 @@
@echo off
if "%~1"=="-FIXED_CTRL_C" (
SHIFT
) ELSE (
CALL <NUL %0 -FIXED_CTRL_C %*
GOTO :EOF
)
cd /d %~dp0
@call npm install
setx http_proxy "http://localhost:8000"
setx https_proxy "http://localhost:8000"
start node .
cls
node .
setx http_proxy ""
setx https_proxy ""
exit /b 0

View File

@@ -1,5 +1,5 @@
@echo off
taskkill /f /im node.exe*
taskkill /f /im "node.exe*"
setx http_proxy ""
setx https_proxy ""
exit /b 0

View File

@@ -1 +1 @@
6194
6195