boqi

boqi

boqi

Markdown Translation Tutorial for MoeTong on Three Platforms

Love life, love Boqi.

Hello everyone, I am Boqi. Today I will bring you a tutorial on how to crack Mengtong.

Android#

  1. Use MT Manager to view Mengtong package.

image

  1. In classes2.dex, click on Dex++ Editor.

image

  1. Search: gitcode

image

image

image

image

image

  1. You can replace it with your own YAML address. The specific YAML configuration file can be found at
  2. Download a YAML file from https://gitcode.net/-/snippets/4144/raw/master/android_config_1.2.1.yaml
  3. 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

image

image

image

Just modify this

Replace all icons in the /res folder in the root directory of the app

image

image

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

image

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

  1. 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/

  1. 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.

image

  1. Install asar globally.

npm install -g asar or cnpm install -g asar

  1. Make sure asar is installed correctly.

asar -V

image

  1. 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.

image

  1. Find the extracted files.

image

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

image

image
Remember this directory, the compiled installation package will be saved in this directory

image

image

image

image

image

image

image
After repackaging into asar, it can be used

Mac modify application icon/name

  1. Open the file manager.

  2. Find Applications - the program that needs to be modified.

  3. Right-click and show package contents - contents - resources - replace appicon.icns (don't forget to back up).

  4. After replacement, go back to step 2.

  5. 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

image

image

image

image

image

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

image
Select "Create a new script file with the script wizard"

image
Fill in the basic information

image

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!!!

image

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"

image

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

image

Modify the default check to create a desktop shortcut
In the script code [Tasks] project
Change Flags: unchecked to Flags: checkablealone

image

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!

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.