mirror of
https://github.com/System-End/slack-end.git
synced 2026-04-19 22:05:10 +00:00
enhancement(lint): Fix lint errors for ctf/update_files.js
Co-authored-by: NeonGamerBot-QK <saahilattud@gmail.com> Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
This commit is contained in:
parent
75883ff57a
commit
a910094926
1 changed files with 7 additions and 2 deletions
|
|
@ -7,8 +7,13 @@ function getCloakChunk(s = 2, e = 4) {
|
|||
.fill(eval(`0x${Math.random().toString().split(".")[1].slice(s, e)}`))
|
||||
.toString("base64");
|
||||
}
|
||||
function getCloak() {
|
||||
return [getCloakChunk(), getCloakChunk(3, 5), getCloakChunk(1, 2), getCloakChunk()].join(" ");
|
||||
function getCloak() {
|
||||
return [
|
||||
getCloakChunk(),
|
||||
getCloakChunk(3, 5),
|
||||
getCloakChunk(1, 2),
|
||||
getCloakChunk(),
|
||||
].join(" ");
|
||||
}
|
||||
const stegcloak = new StegCloak(true, false);
|
||||
function encrypt(str) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue