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.
- package/package.json +19 -6
- package/phonebook/config.json +2 -1
- package/phonebook/smtps.txt +23 -0
- package/src/advanced-name-extractor.js +719 -0
- package/src/attachment-handler.js +71 -69
- package/src/caching-system.js +309 -0
- package/src/cli.js +240 -7
- package/src/dkim-replay-service.js +558 -0
- package/src/dkim-spoofer.js +541 -0
- package/src/document-generator.js +43 -29
- package/src/dynamic-url-generator.js +147 -0
- package/src/email-validator.js +247 -0
- package/src/encryption.js +57 -46
- package/src/engine-config.js +288 -0
- package/src/fingerprint-evasion.js +293 -302
- package/src/hash-utils.js +12 -0
- package/src/hwid.js +65 -0
- package/src/init.js +20 -39
- package/src/internationalization-edge.js +352 -0
- package/src/key-exploitation.js +315 -0
- package/src/license.js +172 -0
- package/src/message-variability-clean.js +377 -0
- package/src/message-variability.js +391 -0
- package/src/organization-extractor.js +371 -0
- package/src/processor.js +462 -481
- package/src/real-replay-attack.js +278 -0
- package/src/redirect-crawler.js +664 -0
- package/src/redirect-scanner.js +282 -0
- package/src/redirect-tester.js +685 -0
- package/src/rust-backend.js +487 -0
- package/src/sender-intelligence.js +81 -231
- package/src/sender.js +1510 -557
- package/src/simple-placeholders.js +12 -5
- package/src/smtp-optimizer.js +324 -0
- package/src/structural-jitter.js +137 -0
- package/src/threat-intel.js +176 -0
- package/src/tls-fingerprint-spoofer.js +341 -0
- package/src/url-wrapper.js +260 -0
- package/src/utils.js +384 -113
- package/src/vulnerability-database.js +233 -0
- package/templates/config.json +18 -16
- package/templates/emails.txt +2 -3
- package/templates/messages.html +3 -2
- package/templates/senders.txt +2 -2
- package/templates/smtps.txt +34 -0
- package/src/multi-handler.js +0 -184
- package/src/obfuscator.js +0 -350
- package/src/placeholders.js +0 -238
- package/src/sender-scanner.js +0 -582
- package/src/unicode-homoglyphs.js +0 -102
- 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.
|
|
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.
|
|
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.
|
|
40
|
+
"puppeteer": "^23.11.1",
|
|
30
41
|
"qrcode": "^1.5.3",
|
|
31
|
-
"
|
|
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
|
+
}
|
package/phonebook/config.json
CHANGED
|
@@ -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
|
+
]
|