Love life, love Boqi.
Hello everyone, I am Boqi. Today I will bring you a tutorial on how to crack Mengtong.
Android#
- Use MT Manager to view Mengtong package.
- In classes2.dex, click on Dex++ Editor.
- Search: gitcode
- You can replace it with your own YAML address. The specific YAML configuration file can be found at
- Download a YAML file from https://gitcode.net/-/snippets/4144/raw/master/android_config_1.2.1.yaml
- Then create an account on gitcode.net, put the code in the code snippet, and you will get an external link similar to https://gitcode.net/-/snippets/4144/raw/master/android_config_1.2.1.yaml. Then replace the addresses of the three images above with this link, or create your own OSS, download the android_config.yaml, put it in the OSS, and replace the original address with it.
App name modification
In resources.arsc
Just modify this
Replace all icons in the /res folder in the root directory of the app
It is best to replace all the icons in it because the names are all different
There is nothing else, just sign with V1+V2
The download link for Mengtong files is in the TG group
Link: https://t.me/v2matrixshare/96280
MAC#
First provide the DWG file https://t.me/v2matrixshare/96304
First, let's teach you how to decompress the app.asar of Electron
- Install npm globally.
npm is the package management tool for Node.js. We need to install asar through npm, so we need to install npm first. If you have already installed the latest version of Node.js on your computer, then Node.js has automatically installed npm for you. The download address for Node.js is: https://nodejs.org/en/
- Make sure npm is installed correctly.
You can determine whether npm is installed correctly by using the "npm -v" command to see if it returns the version number.
- Install asar globally.
npm install -g asar or cnpm install -g asar
- Make sure asar is installed correctly.
asar -V
- Decompress the asar file.
Execute asar extract app.asar ./ in the root directory of the asar file.
The asar extract command has two parameters:
The first parameter is the asar file to be decompressed.
The second parameter is the path where the decompressed files will be stored. "./" means putting them in the root directory.
- Find the extracted files.
OK, the prerequisites are complete.
After unpacking, there is a js file in the dist folder, and the content is
const originFetch = fetch; Object.defineProperty(window, "fetch", { configurable: true, enumerable: true, get() { return (url,options) => { // Intercept the API for obtaining panel addresses and replace them with your own addresses if(!url.includes("api/v1")){ url = "http://your_address/config.json" } // Prevent anti-piracy reporting if(url.includes("fake")){ alert(url); while(1){} } return originFetch(url,options) } } }); // Change the title of the login page and the name of the application at runtime window.addEventListener('DOMContentLoaded',()=>{ document.querySelector("title").innerText="Jiushiningmou" })
document.querySelector("title").innerText="8k Cloud Acceleration"
Change this 8k Cloud to your own title
On MacOS, download and install Packages
Packages link: https://t.me/v2matrixshare/96301
Remember this directory, the compiled installation package will be saved in this directory
After repackaging into asar, it can be used
Mac modify application icon/name
-
Open the file manager.
-
Find Applications - the program that needs to be modified.
-
Right-click and show package contents - contents - resources - replace appicon.icns (don't forget to back up).
-
After replacement, go back to step 2.
-
Open the prepared png icon file, command+c to copy, then right-click the application - show info - click the icon - command+v - complete the replacement.
To modify the name, just go to step 2, right-click the program to be modified, and rename it.
That's it for the MAC tutorial.
Windows#
As usual, first provide the client download link for Windows https://t.me/v2matrixshare/96306
Similarly, decompress and replace app.asar
Replace Windows client
In the Windows system, download the exe icon replacement tool
Link: https://t.me/v2matrixshare/96307
After that, you can rename the exe to the name you want to set
Windows client packaging
In the Windows system, download the Inno Setup compiler and open it
Link: https://t.me/v2matrixshare/96308
Select "Create a new script file with the script wizard"
Fill in the basic information
Application target base folder --> Custom
*Directory fill in C:
*Remove the check mark for "Allow the user to change the application folder"
*The application folder name must be in English path!!! Not Chinese!!!
Select "Application main executable file"
Click "Browse" to select the main program file Morck.exe
Select "Other application files"
Click "Add folder" and select the folder of the program
In the prompt "Include files in subfolders" choose "Yes"
Click "Browse" in "Custom" installation program icon file" to select your ico format icon file
Then click Finish, but do not compile yet, choose No
Modify the default check to create a desktop shortcut
In the script code [Tasks] project
Change Flags: unchecked to Flags: checkablealone
After modifying, click "Build" in the menu bar -> "Compile".
The packaged file: If the compilation script is not saved, it will be saved in the My Documents/Output folder
Otherwise, save it in the same directory as the script!
End
Love life, love Boqi!