DVDFabExtendedLicense/README.md

140 lines
5.0 KiB
Markdown
Raw Permalink Normal View History

2024-09-30 14:29:07 +00:00
# DVDFab: Extended License
2024-09-30 09:50:09 +00:00
2024-10-05 12:25:44 +00:00
The **DVDFab Extended License** is designed to manage licenses for DVDFab software effectively. It offers advanced features that enable unrestricted access to all DVDFab products while ensuring user privacy and security.
2024-09-30 09:51:07 +00:00
## Features
2024-10-05 12:25:44 +00:00
- 🔒 **Analytics Deactivation**: Completely disable data collection and analytics in DVDFab to protect user privacy.
- 🔓 **Unlock All Products & Features**: Gain unrestricted access to every product and feature available within the DVDFab suite.
- 💻 **Cross-Platform Support**: Compatible with multiple operating systems, including Windows, macOS, and Android.
- 🛠️ **Custom Ticket Generation**: Generate fully customized tickets with various licensing options, including "Lifetime," "Subscriber," "Free," or "No Login."
- 🌐 **Mocking Server Support**: Integrate with HTTP interception tools to modify requests and bypass server-side verification for enhanced functionality.
2024-09-30 09:51:07 +00:00
## Prerequisites
2024-10-05 12:25:44 +00:00
To use this tool, you will need **HTTP Toolkit (Pro)** for intercepting and modifying network traffic. You can download it from the [HTTP Toolkit Website](https://httptoolkit.com/).
2024-09-30 09:51:07 +00:00
## Installation
2024-10-05 12:25:44 +00:00
### Step 1: Clone the Repository
2024-09-30 09:51:07 +00:00
2024-10-05 12:25:44 +00:00
Open your terminal and run the following commands:
```bash
git clone https://cdm-project.com/hyugogirubato/DVDFabExtendedLicense
```
### Step 2: Install Python Dependencies
Install the required packages by running:
```bash
pip install -r requirements.txt
```
2024-09-30 09:51:07 +00:00
## Usage
2024-09-30 14:29:07 +00:00
### 1. Import Certificates
2024-10-05 12:25:44 +00:00
Import the `.crt` certificates located in the `docs` folder into the **HTTP Toolkit** settings to enable interception of the application's network traffic.
2024-09-30 14:29:07 +00:00
2024-09-30 14:34:32 +00:00
<img src="./docs/images/import_ca.png" width="60%">
2024-09-30 14:29:07 +00:00
2024-10-05 12:25:44 +00:00
2024-09-30 14:29:07 +00:00
### 2. Generate Custom Mock Rules
2024-10-05 12:25:44 +00:00
Create mock rules to be used with **HTTP Toolkit** for intercepting and modifying network traffic.
2024-09-30 14:29:07 +00:00
Run the following command:
```bash
python rules.py --rules <path_to_rules> --output <output_path>
```
For example:
```bash
python rules.py --rules template.json --output my_rules.json
```
After generating the rules, import the resulting file into HTTP Toolkit.
2024-09-30 09:51:07 +00:00
2024-10-05 12:25:44 +00:00
### 3. Run the Mock Server
> [!WARNING]
> This step is required for applications that process DRM content but optional for others.
Before launching any DVDFab product with the mock rules, ensure the server is running.
To run the server:
```bash
python server.py --export
```
2024-09-30 09:51:07 +00:00
2024-10-05 12:25:44 +00:00
### 4. Bypass License Authentication
2024-09-30 09:51:07 +00:00
2024-10-05 12:25:44 +00:00
After generating custom mock rules, import them into **HTTP Toolkit**. Launch the DVDFab software through an intercepted terminal and log in with your credentials. After logging in, close the software and enable the **Bypass Auth Ticket** rule to activate the software.
2024-09-30 09:51:07 +00:00
2024-09-30 14:34:32 +00:00
<img src="./docs/images/mock_rules.png" width="60%">
2024-09-30 14:29:07 +00:00
2024-10-05 12:25:44 +00:00
### 5. Advanced License Management
2024-09-30 14:29:07 +00:00
2024-10-05 12:25:44 +00:00
> [!NOTE]
> By default, the generated ticket corresponds to a Fab365 ticket. However, this module allows users to generate other ticket formats based on their preferences.
2024-09-30 14:29:07 +00:00
2024-10-05 12:25:44 +00:00
This tool provides multiple ways to manage tickets, including logging in, using an existing token, or extracting information from old tickets.
2024-09-30 14:34:32 +00:00
2024-10-05 12:25:44 +00:00
<img src="./docs/images/ticket_info.png" width="80%">
2024-09-30 14:29:07 +00:00
#### Command Options for Ticket Management
```bash
usage: ticket.py [-h] [--type {SUBSCRIBER,LIFETIME,FREE,NO_LOGIN}]
[--version <version>] [--expire <expire>]
{login,token,ticket,info} ...
```
2024-10-05 12:25:44 +00:00
**Positional Arguments**:
2024-09-30 14:29:07 +00:00
- `login` Log in using account credentials.
- `token` Use an existing user token.
- `ticket` Use a pre-existing ticket string.
- `info` Extract ticket information from a serialized ticket string.
2024-10-05 12:25:44 +00:00
**Optional Arguments**:
- `--type` Ticket type options: `SUBSCRIBER`, `LIFETIME`, `FREE`, `NO_LOGIN`.
2024-09-30 14:29:07 +00:00
- `--version` Specify software version (default: 6200).
2024-10-05 12:25:44 +00:00
- `--expire` Specify the number of days until the ticket expires (default: 365 days).
2024-09-30 14:29:07 +00:00
#### Example Ticket Generation
2024-10-05 12:25:44 +00:00
1. **Log in and Generate a Ticket**:
2024-09-30 09:51:07 +00:00
```bash
2024-09-30 14:29:07 +00:00
python ticket.py login myemail@example.com mypassword --client WINDOWS
2024-09-30 09:51:07 +00:00
```
2024-10-05 12:25:44 +00:00
2. **Use an Existing Token**:
2024-09-30 09:51:07 +00:00
```bash
2024-09-30 14:29:07 +00:00
python ticket.py token "your-32-char-token"
2024-09-30 09:51:07 +00:00
```
2024-10-05 12:25:44 +00:00
3. **Extract Information from a Ticket**:
2024-09-30 14:29:07 +00:00
```bash
python ticket.py info "serialized-ticket-string"
```
2024-09-30 09:51:07 +00:00
2024-09-30 14:29:07 +00:00
## Common Issues
2024-09-30 09:51:07 +00:00
2024-10-05 12:25:44 +00:00
- **Invalid Token Error**: Ensure that your token is exactly 32 characters long. If it's shorter or longer, regenerate it or verify the token source.
- **Expired License**: If you encounter an expired license error, check the expiration date of your ticket using the `info` command and generate a new ticket if necessary.
- **DRM Block**: If the software blocks your IP/MAC address, verify that youre using the correct DRM circumvention server configuration.
2024-09-30 09:51:07 +00:00
2024-09-30 14:29:07 +00:00
## License
2024-09-30 09:51:07 +00:00
2024-09-30 14:29:07 +00:00
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.
2024-09-30 09:51:07 +00:00
## Disclaimer
2024-10-05 12:25:44 +00:00
This tool is provided for **educational purposes only**. Unauthorized use of software tools to bypass security mechanisms, including licensing, may violate laws and terms of service. Always ensure compliance with software terms of use before attempting any modifications.