Integrate the powerful EuroMoscow Shield obfuscation engine directly into your applications.
Send code to be obfuscated or decrypted using a JSON payload.
| Key | Type | Description |
|---|---|---|
| code | String | The source code to process. |
| action | String | 'encrypt' or 'decrypt' |
| lang | String | 'python' or 'javascript' or 'lua' |
| options | List | ['rename', 'marshal', 'zlib', 'rot13', 'xor', 'base64', 'hex', 'url'] |
import requests url = "https://euro-moscow-shield.vercel.app/process" payload = { "code": "print('EuroMoscow System')", "action": "encrypt", "lang": "python", "options": ["rename", "marshal", "xor"] } response = requests.post(url, json=payload) print(response.json()['result'])
const axios = require('axios'); async function protect() { const res = await axios.post("https://euro-moscow-shield.vercel.app/process", { code: "alert('Hi')", action: "encrypt", lang: "javascript", options: ["hex"] }); console.log(res.data.result); }