-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
351 lines (326 loc) Β· 9.82 KB
/
index.js
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
/* Copyright 2021 spuun.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
const fs = require("fs-extra"),
chalk = require("chalk"),
shuffleSeed = require("shuffle-seed"),
_ = require("lodash"),
{ isBuffer } = require("lodash"),
path = require("path"),
comps = fs
.readdirSync(path.join(__dirname, "/compress"))
.map((e) => e.split(".")[0]),
encs = fs
.readdirSync(path.join(__dirname, "/encrypt"))
.map((e) => e.split(".")[0]),
ciphs = fs.readdirSync(path.join(__dirname, "/ciphers"));
// Who uses console.log smh LMFAO
function logger(msg = "logging") {
console.log(chalk.yellow("[shroudify] ") + msg);
}
/**
* Encode data.
*
* @param {String|Buffer} input Data to encode.
* @param {Object} options Options object.
* @param {String} [options.cipher] Cipher to use, can be a path or a provided
* cipher.
* @param {Number} [options.rounds=1] Number of Base64 encoding rounds done,
* useful for injecting dead data.
* @param {Object} [options.encrypt] Encryption options.
* @param {String} [options.encrypt.provider] Encryption provider to use.
* @param {String} [options.encrypt.key] Encryption key.
* @param {Object} [options.compression] Compression options.
* @param {String} [options.compression.provider] Compression provider to use,
* can be one of the provided ones, or a path.
* @param {Object} [options.compression.options={}] Compression options that
* will get passed to the compression provider.
* @param {any} [options.seed] Shuffling seed.
* @param {String} [options.writeFile] Path to write to.
* @param {String} [options.join] What to join the resulting strings with.
* @return {String|Boolean} Encoded data or if it has written to file.
*/
function encode(
input,
options = {
cipher: "randomwords",
rounds: 1,
seed: 0,
writeFile: undefined,
join: " ",
}
) {
var aes;
(() => {
if (!options.cipher) {
options["cipher"] = "randomwords";
}
if (!options.rounds) {
options["rounds"] = 1;
}
if (!options.seed) {
options["seed"] = 0;
}
if (!options.writeFile) {
options["writeFile"] = undefined;
}
if (!options.join) {
options["join"] = " ";
}
if (!_.isFinite(options.rounds)) {
options["rounds"] = parseInt(options.rounds);
if (options.rounds < 1) {
options["rounds"] = 1;
}
}
if (_.isObject(options.seed)) {
options["seed"] = JSON.stringify(options.seed);
}
})();
let cipherArr,
b64a =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".split(
""
),
ciPath,
encryption,
compression,
/** Base64 encoded data. */
b64e = "";
if (options.cipher) {
if (ciphs.includes(options.cipher))
ciPath = path.join(__dirname, "/ciphers/", options.cipher);
else ciPath = options.cipher;
}
try {
cipherArr = shuffleSeed.shuffle(
_.compact(
_.uniq(
fs
.readFileSync(ciPath)
.toString("utf8")
.split("\r")
.join("")
.split("\n")
)
),
options.seed
);
if (cipherArr.length < 65)
logger(
chalk.bold.yellowBright(`Warn: Cipher length is ${cipherArr.length}!
Which is < 65
Continuing may not be good idea as it can lead to unpredictable performance`)
);
if (cipherArr.length > 65)
logger(
chalk.bold.yellowBright(`Warn: Cipher length is ${cipherArr.length}!
Which is > 65
Continuing may not be good idea as it can lead to unpredictable performance`)
);
if (options.compression) {
if (comps.includes(options.compression.provider))
compression = require(path.join(
__dirname,
"/compress/",
options.compression.provider
));
else compression = require(options.compression.provider);
input = compression.compress(input, options.compression.options);
}
if (options.encrypt) {
if (encs.includes(options.encrypt.provider))
encryption = require(path.join(
__dirname,
"/encrypt/",
options.encrypt.provider
));
else encryption = require(options.encrypt.provider);
input = encryption.encrypt(input, options.encrypt.key);
}
for (let i = 1; i <= options.rounds; i++) {
if (i == 1) {
if (Buffer.isBuffer(input)) {
b64e = input.toString("base64");
} else if (_.isPlainObject(input)) {
b64e = Buffer.from(JSON.stringify(input)).toString("base64");
} else {
b64e = Buffer.from(input).toString("base64");
}
} else {
b64e = Buffer.from(b64e).toString("base64");
}
}
return b64e
.split("")
.map((e) => cipherArr[b64a.indexOf(e)])
.join(options.join)
.trim()
.replace(/ +/g, " ");
} catch (error) {
throw new Error(
chalk.red.bold(`Failed to encode!
Err: ${error}`)
);
}
}
/**
* Decode data.
*
* @param {String|Buffer} input Data to encode.
* @param {Object} options Options object.
* @param {String} [options.cipher] Cipher to use, can be a path or a premade
* cipher.
* @param {Number} [options.rounds=1] Number of Base64 encoding rounds done,
* useful for injecting dead data.
* @param {Object} [options.decrypt] Decryption options.
* @param {String} [options.decrypt.provider] Decryption provider to use.
* @param {String} [options.decrypt.key] Decryption key.
* @param {Object} [options.compression] Compression options.
* @param {String} [options.compression.provider] Compression provider to use, can be one of the provided ones, or a path.
* @param {Object} [options.compression.options={}] Compression options that will get passed to the compression provider.
* @param {any} [options.seed] Shuffling seed.
* @param {String} [options.writeFile] Path to write to.
* @param {String} [options.split] What to split the strings with.
* @return {String|Boolean} Encoded data or if it has written to file.
*/
function decode(
input,
options = {
cipher: "randomwords",
rounds: 1,
seed: 0,
writeFile: undefined,
split: " ",
}
) {
var aes;
(() => {
if (!options.cipher) {
options["cipher"] = "randomwords";
}
if (!options.rounds) {
options["rounds"] = 1;
}
if (options.key) aes = aes256.createCipher(options.key);
if (!options.seed) {
options["seed"] = 0;
}
if (!options.writeFile) {
options["writeFile"] = undefined;
}
if (!options.split) {
options["split"] = " ";
}
if (!_.isFinite(options.rounds)) {
options["rounds"] = parseInt(options.rounds);
if (options.rounds < 1) {
options["rounds"] = 1;
}
}
if (_.isObject(options.seed)) {
options["seed"] = JSON.stringify(options.seed);
}
})();
let cipherArr,
b64a =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".split(
""
),
/** Encoded data */
encoded,
ciPath,
decryption,
compression,
/** Base64 encoded data. */
b64e = "";
if (options.cipher) {
if (ciphs.includes(options.cipher))
ciPath = path.join(__dirname, "/ciphers/", options.cipher);
else ciPath = options.cipher;
}
try {
cipherArr = shuffleSeed.shuffle(
_.compact(
_.uniq(
fs
.readFileSync(ciPath)
.toString("utf8")
.split("\r")
.join("")
.split("\n")
)
),
options.seed
);
if (cipherArr.length < 65)
logger(
chalk.bold.yellowBright(`Warn: Cipher length is ${cipherArr.length}!
Which is < 65
Continuing may not be good idea as it can lead to unpredictable performance`)
);
if (cipherArr.length > 65)
logger(
chalk.bold.yellowBright(`Warn: Cipher length is ${cipherArr.length}!
Which is > 65
Continuing may not be good idea as it can lead to unpredictable performance`)
);
if (Buffer.isBuffer(input)) {
encoded = input
.toString("utf8")
.split(options.split)
.map((e) => b64a[cipherArr.indexOf(e)])
.join("");
} else {
encoded = input
.split(options.split)
.map((e) => b64a[cipherArr.indexOf(e)])
.join("");
}
for (let i = 1; i <= options.rounds; i++) {
if (i == 1) {
b64e = Buffer.from(encoded, "base64").toString("utf8");
} else {
b64e = Buffer.from(b64e, "base64").toString("utf8");
}
}
if (options.decrypt) {
if (options.decrypt.provider)
decryption = require(path.join(
__dirname,
"/encrypt/",
options.decrypt.provider
));
else decryption = require(options.decrypt.provider);
b64e = decryption.decrypt(b64e, options.decrypt.key);
}
if (options.compression) {
if (comps.includes(options.compression.provider))
compression = require(path.join(
__dirname,
"/compress/",
options.compression.provider
));
else compression = require(options.compression.provider);
b64e = compression.decompress(b64e, options.compression.options);
}
return b64e;
} catch (error) {
throw new Error(
chalk.red.bold(`Failed to decode!
Err: ${error}`)
);
}
}
module.exports = {
encode,
decode,
};