4
Published Scripts
2,840+
Sandbox Executions
Layer 1-5 VM
Obfuscation Engine
99.98%
Cloudflare Edge Uptime

Scripts & Panels Hub

Explore production-grade Luau & JavaScript scripts, draggable UI panels, and execution binaries. 1-click test in the live runner or obfuscate directly.

Virtual Machine Code Obfuscator

Multi-layer bytecode virtualization, string encryption matrix, control flow flattening, and anti-tamper guards.

Source Code
Protected Output (Bytecode VM)
Protection Options Matrix
String Encryption
Encodes strings in dynamic XOR byte arrays with inline decoders.
Proxify Locals
Mangles and randomizes variable identifiers into unreadable hex hashes.
Proxify Functions
Wraps standard global calls into indirect table dispatchers.
Anti-Tamper & Hook Guard
Traps memory debuggers, method hooks, and function decompiler dumps.
Control Flow Flattening
Transforms sequential logic into complex state machine switch loops.
Loader VM Depth
Multi-layered bytecode virtual machine nesting level (1 to 5).
3
Layer 1 Layer 5

Live Execution Sandbox

Real-time execution terminal. Tests scripts, obfuscated payloads, and functions with stdout capture, error logs, and execution benchmarks.

Execution Scratchpad
READY | 0 ms
[00:00:00] [System] HashBrown Execution Sandbox initialized. Ready for code payload.

Developer Profile & Email Integration

Manage your HashBrown developer credentials, verified email notifications, and automated API tokens.

Avatar
juanitaw106
Senior Script Architect
juanitaw106.jws@gmail.com
Role: Admin & Verified
Status: Active
Member Since: Aug 2024
hb_live_sec_99a8b1c4e7f201082

Cloudflare Pages Deployment Studio

Ready-to-deploy configuration for hosting the website directly on Cloudflare Pages (hashbrownalt.pages.dev architecture) with edge Functions and D1 database support.

Cloudflare Pages + Edge D1 Integration
Host zero-cold-start edge workers with global cache replication.
_routes.json
{ "version": 1, "include": [ "/*" ], "exclude": [ "/static/*" ] }
wrangler.toml
name = "hashbrown-luaucrack" pages_build_output_dir = "." compatibility_date = "2024-09-01" [[d1_databases]] binding = "DB" database_name = "hashbrown_scripts" database_id = "d1-production-primary"
functions/api/[[route]].js
export async function onRequest(context) { const { request, env } = context; const url = new URL(request.url); if (url.pathname.startsWith("/api/scripts")) { const { results } = await env.DB.prepare("SELECT * FROM scripts ORDER BY created_at DESC").all(); return new Response(JSON.stringify({ ok: true, scripts: results }), { headers: { "content-type": "application/json" } }); } return env.ASSETS ? env.ASSETS.fetch(request) : new Response("Not found", { status: 404 }); }