Some mods target the Mono version of the game, which is available by opting into the Steam beta branch "alternate"

MLVScan
MLVScan is a security-focused MelonLoader plugin designed to detect and disable potentially malicious mods before they can harm your system.
Last updated | 18 minutes ago |
Total downloads | 169 |
Total rating | 2 |
Categories | Mono IL2CPP |
Dependency string | ifBars-MLVScan-1.3.0 |
Dependants | 0 other packages depend on this package |
This mod requires the following mods to function

LavaGang-MelonLoader
The World's First Universal Mod Loader for Unity Games compatible with both Il2Cpp and Mono
Preferred version: 0.7.0README
MLVScan
MLVScan is a security-focused MelonLoader plugin designed to detect and disable potentially malicious mods before they can harm your system. It scans for suspicious patterns commonly found in malware and prevents them from executing.
MLVScan was created in response to the recent uprising of malware mods being uploaded to sites like NexusMods.
Features
- Pre-load Scanning: Catches malicious code before it can execute
- Modular Detection Rules: Identifies various malicious patterns
- Severity Classification: Categorizes threats by risk level (Critical, High, Medium, Low)
- Automatic Disabling: Prevents suspicious mods from loading
- Detailed Reports: Generates comprehensive scan reports with specific findings
- Whitelisting: Allows trusted mods to bypass scanning (Most mods pass the scan just fine, with a few that have been whitelisted due to false positives, the current whitelist system is planned to be replaced with an improved version in the future)
- Security Guidance: Provides actionable steps if a threat is detected
Installation
- Download the latest release from the Releases page
- Place
MLVScan.dll
in your game'sPlugins
folder - Launch your game
How It Works
MLVScan analyzes all mods before they are loaded by MelonLoader. It uses static analysis to scan for suspicious code patterns without executing them. When a potentially malicious mod is detected, MLVScan:
- Prevents the mod from loading
- Logs detailed information about the suspicious patterns
- Creates a report file with findings and remediation steps
- Provides security guidance if your system might be affected
Usage
MLVScan works automatically when your game starts. No additional configuration is required for basic protection.
Whitelist Configuration
To whitelist trusted mods that might trigger false positives:
- Edit
MelonPreferences.cfg
in your game directory - Find the
[MLVScan]
section - Add mod filenames to the
WhitelistedMods
setting - Save the file
Example:
[MLVScan]
WhitelistedMods = S1APILoader.dll, S1API.Mono.dll, S1API.Il2Cpp.dll, CustomTV_Mono.dll, CustomTV_IL2CPP.dll
⚠️ Warning: Only whitelist mods from trusted sources. Whitelisted mods fully bypass security checks.
Security Report Interpretation
When MLVScan detects a suspicious finding, it will generate a report with findings categorized by severity, and disable the mod if the severity is within the configured threshold:
- Critical: High-risk activities like executing external processes or loading assemblies
- High: Potentially dangerous behaviors like loading encrypted or obfuscated data
- Medium: Suspicious patterns that might be legitimate in some contexts
- Low: Minor suspicious patterns with little to no risk
Review the details carefully before deciding to whitelist a mod.
Roadmap / Feature Ideas
- Hash-based Whitelist: Verify mod authenticity using cryptographic hashes instead of filenames
- Smart Pattern Analysis: Reduce false positives through contextual analysis
- Behavior Monitoring: Runtime detection of suspicious behavior
- GUI Interface: User-friendly interface for managing security settings
- Mod Publisher Verification: Support for digitally signed mods from trusted developers
- Custom Rules Configuration: Allow users to define custom detection rules
Contributing
Contributions are welcome! If you'd like to improve MLVScan:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
Adding a new detection rule is a simple as:
- Creating your rule class in the
Models
folder - Declaring it as a public class that inherits the IScanRule interface
- Declare your IsSuspicious(MethodReference) method
- Declare a Description and Severity for your rule
- Add your rule to ServiceFactory.CreateAssemblyScanner
Reference the existing rule model classes for an example.
License
This project is licensed under the GNU GPL v3 License - see the LICENSE file for details.
Acknowledgments
- MelonLoader team for creating the mod loading framework
- Mono.Cecil for enabling assembly analysis
Disclaimer
MLVScan is provided as-is without warranty. While it can detect many malicious patterns, no security tool is perfect, and cyber security is a never ending battle of cat and mouse. Always exercise caution when installing newer mods, and NEVER install mods from untrusted sources. Trusted mod sources are NexusMods and Thunderstore, however you should always be weary of new mods.