fca-mod99 31.40.22
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of fca-mod99 might be problematic. Click here for more details.
- package/.config/configstore/update-notifier-npm.json +4 -0
- package/.gitattributes +2 -0
- package/.github/FUNDING.yml +4 -0
- package/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
- package/.github/ISSUE_TEMPLATE/config.yml +8 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- package/.github/dependabot.yml +11 -0
- package/.replit +77 -0
- package/.upm/store.json +1 -0
- package/DOCS.md +1738 -0
- package/Extra/ExtraAddons.js +78 -0
- package/Extra/ExtraFindUID.js +60 -0
- package/Extra/ExtraGetThread.js +118 -0
- package/Extra/ExtraScreenShot.js +673 -0
- package/Extra/ExtraTranslate.js +62 -0
- package/Extra/ExtraUptimeRobot.js +59 -0
- package/Extra/Html/Classic/script.js +231 -0
- package/Extra/Html/Classic/style.css +8 -0
- package/Extra/PM2/ecosystem.config.js +23 -0
- package/Extra/Security/Index.js +174 -0
- package/Extra/Security/Step_1.js +15 -0
- package/Extra/Security/Step_2.js +23 -0
- package/Extra/Security/Step_3.js +23 -0
- package/Extra/Src/History.js +115 -0
- package/Extra/Src/Last-Run.js +65 -0
- package/Extra/Src/Premium.js +84 -0
- package/Extra/Src/SecurityCheck.js +2 -0
- package/Func/AcceptAgreement.js +32 -0
- package/Func/ClearCache.js +64 -0
- package/Func/ReportV1.js +54 -0
- package/LICENSE.md +23 -0
- package/Language/index.json +176 -0
- package/OldSecurity.js +100 -0
- package/README.md +128 -0
- package/SECURITY.md +21 -0
- package/Settings/Database.js +21 -0
- package/Settings/Location.js +59 -0
- package/Settings/Location.json +24 -0
- package/Settings/Settings.js +59 -0
- package/StateCrypt.js +98 -0
- package/broadcast.js +38 -0
- package/index.js +1333 -0
- package/logger.js +65 -0
- package/package.json +98 -0
- package/replit.nix +8 -0
- package/src/K2IMG.js +8 -0
- package/src/Premium.js +30 -0
- package/src/Screenshot.js +77 -0
- package/src/T2S.js +8 -0
- package/src/addExternalModule.js +16 -0
- package/src/addUserToGroup.js +79 -0
- package/src/changeAdminStatus.js +79 -0
- package/src/changeArchivedStatus.js +41 -0
- package/src/changeAvt.js +85 -0
- package/src/changeBio.js +65 -0
- package/src/changeBlockedStatus.js +36 -0
- package/src/changeGroupImage.js +106 -0
- package/src/changeNickname.js +45 -0
- package/src/changeThreadColor.js +62 -0
- package/src/changeThreadEmoji.js +42 -0
- package/src/createNewGroup.js +70 -0
- package/src/createPoll.js +60 -0
- package/src/deleteMessage.js +45 -0
- package/src/deleteThread.js +43 -0
- package/src/forwardAttachment.js +48 -0
- package/src/getAccessToken.js +32 -0
- package/src/getCurrentUserID.js +7 -0
- package/src/getEmojiUrl.js +27 -0
- package/src/getFriendsList.js +73 -0
- package/src/getMessage.js +80 -0
- package/src/getThreadHistory.js +537 -0
- package/src/getThreadInfo.js +346 -0
- package/src/getThreadList.js +213 -0
- package/src/getThreadMain.js +219 -0
- package/src/getThreadPictures.js +59 -0
- package/src/getUID.js +59 -0
- package/src/getUserID.js +62 -0
- package/src/getUserInfo.js +129 -0
- package/src/getUserInfoMain.js +65 -0
- package/src/getUserInfoV2.js +35 -0
- package/src/getUserInfoV3.js +63 -0
- package/src/getUserInfoV4.js +55 -0
- package/src/getUserInfoV5.js +61 -0
- package/src/handleFriendRequest.js +46 -0
- package/src/handleMessageRequest.js +49 -0
- package/src/httpGet.js +49 -0
- package/src/httpPost.js +48 -0
- package/src/httpPostFormData.js +41 -0
- package/src/listenMqtt.js +725 -0
- package/src/logout.js +68 -0
- package/src/markAsDelivered.js +48 -0
- package/src/markAsRead.js +70 -0
- package/src/markAsReadAll.js +43 -0
- package/src/markAsSeen.js +51 -0
- package/src/muteThread.js +47 -0
- package/src/removeUserFromGroup.js +49 -0
- package/src/resolvePhotoUrl.js +37 -0
- package/src/searchForThread.js +43 -0
- package/src/sendMessage.js +334 -0
- package/src/sendTypingIndicator.js +80 -0
- package/src/setMessageReaction.js +109 -0
- package/src/setPostReaction.js +102 -0
- package/src/setTitle.js +74 -0
- package/src/threadColors.js +39 -0
- package/src/unfriend.js +43 -0
- package/src/unsendMessage.js +40 -0
- package/utils.js +1648 -0
package/.gitattributes
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
---
|
2
|
+
name: Bug report
|
3
|
+
about: Create a report to help us improve
|
4
|
+
title: ''
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
**Describe the bug**
|
11
|
+
A clear and concise description of what the bug is.
|
12
|
+
|
13
|
+
**To Reproduce**
|
14
|
+
Steps to reproduce the behavior:
|
15
|
+
1. Go to '...'
|
16
|
+
2. Click on '....'
|
17
|
+
3. Scroll down to '....'
|
18
|
+
4. See error
|
19
|
+
|
20
|
+
**Expected behavior**
|
21
|
+
A clear and concise description of what you expected to happen.
|
22
|
+
|
23
|
+
**Screenshots**
|
24
|
+
If applicable, add screenshots to help explain your problem.
|
25
|
+
|
26
|
+
**Desktop (please complete the following information):**
|
27
|
+
- OS: [e.g. iOS]
|
28
|
+
- Browser [e.g. chrome, safari]
|
29
|
+
- Version [e.g. 22]
|
30
|
+
|
31
|
+
**Smartphone (please complete the following information):**
|
32
|
+
- Device: [e.g. iPhone6]
|
33
|
+
- OS: [e.g. iOS8.1]
|
34
|
+
- Browser [e.g. stock browser, safari]
|
35
|
+
- Version [e.g. 22]
|
36
|
+
|
37
|
+
**Additional context**
|
38
|
+
Add any other context about the problem here.
|
@@ -0,0 +1,8 @@
|
|
1
|
+
blank_issues_enabled: false
|
2
|
+
contact_links:
|
3
|
+
- name: KanzuWakazaki Suppor
|
4
|
+
url: https://github.com/HarryWakazaki
|
5
|
+
about: Please ask and answer questions here.
|
6
|
+
- name: Fca-Horizon-Remake Bug
|
7
|
+
url: https://github.com/HarryWakazaki/Fca-Horizon-Remake/issues
|
8
|
+
about: Please report security vulnerabilities here.
|
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
name: Feature request
|
3
|
+
about: Suggest an idea for this project
|
4
|
+
title: ''
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
**Is your feature request related to a problem? Please describe.**
|
11
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
12
|
+
|
13
|
+
**Describe the solution you'd like**
|
14
|
+
A clear and concise description of what you want to happen.
|
15
|
+
|
16
|
+
**Describe alternatives you've considered**
|
17
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
18
|
+
|
19
|
+
**Additional context**
|
20
|
+
Add any other context or screenshots about the feature request here.
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# To get started with Dependabot version updates, you'll need to specify which
|
2
|
+
# package ecosystems to update and where the package manifests are located.
|
3
|
+
# Please see the documentation for all configuration options:
|
4
|
+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
5
|
+
|
6
|
+
version: 2
|
7
|
+
updates:
|
8
|
+
- package-ecosystem: "npm" # See documentation for possible values
|
9
|
+
directory: "/" # Location of package manifests
|
10
|
+
schedule:
|
11
|
+
interval: "daily"
|
package/.replit
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
|
2
|
+
hidden = [".config", "package-lock.json"]
|
3
|
+
run = "npm run start"
|
4
|
+
|
5
|
+
[[hints]]
|
6
|
+
regex = "Error \\[ERR_REQUIRE_ESM\\]"
|
7
|
+
message = "We see that you are using require(...) inside your code. We currently do not support this syntax. Please use 'import' instead when using external modules. (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import)"
|
8
|
+
|
9
|
+
[nix]
|
10
|
+
channel = "stable-22_11"
|
11
|
+
|
12
|
+
[env]
|
13
|
+
XDG_CONFIG_HOME = "/home/runner/.config"
|
14
|
+
PATH = "/home/runner/$REPL_SLUG/.config/npm/node_global/bin:/home/runner/$REPL_SLUG/node_modules/.bin"
|
15
|
+
npm_config_prefix = "/home/runner/$REPL_SLUG/.config/npm/node_global"
|
16
|
+
|
17
|
+
[gitHubImport]
|
18
|
+
requiredFiles = [".replit", "replit.nix", ".config", "package.json", "package-lock.json"]
|
19
|
+
|
20
|
+
[packager]
|
21
|
+
language = "nodejs"
|
22
|
+
|
23
|
+
[packager.features]
|
24
|
+
packageSearch = true
|
25
|
+
guessImports = true
|
26
|
+
enabledForHosting = false
|
27
|
+
|
28
|
+
[unitTest]
|
29
|
+
language = "nodejs"
|
30
|
+
|
31
|
+
[debugger]
|
32
|
+
support = true
|
33
|
+
|
34
|
+
[debugger.interactive]
|
35
|
+
transport = "localhost:0"
|
36
|
+
startCommand = [ "dap-node" ]
|
37
|
+
|
38
|
+
[debugger.interactive.initializeMessage]
|
39
|
+
command = "initialize"
|
40
|
+
type = "request"
|
41
|
+
|
42
|
+
[debugger.interactive.initializeMessage.arguments]
|
43
|
+
clientID = "replit"
|
44
|
+
clientName = "replit.com"
|
45
|
+
columnsStartAt1 = true
|
46
|
+
linesStartAt1 = true
|
47
|
+
locale = "en-us"
|
48
|
+
pathFormat = "path"
|
49
|
+
supportsInvalidatedEvent = true
|
50
|
+
supportsProgressReporting = true
|
51
|
+
supportsRunInTerminalRequest = true
|
52
|
+
supportsVariablePaging = true
|
53
|
+
supportsVariableType = true
|
54
|
+
|
55
|
+
[debugger.interactive.launchMessage]
|
56
|
+
command = "launch"
|
57
|
+
type = "request"
|
58
|
+
|
59
|
+
[debugger.interactive.launchMessage.arguments]
|
60
|
+
args = []
|
61
|
+
console = "externalTerminal"
|
62
|
+
cwd = "."
|
63
|
+
environment = []
|
64
|
+
pauseForSourceMap = false
|
65
|
+
program = "./index.js"
|
66
|
+
request = "launch"
|
67
|
+
sourceMaps = true
|
68
|
+
stopOnEntry = false
|
69
|
+
type = "pwa-node"
|
70
|
+
|
71
|
+
[languages]
|
72
|
+
|
73
|
+
[languages.javascript]
|
74
|
+
pattern = "**/{*.js,*.jsx,*.ts,*.tsx}"
|
75
|
+
|
76
|
+
[languages.javascript.languageServer]
|
77
|
+
start = "typescript-language-server --stdio"
|
package/.upm/store.json
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
{"version":2,"languages":{"nodejs-npm":{"specfileHash":"c32333da08fff3664049d003bc414759","lockfileHash":"eb9106a62e9b0adcb7820b002987fc2d","guessedImports":["synthetic-horizon-database","is-hexcolor","express","cheerio","figlet","totp-generator","npmlog","request","uuid-apikey","websocket-stream","form-data","chalk","axios","horizon-sp","pretty-ms","fs-extra","mqtt","https-proxy-agent","crypto-js","got","aes-js","bluebird"],"guessedImportsHash":"068d3c91b7bf92f231b14fdfc3dc41c1"}}}
|