Home - Gh0u1L5/WechatMagician GitHub Wiki

Introduction

WechatMagician is a fancy Xposed module designed for Chinese social media application Wechat, to help the users get the ultimate control of their messages and moments. It is based on the WechatSpellbook framework. Currently this module supports WeChat 6.5.3+.

Features

Chatting

  1. Prevent friends from recalling messages (with customizable notification).
  2. Forward messages to as many friends as you want.
  3. Send more than 9 pictures at once (be default, less than 1000 pictures).
  4. Hide useless groups into chatroom hider. (Need manually turn on in settings)
  5. Mark friends as secret friends, and hide the chatting history. (Need manually turn on in settings)
  6. Mark all the conversations as read in one click.

Moments

  1. Prevent friends from deleting moments or comments.
  2. Block the advertisements posted by Wechat.
  3. Retweet other's moments, which can be text, image, video or links.
  4. Take screenshot of a single moment.
  5. Set blacklist for moments, and say goodbye to ads and PDA couples.

Miscellaneous

  1. Automatically confirm the login requests from Wechat PC client (take your own risk if you turn on this function).

Official QQ Group

  • Group One: 135955386 (Full)
  • Group Two: 157550472

Design

After learning from the failure of other Wechat modules, this project wants to do a better job in the following aspects:

  • Stability: Most of those modules crashes for every Wechat update due to the obfuscator used by Wechat.
    • This project wraps each feature into a small "unit"; a single unit can crash safely without ruining the whole module.
    • This project has a set of APIs to analyze and match the signatures of critical classes / methods.
    • This project picks only the signatures that exist since Wechat 6.5.3. Even if a signature is broken in the coming Wechat updates, it can be fixed easily.
    • This project hooks the methods close to system components / platform tools. This sacrifices some speed but ensures some stable break points.
  • Simplicity: Large modules like WeXposed have many functions that are hardly used by most of the users, but most of the crashes are caused by those functions.
    • If those functions are implemented by different modules, and the users can just install the modules as they need, then our lives would be much more easier.
    • This project aims to "help the users get the ultimate control of their messages and moments"; more specifically, it wants to help the users to prevent recalling / deleting, retransmit messages, retweet moments, etc.
    • However, in the meantime, this project is also an open-source template for Wechat modules. With current framework you can easily hook several critical operations in Wechat including UI updates, XML parsing, file I/O, encryption/decryption engine and database operations.
    • If you have developed something that is unrelated to current purpose of this project, you may still get a standalone branch for your contribution.
  • Open Source: Closed-source will only ruin a non-profit project and its developer.
    • This project will stay open-source, everyone is more than welcome to submit pull requests. Just don't submit codes for illegal purpose.
    • If the Wechat team formally states that a specific feature has been misused for illegal purpose, it will be removed immediately.

Credits

  • Thanks @rovo89 for the awesome Xposed framework.
  • Thanks @rarnu for the prototype wechat_no_revoke.