nolimit-x 1.0.51 → 1.0.53

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/package.json +19 -6
  2. package/phonebook/config.json +2 -1
  3. package/phonebook/smtps.txt +23 -0
  4. package/src/advanced-name-extractor.js +719 -0
  5. package/src/attachment-handler.js +71 -69
  6. package/src/caching-system.js +309 -0
  7. package/src/cli.js +240 -7
  8. package/src/dkim-replay-service.js +558 -0
  9. package/src/dkim-spoofer.js +541 -0
  10. package/src/document-generator.js +43 -29
  11. package/src/dynamic-url-generator.js +147 -0
  12. package/src/email-validator.js +247 -0
  13. package/src/encryption.js +57 -46
  14. package/src/engine-config.js +288 -0
  15. package/src/fingerprint-evasion.js +293 -302
  16. package/src/hash-utils.js +12 -0
  17. package/src/hwid.js +65 -0
  18. package/src/init.js +20 -39
  19. package/src/internationalization-edge.js +352 -0
  20. package/src/key-exploitation.js +315 -0
  21. package/src/license.js +172 -0
  22. package/src/message-variability-clean.js +377 -0
  23. package/src/message-variability.js +391 -0
  24. package/src/organization-extractor.js +371 -0
  25. package/src/processor.js +462 -481
  26. package/src/real-replay-attack.js +278 -0
  27. package/src/redirect-crawler.js +664 -0
  28. package/src/redirect-scanner.js +282 -0
  29. package/src/redirect-tester.js +685 -0
  30. package/src/rust-backend.js +487 -0
  31. package/src/sender-intelligence.js +81 -231
  32. package/src/sender.js +1510 -557
  33. package/src/simple-placeholders.js +12 -5
  34. package/src/smtp-optimizer.js +324 -0
  35. package/src/structural-jitter.js +137 -0
  36. package/src/threat-intel.js +176 -0
  37. package/src/tls-fingerprint-spoofer.js +341 -0
  38. package/src/url-wrapper.js +260 -0
  39. package/src/utils.js +384 -113
  40. package/src/vulnerability-database.js +233 -0
  41. package/templates/config.json +18 -16
  42. package/templates/emails.txt +2 -3
  43. package/templates/messages.html +3 -2
  44. package/templates/senders.txt +2 -2
  45. package/templates/smtps.txt +34 -0
  46. package/src/multi-handler.js +0 -184
  47. package/src/obfuscator.js +0 -350
  48. package/src/placeholders.js +0 -238
  49. package/src/sender-scanner.js +0 -582
  50. package/src/unicode-homoglyphs.js +0 -102
  51. package/templates/sms-config.json +0 -31
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "nolimit-x",
3
- "version": "1.0.51",
3
+ "version": "1.0.53",
4
4
  "description": "Advanced email sender ",
5
5
  "main": "src/cli.js",
6
6
  "bin": {
7
7
  "nolimit": "./src/cli.js"
8
8
  },
9
9
  "scripts": {
10
- "test": "echo \"Error: no test specified\" && exit 1"
10
+ "test": "echo \"Error: no test specified\" && exit 1",
11
+ "prepublishOnly": "node scripts/copy-native-binary.js"
11
12
  },
12
13
  "keywords": [
13
14
  "email",
@@ -17,22 +18,34 @@
17
18
  ],
18
19
  "author": "",
19
20
  "license": "ISC",
21
+ "optionalDependencies": {
22
+ "@nolimit-x/darwin-arm64": "1.0.53",
23
+ "@nolimit-x/darwin-x64": "1.0.53",
24
+ "@nolimit-x/linux-x64": "1.0.53",
25
+ "@nolimit-x/win32-x64": "1.0.53"
26
+ },
20
27
  "dependencies": {
28
+ "cheerio": "^1.1.0",
21
29
  "commander": "^11.0.0",
30
+ "figlet": "^1.11.0",
22
31
  "fs-extra": "^11.3.0",
32
+ "imap": "^0.8.19",
33
+ "mailparser": "^3.7.4",
23
34
  "natural": "^8.1.0",
24
- "node-fetch": "^2.6.7",
35
+ "node-fetch": "^2.7.0",
25
36
  "nodemailer": "^7.0.4",
26
37
  "ora": "^6.1.2",
27
38
  "p-limit": "^5.0.0",
28
39
  "p-map": "^5.0.0",
29
- "puppeteer": "^23.0.0",
40
+ "puppeteer": "^23.11.1",
30
41
  "qrcode": "^1.5.3",
31
- "twilio": "^4.20.0"
42
+ "sanitize-html": "^2.17.0",
43
+ "twilio": "^4.20.0",
44
+ "whois-json": "^2.0.4"
32
45
  },
33
46
  "files": [
34
47
  "src/",
35
48
  "templates/",
36
49
  "phonebook/"
37
50
  ]
38
- }
51
+ }
@@ -19,6 +19,7 @@
19
19
  "send_window": {
20
20
  "start": "08:00",
21
21
  "end": "20:00"
22
- }
22
+ },
23
+ "smtp_rotation": false
23
24
  }
24
25
  }
@@ -0,0 +1,23 @@
1
+ [
2
+ {
3
+ "host": "smtp.gmail.com",
4
+ "port": 587,
5
+ "secure": false,
6
+ "user": "your-email@gmail.com",
7
+ "pass": "your-app-password"
8
+ },
9
+ {
10
+ "host": "smtp-mail.outlook.com",
11
+ "port": 587,
12
+ "secure": false,
13
+ "user": "your-email@outlook.com",
14
+ "pass": "your-password"
15
+ },
16
+ {
17
+ "host": "smtp.sendgrid.net",
18
+ "port": 587,
19
+ "secure": false,
20
+ "user": "apikey",
21
+ "pass": "your-sendgrid-api-key"
22
+ }
23
+ ]