mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-07 14:57:12 -04:00
55 lines
1.6 KiB
Vue
55 lines
1.6 KiB
Vue
<script setup lang="ts">
|
|
import Sandybox from 'sandybox';
|
|
import { webcrack } from 'webcrack';
|
|
|
|
const input = ref('');
|
|
const result = computedAsync(async () => {
|
|
try {
|
|
const inputValue = input.value;
|
|
const sandbox = await Sandybox.create();
|
|
const iframe = document.querySelector('.sandybox') as HTMLIFrameElement;
|
|
iframe?.contentDocument?.head.insertAdjacentHTML(
|
|
'afterbegin',
|
|
'<meta http-equiv="Content-Security-Policy" content="default-src \'none\';">',
|
|
);
|
|
const sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms));
|
|
|
|
async function evalCode(code: string) {
|
|
const fn = await sandbox.addFunction(`() => ${code}`);
|
|
return Promise.race([
|
|
fn(),
|
|
sleep(10_000).then(() => Promise.reject(new Error('Sandbox timeout'))),
|
|
]).finally(() => sandbox.removeFunction(fn));
|
|
}
|
|
|
|
return await webcrack(inputValue, { sandbox: evalCode });
|
|
}
|
|
catch (e: any) {
|
|
return {
|
|
code: `/*\n${e.toString()}\n*/`,
|
|
bundle: '',
|
|
};
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<iframe class="sandybox" style="display:none" title="sandbox" />
|
|
<CInputText
|
|
v-model:value="input"
|
|
placeholder="Your obfuscate Javascript code"
|
|
label="Obfuscate Javascript code:"
|
|
rows="20"
|
|
autosize
|
|
raw-text
|
|
multiline
|
|
monospace
|
|
/>
|
|
|
|
<n-form-item label="Deobfuscated code:">
|
|
<textarea-copyable :value="result?.code" language="javascript" />
|
|
</n-form-item>
|
|
<n-form-item label="Bundle:">
|
|
<textarea-copyable :value="result?.bundle" language="javascript" />
|
|
</n-form-item>
|
|
</template>
|