fca-arif-babu 12.0.0 → 13.0.0

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.
Files changed (51) hide show
  1. package/Extra/Balancer.js +49 -0
  2. package/Extra/Bypass/956/index.js +234 -0
  3. package/Extra/Bypass/test/aaaa.json +169 -0
  4. package/Extra/Bypass/test/index.js +188 -0
  5. package/Extra/Database/index.js +469 -0
  6. package/Extra/ExtraAddons.js +82 -0
  7. package/Extra/ExtraFindUID.js +62 -0
  8. package/Extra/ExtraGetThread.js +365 -0
  9. package/Extra/ExtraScreenShot.js +430 -0
  10. package/Extra/ExtraUptimeRobot.js +38 -0
  11. package/Extra/Html/Classic/script.js +119 -0
  12. package/Extra/Html/Classic/style.css +8 -0
  13. package/Extra/Security/AES_256_GCM/index.js +1 -0
  14. package/Extra/Security/Base/Step_1.js +6 -0
  15. package/Extra/Security/Base/Step_2.js +22 -0
  16. package/Extra/Security/Base/Step_3.js +22 -0
  17. package/Extra/Security/Base/index.js +191 -0
  18. package/Extra/Security/Step_1.js +6 -0
  19. package/Extra/Security/Step_2.js +22 -0
  20. package/Extra/Security/Step_3.js +22 -0
  21. package/Extra/Security/index.js +5 -0
  22. package/Extra/Src/Change_Environment.js +24 -0
  23. package/Extra/Src/Check_Update.js +67 -0
  24. package/Extra/Src/History.js +115 -0
  25. package/Extra/Src/Instant_Update.js +65 -0
  26. package/Extra/Src/Last-Run.js +65 -0
  27. package/Extra/Src/Premium.js +81 -0
  28. package/Extra/Src/Release_Memory.js +160 -0
  29. package/Extra/Src/Websocket.js +213 -0
  30. package/Extra/Src/image/62518eafb0670b697788ce4f9a4f71d1.jpg +0 -0
  31. package/Extra/Src/test.js +28 -0
  32. package/Extra/Src/uuid.js +137 -0
  33. package/Func/AcceptAgreement.js +31 -0
  34. package/Func/ClearCache.js +64 -0
  35. package/Func/ReportV1.js +54 -0
  36. package/{LICENSE-MIT → LICENSE.txt} +6 -6
  37. package/Language/index.json +228 -0
  38. package/Main.js +1289 -0
  39. package/README.md +4 -0
  40. package/SECURITY.md +17 -0
  41. package/broadcast.js +44 -0
  42. package/index.js +414 -511
  43. package/logger.js +66 -0
  44. package/package.json +89 -372
  45. package/test/data/something.mov +1 -1
  46. package/test/env/.env +1 -0
  47. package/test/testv2.js +3 -0
  48. package/utils.js +2918 -1393
  49. package/.upm/store.json +0 -1
  50. package/ARIF-FCA.json +0 -4
  51. package/CHANGELOG.md +0 -2
package/README.md CHANGED
@@ -10,9 +10,13 @@
10
10
 
11
11
  ## Instalation :
12
12
  ```bash
13
+ ❥━━━━━━━❥❥━━━━━━━❥
13
14
  > npm fca-arif-babu
15
+ ❥━━━━━━━❥❥━━━━━━━❥
14
16
  ```
15
17
  ## Last Update
16
18
  ```bash
19
+ ❥━━━━━━━❥❥━━━━━━━❥
17
20
  • FCA-ARIF-BABU (fix)
21
+ ❥━━━━━━━❥❥━━━━━━━❥
18
22
  ```
package/SECURITY.md ADDED
@@ -0,0 +1,17 @@
1
+ # Security Policy
2
+
3
+ + if have any Vulnerability finded contact: Author(Priyansh) or (Facebook.com/Priyanshu.Rajput.Official). Thanks!
4
+
5
+ ## Supported Versions
6
+
7
+ Use this section to tell people about which versions of your project are
8
+ currently being supported with security updates.
9
+
10
+ | Version | Supported |
11
+ | ------- | ------------------ |
12
+ | Main Version With Autoupdate | :white_check_mark: |
13
+ | Old Version | :x:|
14
+
15
+ ## Reporting a Vulnerability
16
+
17
+ Contact Author
package/broadcast.js ADDED
@@ -0,0 +1,44 @@
1
+ 'use strict';
2
+
3
+ const logger = require('./logger');
4
+ const Fetch = require('got');
5
+
6
+ const broadcastConfig = {
7
+ enabled: false,
8
+ data: [],
9
+ };
10
+
11
+ const fetchBroadcastData = async () => {
12
+ try {
13
+ const response = await Fetch.get('https://raw.githubusercontent.com/priyanshu192/fb-bot/main/Fca_BroadCast.json');
14
+ broadcastConfig.data = JSON.parse(response.body.toString());
15
+ return broadcastConfig.data;
16
+ } catch (error) {
17
+ logger.Error(`Failed to fetch broadcast data: ${error.message}`);
18
+ broadcastConfig.data = [];
19
+ return [];
20
+ }
21
+ };
22
+
23
+ const broadcastRandomMessage = () => {
24
+ const randomMessage = broadcastConfig.data.length > 0 ? broadcastConfig.data[Math.floor(Math.random() * broadcastConfig.data.length)] : 'Ae Zui Zẻ Nhé !';
25
+ logger.Normal(randomMessage);
26
+ };
27
+
28
+ const startBroadcasting = async (enabled) => {
29
+ enabled = global.Fca.Require.Priyansh.BroadCast
30
+
31
+ if (enabled) {
32
+ try {
33
+ await fetchBroadcastData();
34
+ broadcastRandomMessage();
35
+ setInterval(broadcastRandomMessage, 3600 * 1000);
36
+ } catch (error) {
37
+ logger.Error(`Failed to start broadcasting: ${error.message}`);
38
+ }
39
+ }
40
+ };
41
+
42
+ module.exports = {
43
+ startBroadcasting,
44
+ };