Caution
This project is intended for educational purposes only. The author does NOT endorse or encourage any form of Discord ToS violation, malicious activity, or client modification. Use at your own risk.
A collection of utility functions for analyzing Discord's web client through its Webpack module system. Includes module discovery helpers and webpack chunk inspection techniques.
- Not affiliated with Discord Inc.
- For educational/research purposes only
- Discord's Terms of Service prohibit client modification
- May cease working with any client update
- Use responsibly and ethically
let _mods;
webpackChunkdiscord_app.push([[Symbol()], {}, (r) => (_mods = r.c)]);
webpackChunkdiscord_app.pop();
This snippet intercepts Discord's webpack chunks to access the module cache.
const findByProps = (...props) => {
// Implementation details...
};
A recursive module finder that searches through webpack exports to locate specific properties.
// Find Discord's MessageStore
const MessageStore = findByProps('getMessage', 'getMessages');
// Access user information
const UserStore = findByProps('getCurrentUser', 'getUser');
Never use this for:
- User data harvesting
- Client modification/distribution
- Bypassing Discord security measures
- Creating self-bots or spam tools
- Any malicious activities
By using this code, you agree that:
- You're solely responsible for your actions
- You won't use it for malicious purposes
- You understand Discord's ToS implications
- The author bears no liability for misuse
Q: Is this safe to use?
A: There are inherent risks in client analysis. Proceed with caution.
Q: Will this get me banned?
A: Any client manipulation violates Discord's ToS and could result in account termination.
Q: Can I use this for my bot?
A: Official bots should use Discord's documented API only.
- PRs must maintain ethical standards
- No ToS-violating features
- Educational focus only
- Include proper warnings
This project is licensed under [MIT License] - see the LICENSE file for details. By using this code, you acknowledge full responsibility for your actions.