Skip to main content

Package for moonsec testing

Project description

A package for obfuscating scripts with Moonsec V3 (THIS IS NOT OFFICIAL)

Example:

from moonsec import Obfuscator as Msec

Msec.login('api key')

def obfuscationCallback(script, downloadurl):
    print(downloadurl)
    open('output.lua', 'wb').write(script)

Msec.obfuscate("print('Hello World') MS_WATERMARK('Your watermark')", {
    "platform": "lua", # roblox (for excutors), lua (for things like repl), fivem (for fivem), robloxstudio (for server scripts)
    "maxsecurity": True, # Enables code optimization, uses more secure structures and increases security. Best when used with anti tamper. Not recommended on big scripts.
    "antitamper": True, # This uses loadstring or load, so your platform must support one of them. Uses a cool loader-like protection to ensure the safety of the VM as well as your code. File size might be 80kb more than usual.
    "constantprotection": True, # Encrypt constants and adds runtime integrity checks against deserializer/interpreter tampering.
    "requireprotection": False # Only for robloxstudio
}, obfuscationCallback)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

moonsectesting-0.0.2.tar.gz (2.6 kB view hashes)

Uploaded Source

Built Distribution

moonsectesting-0.0.2-py3-none-any.whl (2.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page