UNPKG

stencyption

Version:

Military-grade JavaScript encryption with AES-256-GCM, polymorphic obfuscation, and anti-debugging protection. Each file gets unique encryption keys embedded in heavily obfuscated code.

12 lines (8 loc) 287 B
const axios = require("axios"); async function testFunction() { console.log("Testing encryption with axios"); const response = await axios.get("https://api.github.com"); console.log("API Status:", response.status); return response.data; } testFunction().catch(console.error);