alicezetion 1.4.3 → 1.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cache/replit/__replit_disk_meta.json +1 -1
- package/Main.js +5 -7
- package/package.json +1 -1
- package/utils.js +3 -2
@@ -1 +1 @@
|
|
1
|
-
{"nonce":
|
1
|
+
{"nonce":3353437583869508607,"last_updated":{"seconds":1693556538,"nanos":608457000}}
|
package/Main.js
CHANGED
@@ -816,7 +816,7 @@ function loginHelper(appState, email, password, globalOptions, callback, prCallb
|
|
816
816
|
|
817
817
|
try {
|
818
818
|
if (appState) {
|
819
|
-
logger.Normal(Language.OnProcess);
|
819
|
+
//logger.Normal(Language.OnProcess);
|
820
820
|
switch (Database().has("FBKEY")) {
|
821
821
|
case true: {
|
822
822
|
process.env.FBKEY = Database().get("FBKEY");
|
@@ -869,12 +869,12 @@ try {
|
|
869
869
|
case "Array": {
|
870
870
|
switch (utils.getType(appState[0])) {
|
871
871
|
case "Object": {
|
872
|
-
logger.Normal(Language.EncryptStateOff);
|
872
|
+
//logger.Normal(Language.EncryptStateOff);
|
873
873
|
}
|
874
874
|
break;
|
875
875
|
case "String": {
|
876
876
|
appState = Security(appState,process.env['FBKEY'],'Decrypt');
|
877
|
-
logger.Normal(Language.EncryptStateOff);
|
877
|
+
//logger.Normal(Language.EncryptStateOff);
|
878
878
|
logger.Normal(Language.DecryptSuccess);
|
879
879
|
}
|
880
880
|
break;
|
@@ -1005,7 +1005,7 @@ function setUserNameAndPassWord() {
|
|
1005
1005
|
/*console.log(figlet.textSync('Horizon', {font: 'ANSI Shadow',horizontalLayout: 'default',verticalLayout: 'default',width: 0,whitespaceBreak: true }));
|
1006
1006
|
console.log(chalk.bold.hex('#9900FF')("[</>]") + chalk.bold.yellow(' => ') + "Operating System: " + chalk.bold.red(os.type()));
|
1007
1007
|
console.log(chalk.bold.hex('#9900FF')("[</>]") + chalk.bold.yellow(' => ') + "Machine Version: " + chalk.bold.red(os.version()));
|
1008
|
-
console.log(chalk.bold.hex('#9900FF')("[</>]") + chalk.bold.yellow(' => ') + "Fca Version: " + chalk.bold.red(global.Fca.Version) + '\n')
|
1008
|
+
console.log(chalk.bold.hex('#9900FF')("[</>]") + chalk.bold.yellow(' => ') + "Fca Version: " + chalk.bold.red(global.Fca.Version) + '\n');*/
|
1009
1009
|
try {
|
1010
1010
|
rl.question(Language.TypeAccount, (Account) => {
|
1011
1011
|
if (!Account.includes("@") && global.Fca.Require.utils.getType(parseInt(Account)) != "Number") return logger.Normal(Language.TypeAccountError, function () { process.exit(1) }); //Very Human
|
@@ -1031,9 +1031,7 @@ function setUserNameAndPassWord() {
|
|
1031
1031
|
}
|
1032
1032
|
catch (e) {
|
1033
1033
|
logger.Error(e)
|
1034
|
-
}
|
1035
|
-
Database().set("Account", "leiam@alice.gmail.com");
|
1036
|
-
Database().set("Password", "leiamaliceproject123");
|
1034
|
+
}
|
1037
1035
|
}
|
1038
1036
|
|
1039
1037
|
/**
|
package/package.json
CHANGED
package/utils.js
CHANGED
@@ -1373,13 +1373,14 @@ function parseAndCheckLogin(ctx, defaultFuncs, retryCount) {
|
|
1373
1373
|
|
1374
1374
|
function saveCookies(jar) {
|
1375
1375
|
return function(/** @type {{ headers: { [x: string]: any[]; }; }} */res) {
|
1376
|
+
/*
|
1376
1377
|
var cookies = res.headers["set-cookie"] || [];
|
1377
|
-
cookies.forEach(function(/** @type {string}
|
1378
|
+
cookies.forEach(function(/** @type {string} c) { /*c
|
1378
1379
|
if (c.indexOf(".facebook.com") > -1) { // yo wtf is this?
|
1379
1380
|
jar.setCookie(c, "https://www.facebook.com");
|
1380
1381
|
jar.setCookie(c.replace(/domain=\.facebook\.com/, "domain=.messenger.com"), "https://www.messenger.com");
|
1381
1382
|
}
|
1382
|
-
})
|
1383
|
+
});*/
|
1383
1384
|
return res;
|
1384
1385
|
};
|
1385
1386
|
}
|