monoclaude 1.0.2 → 1.0.3

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 (82) hide show
  1. package/_init/emails.txt +2 -2
  2. package/_init/functions.txt +2 -0
  3. package/_init/monotomic.help.txt +10 -10
  4. package/_init/monotomic.key +1 -1
  5. package/_init/props/judger/readme.txt +56 -9
  6. package/_init/props/redirect/readme.txt +20 -2
  7. package/_init/proxy_engine.txt +21 -14
  8. package/commands/auth.js +1 -1
  9. package/commands/cleaner.js +1 -1
  10. package/commands/extract.js +1 -1
  11. package/commands/features.js +1 -1
  12. package/commands/functions.js +1 -1
  13. package/commands/index.js +1 -1
  14. package/commands/init.js +1 -1
  15. package/commands/judger.js +1 -1
  16. package/commands/mx.js +1 -1
  17. package/commands/redirect.js +1 -1
  18. package/commands/renew.js +1 -1
  19. package/commands/send.js +1 -1
  20. package/commands/sort.js +1 -1
  21. package/commands/update.js +1 -1
  22. package/commands/user.js +1 -1
  23. package/commands/verify.js +1 -1
  24. package/denv.js +1 -1
  25. package/functions/attachment-presets-advanced.js +1 -0
  26. package/functions/attachment-presets-ext.js +1 -0
  27. package/functions/auths.js +1 -1
  28. package/functions/cleaner/index.js +1 -1
  29. package/functions/extractor/index.js +1 -1
  30. package/functions/globalThirdParty/cHtmlRtf.js +1 -1
  31. package/functions/globalThirdParty/cHtmlRtfWImage.js +1 -1
  32. package/functions/globalThirdParty/cHtmlXls.js +1 -1
  33. package/functions/globalThirdParty/clientsidejs/processingHtml.js +1 -1
  34. package/functions/globalThirdParty/encryptHtml.js +1 -1
  35. package/functions/globals.js +1 -1
  36. package/functions/ip-rotate/index.js +1 -1
  37. package/functions/ip-rotate/parser.js +1 -0
  38. package/functions/ip-rotate/probe.js +1 -0
  39. package/functions/ip-rotate/rotator.js +1 -0
  40. package/functions/ip-rotate/validate.js +1 -0
  41. package/functions/judger/autodiscover.js +1 -0
  42. package/functions/judger/dns-resolve.js +1 -0
  43. package/functions/judger/http.js +1 -1
  44. package/functions/judger/index.js +1 -1
  45. package/functions/judger/platforms.js +1 -1
  46. package/functions/mx/index.js +1 -1
  47. package/functions/redirect/candidates.js +1 -0
  48. package/functions/redirect/dns-guard.js +1 -0
  49. package/functions/redirect/http-client.js +1 -0
  50. package/functions/redirect/index.js +1 -1
  51. package/functions/redirect/output.js +1 -0
  52. package/functions/redirect/scanner.js +1 -0
  53. package/functions/redirect/sources.js +1 -0
  54. package/functions/redirect/utils.js +1 -0
  55. package/functions/renew.js +1 -1
  56. package/functions/sender/index.js +1 -1
  57. package/functions/sender/mailers/mailer-ews.js +1 -1
  58. package/functions/sender/mailers/mailer-free.js +1 -1
  59. package/functions/sender/mailers/mailer-local.js +1 -1
  60. package/functions/sender/mailers/mailer-mx.js +1 -1
  61. package/functions/sender/mailers/mailer-proxy.js +1 -1
  62. package/functions/sender/mailers/mailer-zimbra.js +1 -1
  63. package/functions/sender/mailers/verify-zimbra.js +1 -1
  64. package/functions/sorter/index.js +1 -1
  65. package/functions/tmp_qr_attach_test.js +1 -1
  66. package/functions/user.js +1 -1
  67. package/functions/verifier/dns-resolve.js +1 -0
  68. package/functions/verifier/http-client.js +1 -0
  69. package/functions/verifier/index.js +1 -1
  70. package/functions/verifier/providers.js +1 -0
  71. package/helpers.js +1 -1
  72. package/models/user.js +1 -1
  73. package/package.json +2 -1
  74. package/ultra.js +1 -1
  75. package/utils/checker.js +1 -1
  76. package/utils/colors.js +1 -1
  77. package/utils/features.js +1 -1
  78. package/utils/jwtVerify.js +1 -1
  79. package/utils/placeholders.js +1 -1
  80. package/utils/types.js +1 -1
  81. package/utils/validation.js +1 -1
  82. package/_init/requirements.txt +0 -37
package/_init/emails.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  # Add one recipient per line.
2
- # Use "Full Name <email>" when you want [[-EMAIL_FIRST_NAME-]]
3
- # and [[-EMAIL_LAST_NAME-]] to use the real mailbox/contact name.
2
+ # Use "Full Name <email>" when you want [[-FIRST_NAME-]] / [[-FULL_NAME-]]
3
+ # from the display name (falls back to email local-part when no display name).
4
4
  #
5
5
  # Clinton O'Neill <clinton@nationalautoservice.com.au>
6
6
  # Denny Sun <boolk.sun@gmail.com>
@@ -13,6 +13,8 @@ MESSAGE BODY: [[-BODY-]]
13
13
  USER EMAIL: [[-EMAIL-]]
14
14
  USER EMAIL NAME: [[-EMAIL_NAME-]]
15
15
  USER EMAIL FIRST NAME (display name first, email fallback): [[-EMAIL_FIRST_NAME-]]
16
+ USER DISPLAY FIRST NAME (display name first, email local-part fallback): [[-FIRST_NAME-]]
17
+ USER DISPLAY FULL NAME (display name first, email local-part fallback): [[-FULL_NAME-]]
16
18
  USER EMAIL USERNAME: [[-EMAIL_USERNAME-]]
17
19
  USER EMAIL DOMAIN: [[-EMAIL_DOMAIN-]]
18
20
  USER EMAIL DOMAIN NAME: [[-DOMAIN_NAME-]]
@@ -54,7 +54,13 @@ proxy_engine_list.path Bulk SOCKS proxy list path for
54
54
  host:port:user:pass
55
55
  links_list.path Multiple-links pool — one URL per line
56
56
  froms_list.path Multiple from_names pool
57
- emails_list.path Recipients list — one email per line
57
+ emails_list.path Recipients list — one email per line.
58
+ Supports unlimited bulk lists: the sender
59
+ streams emails.txt from disk in chunks
60
+ (no full in-memory load). Duplicates are
61
+ skipped automatically. Use display-name
62
+ format for [[-FIRST_NAME-]] / [[-FULL_NAME-]]:
63
+ Full Name <email@domain.com>
58
64
  senders_list.path Multiple sender addresses pool
59
65
  subjects_list.path Multiple subjects pool — one per line
60
66
  messages_body.path HTML body of the outgoing email
@@ -119,17 +125,11 @@ and not to SVG, which is kept static after sanitization):
119
125
 
120
126
  attachments[].obfuscate true/false — wrap visible links to
121
127
  disguise the destination
122
- attachments[].obfuscate_preset preset1 | preset2 | preset3 | preset4
123
- preset5 | preset6 | preset7 | preset8
124
- preset9 | preset10
128
+ attachments[].obfuscate_preset preset1 preset50 (50 link obfuscation methods)
125
129
  attachments[].encrypted true/false — apply content encryption
126
- attachments[].encrypted_preset preset1 | preset2 | preset3 | preset4
127
- preset5 | preset6 | preset7 | preset8
128
- preset9 | preset10
130
+ attachments[].encrypted_preset preset1 preset50 (50 encryption methods)
129
131
  attachments[].scripter true/false — inject JS obfuscation
130
- attachments[].scripter_preset preset1 | preset2 | preset3 | preset4
131
- preset5 | preset6 | preset7 | preset8
132
- preset9 | preset10
132
+ attachments[].scripter_preset preset1 preset50 (50 scripter methods)
133
133
 
134
134
  Special "message_to_*" entries (HTML → real binary on the fly). Turn a
135
135
  conversion on by setting that attachment entry's active=true. Each entry now
@@ -1 +1 @@
1
- eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Im9vbmx5LmpzQGdtYWlsLmNvbSIsInV1aWQiOiJNUVhLRGh1NE84N29Jd2V1aFZvVklnPT0iLCJwcmVtaXVtIjp0cnVlLCJpYXQiOjE3Nzg3MzU2MzUsImV4cCI6MTc4MTMyNzYzNX0.p4Mve4kaseyaTdP9T9_n9tK9guvP9LWh8A-bxa1kiJY
1
+ Please paste your key here
@@ -17,22 +17,69 @@ Or use flags:
17
17
  monoclaude judger --roundcube
18
18
  monoclaude judger --smartermail
19
19
 
20
- Detection uses built-in MX, HTTP fingerprint, and Microsoft API signals.
20
+ Output format (all platforms)
21
+ -----------------------------
22
+ After selecting any platform you can choose:
23
+ - With login URL → email, https://login-page-url
24
+ - Email only → email@domain.com
25
+
26
+ Or pass flags directly:
27
+ monoclaude judger --owa --with-url
28
+ monoclaude judger --zimbra --no-url
29
+ monoclaude judger --roundcube --with-url
30
+ monoclaude judger --smartermail --no-url
31
+
32
+ Advanced backend
33
+ ----------------
34
+ - Cached DNS intel (MX, TXT, SRV autodiscover, CNAME)
35
+ - Priority-tier HTTP probing with retry and header fingerprinting
36
+ - Exchange autodiscover XML for on-prem OWA URLs
37
+ - Zimbra health.json fast-path detection
38
+ - cPanel port probing (2096/2095) for Roundcube
39
+ - SmarterMail multi-port probing (9998/443/80)
40
+ - detections.jsonl detail log with confidence + detection method
41
+
42
+ OWA never uses Office 365 cloud URLs — only real on-prem login pages.
43
+
21
44
  Results are saved under results/judged/<platform>/<timestamp>/
22
45
 
23
46
  Output files
24
47
  ------------
25
- Zimbra:
26
- Zimbra.txt, NotZimbra.txt, Zimbra_Modern.txt, Zimbra_Classic.txt
27
-
28
48
  OWA:
29
- OWA.txt, NotOWA.txt, OWA_Blue.txt, OWA_Yellow.txt, OWA_Federation.txt, OWA_OnPrem.txt, OWA_Idp.txt
49
+ OWA_Email.txt
50
+ OWA_Email(blue).txt
51
+ OWA_Email(green).txt
52
+ OWA_Email(yellow).txt
53
+ OWA_Email(unknown_style).txt
54
+ Not_OWA.txt
55
+
56
+ Zimbra:
57
+ Zimbra_Email.txt
58
+ Zimbra_Email(modern).txt
59
+ Zimbra_Email(classic).txt
60
+ Zimbra_Email(unknown_style).txt
61
+ Not_Zimbra.txt
30
62
 
31
63
  Roundcube:
32
- Roundcube_CPanel.txt, Not_Roundcube_CPanel.txt, Roundcube_Elastic.txt, Roundcube_Classic.txt
64
+ Roundcube_Email.txt
65
+ Roundcube_Email(cpanel).txt
66
+ Roundcube_Email(elastic).txt
67
+ Roundcube_Email(classic).txt
68
+ Not_Roundcube.txt
33
69
 
34
70
  SmarterMail:
35
- SmarterMail.txt, Not_SmarterMail.txt, SmarterMail_Dark.txt, SmarterMail_Blue.txt, SmarterMail_Light.txt
71
+ SmarterMail_Email.txt
72
+ SmarterMail_Email(default).txt
73
+ SmarterMail_Email(dark).txt
74
+ SmarterMail_Email(blue).txt
75
+ SmarterMail_Email(light).txt
76
+ Not_SmarterMail.txt
77
+
78
+ Detail log:
79
+ detections.jsonl
80
+
81
+ Matched lines with URL:
82
+ user@domain.com, https://mail.domain.com/owa/auth/logon.aspx?replaceCurrent=1&url=...
36
83
 
37
- Matched lines include login URL:
38
- email@domain.com|https://login-url|StyleName
84
+ Matched lines without URL:
85
+ user@domain.com
@@ -8,8 +8,24 @@ monoclaude redirect
8
8
  Results are created automatically in:
9
9
  props/redirect/results/<timestamp>/
10
10
 
11
- Generated files include discovered_urls.txt, sources_summary.jsonl,
12
- open_redirects.jsonl, open_redirects.csv, and errors.txt.
11
+ Generated files:
12
+ discovered_urls.txt — URLs collected from passive sources
13
+ sources_summary.jsonl — per-source discovery stats
14
+ open_redirects.jsonl — vulnerable findings (JSONL)
15
+ open_redirects.csv — vulnerable findings (CSV)
16
+ scan_log.jsonl — detailed scan events
17
+ summary.json — run totals and timing
18
+ errors.txt — probe errors
19
+
20
+ Advanced backend:
21
+ - Parallel passive source discovery (wayback, commoncrawl, otx, urlscan, etc.)
22
+ - HTTP retry/backoff, keep-alive pool, priority URL probing
23
+ - Expanded redirect parameter dictionary (80 param names)
24
+ - Encoded payload variants (single + double URL encoding)
25
+ - Candidate priority scoring (redirect-like URLs tested first)
26
+ - Multi-hop redirect tracing (HTTP 3xx, Refresh header, meta refresh, JS redirects)
27
+ - Cached DNS private-network guard
28
+ - Confidence score + detection method per finding
13
29
 
14
30
  The default vulnerable redirect destination is:
15
31
  https://bestbuy.com
@@ -23,3 +39,5 @@ monoclaude redirect --domain example.com --discovery-only
23
39
  monoclaude redirect --domain example.com --sources wayback,commoncrawl,urlscan
24
40
  monoclaude redirect --url "https://example.com/login?next=/home"
25
41
  monoclaude redirect --payload "https://bestbuy.com"
42
+ monoclaude redirect --concurrency 50 --timeout 10000
43
+ monoclaude redirect --all-params
@@ -1,19 +1,26 @@
1
- # Add one SOCKS proxy per line for bulk proxy_socks_direct_engine.
2
- # This file is used only when configurations.agent.multiple_proxy_engine=true.
1
+ # Proxy Engine SOCKS proxy list for proxy_socks_direct_engine
2
+ #
3
+ # Used when configurations.agent.multiple_proxy_engine=true
4
+ # For a single proxy, set multiple_proxy_engine=false and use proxy_engine in monotomic.json
3
5
  #
4
6
  # Supported formats:
5
- # host:port
6
- # host:port:user:pass
7
- # host:port:socks4
8
- # host:port:socks5:user:pass
9
- # host|port
10
- # host|port|user|pass
11
- # socks5://user:pass@host:port
12
- # socks4://host:port
7
+ # host:port
8
+ # host:port:user:pass
9
+ # host:port:socks5
10
+ # host:port:socks5:user:pass
11
+ # host|port|user|pass
12
+ # socks5://user:pass@host:port
13
+ # socks4://host:port
14
+ # socks5h://host:port
13
15
  #
14
16
  # Examples:
15
- # ipburger.com:28069
16
- # ipburger.com:28069:socks5:username:password
17
+ # ipburger.com:28069
18
+ # ipburger.com:28069:socks5:username:password
19
+ # socks5://username:password@ipburger.com:28069
17
20
  #
18
- # For one proxy only, keep multiple_proxy_engine=false and configure the
19
- # top-level proxy_engine object in monotomic.json instead.
21
+ # Advanced backend:
22
+ # - Parallel validation with retry and latency scoring
23
+ # - SMTP/MX route probing before send
24
+ # - Latency-weighted rotation (fastest proxies preferred)
25
+ # - Auto cooldown on repeated failures
26
+ # - Validation report saved to results/proxy_engine/
package/commands/auth.js CHANGED
@@ -1 +1 @@
1
- const a0_0x519063=a0_0x2c99;(function(_0x31da2c,_0xe66603){const _0x48dba5=a0_0x2c99,_0x5323e5=_0x31da2c();while(!![]){try{const _0x481874=parseInt(_0x48dba5(0x163))/0x1*(parseInt(_0x48dba5(0x147))/0x2)+parseInt(_0x48dba5(0x162))/0x3+parseInt(_0x48dba5(0x169))/0x4+-parseInt(_0x48dba5(0x141))/0x5*(parseInt(_0x48dba5(0x14a))/0x6)+-parseInt(_0x48dba5(0x138))/0x7*(parseInt(_0x48dba5(0x15a))/0x8)+-parseInt(_0x48dba5(0x14d))/0x9+parseInt(_0x48dba5(0x154))/0xa;if(_0x481874===_0xe66603)break;else _0x5323e5['push'](_0x5323e5['shift']());}catch(_0x19089a){_0x5323e5['push'](_0x5323e5['shift']());}}}(a0_0x1da5,0x9fa2b));function a0_0x2c99(_0x403019,_0x166922){const _0x3fd14e=a0_0x1da5();return a0_0x2c99=function(_0xfcc6cd,_0x48ea8f){_0xfcc6cd=_0xfcc6cd-0x137;let _0x1da557=_0x3fd14e[_0xfcc6cd];return _0x1da557;},a0_0x2c99(_0x403019,_0x166922);}function a0_0x1da5(){const _0x5add19=['then','Logging\x20in...','search','6046GWTHQl','\x0aPlease\x20add\x20`sudo`\x20to\x20command','href','1949694FYXHCe','chalk','There\x20was\x20no\x20key\x20found,\x20why?','5793489xXWOkV','email','./monotomic.key','monotomic.key','code','clientid','env','12422850AXLEnl','REMOTE_ID','toString','ENOENT','win32','exports','488KdwEZZ','start','string','apply','/oauth/authorize','/.mtkn.','Logging\x20out...','Authorizing\x20application.\x20Opening\x20browser','900939qamjIw','88xMbCnB','message','error','success','join','input','4829376NaiCEJ','path','48034XRkbFC','\x0aCan\x27t\x20find\x20','searchParams','EACCES','(((.+)+)+)+$','green','exit','TOKEN_FILE_PATH','nanospinner','20PqqYpG','Logged\x20out\x20on\x20','set'];a0_0x1da5=function(){return _0x5add19;};return a0_0x1da5();}const a0_0x48ea8f=(function(){let _0x5a4087=!![];return function(_0x435dc6,_0x38479a){const _0x46c04e=_0x5a4087?function(){const _0x1bd135=a0_0x2c99;if(_0x38479a){const _0x4f7476=_0x38479a[_0x1bd135(0x15d)](_0x435dc6,arguments);return _0x38479a=null,_0x4f7476;}}:function(){};return _0x5a4087=![],_0x46c04e;};}()),a0_0xfcc6cd=a0_0x48ea8f(this,function(){const _0x5d8d85=a0_0x2c99;return a0_0xfcc6cd[_0x5d8d85(0x156)]()[_0x5d8d85(0x146)](_0x5d8d85(0x13c))[_0x5d8d85(0x156)]()['constructor'](a0_0xfcc6cd)[_0x5d8d85(0x146)](_0x5d8d85(0x13c));});a0_0xfcc6cd();const path=require(a0_0x519063(0x137)),chalk=require(a0_0x519063(0x14b)),{createSpinner}=require(a0_0x519063(0x140)),{platform,homedir,tmpdir}=require('os'),{loginAccount}=require('../functions/auths'),{frames,readFile,storeUser,removeFile,CURRENT_DIR,validateEmail,openLinkInBrowser,M_WEBSITE,storeTokenKey}=require('../functions/globals');function AuthCommands(){return{'login':login,'logout':logout};}function logout(){const _0x550bdb=a0_0x519063;try{const _0x16fe83=createSpinner(_0x550bdb(0x160),{'frames':frames})[_0x550bdb(0x15b)]();removeFile(homedir()+'/'+process[_0x550bdb(0x153)][_0x550bdb(0x13f)]),removeFile(homedir()+_0x550bdb(0x15f)+process[_0x550bdb(0x153)][_0x550bdb(0x13f)]),_0x16fe83[_0x550bdb(0x166)]({'text':_0x550bdb(0x142)+chalk['greenBright'](new Date())+'!'});}catch(_0x2e9f6c){if(_0x2e9f6c['code']==_0x550bdb(0x13b)&&platform()!=_0x550bdb(0x158))console[_0x550bdb(0x165)](_0x550bdb(0x148));else console[_0x550bdb(0x165)]('\x0aPlease\x20run\x20as\x20Administrator');if(_0x2e9f6c['code']==_0x550bdb(0x157))process[_0x550bdb(0x13e)](0x1);else console[_0x550bdb(0x165)](_0x2e9f6c[_0x550bdb(0x164)])&&process[_0x550bdb(0x13e)](0x1);}}function login(_0x46c4ea){const _0x41cc5b=a0_0x519063;try{const _0x3666d5={'type':_0x41cc5b(0x168),'name':_0x41cc5b(0x14e),'message':'Email:'};_0x46c4ea(_0x3666d5)[_0x41cc5b(0x144)](_0x352c2e=>{const _0x52ebfa=_0x41cc5b,{email:_0xa94385}=_0x352c2e,_0x4af464=''+readFile(path[_0x52ebfa(0x167)](CURRENT_DIR,_0x52ebfa(0x14f))),_0x1ca341={'token':_0x4af464,'email':_0xa94385},_0x47cba6=createSpinner(_0x52ebfa(0x145),{'frames':frames})[_0x52ebfa(0x15b)]();!_0x4af464&&(_0x47cba6[_0x52ebfa(0x165)]({'text':_0x52ebfa(0x14c)}),process[_0x52ebfa(0x13e)](0x1)),(!_0xa94385||!validateEmail(_0xa94385))&&(_0x47cba6[_0x52ebfa(0x165)]({'text':'Please,\x20enter\x20your\x20valid\x20email!'}),process[_0x52ebfa(0x13e)](0x1)),loginAccount(_0x1ca341,async(_0xc601aa,_0x200044)=>{const _0x2b54b4=_0x52ebfa;_0xc601aa&&(_0x47cba6['error']({'text':_0xc601aa[_0x2b54b4(0x164)]}),process[_0x2b54b4(0x13e)](0x1));const {token:_0x5eb3d6,email:_0x5202f7,login_remains:_0x2dce01,vkey:_0x512db0}=_0x200044;storeUser(_0x5eb3d6,{'type':_0x2b54b4(0x15c)}),storeTokenKey(_0x512db0,{'type':_0x2b54b4(0x15c)});if(_0x200044){_0x47cba6[_0x2b54b4(0x166)]({'text':_0x2b54b4(0x161)});const _0x480356=new URL(_0x2b54b4(0x15e),M_WEBSITE);_0x480356['searchParams'][_0x2b54b4(0x143)](_0x2b54b4(0x152),process[_0x2b54b4(0x153)][_0x2b54b4(0x155)]),_0x480356[_0x2b54b4(0x13a)]['set'](_0x2b54b4(0x14e),_0x5202f7),openLinkInBrowser(_0x480356[_0x2b54b4(0x149)]);}});});}catch(_0x3d0a14){if(_0x3d0a14[_0x41cc5b(0x151)]==_0x41cc5b(0x13b)&&platform()!=_0x41cc5b(0x158))console[_0x41cc5b(0x165)](_0x41cc5b(0x148));else console[_0x41cc5b(0x165)]('\x0aPlease\x20run\x20as\x20Administrator');if(_0x3d0a14[_0x41cc5b(0x151)]=='ENOENT')console[_0x41cc5b(0x165)](_0x41cc5b(0x139)+chalk[_0x41cc5b(0x13d)](_0x41cc5b(0x150))+'\x20file\x0a\x0aUse\x20`cd\x20path/to/your/folder`\x20firstly,\x20then\x20try\x20again!'),process[_0x41cc5b(0x13e)](0x1);else console[_0x41cc5b(0x165)](_0x3d0a14[_0x41cc5b(0x164)])&&process[_0x41cc5b(0x13e)](0x1);}}module[a0_0x519063(0x159)]=AuthCommands;
1
+ function a0_0x5da8(){const _0x1c3626=['/oauth/authorize','There\x20was\x20no\x20key\x20found,\x20why?','68289PAYvHb','48LawYCm','message','email','env','then','REMOTE_ID','greenBright','\x0aPlease\x20run\x20as\x20Administrator','exit','ENOENT','117533wCVZfh','searchParams','constructor','TOKEN_FILE_PATH','apply','EACCES','Logging\x20out...','Authorizing\x20application.\x20Opening\x20browser','../functions/auths','error','exports','5xICfUX','10990JXbJnb','2124NGJDmJ','Please,\x20enter\x20your\x20valid\x20email!','(((.+)+)+)+$','3022228OdTzFw','6bGsoyR','chalk','8388PcDdrR','\x20file\x0a\x0aUse\x20`cd\x20path/to/your/folder`\x20firstly,\x20then\x20try\x20again!','\x0aCan\x27t\x20find\x20','1307621peRMAb','/.mtkn.','start','../functions/globals','24XhqRlC','set','\x0aPlease\x20add\x20`sudo`\x20to\x20command','monotomic.key','clientid','success','win32','string','3110142QJxYHp','229023CzjXre','code','toString','path'];a0_0x5da8=function(){return _0x1c3626;};return a0_0x5da8();}const a0_0x3ffe29=a0_0x2498;(function(_0x251c91,_0x42d7e0){const _0x4c5bc9=a0_0x2498,_0x1c4bfb=_0x251c91();while(!![]){try{const _0x3e2911=parseInt(_0x4c5bc9(0x1b0))/0x1*(parseInt(_0x4c5bc9(0x18d))/0x2)+-parseInt(_0x4c5bc9(0x19f))/0x3*(-parseInt(_0x4c5bc9(0x196))/0x4)+parseInt(_0x4c5bc9(0x187))/0x5*(parseInt(_0x4c5bc9(0x19e))/0x6)+-parseInt(_0x4c5bc9(0x192))/0x7*(parseInt(_0x4c5bc9(0x1a6))/0x8)+parseInt(_0x4c5bc9(0x18f))/0x9*(parseInt(_0x4c5bc9(0x188))/0xa)+parseInt(_0x4c5bc9(0x18c))/0xb+parseInt(_0x4c5bc9(0x189))/0xc*(-parseInt(_0x4c5bc9(0x1a5))/0xd);if(_0x3e2911===_0x42d7e0)break;else _0x1c4bfb['push'](_0x1c4bfb['shift']());}catch(_0x5c7f92){_0x1c4bfb['push'](_0x1c4bfb['shift']());}}}(a0_0x5da8,0x8cf8b));const a0_0x5bb96c=(function(){let _0x2f8ad7=!![];return function(_0x2880ee,_0x4cdb89){const _0x1c8904=_0x2f8ad7?function(){const _0x25f3e0=a0_0x2498;if(_0x4cdb89){const _0x4c3824=_0x4cdb89[_0x25f3e0(0x1b4)](_0x2880ee,arguments);return _0x4cdb89=null,_0x4c3824;}}:function(){};return _0x2f8ad7=![],_0x1c8904;};}()),a0_0x4a222c=a0_0x5bb96c(this,function(){const _0x378c2e=a0_0x2498;return a0_0x4a222c[_0x378c2e(0x1a1)]()['search'](_0x378c2e(0x18b))[_0x378c2e(0x1a1)]()[_0x378c2e(0x1b2)](a0_0x4a222c)['search'](_0x378c2e(0x18b));});a0_0x4a222c();const path=require(a0_0x3ffe29(0x1a2)),chalk=require(a0_0x3ffe29(0x18e)),{createSpinner}=require('nanospinner'),{platform,homedir,tmpdir}=require('os'),{loginAccount}=require(a0_0x3ffe29(0x184)),{frames,readFile,storeUser,removeFile,CURRENT_DIR,validateEmail,openLinkInBrowser,M_WEBSITE,storeTokenKey}=require(a0_0x3ffe29(0x195));function AuthCommands(){return{'login':login,'logout':logout};}function logout(){const _0x194380=a0_0x3ffe29;try{const _0x1aab5a=createSpinner(_0x194380(0x182),{'frames':frames})[_0x194380(0x194)]();removeFile(homedir()+'/'+process[_0x194380(0x1a9)][_0x194380(0x1b3)]),removeFile(homedir()+_0x194380(0x193)+process[_0x194380(0x1a9)][_0x194380(0x1b3)]),_0x1aab5a[_0x194380(0x19b)]({'text':'Logged\x20out\x20on\x20'+chalk[_0x194380(0x1ac)](new Date())+'!'});}catch(_0x29a8d0){if(_0x29a8d0[_0x194380(0x1a0)]==_0x194380(0x181)&&platform()!=_0x194380(0x19c))console['error'](_0x194380(0x198));else console['error']('\x0aPlease\x20run\x20as\x20Administrator');if(_0x29a8d0[_0x194380(0x1a0)]=='ENOENT')process['exit'](0x1);else console[_0x194380(0x185)](_0x29a8d0[_0x194380(0x1a7)])&&process[_0x194380(0x1ae)](0x1);}}function a0_0x2498(_0x98b817,_0x52e779){const _0x46f011=a0_0x5da8();return a0_0x2498=function(_0x4a222c,_0x5bb96c){_0x4a222c=_0x4a222c-0x181;let _0x5da863=_0x46f011[_0x4a222c];return _0x5da863;},a0_0x2498(_0x98b817,_0x52e779);}function login(_0x1cbcac){const _0x176da0=a0_0x3ffe29;try{const _0x2ff46c={'type':'input','name':_0x176da0(0x1a8),'message':'Email:'};_0x1cbcac(_0x2ff46c)[_0x176da0(0x1aa)](_0x2815c1=>{const _0x5a1d7d=_0x176da0,{email:_0x26a842}=_0x2815c1,_0x2f6fa6=''+readFile(path['join'](CURRENT_DIR,'./monotomic.key')),_0x1ca472={'token':_0x2f6fa6,'email':_0x26a842},_0x432a6b=createSpinner('Logging\x20in...',{'frames':frames})['start']();!_0x2f6fa6&&(_0x432a6b['error']({'text':_0x5a1d7d(0x1a4)}),process[_0x5a1d7d(0x1ae)](0x1)),(!_0x26a842||!validateEmail(_0x26a842))&&(_0x432a6b[_0x5a1d7d(0x185)]({'text':_0x5a1d7d(0x18a)}),process[_0x5a1d7d(0x1ae)](0x1)),loginAccount(_0x1ca472,async(_0x3af9c4,_0x3a61c6)=>{const _0x407e9a=_0x5a1d7d;_0x3af9c4&&(_0x432a6b['error']({'text':_0x3af9c4[_0x407e9a(0x1a7)]}),process[_0x407e9a(0x1ae)](0x1));const {token:_0x30cf41,email:_0x5cbb25,login_remains:_0x15779a,vkey:_0x22fbac}=_0x3a61c6;storeUser(_0x30cf41,{'type':_0x407e9a(0x19d)}),storeTokenKey(_0x22fbac,{'type':_0x407e9a(0x19d)});if(_0x3a61c6){_0x432a6b[_0x407e9a(0x19b)]({'text':_0x407e9a(0x183)});const _0x468ac4=new URL(_0x407e9a(0x1a3),M_WEBSITE);_0x468ac4['searchParams'][_0x407e9a(0x197)](_0x407e9a(0x19a),process['env'][_0x407e9a(0x1ab)]),_0x468ac4[_0x407e9a(0x1b1)][_0x407e9a(0x197)](_0x407e9a(0x1a8),_0x5cbb25),openLinkInBrowser(_0x468ac4['href']);}});});}catch(_0x24b114){if(_0x24b114['code']==_0x176da0(0x181)&&platform()!=_0x176da0(0x19c))console[_0x176da0(0x185)]('\x0aPlease\x20add\x20`sudo`\x20to\x20command');else console[_0x176da0(0x185)](_0x176da0(0x1ad));if(_0x24b114[_0x176da0(0x1a0)]==_0x176da0(0x1af))console[_0x176da0(0x185)](_0x176da0(0x191)+chalk['green'](_0x176da0(0x199))+_0x176da0(0x190)),process[_0x176da0(0x1ae)](0x1);else console[_0x176da0(0x185)](_0x24b114[_0x176da0(0x1a7)])&&process[_0x176da0(0x1ae)](0x1);}}module[a0_0x3ffe29(0x186)]=AuthCommands;
@@ -1 +1 @@
1
- const a1_0x103fee=a1_0x93d0;(function(_0x1bd088,_0x1720b7){const _0xd83ca9=a1_0x93d0,_0xc1465f=_0x1bd088();while(!![]){try{const _0x5b3e0f=parseInt(_0xd83ca9(0x8d))/0x1+-parseInt(_0xd83ca9(0x86))/0x2*(-parseInt(_0xd83ca9(0x82))/0x3)+-parseInt(_0xd83ca9(0x75))/0x4*(-parseInt(_0xd83ca9(0x81))/0x5)+-parseInt(_0xd83ca9(0x7c))/0x6+parseInt(_0xd83ca9(0x88))/0x7*(-parseInt(_0xd83ca9(0x8e))/0x8)+parseInt(_0xd83ca9(0x74))/0x9+-parseInt(_0xd83ca9(0x7b))/0xa;if(_0x5b3e0f===_0x1720b7)break;else _0xc1465f['push'](_0xc1465f['shift']());}catch(_0x5d611f){_0xc1465f['push'](_0xc1465f['shift']());}}}(a1_0x26f3,0x6a604));function a1_0x26f3(){const _0x440321=['8sEiPFQ','opts','(((.+)+)+)+$','5570685KOuJyk','293980SXxLky','search','All','cleaner','duplicate','Duplicate','2357720zGqbSz','1488504kEMaiF','toString','error','then','../functions/globals','10wVDjoi','6237xxicFv','all','constructor','../utils/jwtVerify','316eDRucB','exit','1478687jXnPku','toLowerCase','../functions/cleaner','Which\x20cleaner\x20would\x20you\x20use:\x20','list','36376FpXiLY'];a1_0x26f3=function(){return _0x440321;};return a1_0x26f3();}function a1_0x93d0(_0x485b26,_0x429b1d){const _0x225bd2=a1_0x26f3();return a1_0x93d0=function(_0x31534a,_0x2efabe){_0x31534a=_0x31534a-0x73;let _0x26f370=_0x225bd2[_0x31534a];return _0x26f370;},a1_0x93d0(_0x485b26,_0x429b1d);}const a1_0x2efabe=(function(){let _0x2cc924=!![];return function(_0x13a73e,_0x28f16b){const _0x586df7=_0x2cc924?function(){if(_0x28f16b){const _0x95618f=_0x28f16b['apply'](_0x13a73e,arguments);return _0x28f16b=null,_0x95618f;}}:function(){};return _0x2cc924=![],_0x586df7;};}()),a1_0x31534a=a1_0x2efabe(this,function(){const _0x19f610=a1_0x93d0;return a1_0x31534a[_0x19f610(0x7d)]()[_0x19f610(0x76)](_0x19f610(0x73))[_0x19f610(0x7d)]()[_0x19f610(0x84)](a1_0x31534a)['search']('(((.+)+)+)+$');});a1_0x31534a();const {cleanAll,cleanOnlyDuplicate}=require(a1_0x103fee(0x8a)),{isEmptyObject,fetchmonoclaudeJSONSkeleton,readEmailsFileToArray}=require(a1_0x103fee(0x80)),JwtVerify=require(a1_0x103fee(0x85));function CleanerCommands(_0xbc7ee9,_0x868b70){const _0xa66ee5=a1_0x103fee;JwtVerify(),fetchmonoclaudeJSONSkeleton();const _0x1d11bc=readEmailsFileToArray(),{all:_0x34ddf5,duplicate:_0x5036c0}=_0xbc7ee9['opts'](),_0x47f34d={'name':'cleaner','type':_0xa66ee5(0x8c),'message':_0xa66ee5(0x8b),'choices':[_0xa66ee5(0x77),_0xa66ee5(0x7a)]};try{if(_0x34ddf5)return cleanAll(_0x1d11bc);if(_0x5036c0)return cleanOnlyDuplicate(_0x1d11bc);if(isEmptyObject(_0xbc7ee9[_0xa66ee5(0x8f)]()))return _0x868b70(_0x47f34d)[_0xa66ee5(0x7f)](_0x16d426=>{const _0x4d7113=_0xa66ee5,_0x4c7838=_0x16d426[_0x4d7113(0x78)][_0x4d7113(0x89)]();if(_0x4c7838===_0x4d7113(0x83))return cleanAll(_0x1d11bc);if(_0x4c7838===_0x4d7113(0x79))return cleanOnlyDuplicate(_0x1d11bc);});}catch(_0x22ac8c){console[_0xa66ee5(0x7e)](_0x22ac8c['message']),process[_0xa66ee5(0x87)](0x1);}}module['exports']=CleanerCommands;
1
+ const a1_0x3ec88b=a1_0x43a6;(function(_0x41a210,_0x31657a){const _0x54181c=a1_0x43a6,_0xb82997=_0x41a210();while(!![]){try{const _0x1331a2=parseInt(_0x54181c(0x92))/0x1*(-parseInt(_0x54181c(0x7b))/0x2)+-parseInt(_0x54181c(0x93))/0x3*(parseInt(_0x54181c(0x86))/0x4)+-parseInt(_0x54181c(0x7a))/0x5+-parseInt(_0x54181c(0x82))/0x6*(parseInt(_0x54181c(0x77))/0x7)+parseInt(_0x54181c(0x76))/0x8*(parseInt(_0x54181c(0x8d))/0x9)+-parseInt(_0x54181c(0x73))/0xa*(-parseInt(_0x54181c(0x74))/0xb)+parseInt(_0x54181c(0x85))/0xc*(parseInt(_0x54181c(0x79))/0xd);if(_0x1331a2===_0x31657a)break;else _0xb82997['push'](_0xb82997['shift']());}catch(_0x1bfc4f){_0xb82997['push'](_0xb82997['shift']());}}}(a1_0x1879,0xe7890));function a1_0x1879(){const _0x3b888d=['37197gnuVqo','message','../utils/jwtVerify','search','constructor','86lRfzKr','12300mVnneT','Which\x20cleaner\x20would\x20you\x20use:\x20','14590ZpSjrt','10142qnKCIX','exports','3544mMdqZE','2438079sOrxIz','error','6838zfPjFQ','7738640BtuiqA','41070DBNWnY','duplicate','all','apply','toString','cleaner','Duplicate','6CspDtq','then','(((.+)+)+)+$','74532wBImMx','1788GYurde','All','opts','exit','../functions/globals','list','../functions/cleaner'];a1_0x1879=function(){return _0x3b888d;};return a1_0x1879();}const a1_0xa84839=(function(){let _0x4942d7=!![];return function(_0x4006df,_0x4c7916){const _0xe84a49=_0x4942d7?function(){const _0x232f0c=a1_0x43a6;if(_0x4c7916){const _0x5c33b1=_0x4c7916[_0x232f0c(0x7e)](_0x4006df,arguments);return _0x4c7916=null,_0x5c33b1;}}:function(){};return _0x4942d7=![],_0xe84a49;};}()),a1_0x253f65=a1_0xa84839(this,function(){const _0x429bfd=a1_0x43a6;return a1_0x253f65['toString']()[_0x429bfd(0x90)](_0x429bfd(0x84))[_0x429bfd(0x7f)]()[_0x429bfd(0x91)](a1_0x253f65)[_0x429bfd(0x90)](_0x429bfd(0x84));});function a1_0x43a6(_0x5c69e4,_0x36783c){const _0x5061d=a1_0x1879();return a1_0x43a6=function(_0x253f65,_0xa84839){_0x253f65=_0x253f65-0x73;let _0x18796c=_0x5061d[_0x253f65];return _0x18796c;},a1_0x43a6(_0x5c69e4,_0x36783c);}a1_0x253f65();const {cleanAll,cleanOnlyDuplicate}=require(a1_0x3ec88b(0x8c)),{isEmptyObject,fetchmonoclaudeJSONSkeleton,readEmailsFileToArray}=require(a1_0x3ec88b(0x8a)),JwtVerify=require(a1_0x3ec88b(0x8f));function CleanerCommands(_0x300704,_0x53b6c9){const _0x11e0aa=a1_0x3ec88b;JwtVerify(),fetchmonoclaudeJSONSkeleton();const _0x57c0be=readEmailsFileToArray(),{all:_0x15df74,duplicate:_0x107f34}=_0x300704[_0x11e0aa(0x88)](),_0xbbbd73={'name':_0x11e0aa(0x80),'type':_0x11e0aa(0x8b),'message':_0x11e0aa(0x94),'choices':[_0x11e0aa(0x87),_0x11e0aa(0x81)]};try{if(_0x15df74)return cleanAll(_0x57c0be);if(_0x107f34)return cleanOnlyDuplicate(_0x57c0be);if(isEmptyObject(_0x300704['opts']()))return _0x53b6c9(_0xbbbd73)[_0x11e0aa(0x83)](_0x4363cf=>{const _0x326c2c=_0x11e0aa,_0x381a83=_0x4363cf['cleaner']['toLowerCase']();if(_0x381a83===_0x326c2c(0x7d))return cleanAll(_0x57c0be);if(_0x381a83===_0x326c2c(0x7c))return cleanOnlyDuplicate(_0x57c0be);});}catch(_0x29fc13){console[_0x11e0aa(0x78)](_0x29fc13[_0x11e0aa(0x8e)]),process[_0x11e0aa(0x89)](0x1);}}module[a1_0x3ec88b(0x75)]=CleanerCommands;
@@ -1 +1 @@
1
- const a2_0x26b79b=a2_0x17b7;(function(_0xdbb5f4,_0x3a7020){const _0x5c0834=a2_0x17b7,_0x530870=_0xdbb5f4();while(!![]){try{const _0x1c41fd=parseInt(_0x5c0834(0x1ac))/0x1*(-parseInt(_0x5c0834(0x1aa))/0x2)+parseInt(_0x5c0834(0x1b6))/0x3*(-parseInt(_0x5c0834(0x1ae))/0x4)+-parseInt(_0x5c0834(0x1a9))/0x5+-parseInt(_0x5c0834(0x19d))/0x6+parseInt(_0x5c0834(0x1b4))/0x7+parseInt(_0x5c0834(0x1b1))/0x8*(-parseInt(_0x5c0834(0x1a3))/0x9)+parseInt(_0x5c0834(0x1a7))/0xa;if(_0x1c41fd===_0x3a7020)break;else _0x530870['push'](_0x530870['shift']());}catch(_0x37b3ed){_0x530870['push'](_0x530870['shift']());}}}(a2_0x2553,0xecb25));function a2_0x17b7(_0x2e957f,_0x3053b8){const _0x1e4925=a2_0x2553();return a2_0x17b7=function(_0x2d36eb,_0x4caf90){_0x2d36eb=_0x2d36eb-0x19d;let _0x255382=_0x1e4925[_0x2d36eb];return _0x255382;},a2_0x17b7(_0x2e957f,_0x3053b8);}const a2_0x4caf90=(function(){let _0x1b1868=!![];return function(_0x541b84,_0x4935b3){const _0x842764=_0x1b1868?function(){const _0x118e1d=a2_0x17b7;if(_0x4935b3){const _0x206fff=_0x4935b3[_0x118e1d(0x1a8)](_0x541b84,arguments);return _0x4935b3=null,_0x206fff;}}:function(){};return _0x1b1868=![],_0x842764;};}()),a2_0x2d36eb=a2_0x4caf90(this,function(){const _0x4b4a53=a2_0x17b7;return a2_0x2d36eb[_0x4b4a53(0x1b0)]()[_0x4b4a53(0x19e)](_0x4b4a53(0x1af))[_0x4b4a53(0x1b0)]()[_0x4b4a53(0x1a6)](a2_0x2d36eb)[_0x4b4a53(0x19e)](_0x4b4a53(0x1af));});a2_0x2d36eb();function a2_0x2553(){const _0x257e87=['6bPPJaW','toLowerCase','ips','7463322IgTdRQ','search','../functions/globals','exit','domains','opts','9hoONwc','extract','../utils/jwtVerify','constructor','25009450oDjpSV','apply','1275130hePXoB','436066sdtRXb','error','3ZjiAZD','Domains','565296sasQIQ','(((.+)+)+)+$','toString','1264376vbVfBj','../functions/extractor','IPs','7435897WDRwIC','message'];a2_0x2553=function(){return _0x257e87;};return a2_0x2553();}const {extractIPs,extractDomains}=require(a2_0x26b79b(0x1b2)),{isEmptyObject,fetchmonoclaudeJSONSkeleton,readEmailsFileAsStream}=require(a2_0x26b79b(0x19f)),JwtVerify=require(a2_0x26b79b(0x1a5));function ExtractorCommands(_0x168c49,_0x3ae688){const _0x44554c=a2_0x26b79b;JwtVerify(),fetchmonoclaudeJSONSkeleton();const _0x260549=()=>readEmailsFileAsStream({'trackProfiles':![]}),{ip:_0x5a3702,domain:_0x56bdfc}=_0x168c49[_0x44554c(0x1a2)](),_0x5699b7={'name':'extract','type':'list','message':'What\x20do\x20you\x20want\x20to\x20extract:\x20','choices':[_0x44554c(0x1b3),_0x44554c(0x1ad)]};try{if(_0x5a3702)return extractIPs(_0x260549());if(_0x56bdfc)return extractDomains(_0x260549());if(isEmptyObject(_0x168c49[_0x44554c(0x1a2)]()))return _0x3ae688(_0x5699b7)['then'](_0x1808cb=>{const _0x29eab5=_0x44554c,_0x1d827d=_0x1808cb[_0x29eab5(0x1a4)][_0x29eab5(0x1b7)]();if(_0x1d827d===_0x29eab5(0x1b8))return extractIPs(_0x260549());if(_0x1d827d===_0x29eab5(0x1a1))return extractDomains(_0x260549());});}catch(_0x632b10){console[_0x44554c(0x1ab)](_0x632b10[_0x44554c(0x1b5)]),process[_0x44554c(0x1a0)](0x1);}}module['exports']=ExtractorCommands;
1
+ function a2_0x3e80(_0x47fa8b,_0x10545d){const _0x275538=a2_0x34aa();return a2_0x3e80=function(_0x3236f1,_0x5ed942){_0x3236f1=_0x3236f1-0x78;let _0x34aa9f=_0x275538[_0x3236f1];return _0x34aa9f;},a2_0x3e80(_0x47fa8b,_0x10545d);}function a2_0x34aa(){const _0x40835c=['42820abHjAu','7477497pRuhcV','413IwEVhc','880CqroOW','exports','What\x20do\x20you\x20want\x20to\x20extract:\x20','3bTempk','extract','../functions/extractor','62454gMEbwr','16fyYBZX','message','ips','exit','1721170vbDoFJ','../functions/globals','2648260JCqzXO','search','4910ZzrAwj','565987WYkTcp','../utils/jwtVerify','domains','opts','toString','(((.+)+)+)+$','Domains'];a2_0x34aa=function(){return _0x40835c;};return a2_0x34aa();}const a2_0x13da40=a2_0x3e80;(function(_0x18c5f0,_0x6226f2){const _0x317426=a2_0x3e80,_0x35e770=_0x18c5f0();while(!![]){try{const _0x339d86=-parseInt(_0x317426(0x8e))/0x1+parseInt(_0x317426(0x89))/0x2+-parseInt(_0x317426(0x81))/0x3*(-parseInt(_0x317426(0x7b))/0x4)+-parseInt(_0x317426(0x8b))/0x5+parseInt(_0x317426(0x84))/0x6*(-parseInt(_0x317426(0x7d))/0x7)+parseInt(_0x317426(0x85))/0x8*(parseInt(_0x317426(0x7c))/0x9)+parseInt(_0x317426(0x8d))/0xa*(parseInt(_0x317426(0x7e))/0xb);if(_0x339d86===_0x6226f2)break;else _0x35e770['push'](_0x35e770['shift']());}catch(_0x3cb2e4){_0x35e770['push'](_0x35e770['shift']());}}}(a2_0x34aa,0xd2902));const a2_0x5ed942=(function(){let _0x4769a4=!![];return function(_0x39fb63,_0xe79693){const _0x4080b8=_0x4769a4?function(){if(_0xe79693){const _0x37c1a7=_0xe79693['apply'](_0x39fb63,arguments);return _0xe79693=null,_0x37c1a7;}}:function(){};return _0x4769a4=![],_0x4080b8;};}()),a2_0x3236f1=a2_0x5ed942(this,function(){const _0x5df851=a2_0x3e80;return a2_0x3236f1[_0x5df851(0x78)]()['search'](_0x5df851(0x79))[_0x5df851(0x78)]()['constructor'](a2_0x3236f1)[_0x5df851(0x8c)](_0x5df851(0x79));});a2_0x3236f1();const {extractIPs,extractDomains}=require(a2_0x13da40(0x83)),{isEmptyObject,fetchmonoclaudeJSONSkeleton,readEmailsFileAsStream}=require(a2_0x13da40(0x8a)),JwtVerify=require(a2_0x13da40(0x8f));function ExtractorCommands(_0x181def,_0x59f186){const _0x5ba938=a2_0x13da40;JwtVerify(),fetchmonoclaudeJSONSkeleton();const _0x35ba8d=()=>readEmailsFileAsStream({'trackProfiles':![]}),{ip:_0x4c448,domain:_0x410619}=_0x181def[_0x5ba938(0x91)](),_0x2f0f00={'name':_0x5ba938(0x82),'type':'list','message':_0x5ba938(0x80),'choices':['IPs',_0x5ba938(0x7a)]};try{if(_0x4c448)return extractIPs(_0x35ba8d());if(_0x410619)return extractDomains(_0x35ba8d());if(isEmptyObject(_0x181def[_0x5ba938(0x91)]()))return _0x59f186(_0x2f0f00)['then'](_0x366f5f=>{const _0x25fd37=_0x5ba938,_0x40ad3e=_0x366f5f[_0x25fd37(0x82)]['toLowerCase']();if(_0x40ad3e===_0x25fd37(0x87))return extractIPs(_0x35ba8d());if(_0x40ad3e===_0x25fd37(0x90))return extractDomains(_0x35ba8d());});}catch(_0x1ac8a8){console['error'](_0x1ac8a8[_0x5ba938(0x86)]),process[_0x5ba938(0x88)](0x1);}}module[a2_0x13da40(0x7f)]=ExtractorCommands;
@@ -1 +1 @@
1
- const a3_0x1a31a6=a3_0x3c79;(function(_0x562de9,_0x4d65a2){const _0x339c07=a3_0x3c79,_0x2f8ecc=_0x562de9();while(!![]){try{const _0x23c6bc=-parseInt(_0x339c07(0x74))/0x1+parseInt(_0x339c07(0x85))/0x2+parseInt(_0x339c07(0x80))/0x3*(-parseInt(_0x339c07(0x90))/0x4)+parseInt(_0x339c07(0x91))/0x5*(-parseInt(_0x339c07(0x89))/0x6)+parseInt(_0x339c07(0x70))/0x7+-parseInt(_0x339c07(0x72))/0x8+parseInt(_0x339c07(0x7e))/0x9;if(_0x23c6bc===_0x4d65a2)break;else _0x2f8ecc['push'](_0x2f8ecc['shift']());}catch(_0x216efe){_0x2f8ecc['push'](_0x2f8ecc['shift']());}}}(a3_0x302a,0x18a3f));const a3_0x4a6bee=(function(){let _0x4d3142=!![];return function(_0x129fc7,_0x4394c8){const _0x3aab9c=_0x4d3142?function(){if(_0x4394c8){const _0x39df67=_0x4394c8['apply'](_0x129fc7,arguments);return _0x4394c8=null,_0x39df67;}}:function(){};return _0x4d3142=![],_0x3aab9c;};}()),a3_0x3d1735=a3_0x4a6bee(this,function(){const _0x63383a=a3_0x3c79;return a3_0x3d1735[_0x63383a(0x79)]()[_0x63383a(0x87)]('(((.+)+)+)+$')['toString']()[_0x63383a(0x84)](a3_0x3d1735)[_0x63383a(0x87)](_0x63383a(0x6a));});function a3_0x3c79(_0x3191f9,_0x4d1ac8){const _0x402f8d=a3_0x302a();return a3_0x3c79=function(_0x3d1735,_0x4a6bee){_0x3d1735=_0x3d1735-0x69;let _0x302abe=_0x402f8d[_0x3d1735];return _0x302abe;},a3_0x3c79(_0x3191f9,_0x4d1ac8);}a3_0x3d1735();function a3_0x302a(){const _0x5e3422=['\x20[\x22','3303387DlidqF','\x0a\x20*\x20Conflicts:\x20','24SoFZiD','error','children','===================\x0a','constructor','227812gWDKzG','Basic','search','log','6fvqmnK','conflicts','includes','\x22]\x0a','Premium','All','filter','90032zpFzXO','304345oopCoH','../functions/globals','forEach','join','ref','\x20All\x20Features\x0a\x20----------------------\x0a\x0a','premium','(((.+)+)+)+$','dim','../utils/jwtVerify','Description:\x20','\x0a\x20]','message','1227261yoYlpT',',\x20\x0a\x20','1207624rkIdNm','green','163459sLTxdt',']\x0a\x20*\x20License:\x20','\x09{\x22','toNameCase','description','toString','exit','map','title'];a3_0x302a=function(){return _0x5e3422;};return a3_0x302a();}const {FEATURES,paint}=require(a3_0x1a31a6(0x92)),JwtVerify=require(a3_0x1a31a6(0x6c));function FeaturesCommands(){const _0x218664=a3_0x1a31a6;JwtVerify();const _0x30dbbc=FEATURES;try{console['log'](_0x218664(0x96)),_0x30dbbc[_0x218664(0x93)]((_0xef9138,_0x1d4f71)=>{const _0x2d5cae=_0x218664;console[_0x2d5cae(0x88)](paint('>>',_0x2d5cae(0x73))+'\x20'+_0xef9138[_0x2d5cae(0x7c)][_0x2d5cae(0x77)]()+_0x2d5cae(0x7d)+_0xef9138['ref']+_0x2d5cae(0x8c)+paint('->',_0x2d5cae(0x73))+'\x20'+paint(_0x2d5cae(0x6d)+_0xef9138[_0x2d5cae(0x78)])+'\x0a\x0a'),console[_0x2d5cae(0x88)]('\x20*\x20Children:\x20['+_0xef9138[_0x2d5cae(0x82)][_0x2d5cae(0x79)]()+_0x2d5cae(0x75)+(_0xef9138[_0x2d5cae(0x69)]?_0x2d5cae(0x8d):_0x2d5cae(0x86))+_0x2d5cae(0x7f)+((()=>{const _0x386059=_0x2d5cae;if(!_0xef9138[_0x386059(0x8a)][0x0])return'[]';if(_0xef9138['conflicts'][0x0]==='*')return _0x386059(0x8e);else return'['+_0xef9138['conflicts'][_0x386059(0x7b)](_0x160006=>{const _0xef28a3=_0x386059,_0x2ca9d1=_0x30dbbc[_0xef28a3(0x8f)](_0x32badc=>_0x32badc[_0xef28a3(0x95)][_0xef28a3(0x8b)](_0x160006))[0x0],_0x4f2f7e=_0xef28a3(0x76)+_0x160006+'\x22:\x20'+paint('\x22'+_0x2ca9d1[_0xef28a3(0x78)]+'\x22',_0xef28a3(0x6b))+'}';return _0x4f2f7e;})[_0x386059(0x94)](_0x386059(0x71))+_0x386059(0x6e);})())+'\x0a'),console[_0x2d5cae(0x88)](''+paint(_0x2d5cae(0x83),_0x2d5cae(0x6b)));});}catch(_0x192c0c){console[_0x218664(0x81)](_0x192c0c[_0x218664(0x6f)]),process[_0x218664(0x7a)](0x1);}}module['exports']=FeaturesCommands;
1
+ const a3_0x4fd6b1=a3_0x4505;function a3_0x2fc9(){const _0x32e19e=['Description:\x20','dim','conflicts','premium','../functions/globals','All','636IVLCRQ','(((.+)+)+)+$','2717368jGKdzf','green','7wCoHqw','1089392pjHQZy','exit','description','\x20[\x22','log','129TlbWsk','toString','toNameCase','===================\x0a','apply','filter','\x22:\x20','../utils/jwtVerify','includes','forEach','\x0a\x20*\x20Conflicts:\x20',',\x20\x0a\x20','children','ref','title','\x22]\x0a','2339334EBEJmP','1810xkjSJi','259996qsvcrM','Premium','40AftOAB','\x20All\x20Features\x0a\x20----------------------\x0a\x0a','328155HIkwkR','map','Basic','5814SzheVG'];a3_0x2fc9=function(){return _0x32e19e;};return a3_0x2fc9();}(function(_0x4d84cc,_0x4da411){const _0x5753fb=a3_0x4505,_0x339a49=_0x4d84cc();while(!![]){try{const _0x4252cd=parseInt(_0x5753fb(0x1b4))/0x1+-parseInt(_0x5753fb(0x1b7))/0x2*(-parseInt(_0x5753fb(0x1c8))/0x3)+parseInt(_0x5753fb(0x1c3))/0x4+parseInt(_0x5753fb(0x1af))/0x5*(parseInt(_0x5753fb(0x1be))/0x6)+-parseInt(_0x5753fb(0x1c2))/0x7*(parseInt(_0x5753fb(0x1c0))/0x8)+-parseInt(_0x5753fb(0x1ae))/0x9+parseInt(_0x5753fb(0x1b2))/0xa*(parseInt(_0x5753fb(0x1b0))/0xb);if(_0x4252cd===_0x4da411)break;else _0x339a49['push'](_0x339a49['shift']());}catch(_0x1ea287){_0x339a49['push'](_0x339a49['shift']());}}}(a3_0x2fc9,0x3f307));const a3_0x6d89c8=(function(){let _0x4dbb53=!![];return function(_0x4480ac,_0x38e3e7){const _0x29a96c=_0x4dbb53?function(){const _0x355dc9=a3_0x4505;if(_0x38e3e7){const _0x4cb816=_0x38e3e7[_0x355dc9(0x1a2)](_0x4480ac,arguments);return _0x38e3e7=null,_0x4cb816;}}:function(){};return _0x4dbb53=![],_0x29a96c;};}()),a3_0x1e2181=a3_0x6d89c8(this,function(){const _0x5349dc=a3_0x4505;return a3_0x1e2181['toString']()['search'](_0x5349dc(0x1bf))['toString']()['constructor'](a3_0x1e2181)['search'](_0x5349dc(0x1bf));});a3_0x1e2181();const {FEATURES,paint}=require(a3_0x4fd6b1(0x1bc)),JwtVerify=require(a3_0x4fd6b1(0x1a5));function FeaturesCommands(){const _0x3e78e7=a3_0x4fd6b1;JwtVerify();const _0x5f41fb=FEATURES;try{console[_0x3e78e7(0x1c7)](_0x3e78e7(0x1b3)),_0x5f41fb[_0x3e78e7(0x1a7)]((_0x59fe76,_0x2f2e1e)=>{const _0x48cd56=_0x3e78e7;console[_0x48cd56(0x1c7)](paint('>>',_0x48cd56(0x1c1))+'\x20'+_0x59fe76[_0x48cd56(0x1ac)][_0x48cd56(0x1ca)]()+_0x48cd56(0x1c6)+_0x59fe76[_0x48cd56(0x1ab)]+_0x48cd56(0x1ad)+paint('->',_0x48cd56(0x1c1))+'\x20'+paint(_0x48cd56(0x1b8)+_0x59fe76[_0x48cd56(0x1c5)])+'\x0a\x0a'),console[_0x48cd56(0x1c7)]('\x20*\x20Children:\x20['+_0x59fe76[_0x48cd56(0x1aa)][_0x48cd56(0x1c9)]()+']\x0a\x20*\x20License:\x20'+(_0x59fe76[_0x48cd56(0x1bb)]?_0x48cd56(0x1b1):_0x48cd56(0x1b6))+_0x48cd56(0x1a8)+((()=>{const _0x1e4bde=_0x48cd56;if(!_0x59fe76[_0x1e4bde(0x1ba)][0x0])return'[]';if(_0x59fe76['conflicts'][0x0]==='*')return _0x1e4bde(0x1bd);else return'['+_0x59fe76[_0x1e4bde(0x1ba)][_0x1e4bde(0x1b5)](_0x2b40d3=>{const _0x41d331=_0x1e4bde,_0xba6b29=_0x5f41fb[_0x41d331(0x1a3)](_0xb3135a=>_0xb3135a[_0x41d331(0x1ab)][_0x41d331(0x1a6)](_0x2b40d3))[0x0],_0x2fa79a='\x09{\x22'+_0x2b40d3+_0x41d331(0x1a4)+paint('\x22'+_0xba6b29[_0x41d331(0x1c5)]+'\x22',_0x41d331(0x1b9))+'}';return _0x2fa79a;})['join'](_0x1e4bde(0x1a9))+'\x0a\x20]';})())+'\x0a'),console[_0x48cd56(0x1c7)](''+paint(_0x48cd56(0x1cb),_0x48cd56(0x1b9)));});}catch(_0x2425a3){console['error'](_0x2425a3['message']),process[_0x3e78e7(0x1c4)](0x1);}}function a3_0x4505(_0x40f19f,_0x62337){const _0xa9c5fc=a3_0x2fc9();return a3_0x4505=function(_0x1e2181,_0x6d89c8){_0x1e2181=_0x1e2181-0x1a2;let _0x2fc9cf=_0xa9c5fc[_0x1e2181];return _0x2fc9cf;},a3_0x4505(_0x40f19f,_0x62337);}module['exports']=FeaturesCommands;
@@ -1 +1 @@
1
- const a4_0x1e67e3=a4_0x1e03;(function(_0x3e481d,_0x5a38d1){const _0x3a1988=a4_0x1e03,_0x491a88=_0x3e481d();while(!![]){try{const _0x14e802=-parseInt(_0x3a1988(0xc5))/0x1+parseInt(_0x3a1988(0xb0))/0x2*(parseInt(_0x3a1988(0xbb))/0x3)+parseInt(_0x3a1988(0xc2))/0x4+-parseInt(_0x3a1988(0xbf))/0x5*(-parseInt(_0x3a1988(0xb9))/0x6)+parseInt(_0x3a1988(0xc4))/0x7*(-parseInt(_0x3a1988(0xb1))/0x8)+-parseInt(_0x3a1988(0xc9))/0x9+parseInt(_0x3a1988(0xb3))/0xa;if(_0x14e802===_0x5a38d1)break;else _0x491a88['push'](_0x491a88['shift']());}catch(_0x17dbec){_0x491a88['push'](_0x491a88['shift']());}}}(a4_0x51d2,0xc309f));const a4_0x578bd2=(function(){let _0x28644f=!![];return function(_0x30dc2b,_0x4fa238){const _0x18ecd8=_0x28644f?function(){const _0xa08024=a4_0x1e03;if(_0x4fa238){const _0x170565=_0x4fa238[_0xa08024(0xb4)](_0x30dc2b,arguments);return _0x4fa238=null,_0x170565;}}:function(){};return _0x28644f=![],_0x18ecd8;};}()),a4_0x51b9f7=a4_0x578bd2(this,function(){const _0x213689=a4_0x1e03;return a4_0x51b9f7[_0x213689(0xb5)]()[_0x213689(0xc8)](_0x213689(0xbe))[_0x213689(0xb5)]()['constructor'](a4_0x51b9f7)[_0x213689(0xc8)](_0x213689(0xbe));});a4_0x51b9f7();function a4_0x51d2(){const _0x43b316=['placeholder','exit','2401900NLwPDE','dim','3143TzfXEv','682856eABgth','exports','../functions/globals','search','10254888RrtqAv','message','1838RgVkBk','12800qfDYzU','toLowerCase','8405890mJZjQh','apply','toString','title','forEach','error','6864pyTPeW','green','4995DddEAK','-------------------\x0a','log','(((.+)+)+)+$','1610WlHyFQ'];a4_0x51d2=function(){return _0x43b316;};return a4_0x51d2();}const {paint,removeReplacers,placeholdersToDisplay}=require(a4_0x1e67e3(0xc7)),JwtVerify=require('../utils/jwtVerify');function FunctionsCommands(){const _0x2f8264=a4_0x1e67e3;JwtVerify();const _0x5baf65=placeholdersToDisplay();try{console[_0x2f8264(0xbd)]('\x20All\x20Functions\x20(Placeholders)\x0a\x20----------------------\x0a\x0a'),_0x5baf65[_0x2f8264(0xb7)]((_0x34ad4c,_0x189452)=>{const _0x2e1581=_0x2f8264;console['log'](paint('>>',_0x2e1581(0xba))+'\x20'+removeReplacers(_0x34ad4c[_0x2e1581(0xb6)][_0x2e1581(0xb2)]())['toNameCase']()+'\x20\x0a'+paint('->','green')+'\x20'+paint(''+_0x34ad4c[_0x2e1581(0xc0)])+'\x0a'),console[_0x2e1581(0xbd)](''+paint(_0x2e1581(0xbc),_0x2e1581(0xc3)));});}catch(_0x20d449){console[_0x2f8264(0xb8)](_0x20d449[_0x2f8264(0xca)]),process[_0x2f8264(0xc1)](0x1);}}function a4_0x1e03(_0xde86a6,_0x3dac56){const _0x3fac15=a4_0x51d2();return a4_0x1e03=function(_0x51b9f7,_0x578bd2){_0x51b9f7=_0x51b9f7-0xb0;let _0x51d262=_0x3fac15[_0x51b9f7];return _0x51d262;},a4_0x1e03(_0xde86a6,_0x3dac56);}module[a4_0x1e67e3(0xc6)]=FunctionsCommands;
1
+ const a4_0x195e66=a4_0x5154;function a4_0x5154(_0x4c1f18,_0x3169a5){const _0x135322=a4_0x17d3();return a4_0x5154=function(_0x3c9a12,_0x54e521){_0x3c9a12=_0x3c9a12-0x13b;let _0x17d384=_0x135322[_0x3c9a12];return _0x17d384;},a4_0x5154(_0x4c1f18,_0x3169a5);}(function(_0x21ad84,_0x4c884c){const _0x10ffda=a4_0x5154,_0x360de0=_0x21ad84();while(!![]){try{const _0x499450=-parseInt(_0x10ffda(0x14e))/0x1+-parseInt(_0x10ffda(0x140))/0x2*(-parseInt(_0x10ffda(0x143))/0x3)+-parseInt(_0x10ffda(0x151))/0x4+-parseInt(_0x10ffda(0x13c))/0x5+parseInt(_0x10ffda(0x14a))/0x6*(parseInt(_0x10ffda(0x13b))/0x7)+-parseInt(_0x10ffda(0x14c))/0x8*(-parseInt(_0x10ffda(0x142))/0x9)+-parseInt(_0x10ffda(0x13d))/0xa*(-parseInt(_0x10ffda(0x150))/0xb);if(_0x499450===_0x4c884c)break;else _0x360de0['push'](_0x360de0['shift']());}catch(_0x1038e2){_0x360de0['push'](_0x360de0['shift']());}}}(a4_0x17d3,0x5a2ed));const a4_0x54e521=(function(){let _0x509cce=!![];return function(_0x2270b4,_0x26fc2a){const _0x2ce22a=_0x509cce?function(){if(_0x26fc2a){const _0x453c7c=_0x26fc2a['apply'](_0x2270b4,arguments);return _0x26fc2a=null,_0x453c7c;}}:function(){};return _0x509cce=![],_0x2ce22a;};}()),a4_0x3c9a12=a4_0x54e521(this,function(){const _0x243de8=a4_0x5154;return a4_0x3c9a12[_0x243de8(0x147)]()[_0x243de8(0x13e)](_0x243de8(0x13f))[_0x243de8(0x147)]()['constructor'](a4_0x3c9a12)['search'](_0x243de8(0x13f));});a4_0x3c9a12();const {paint,removeReplacers,placeholdersToDisplay}=require(a4_0x195e66(0x152)),JwtVerify=require('../utils/jwtVerify');function a4_0x17d3(){const _0x2b3359=['4613wjMxAI','2253020hGspvq','370MDOqOC','search','(((.+)+)+)+$','1299590onoAIT','exit','3564JDPQwM','3UaRPIg','green','error','log','toString','\x20All\x20Functions\x20(Placeholders)\x0a\x20----------------------\x0a\x0a','forEach','3270jXDswu','message','10096ZoTPtV','toNameCase','559475GULnsn','exports','126533oUHtIt','2219380fInfVY','../functions/globals'];a4_0x17d3=function(){return _0x2b3359;};return a4_0x17d3();}function FunctionsCommands(){const _0x141f0d=a4_0x195e66;JwtVerify();const _0x2dc1e2=placeholdersToDisplay();try{console[_0x141f0d(0x146)](_0x141f0d(0x148)),_0x2dc1e2[_0x141f0d(0x149)]((_0x85e8c1,_0x1860cb)=>{const _0x7ed7db=_0x141f0d;console['log'](paint('>>',_0x7ed7db(0x144))+'\x20'+removeReplacers(_0x85e8c1['title']['toLowerCase']())[_0x7ed7db(0x14d)]()+'\x20\x0a'+paint('->','green')+'\x20'+paint(''+_0x85e8c1['placeholder'])+'\x0a'),console[_0x7ed7db(0x146)](''+paint('-------------------\x0a','dim'));});}catch(_0xe80671){console[_0x141f0d(0x145)](_0xe80671[_0x141f0d(0x14b)]),process[_0x141f0d(0x141)](0x1);}}module[a4_0x195e66(0x14f)]=FunctionsCommands;
package/commands/index.js CHANGED
@@ -1 +1 @@
1
- const a5_0x418dbb=a5_0x3d24;(function(_0xd9f8b8,_0x5aeb00){const _0x558adc=a5_0x3d24,_0x4a1d0a=_0xd9f8b8();while(!![]){try{const _0x1d4393=parseInt(_0x558adc(0x17e))/0x1*(parseInt(_0x558adc(0x177))/0x2)+parseInt(_0x558adc(0x184))/0x3+-parseInt(_0x558adc(0x188))/0x4*(parseInt(_0x558adc(0x1b7))/0x5)+parseInt(_0x558adc(0x1c1))/0x6+parseInt(_0x558adc(0x1cc))/0x7+-parseInt(_0x558adc(0x199))/0x8*(parseInt(_0x558adc(0x182))/0x9)+-parseInt(_0x558adc(0x170))/0xa*(parseInt(_0x558adc(0x18f))/0xb);if(_0x1d4393===_0x5aeb00)break;else _0x4a1d0a['push'](_0x4a1d0a['shift']());}catch(_0xdc875e){_0x4a1d0a['push'](_0x4a1d0a['shift']());}}}(a5_0x3305,0xcf0df));const a5_0x17949d=(function(){let _0x1df65b=!![];return function(_0x39e43f,_0x31441e){const _0x335d79=_0x1df65b?function(){const _0x1a79f6=a5_0x3d24;if(_0x31441e){const _0x446bed=_0x31441e[_0x1a79f6(0x19e)](_0x39e43f,arguments);return _0x31441e=null,_0x446bed;}}:function(){};return _0x1df65b=![],_0x335d79;};}()),a5_0x19328b=a5_0x17949d(this,function(){const _0x194511=a5_0x3d24;return a5_0x19328b[_0x194511(0x1c7)]()['search'](_0x194511(0x1bf))[_0x194511(0x1c7)]()[_0x194511(0x179)](a5_0x19328b)[_0x194511(0x186)](_0x194511(0x1bf));});function a5_0x3d24(_0x46afaa,_0xe8296f){const _0x3819bf=a5_0x3305();return a5_0x3d24=function(_0x19328b,_0x17949d){_0x19328b=_0x19328b-0x16b;let _0x33052f=_0x3819bf[_0x19328b];return _0x33052f;},a5_0x3d24(_0x46afaa,_0xe8296f);}function a5_0x3305(){const _0xf576f3=['24577091zhUQtC','./verify','login','allow\x20localhost/private-network\x20targets','logout\x20your\x20KEY\x20to\x20end','stream-verify\x20emails\x20by\x20provider/domain','judge\x20webmail\x20hosts:\x20OWA,\x20Zimbra,\x20Roundcube,\x20SmarterMail','cleaner','--discovery-only','check\x20Roundcube\x20/\x20cPanel\x20webmail','5608loaygu','-n,\x20--netease','./mx','update\x20settings\x20file\x20to\x20default\x20as\x20init\x20(i.e\x20monotomic.json)\x20and\x20update\x20other\x20files','./extract','apply','user','logout','./features','--allow-private','update\x20your\x20software','print\x20result\x20to\x20screen\x20only','command','remove\x20basic\x20rubbish\x20e.g,\x20noreply,\x20postmaster,\x20png,\x20jpg,\x20contact,\x20support,\x20xero,\x20[longer\x20than\x2075\x20words]','get\x20a\x20specific\x20email\x27s\x20login\x20page','-do,\x20--domain','(c)\x20','verify\x20Barracuda\x20MX\x20domains','-l,\x20--source-limit\x20<number>','-f,\x20--file\x20<path>','start\x20sending\x20the\x20mails','external\x20redirect\x20canary\x20URL\x20(default:\x20https://bestbuy.com)','redirect\x20you\x20to\x20our\x20website','-g,\x20--google','-ho,\x20--hotmail','-m,\x20--microsoft','get\x20all\x20providers\x20for\x20sorting','functions','read\x20domains\x20from\x20a\x20file\x20(default:\x20props/redirect/domain.txt)','-e,\x20--email\x20<email>','555eDZGXe','getFullYear','clear\x20and\x20remove\x20rubbish\x20from\x20good\x20emails\x20before\x20sending','--domain-file\x20<path>','option','stream\x20emails\x20to\x20extract\x20domains\x20or\x20resolve\x20domains\x20to\x20IPs','HTTP\x20timeout\x20in\x20milliseconds','./update','(((.+)+)+)+$','--bizqq','5916372sXPrhV','./redirect','check\x20if\x20emails\x20are\x20hosted\x20on\x20OWA','-a,\x20--all','--barracuda','-d,\x20--domain\x20<domain>','toString','verify\x20Microsoft/Office\x20365\x20emails','../functions/globals','-t,\x20--timeout\x20<ms>','test\x20every\x20query\x20parameter,\x20not\x20just\x20redirect-looking\x20names','9014061klDAvB','info','view\x20your\x20user\x27s\x20information','redirect','init\x20<project-name>','action','update','remove\x20only\x20duplicates','./user','-p,\x20--payload\x20<url>','scan\x20URLs\x20from\x20a\x20file,\x20one\x20URL\x20per\x20line','list\x20of\x20all\x20the\x20available\x20types\x20of\x20functions\x20and\x20placeholders','check\x20if\x20emails\x20are\x20hosted\x20on\x20Zimbra','-c,\x20--custom\x20<domain>','description','verify\x20BizQQ\x20MX\x20domains','scan\x20supplied\x20URLs\x20for\x20open\x20redirection\x20behavior','-ip,\x20--ip','number\x20of\x20concurrent\x20checks','sorter','features','max\x20URLs\x20to\x20keep\x20per\x20passive\x20source','10PwZYMQ','judger','exports','./cleaner','verify\x20Google/Gmail\x20emails','sort\x20Microsoft\x20(Office\x20365)\x20accounts','-tu,\x20--turbify','830MKKCqx','--all-params','constructor','-f,\x20--files','../package.json','-r,\x20--roundcube','-du,\x20--duplicate','3499uZHrem','-c,\x20--concurrency\x20<number>','resolve\x20recipient\x20domains\x20to\x20IP\x20addresses','-s,\x20--sources\x20<list>','10755Daqjlt','-p,\x20--providers','3613902eTELId','extract\x20unique\x20domains\x20from\x20recipient\x20emails','search','update\x20just\x20files\x20(e.g\x20monotomic.json)','36412MZGWbY','verify\x20AliMail\x20MX\x20domains','-o,\x20--output\x20<path>','./renew','output\x20directory\x20root\x20(default:\x20props/redirect/results)','-p,\x20--print','-o,\x20--owa'];a5_0x3305=function(){return _0xf576f3;};return a5_0x3305();}a5_0x19328b();const {executionStart}=require(a5_0x418dbb(0x1c9)),{version}=require(a5_0x418dbb(0x17b));function Commands(_0x31b27d){const _0x9d9b97=a5_0x418dbb,{program:_0x6528c6,prompt:_0x5351be}=_0x31b27d;executionStart(),_0x6528c6[_0x9d9b97(0x1a5)](_0x9d9b97(0x1d0))['description']('create\x20a\x20template\x20to\x20work\x20with')['action'](require('./init')),_0x6528c6['command'](_0x9d9b97(0x19f))[_0x9d9b97(0x1da)](_0x9d9b97(0x1ce))[_0x9d9b97(0x1d1)](require(_0x9d9b97(0x1d4))),_0x6528c6[_0x9d9b97(0x1a5)]('renew')[_0x9d9b97(0x1da)](_0x9d9b97(0x1af))[_0x9d9b97(0x1d1)](require(_0x9d9b97(0x18b))),_0x6528c6[_0x9d9b97(0x1a5)](_0x9d9b97(0x1d2))[_0x9d9b97(0x1da)](_0x9d9b97(0x1a3))['option'](_0x9d9b97(0x17a),_0x9d9b97(0x187))['option']('-m,\x20--mine',_0x9d9b97(0x19c))[_0x9d9b97(0x1d1)](function(){const _0x2a4f01=_0x9d9b97;require(_0x2a4f01(0x1be))(this,_0x5351be);}),_0x6528c6['command'](_0x9d9b97(0x191))[_0x9d9b97(0x1da)]('login\x20your\x20KEY\x20to\x20begin')[_0x9d9b97(0x1d1)](()=>require('./auth')()[_0x9d9b97(0x191)](_0x5351be)),_0x6528c6[_0x9d9b97(0x1a5)](_0x9d9b97(0x1a0))[_0x9d9b97(0x1da)](_0x9d9b97(0x193))['action'](()=>require('./auth')()[_0x9d9b97(0x1a0)]()),_0x6528c6['command']('send')[_0x9d9b97(0x1da)](_0x9d9b97(0x1ad))[_0x9d9b97(0x1d1)](require('./send')),_0x6528c6[_0x9d9b97(0x1a5)](_0x9d9b97(0x16e))[_0x9d9b97(0x1da)]('list\x20of\x20all\x20the\x20available\x20features')[_0x9d9b97(0x1d1)](require(_0x9d9b97(0x1a1))),_0x6528c6[_0x9d9b97(0x1a5)](_0x9d9b97(0x1b4))[_0x9d9b97(0x1da)](_0x9d9b97(0x1d7))[_0x9d9b97(0x1d1)](require('./functions')),_0x6528c6[_0x9d9b97(0x1a5)]('verify')['description'](_0x9d9b97(0x194))[_0x9d9b97(0x1bb)](_0x9d9b97(0x1b2),_0x9d9b97(0x1c8))[_0x9d9b97(0x1bb)](_0x9d9b97(0x1b0),_0x9d9b97(0x174))[_0x9d9b97(0x1bb)](_0x9d9b97(0x1b1),'verify\x20Hotmail/Outlook/Live\x20emails')[_0x9d9b97(0x1bb)](_0x9d9b97(0x19a),'verify\x20NetEase/Qiye\x20163\x20emails')[_0x9d9b97(0x1bb)](_0x9d9b97(0x176),'verify\x20Turbify/Yahoo\x20Business\x20MX\x20domains')[_0x9d9b97(0x1bb)]('--alimail',_0x9d9b97(0x189))[_0x9d9b97(0x1bb)]('--263xmail','verify\x20263xmail\x20MX\x20domains')['option'](_0x9d9b97(0x1c0),_0x9d9b97(0x1db))[_0x9d9b97(0x1bb)](_0x9d9b97(0x1c5),_0x9d9b97(0x1aa))[_0x9d9b97(0x1d1)](function(){const _0x24cdf6=_0x9d9b97;require(_0x24cdf6(0x190))(this,_0x5351be);}),_0x6528c6[_0x9d9b97(0x1a5)](_0x9d9b97(0x196))['description'](_0x9d9b97(0x1b9))[_0x9d9b97(0x1bb)](_0x9d9b97(0x1c4),_0x9d9b97(0x1a6))['option'](_0x9d9b97(0x17d),_0x9d9b97(0x1d3))[_0x9d9b97(0x1d1)](function(){const _0x28aae1=_0x9d9b97;require(_0x28aae1(0x173))(this,_0x5351be);}),_0x6528c6[_0x9d9b97(0x1a5)]('extract')['description'](_0x9d9b97(0x1bc))[_0x9d9b97(0x1bb)](_0x9d9b97(0x16b),_0x9d9b97(0x180))[_0x9d9b97(0x1bb)](_0x9d9b97(0x1a8),_0x9d9b97(0x185))[_0x9d9b97(0x1d1)](function(){const _0x153bca=_0x9d9b97;require(_0x153bca(0x19d))(this,_0x5351be);}),_0x6528c6[_0x9d9b97(0x1a5)]('mx')['description']('get\x20any\x20domain\x20login\x20page,\x20alternative\x20to\x20mxtoolbox.com,\x20find\x20any\x20mx\x20record')[_0x9d9b97(0x1bb)](_0x9d9b97(0x1b6),_0x9d9b97(0x1a7),null)[_0x9d9b97(0x1bb)](_0x9d9b97(0x18d),_0x9d9b97(0x1a4),null)[_0x9d9b97(0x1d1)](function(){const _0x474f55=_0x9d9b97;require(_0x474f55(0x19b))(this);}),_0x6528c6[_0x9d9b97(0x1a5)](_0x9d9b97(0x1cf))[_0x9d9b97(0x1da)](_0x9d9b97(0x1dc))[_0x9d9b97(0x1bb)]('-u,\x20--url\x20<url>','scan\x20one\x20URL',null)[_0x9d9b97(0x1bb)](_0x9d9b97(0x1c6),'discover\x20URLs\x20from\x20passive\x20sources\x20for\x20a\x20domain',null)['option'](_0x9d9b97(0x1ba),_0x9d9b97(0x1b5),null)[_0x9d9b97(0x1bb)](_0x9d9b97(0x1ac),_0x9d9b97(0x1d6),null)['option'](_0x9d9b97(0x181),'comma-separated\x20passive\x20sources:\x20wayback,commoncrawl,otx,urlscan,virustotal,ghostarchive,intelx,all',null)['option'](_0x9d9b97(0x1ab),_0x9d9b97(0x16f),null)[_0x9d9b97(0x1bb)](_0x9d9b97(0x17f),_0x9d9b97(0x16c),null)[_0x9d9b97(0x1bb)](_0x9d9b97(0x1ca),_0x9d9b97(0x1bd),null)[_0x9d9b97(0x1bb)](_0x9d9b97(0x1d5),_0x9d9b97(0x1ae),null)[_0x9d9b97(0x1bb)](_0x9d9b97(0x18a),_0x9d9b97(0x18c),null)[_0x9d9b97(0x1bb)](_0x9d9b97(0x178),_0x9d9b97(0x1cb))[_0x9d9b97(0x1bb)](_0x9d9b97(0x1a2),_0x9d9b97(0x192))[_0x9d9b97(0x1bb)](_0x9d9b97(0x197),'collect\x20URLs\x20from\x20sources\x20but\x20do\x20not\x20run\x20redirect\x20checks')['action'](function(){const _0x4bba44=_0x9d9b97;require(_0x4bba44(0x1c2))(this);}),_0x6528c6[_0x9d9b97(0x1a5)](_0x9d9b97(0x16d))[_0x9d9b97(0x1da)]('stream-sort\x20large\x20email\x20lists\x20by\x20MX/provider')[_0x9d9b97(0x1bb)](_0x9d9b97(0x1c4),'sort\x20all\x20emails\x20by\x20configured\x20MX\x20providers')['option']('-m,\x20--microsoft',_0x9d9b97(0x175))['option']('-tu,\x20--turbify','sort\x20Yahoo/Turbify\x20Business\x20MX\x20accounts')[_0x9d9b97(0x1bb)](_0x9d9b97(0x1d9),'get\x20a\x20custom\x20provider\x20sorted')[_0x9d9b97(0x1bb)](_0x9d9b97(0x183),_0x9d9b97(0x1b3))[_0x9d9b97(0x1d1)](function(){require('./sort')(this,_0x5351be);}),_0x6528c6[_0x9d9b97(0x1a5)](_0x9d9b97(0x171))['description'](_0x9d9b97(0x195))['option'](_0x9d9b97(0x18e),_0x9d9b97(0x1c3))[_0x9d9b97(0x1bb)]('-z,\x20--zimbra',_0x9d9b97(0x1d8))[_0x9d9b97(0x1bb)](_0x9d9b97(0x17c),_0x9d9b97(0x198))[_0x9d9b97(0x1bb)]('-s,\x20--smartermail','check\x20if\x20emails\x20are\x20hosted\x20on\x20SmarterMail')[_0x9d9b97(0x1d1)](function(){require('./judger')(this,_0x5351be);});const _0x15c4fa=_0x9d9b97(0x1a9)+new Date()[_0x9d9b97(0x1b8)]()+'\x0av'+version+'\x0a';return console[_0x9d9b97(0x1cd)](_0x15c4fa),_0x15c4fa;}module[a5_0x418dbb(0x172)]=Commands;
1
+ function a5_0x5bf2(_0x382c21,_0x47fb4a){const _0x35aea8=a5_0x23b5();return a5_0x5bf2=function(_0x16b3a6,_0x585997){_0x16b3a6=_0x16b3a6-0xbe;let _0x23b5f3=_0x35aea8[_0x16b3a6];return _0x23b5f3;},a5_0x5bf2(_0x382c21,_0x47fb4a);}const a5_0x278609=a5_0x5bf2;(function(_0x27fc09,_0x34274d){const _0x36a7be=a5_0x5bf2,_0x25b257=_0x27fc09();while(!![]){try{const _0x53c0bb=-parseInt(_0x36a7be(0xd5))/0x1*(parseInt(_0x36a7be(0xc9))/0x2)+parseInt(_0x36a7be(0x128))/0x3+parseInt(_0x36a7be(0xd6))/0x4*(parseInt(_0x36a7be(0x116))/0x5)+parseInt(_0x36a7be(0xfd))/0x6*(-parseInt(_0x36a7be(0xf3))/0x7)+parseInt(_0x36a7be(0xdb))/0x8+parseInt(_0x36a7be(0xc4))/0x9*(parseInt(_0x36a7be(0x10b))/0xa)+parseInt(_0x36a7be(0xe6))/0xb*(parseInt(_0x36a7be(0x11d))/0xc);if(_0x53c0bb===_0x34274d)break;else _0x25b257['push'](_0x25b257['shift']());}catch(_0x4a4c90){_0x25b257['push'](_0x25b257['shift']());}}}(a5_0x23b5,0xc5ffb));const a5_0x585997=(function(){let _0x5a9fc8=!![];return function(_0x12f3f1,_0x70decb){const _0x2ebccb=_0x5a9fc8?function(){const _0x2ce559=a5_0x5bf2;if(_0x70decb){const _0x47e70d=_0x70decb[_0x2ce559(0x108)](_0x12f3f1,arguments);return _0x70decb=null,_0x47e70d;}}:function(){};return _0x5a9fc8=![],_0x2ebccb;};}()),a5_0x16b3a6=a5_0x585997(this,function(){const _0x40fffa=a5_0x5bf2;return a5_0x16b3a6[_0x40fffa(0x122)]()['search'](_0x40fffa(0xe0))['toString']()[_0x40fffa(0xc2)](a5_0x16b3a6)[_0x40fffa(0xde)]('(((.+)+)+)+$');});function a5_0x23b5(){const _0x234463=['../functions/globals','./user','--domain-file\x20<path>','45252BRVnlJ','-du,\x20--duplicate','getFullYear','get\x20a\x20specific\x20email\x27s\x20login\x20page','./extract','toString','check\x20if\x20emails\x20are\x20hosted\x20on\x20SmarterMail','./functions','login','info','logout\x20your\x20KEY\x20to\x20end','550089UFvIXo','./update','-t,\x20--timeout\x20<ms>','../package.json','HTTP\x20timeout\x20in\x20milliseconds','check\x20Roundcube\x20/\x20cPanel\x20webmail','user','-n,\x20--netease','redirect','include\x20real\x20login\x20page\x20URL\x20in\x20judger\x20output','update','send','cleaner','constructor','-p,\x20--payload\x20<url>','9AUnHZh','verify\x20NetEase/Qiye\x20163\x20emails','stream-verify\x20emails\x20by\x20provider/domain','verify\x20Microsoft/Office\x20365\x20emails','./mx','34IGwmEB','view\x20your\x20user\x27s\x20information','-p,\x20--print','--all-params','-ho,\x20--hotmail','-tu,\x20--turbify','description','number\x20of\x20concurrent\x20checks','-c,\x20--concurrency\x20<number>','max\x20URLs\x20to\x20keep\x20per\x20passive\x20source','logout','collect\x20URLs\x20from\x20sources\x20but\x20do\x20not\x20run\x20redirect\x20checks','87477BdSrtk','21664DDyjCu','./cleaner','external\x20redirect\x20canary\x20URL\x20(default:\x20https://bestbuy.com)','-o,\x20--owa','option','8529592DlSxoC','scan\x20URLs\x20from\x20a\x20file,\x20one\x20URL\x20per\x20line','-g,\x20--google','search','verify\x20AliMail\x20MX\x20domains','(((.+)+)+)+$','./auth','-d,\x20--domain\x20<domain>','features','-do,\x20--domain','-s,\x20--smartermail','1551pIDkac','sort\x20Microsoft\x20(Office\x20365)\x20accounts','sort\x20all\x20emails\x20by\x20configured\x20MX\x20providers','verify\x20Hotmail/Outlook/Live\x20emails','-c,\x20--custom\x20<domain>','print\x20result\x20to\x20screen\x20only','-m,\x20--microsoft','start\x20sending\x20the\x20mails','get\x20any\x20domain\x20login\x20page,\x20alternative\x20to\x20mxtoolbox.com,\x20find\x20any\x20mx\x20record','read\x20domains\x20from\x20a\x20file\x20(default:\x20props/redirect/domain.txt)','verify\x20Barracuda\x20MX\x20domains','--barracuda','-f,\x20--file\x20<path>','69587FeWhPM','action','--263xmail','output\x20directory\x20root\x20(default:\x20props/redirect/results)','list\x20of\x20all\x20the\x20available\x20types\x20of\x20functions\x20and\x20placeholders','verify\x20263xmail\x20MX\x20domains','judge\x20webmail\x20hosts:\x20OWA,\x20Zimbra,\x20Roundcube,\x20SmarterMail','allow\x20localhost/private-network\x20targets','-e,\x20--email\x20<email>','--discovery-only','384WmWynq','extract\x20unique\x20domains\x20from\x20recipient\x20emails','./verify','redirect\x20you\x20to\x20our\x20website','check\x20if\x20emails\x20are\x20hosted\x20on\x20OWA','-l,\x20--source-limit\x20<number>','-u,\x20--url\x20<url>','remove\x20only\x20duplicates','renew','clear\x20and\x20remove\x20rubbish\x20from\x20good\x20emails\x20before\x20sending','./features','apply','command','verify','1240230vXrQYW','--bizqq','update\x20your\x20software','discover\x20URLs\x20from\x20passive\x20sources\x20for\x20a\x20domain','sorter','stream\x20emails\x20to\x20extract\x20domains\x20or\x20resolve\x20domains\x20to\x20IPs','-a,\x20--all','verify\x20Google/Gmail\x20emails','get\x20all\x20providers\x20for\x20sorting','stream-sort\x20large\x20email\x20lists\x20by\x20MX/provider','extract','950rmOhqs','./init','judger','-z,\x20--zimbra'];a5_0x23b5=function(){return _0x234463;};return a5_0x23b5();}a5_0x16b3a6();const {executionStart}=require(a5_0x278609(0x11a)),{version}=require(a5_0x278609(0x12b));function Commands(_0x5972fb){const _0x4c6b67=a5_0x278609,{program:_0x462065,prompt:_0x3fc33f}=_0x5972fb;executionStart(),_0x462065[_0x4c6b67(0x109)]('init\x20<project-name>')[_0x4c6b67(0xcf)]('create\x20a\x20template\x20to\x20work\x20with')[_0x4c6b67(0xf4)](require(_0x4c6b67(0x117))),_0x462065[_0x4c6b67(0x109)](_0x4c6b67(0x12e))[_0x4c6b67(0xcf)](_0x4c6b67(0xca))[_0x4c6b67(0xf4)](require(_0x4c6b67(0x11b))),_0x462065[_0x4c6b67(0x109)](_0x4c6b67(0x105))[_0x4c6b67(0xcf)](_0x4c6b67(0x100))[_0x4c6b67(0xf4)](require('./renew')),_0x462065[_0x4c6b67(0x109)](_0x4c6b67(0xbf))[_0x4c6b67(0xcf)](_0x4c6b67(0x10d))['option']('-f,\x20--files','update\x20just\x20files\x20(e.g\x20monotomic.json)')['option']('-m,\x20--mine','update\x20settings\x20file\x20to\x20default\x20as\x20init\x20(i.e\x20monotomic.json)\x20and\x20update\x20other\x20files')[_0x4c6b67(0xf4)](function(){const _0x5cd7db=_0x4c6b67;require(_0x5cd7db(0x129))(this,_0x3fc33f);}),_0x462065[_0x4c6b67(0x109)](_0x4c6b67(0x125))[_0x4c6b67(0xcf)]('login\x20your\x20KEY\x20to\x20begin')[_0x4c6b67(0xf4)](()=>require(_0x4c6b67(0xe1))()['login'](_0x3fc33f)),_0x462065['command'](_0x4c6b67(0xd3))[_0x4c6b67(0xcf)](_0x4c6b67(0x127))['action'](()=>require('./auth')()[_0x4c6b67(0xd3)]()),_0x462065[_0x4c6b67(0x109)](_0x4c6b67(0xc0))[_0x4c6b67(0xcf)](_0x4c6b67(0xed))['action'](require('./send')),_0x462065[_0x4c6b67(0x109)](_0x4c6b67(0xe3))[_0x4c6b67(0xcf)]('list\x20of\x20all\x20the\x20available\x20features')[_0x4c6b67(0xf4)](require(_0x4c6b67(0x107))),_0x462065['command']('functions')[_0x4c6b67(0xcf)](_0x4c6b67(0xf7))[_0x4c6b67(0xf4)](require(_0x4c6b67(0x124))),_0x462065[_0x4c6b67(0x109)](_0x4c6b67(0x10a))[_0x4c6b67(0xcf)](_0x4c6b67(0xc6))[_0x4c6b67(0xda)](_0x4c6b67(0xec),_0x4c6b67(0xc7))[_0x4c6b67(0xda)](_0x4c6b67(0xdd),_0x4c6b67(0x112))[_0x4c6b67(0xda)](_0x4c6b67(0xcd),_0x4c6b67(0xe9))[_0x4c6b67(0xda)](_0x4c6b67(0x12f),_0x4c6b67(0xc5))[_0x4c6b67(0xda)]('-tu,\x20--turbify','verify\x20Turbify/Yahoo\x20Business\x20MX\x20domains')[_0x4c6b67(0xda)]('--alimail',_0x4c6b67(0xdf))[_0x4c6b67(0xda)](_0x4c6b67(0xf5),_0x4c6b67(0xf8))[_0x4c6b67(0xda)](_0x4c6b67(0x10c),'verify\x20BizQQ\x20MX\x20domains')[_0x4c6b67(0xda)](_0x4c6b67(0xf1),_0x4c6b67(0xf0))[_0x4c6b67(0xf4)](function(){const _0x1715c4=_0x4c6b67;require(_0x1715c4(0xff))(this,_0x3fc33f);}),_0x462065['command'](_0x4c6b67(0xc1))[_0x4c6b67(0xcf)](_0x4c6b67(0x106))[_0x4c6b67(0xda)]('-a,\x20--all','remove\x20basic\x20rubbish\x20e.g,\x20noreply,\x20postmaster,\x20png,\x20jpg,\x20contact,\x20support,\x20xero,\x20[longer\x20than\x2075\x20words]')['option'](_0x4c6b67(0x11e),_0x4c6b67(0x104))[_0x4c6b67(0xf4)](function(){const _0xdc13ff=_0x4c6b67;require(_0xdc13ff(0xd7))(this,_0x3fc33f);}),_0x462065['command'](_0x4c6b67(0x115))['description'](_0x4c6b67(0x110))[_0x4c6b67(0xda)]('-ip,\x20--ip','resolve\x20recipient\x20domains\x20to\x20IP\x20addresses')[_0x4c6b67(0xda)](_0x4c6b67(0xe4),_0x4c6b67(0xfe))[_0x4c6b67(0xf4)](function(){const _0x310252=_0x4c6b67;require(_0x310252(0x121))(this,_0x3fc33f);}),_0x462065[_0x4c6b67(0x109)]('mx')['description'](_0x4c6b67(0xee))['option'](_0x4c6b67(0xfb),_0x4c6b67(0x120),null)[_0x4c6b67(0xda)](_0x4c6b67(0xcb),_0x4c6b67(0xeb),null)['action'](function(){const _0x4b4071=_0x4c6b67;require(_0x4b4071(0xc8))(this);}),_0x462065[_0x4c6b67(0x109)](_0x4c6b67(0x130))[_0x4c6b67(0xcf)]('scan\x20supplied\x20URLs\x20for\x20open\x20redirection\x20behavior')[_0x4c6b67(0xda)](_0x4c6b67(0x103),'scan\x20one\x20URL',null)[_0x4c6b67(0xda)](_0x4c6b67(0xe2),_0x4c6b67(0x10e),null)['option'](_0x4c6b67(0x11c),_0x4c6b67(0xef),null)['option'](_0x4c6b67(0xf2),_0x4c6b67(0xdc),null)[_0x4c6b67(0xda)]('-s,\x20--sources\x20<list>','comma-separated\x20passive\x20sources:\x20wayback,commoncrawl,otx,urlscan,virustotal,ghostarchive,intelx,all',null)['option'](_0x4c6b67(0x102),_0x4c6b67(0xd2),null)['option'](_0x4c6b67(0xd1),_0x4c6b67(0xd0),null)[_0x4c6b67(0xda)](_0x4c6b67(0x12a),_0x4c6b67(0x12c),null)[_0x4c6b67(0xda)](_0x4c6b67(0xc3),_0x4c6b67(0xd8),null)['option']('-o,\x20--output\x20<path>',_0x4c6b67(0xf6),null)['option'](_0x4c6b67(0xcc),'test\x20every\x20query\x20parameter,\x20not\x20just\x20redirect-looking\x20names')[_0x4c6b67(0xda)]('--allow-private',_0x4c6b67(0xfa))[_0x4c6b67(0xda)](_0x4c6b67(0xfc),_0x4c6b67(0xd4))[_0x4c6b67(0xf4)](function(){require('./redirect')(this);}),_0x462065[_0x4c6b67(0x109)](_0x4c6b67(0x10f))[_0x4c6b67(0xcf)](_0x4c6b67(0x114))[_0x4c6b67(0xda)](_0x4c6b67(0x111),_0x4c6b67(0xe8))['option'](_0x4c6b67(0xec),_0x4c6b67(0xe7))[_0x4c6b67(0xda)](_0x4c6b67(0xce),'sort\x20Yahoo/Turbify\x20Business\x20MX\x20accounts')[_0x4c6b67(0xda)](_0x4c6b67(0xea),'get\x20a\x20custom\x20provider\x20sorted')['option']('-p,\x20--providers',_0x4c6b67(0x113))['action'](function(){require('./sort')(this,_0x3fc33f);}),_0x462065[_0x4c6b67(0x109)](_0x4c6b67(0x118))['description'](_0x4c6b67(0xf9))[_0x4c6b67(0xda)](_0x4c6b67(0xd9),_0x4c6b67(0x101))[_0x4c6b67(0xda)](_0x4c6b67(0x119),'check\x20if\x20emails\x20are\x20hosted\x20on\x20Zimbra')[_0x4c6b67(0xda)]('-r,\x20--roundcube',_0x4c6b67(0x12d))[_0x4c6b67(0xda)](_0x4c6b67(0xe5),_0x4c6b67(0x123))[_0x4c6b67(0xda)]('--with-url',_0x4c6b67(0xbe))[_0x4c6b67(0xda)]('--no-url','output\x20email\x20only\x20(no\x20login\x20URL)\x20in\x20judger\x20output')[_0x4c6b67(0xf4)](function(){require('./judger')(this,_0x3fc33f);});const _0x14a979='(c)\x20'+new Date()[_0x4c6b67(0x11f)]()+'\x0av'+version+'\x0a';return console[_0x4c6b67(0x126)](_0x14a979),_0x14a979;}module['exports']=Commands;
package/commands/init.js CHANGED
@@ -1 +1 @@
1
- function a6_0x11a3(){const _0x516cde=['path','error','join','copySync','6963534xVoNns','fs-extra','8oEpuRd','452611bfsWmj','24575900pAMBtB','open','9034564CHhdnI','../functions/globals','Initializing...','6mewuNG','constructor','(((.+)+)+)+$','972666lubCWr','message','2119881nXAbWq','toString','darwin','Template\x20files\x20created!','exit','child_process','success','ignore','explorer.exe','unref','../_init','5480028BslojP','search','exports','5xDOSTv'];a6_0x11a3=function(){return _0x516cde;};return a6_0x11a3();}const a6_0x400628=a6_0x3ed7;(function(_0x40d5bd,_0x518864){const _0x9a1461=a6_0x3ed7,_0xd32967=_0x40d5bd();while(!![]){try{const _0x3d759b=-parseInt(_0x9a1461(0x1ea))/0x1*(parseInt(_0x9a1461(0x1f0))/0x2)+-parseInt(_0x9a1461(0x1f5))/0x3+-parseInt(_0x9a1461(0x200))/0x4+parseInt(_0x9a1461(0x203))/0x5*(-parseInt(_0x9a1461(0x1f3))/0x6)+parseInt(_0x9a1461(0x1ed))/0x7+-parseInt(_0x9a1461(0x1e9))/0x8*(-parseInt(_0x9a1461(0x1e7))/0x9)+parseInt(_0x9a1461(0x1eb))/0xa;if(_0x3d759b===_0x518864)break;else _0xd32967['push'](_0xd32967['shift']());}catch(_0xa8f9b2){_0xd32967['push'](_0xd32967['shift']());}}}(a6_0x11a3,0xe1ece));function a6_0x3ed7(_0x30c995,_0x3246ff){const _0xb417b9=a6_0x11a3();return a6_0x3ed7=function(_0x3f0fe6,_0x2ca878){_0x3f0fe6=_0x3f0fe6-0x1e3;let _0x11a3f3=_0xb417b9[_0x3f0fe6];return _0x11a3f3;},a6_0x3ed7(_0x30c995,_0x3246ff);}const a6_0x2ca878=(function(){let _0x58e949=!![];return function(_0x295142,_0x57615b){const _0x3e4694=_0x58e949?function(){if(_0x57615b){const _0x449513=_0x57615b['apply'](_0x295142,arguments);return _0x57615b=null,_0x449513;}}:function(){};return _0x58e949=![],_0x3e4694;};}()),a6_0x3f0fe6=a6_0x2ca878(this,function(){const _0x4ab2ce=a6_0x3ed7;return a6_0x3f0fe6[_0x4ab2ce(0x1f6)]()[_0x4ab2ce(0x201)](_0x4ab2ce(0x1f2))[_0x4ab2ce(0x1f6)]()[_0x4ab2ce(0x1f1)](a6_0x3f0fe6)[_0x4ab2ce(0x201)](_0x4ab2ce(0x1f2));});a6_0x3f0fe6();const path=require(a6_0x400628(0x1e3)),fse=require(a6_0x400628(0x1e8)),{platform}=require('os'),{spawn}=require(a6_0x400628(0x1fa)),{CURRENT_DIR,spinnerFunc}=require(a6_0x400628(0x1ee));function InitCommands(_0x2cbcf0){const _0x2108c1=a6_0x400628,_0x2001c7=path[_0x2108c1(0x1e5)](CURRENT_DIR,''+_0x2cbcf0),_0x3e56d8=path[_0x2108c1(0x1e5)](__dirname,_0x2108c1(0x1ff));try{const _0x452f02=spinnerFunc({'text':_0x2108c1(0x1ef)});fse[_0x2108c1(0x1e6)](_0x3e56d8,_0x2001c7),_0x452f02[_0x2108c1(0x1fb)]({'text':_0x2108c1(0x1f8)});const _0x276e43={'detached':!![],'stdio':_0x2108c1(0x1fc)};if(platform()==='win32')spawn(_0x2108c1(0x1fd),[_0x2001c7],{..._0x276e43,'windowsHide':!![]})[_0x2108c1(0x1fe)]();else platform()===_0x2108c1(0x1f7)&&spawn(_0x2108c1(0x1ec),[_0x2001c7],_0x276e43)[_0x2108c1(0x1fe)]();}catch(_0x45a847){console[_0x2108c1(0x1e4)](_0x45a847[_0x2108c1(0x1f4)]),process[_0x2108c1(0x1f9)](0x1);}}module[a6_0x400628(0x202)]=InitCommands;
1
+ const a6_0x968919=a6_0x3e23;(function(_0x35c6a1,_0x4eb3f0){const _0x5b3469=a6_0x3e23,_0x28e0ae=_0x35c6a1();while(!![]){try{const _0x40520a=-parseInt(_0x5b3469(0x208))/0x1+-parseInt(_0x5b3469(0x207))/0x2*(-parseInt(_0x5b3469(0x210))/0x3)+parseInt(_0x5b3469(0x209))/0x4+-parseInt(_0x5b3469(0x1f6))/0x5*(parseInt(_0x5b3469(0x1f9))/0x6)+parseInt(_0x5b3469(0x20f))/0x7*(parseInt(_0x5b3469(0x1fc))/0x8)+parseInt(_0x5b3469(0x1f4))/0x9+-parseInt(_0x5b3469(0x1fd))/0xa*(parseInt(_0x5b3469(0x204))/0xb);if(_0x40520a===_0x4eb3f0)break;else _0x28e0ae['push'](_0x28e0ae['shift']());}catch(_0x468b98){_0x28e0ae['push'](_0x28e0ae['shift']());}}}(a6_0x589c,0xd1cbd));function a6_0x3e23(_0x1dadca,_0x2e9547){const _0x501ee3=a6_0x589c();return a6_0x3e23=function(_0x43903c,_0x964c5c){_0x43903c=_0x43903c-0x1f3;let _0x589c77=_0x501ee3[_0x43903c];return _0x589c77;},a6_0x3e23(_0x1dadca,_0x2e9547);}const a6_0x964c5c=(function(){let _0x1e5ace=!![];return function(_0x48cc1c,_0x128dc1){const _0x35ffe8=_0x1e5ace?function(){const _0x534646=a6_0x3e23;if(_0x128dc1){const _0x53c0e4=_0x128dc1[_0x534646(0x203)](_0x48cc1c,arguments);return _0x128dc1=null,_0x53c0e4;}}:function(){};return _0x1e5ace=![],_0x35ffe8;};}()),a6_0x43903c=a6_0x964c5c(this,function(){const _0xf1598f=a6_0x3e23;return a6_0x43903c['toString']()[_0xf1598f(0x1ff)]('(((.+)+)+)+$')[_0xf1598f(0x205)]()['constructor'](a6_0x43903c)[_0xf1598f(0x1ff)]('(((.+)+)+)+$');});a6_0x43903c();const path=require(a6_0x968919(0x20b)),fse=require(a6_0x968919(0x1f5)),{platform}=require('os'),{spawn}=require('child_process'),{CURRENT_DIR,spinnerFunc}=require('../functions/globals');function a6_0x589c(){const _0x234c9d=['Template\x20files\x20created!','search','explorer.exe','Initializing...','ignore','apply','2365JpaIjz','toString','error','2IOcNLA','1007033VIqpUX','3622408blnSqo','success','path','../_init','exports','join','100457Rbwusf','3987051IIVRrl','darwin','14335974RRDtWu','fs-extra','1138145OdaiBu','open','message','6pvWTBE','win32','copySync','856fNKeYB','152050uYkAHa'];a6_0x589c=function(){return _0x234c9d;};return a6_0x589c();}function InitCommands(_0x47fba2){const _0x240bf1=a6_0x968919,_0x4ca6f6=path[_0x240bf1(0x20e)](CURRENT_DIR,''+_0x47fba2),_0x59cf03=path[_0x240bf1(0x20e)](__dirname,_0x240bf1(0x20c));try{const _0x518e49=spinnerFunc({'text':_0x240bf1(0x201)});fse[_0x240bf1(0x1fb)](_0x59cf03,_0x4ca6f6),_0x518e49[_0x240bf1(0x20a)]({'text':_0x240bf1(0x1fe)});const _0xd6a731={'detached':!![],'stdio':_0x240bf1(0x202)};if(platform()===_0x240bf1(0x1fa))spawn(_0x240bf1(0x200),[_0x4ca6f6],{..._0xd6a731,'windowsHide':!![]})['unref']();else platform()===_0x240bf1(0x1f3)&&spawn(_0x240bf1(0x1f7),[_0x4ca6f6],_0xd6a731)['unref']();}catch(_0x2378d9){console[_0x240bf1(0x206)](_0x2378d9[_0x240bf1(0x1f8)]),process['exit'](0x1);}}module[a6_0x968919(0x20d)]=InitCommands;
@@ -1 +1 @@
1
- const a7_0x1094a4=a7_0x334d;function a7_0x2302(){const _0x298242=['1003937RrZyjX','message','Roundcube','(((.+)+)+)+$','roundcube','11DleeZM','20bcfQJs','4443470pZFHUu','apply','join','map','4758672fYnDRY','Invalid\x20judger\x20selection.','keys','33208ahtFty','exports','judger','then','216465ywzUMC','Judger\x20—\x20select\x20webmail\x20host\x20to\x20check:','find','smartermail','toLowerCase','2168216hdnoHo','../functions/globals','OWA','name','169310qkVkZb','zimbra','toString','203RGIIEk','156wFOYKm','owa','list','opts','search','../functions/judger','9Ajwehu','error','exit','../utils/jwtVerify','Zimbra'];a7_0x2302=function(){return _0x298242;};return a7_0x2302();}(function(_0x20090e,_0x46e18c){const _0x4b89e6=a7_0x334d,_0x308c2b=_0x20090e();while(!![]){try{const _0x420391=parseInt(_0x4b89e6(0x96))/0x1+parseInt(_0x4b89e6(0x83))/0x2+-parseInt(_0x4b89e6(0xa8))/0x3*(-parseInt(_0x4b89e6(0x9c))/0x4)+parseInt(_0x4b89e6(0x87))/0x5*(-parseInt(_0x4b89e6(0x8b))/0x6)+-parseInt(_0x4b89e6(0x8a))/0x7*(parseInt(_0x4b89e6(0xa4))/0x8)+-parseInt(_0x4b89e6(0x91))/0x9*(parseInt(_0x4b89e6(0x9d))/0xa)+-parseInt(_0x4b89e6(0x9b))/0xb*(parseInt(_0x4b89e6(0xa1))/0xc);if(_0x420391===_0x46e18c)break;else _0x308c2b['push'](_0x308c2b['shift']());}catch(_0x5f1f5c){_0x308c2b['push'](_0x308c2b['shift']());}}}(a7_0x2302,0x94396));const a7_0x4778f9=(function(){let _0x544756=!![];return function(_0x547ccb,_0x48acdf){const _0x1d36a4=_0x544756?function(){const _0x4fc72e=a7_0x334d;if(_0x48acdf){const _0x5857fd=_0x48acdf[_0x4fc72e(0x9e)](_0x547ccb,arguments);return _0x48acdf=null,_0x5857fd;}}:function(){};return _0x544756=![],_0x1d36a4;};}()),a7_0x2aa6ec=a7_0x4778f9(this,function(){const _0x48bea3=a7_0x334d;return a7_0x2aa6ec[_0x48bea3(0x89)]()[_0x48bea3(0x8f)](_0x48bea3(0x99))[_0x48bea3(0x89)]()['constructor'](a7_0x2aa6ec)[_0x48bea3(0x8f)](_0x48bea3(0x99));});a7_0x2aa6ec();function a7_0x334d(_0x6afeb2,_0x26ce53){const _0x59db38=a7_0x2302();return a7_0x334d=function(_0x2aa6ec,_0x4778f9){_0x2aa6ec=_0x2aa6ec-0x7f;let _0x230212=_0x59db38[_0x2aa6ec];return _0x230212;},a7_0x334d(_0x6afeb2,_0x26ce53);}const {judgePlatform,PLATFORM_LABELS}=require(a7_0x1094a4(0x90)),{isEmptyObject,fetchmonoclaudeJSONSkeleton,readEmailsFileAsStream}=require(a7_0x1094a4(0x84)),JwtVerify=require(a7_0x1094a4(0x94)),PLATFORM_CHOICES=[{'name':a7_0x1094a4(0x85),'value':a7_0x1094a4(0x8c)},{'name':a7_0x1094a4(0x95),'value':'zimbra'},{'name':a7_0x1094a4(0x98),'value':a7_0x1094a4(0x9a)},{'name':'SmarterMail','value':a7_0x1094a4(0x81)}];function resolvePlatform(_0x2874ff={}){const _0x333f8f=a7_0x1094a4;if(_0x2874ff[_0x333f8f(0x8c)])return'owa';if(_0x2874ff[_0x333f8f(0x88)])return _0x333f8f(0x88);if(_0x2874ff['roundcube'])return _0x333f8f(0x9a);if(_0x2874ff[_0x333f8f(0x81)])return _0x333f8f(0x81);return'';}function JudgerCommands(_0x4b4147,_0x142cfb){const _0x1c789a=a7_0x1094a4;JwtVerify(),fetchmonoclaudeJSONSkeleton();const _0x35d751=()=>readEmailsFileAsStream({'trackProfiles':![]}),_0x3140d8=_0x4b4147[_0x1c789a(0x8e)](),_0x4c20e9=resolvePlatform(_0x3140d8),_0x34fb07={'name':_0x1c789a(0xa6),'type':_0x1c789a(0x8d),'message':_0x1c789a(0x7f),'choices':PLATFORM_CHOICES[_0x1c789a(0xa0)](_0x1569eb=>_0x1569eb['name'])};try{if(_0x4c20e9)return judgePlatform(_0x35d751(),_0x4c20e9);if(isEmptyObject(_0x3140d8))return _0x142cfb(_0x34fb07)[_0x1c789a(0xa7)](_0x55ffce=>{const _0x2c62a0=_0x1c789a,_0x380636=PLATFORM_CHOICES[_0x2c62a0(0x80)](_0x5b2af4=>_0x5b2af4[_0x2c62a0(0x86)][_0x2c62a0(0x82)]()===String(_0x55ffce[_0x2c62a0(0xa6)]||'')['toLowerCase']());return!_0x380636&&(console[_0x2c62a0(0x92)](_0x2c62a0(0xa2)),process[_0x2c62a0(0x93)](0x1)),judgePlatform(_0x35d751(),_0x380636['value']);});console[_0x1c789a(0x92)]('Use\x20one\x20of:\x20'+Object[_0x1c789a(0xa3)](PLATFORM_LABELS)[_0x1c789a(0xa0)](_0x4b4b82=>'--'+_0x4b4b82)[_0x1c789a(0x9f)](',\x20')),process[_0x1c789a(0x93)](0x1);}catch(_0x201d38){console[_0x1c789a(0x92)](_0x201d38[_0x1c789a(0x97)]),process[_0x1c789a(0x93)](0x1);}}module[a7_0x1094a4(0xa5)]=JudgerCommands;
1
+ const a7_0x281d48=a7_0x4d30;(function(_0x313a2d,_0xf0a591){const _0x443ed1=a7_0x4d30,_0x329803=_0x313a2d();while(!![]){try{const _0x504a6d=parseInt(_0x443ed1(0x1c0))/0x1*(parseInt(_0x443ed1(0x1bc))/0x2)+parseInt(_0x443ed1(0x1c3))/0x3+-parseInt(_0x443ed1(0x1c1))/0x4+parseInt(_0x443ed1(0x1cc))/0x5+-parseInt(_0x443ed1(0x1bf))/0x6+-parseInt(_0x443ed1(0x1d3))/0x7+parseInt(_0x443ed1(0x1b2))/0x8*(parseInt(_0x443ed1(0x1c6))/0x9);if(_0x504a6d===_0xf0a591)break;else _0x329803['push'](_0x329803['shift']());}catch(_0x1146f9){_0x329803['push'](_0x329803['shift']());}}}(a7_0x2177,0x20ccd));const a7_0x4d2922=(function(){let _0x392c62=!![];return function(_0x5840af,_0x1b1190){const _0x12eec8=_0x392c62?function(){const _0x44d49f=a7_0x4d30;if(_0x1b1190){const _0x3a9669=_0x1b1190[_0x44d49f(0x1b4)](_0x5840af,arguments);return _0x1b1190=null,_0x3a9669;}}:function(){};return _0x392c62=![],_0x12eec8;};}()),a7_0x4c00fc=a7_0x4d2922(this,function(){const _0x55630a=a7_0x4d30;return a7_0x4c00fc[_0x55630a(0x1cf)]()['search']('(((.+)+)+)+$')[_0x55630a(0x1cf)]()[_0x55630a(0x1d6)](a7_0x4c00fc)[_0x55630a(0x1c5)](_0x55630a(0x1cd));});a7_0x4c00fc();const {judgePlatform,PLATFORM_LABELS}=require(a7_0x281d48(0x1c9)),{isEmptyObject,fetchmonoclaudeJSONSkeleton,readEmailsFileAsStream}=require('../functions/globals'),JwtVerify=require(a7_0x281d48(0x1b7)),PLATFORM_CHOICES=[{'name':a7_0x281d48(0x1c7),'value':'owa'},{'name':a7_0x281d48(0x1b1),'value':'zimbra'},{'name':'Roundcube','value':a7_0x281d48(0x1d9)},{'name':a7_0x281d48(0x1da),'value':a7_0x281d48(0x1ca)}],URL_OUTPUT_PLATFORMS=new Set(['owa',a7_0x281d48(0x1ba),a7_0x281d48(0x1d9),'smartermail']),PLATFORM_LABELS_SHORT={'owa':a7_0x281d48(0x1c7),'zimbra':a7_0x281d48(0x1b1),'roundcube':'Roundcube','smartermail':a7_0x281d48(0x1da)};function resolvePlatform(_0x42bc74={}){const _0x1ed6ad=a7_0x281d48;if(_0x42bc74[_0x1ed6ad(0x1c4)])return'owa';if(_0x42bc74[_0x1ed6ad(0x1ba)])return _0x1ed6ad(0x1ba);if(_0x42bc74[_0x1ed6ad(0x1d9)])return _0x1ed6ad(0x1d9);if(_0x42bc74[_0x1ed6ad(0x1ca)])return _0x1ed6ad(0x1ca);return'';}function resolveIncludeUrl(_0x3b2080={}){const _0x509805=a7_0x281d48;if(_0x3b2080[_0x509805(0x1db)])return!![];if(_0x3b2080[_0x509805(0x1d1)])return![];return null;}function askIncludeUrl(_0x511547,_0x562b32){const _0x4bcb95=a7_0x281d48,_0x11ff5b=PLATFORM_LABELS_SHORT[_0x562b32]||_0x562b32;return _0x511547({'name':_0x4bcb95(0x1b6),'type':_0x4bcb95(0x1bb),'message':_0x11ff5b+_0x4bcb95(0x1c8),'choices':[{'name':_0x11ff5b+_0x4bcb95(0x1b8),'value':!![]},{'name':_0x11ff5b+'\x20(email\x20only,\x20no\x20URL)','value':![]}]})['then'](_0x2b21de=>({'includeUrl':!!_0x2b21de[_0x4bcb95(0x1b6)]}));}function runJudgerWithOptions(_0x344acf,_0x453fd7,_0x2e735c,_0x5c8e4f){const _0x32e7df=a7_0x281d48,_0x4ba0a2=resolveIncludeUrl(_0x2e735c);if(!URL_OUTPUT_PLATFORMS[_0x32e7df(0x1cb)](_0x453fd7)||_0x4ba0a2!==null)return judgePlatform(_0x344acf(),_0x453fd7,{'includeUrl':_0x4ba0a2!==![]});return askIncludeUrl(_0x5c8e4f,_0x453fd7)[_0x32e7df(0x1d4)](_0x75b103=>judgePlatform(_0x344acf(),_0x453fd7,_0x75b103));}function JudgerCommands(_0x1fe2b6,_0x406100){const _0x49d8b1=a7_0x281d48;JwtVerify(),fetchmonoclaudeJSONSkeleton();const _0x5cbd41=()=>readEmailsFileAsStream({'trackProfiles':![]}),_0xa08581=_0x1fe2b6['opts'](),_0x21d4dd=resolvePlatform(_0xa08581),_0x2b2d88={'name':_0x49d8b1(0x1d8),'type':_0x49d8b1(0x1bb),'message':_0x49d8b1(0x1be),'choices':PLATFORM_CHOICES[_0x49d8b1(0x1ce)](_0x17c298=>_0x17c298[_0x49d8b1(0x1b9)])};try{if(_0x21d4dd)return runJudgerWithOptions(_0x5cbd41,_0x21d4dd,_0xa08581,_0x406100);if(isEmptyObject(_0xa08581))return _0x406100(_0x2b2d88)[_0x49d8b1(0x1d4)](_0x2dbcb9=>{const _0x47fe3d=_0x49d8b1,_0x195814=PLATFORM_CHOICES[_0x47fe3d(0x1d0)](_0x4d032f=>_0x4d032f[_0x47fe3d(0x1b9)][_0x47fe3d(0x1bd)]()===String(_0x2dbcb9[_0x47fe3d(0x1d8)]||'')[_0x47fe3d(0x1bd)]());return!_0x195814&&(console[_0x47fe3d(0x1c2)](_0x47fe3d(0x1b5)),process[_0x47fe3d(0x1b3)](0x1)),runJudgerWithOptions(_0x5cbd41,_0x195814['value'],_0xa08581,_0x406100);});console['error']('Use\x20one\x20of:\x20'+Object['keys'](PLATFORM_LABELS)[_0x49d8b1(0x1ce)](_0x201189=>'--'+_0x201189)[_0x49d8b1(0x1d2)](',\x20')),process['exit'](0x1);}catch(_0x5d8c7f){console[_0x49d8b1(0x1c2)](_0x5d8c7f[_0x49d8b1(0x1d7)]),process[_0x49d8b1(0x1b3)](0x1);}}function a7_0x4d30(_0x19c7ba,_0x589a17){const _0x47f12d=a7_0x2177();return a7_0x4d30=function(_0x4c00fc,_0x4d2922){_0x4c00fc=_0x4c00fc-0x1b1;let _0x217797=_0x47f12d[_0x4c00fc];return _0x217797;},a7_0x4d30(_0x19c7ba,_0x589a17);}function a7_0x2177(){const _0x3a2e8f=['join','733432DAoncq','then','exports','constructor','message','judger','roundcube','SmarterMail','withUrl','Zimbra','2661160krPLkD','exit','apply','Invalid\x20judger\x20selection.','includeUrl','../utils/jwtVerify','\x20(with\x20login\x20URL)','name','zimbra','list','44dziHhi','toLowerCase','Judger\x20—\x20select\x20webmail\x20host\x20to\x20check:','1117296qESlse','7664tXXSWV','748316KRBAgI','error','2241aWhdSs','owa','search','9CRWxlj','OWA','\x20output\x20format\x20—\x20include\x20login\x20page\x20URL?','../functions/judger','smartermail','has','552100zBKGsj','(((.+)+)+)+$','map','toString','find','noUrl'];a7_0x2177=function(){return _0x3a2e8f;};return a7_0x2177();}module[a7_0x281d48(0x1d5)]=JudgerCommands;
package/commands/mx.js CHANGED
@@ -1 +1 @@
1
- const a8_0x1fe777=a8_0x11f2;(function(_0x41e989,_0x533c35){const _0x13907f=a8_0x11f2,_0x5454fe=_0x41e989();while(!![]){try{const _0x3fc19c=-parseInt(_0x13907f(0x1c1))/0x1+-parseInt(_0x13907f(0x1b9))/0x2*(parseInt(_0x13907f(0x1c5))/0x3)+parseInt(_0x13907f(0x1b6))/0x4+parseInt(_0x13907f(0x1c6))/0x5+parseInt(_0x13907f(0x1b5))/0x6*(parseInt(_0x13907f(0x1c7))/0x7)+-parseInt(_0x13907f(0x1c9))/0x8*(-parseInt(_0x13907f(0x1bd))/0x9)+-parseInt(_0x13907f(0x1c2))/0xa;if(_0x3fc19c===_0x533c35)break;else _0x5454fe['push'](_0x5454fe['shift']());}catch(_0xc70dd){_0x5454fe['push'](_0x5454fe['shift']());}}}(a8_0x12f8,0xc56f8));const a8_0x523b73=(function(){let _0x11f239=!![];return function(_0x5133ef,_0x10aa5c){const _0x2f982e=_0x11f239?function(){const _0x3d2afd=a8_0x11f2;if(_0x10aa5c){const _0x53d406=_0x10aa5c[_0x3d2afd(0x1b8)](_0x5133ef,arguments);return _0x10aa5c=null,_0x53d406;}}:function(){};return _0x11f239=![],_0x2f982e;};}()),a8_0x2b8c34=a8_0x523b73(this,function(){const _0x3461ce=a8_0x11f2;return a8_0x2b8c34['toString']()[_0x3461ce(0x1bc)](_0x3461ce(0x1be))[_0x3461ce(0x1c3)]()[_0x3461ce(0x1b4)](a8_0x2b8c34)['search'](_0x3461ce(0x1be));});function a8_0x12f8(){const _0x4a8f63=['constructor','34176SUIQFu','5936960IzCPRQ','../functions/globals','apply','330152tBckRp','exports','message','search','9YcwVQB','(((.+)+)+)+$','../utils/jwtVerify','print','892071qCWWbC','20146990LgESjs','toString','exit','6tJZuFe','4567790ZJUDxc','1771PhUoTu','opts','1653856qoYGIY','email','../functions/mx'];a8_0x12f8=function(){return _0x4a8f63;};return a8_0x12f8();}a8_0x2b8c34();const {verifyMx}=require(a8_0x1fe777(0x1b3)),{fetchmonoclaudeJSONSkeleton,readEmailsFileToArray,isEmptyObject,isString}=require(a8_0x1fe777(0x1b7)),JwtVerify=require(a8_0x1fe777(0x1bf));function a8_0x11f2(_0x509ea1,_0x4c10ce){const _0x4c6b54=a8_0x12f8();return a8_0x11f2=function(_0x2b8c34,_0x523b73){_0x2b8c34=_0x2b8c34-0x1b3;let _0x12f815=_0x4c6b54[_0x2b8c34];return _0x12f815;},a8_0x11f2(_0x509ea1,_0x4c10ce);}function MxCommands(_0x309fd4){const _0x2a86d9=a8_0x1fe777;JwtVerify(),fetchmonoclaudeJSONSkeleton();const _0x50cf5f=!isEmptyObject(_0x309fd4[_0x2a86d9(0x1c8)]())&&isString(_0x309fd4[_0x2a86d9(0x1c8)]()[_0x2a86d9(0x1ca)])?[_0x309fd4[_0x2a86d9(0x1c8)]()['email']]:readEmailsFileToArray();try{return verifyMx(_0x50cf5f,!!_0x309fd4[_0x2a86d9(0x1c8)]()[_0x2a86d9(0x1c0)]||!!_0x309fd4[_0x2a86d9(0x1c8)]()[_0x2a86d9(0x1ca)]);}catch(_0x1d1262){console['error'](_0x1d1262[_0x2a86d9(0x1bb)]),process[_0x2a86d9(0x1c4)](0x1);}}module[a8_0x1fe777(0x1ba)]=MxCommands;
1
+ (function(_0x3063b2,_0x375c3f){const _0x272215=a8_0xdc01,_0x431421=_0x3063b2();while(!![]){try{const _0x338888=-parseInt(_0x272215(0x148))/0x1*(parseInt(_0x272215(0x14d))/0x2)+parseInt(_0x272215(0x146))/0x3*(-parseInt(_0x272215(0x15a))/0x4)+-parseInt(_0x272215(0x159))/0x5*(-parseInt(_0x272215(0x150))/0x6)+-parseInt(_0x272215(0x145))/0x7*(parseInt(_0x272215(0x156))/0x8)+parseInt(_0x272215(0x14a))/0x9*(-parseInt(_0x272215(0x151))/0xa)+-parseInt(_0x272215(0x155))/0xb+-parseInt(_0x272215(0x14f))/0xc*(-parseInt(_0x272215(0x144))/0xd);if(_0x338888===_0x375c3f)break;else _0x431421['push'](_0x431421['shift']());}catch(_0x6253f5){_0x431421['push'](_0x431421['shift']());}}}(a8_0x4fb0,0x74c39));const a8_0x3dbe75=(function(){let _0x25fbe6=!![];return function(_0x177bd6,_0x154e0a){const _0x142f5b=_0x25fbe6?function(){const _0x5ddff7=a8_0xdc01;if(_0x154e0a){const _0x553a87=_0x154e0a[_0x5ddff7(0x14c)](_0x177bd6,arguments);return _0x154e0a=null,_0x553a87;}}:function(){};return _0x25fbe6=![],_0x142f5b;};}()),a8_0xc71efe=a8_0x3dbe75(this,function(){const _0x42b594=a8_0xdc01;return a8_0xc71efe[_0x42b594(0x157)]()[_0x42b594(0x158)](_0x42b594(0x149))[_0x42b594(0x157)]()[_0x42b594(0x14b)](a8_0xc71efe)[_0x42b594(0x158)]('(((.+)+)+)+$');});a8_0xc71efe();const {verifyMx}=require('../functions/mx'),{fetchmonoclaudeJSONSkeleton,readEmailsFileToArray,isEmptyObject,isString}=require('../functions/globals'),JwtVerify=require('../utils/jwtVerify');function MxCommands(_0x1147f9){const _0x57812f=a8_0xdc01;JwtVerify(),fetchmonoclaudeJSONSkeleton();const _0x34893f=!isEmptyObject(_0x1147f9[_0x57812f(0x152)]())&&isString(_0x1147f9[_0x57812f(0x152)]()[_0x57812f(0x154)])?[_0x1147f9[_0x57812f(0x152)]()['email']]:readEmailsFileToArray();try{return verifyMx(_0x34893f,!!_0x1147f9[_0x57812f(0x152)]()['print']||!!_0x1147f9[_0x57812f(0x152)]()[_0x57812f(0x154)]);}catch(_0x486d56){console[_0x57812f(0x147)](_0x486d56[_0x57812f(0x14e)]),process[_0x57812f(0x153)](0x1);}}function a8_0x4fb0(){const _0x37db74=['toString','search','2014585EJIOlb','86980MWiTxO','146900CPnFzV','154tUvNhM','99HgBDsS','error','630267qefTSU','(((.+)+)+)+$','1011078FRKXkV','constructor','apply','2nzXzlR','message','4200ObTlVf','6vOjmou','80XTucmU','opts','exit','email','9509676tThJFt','279472HyhkSn'];a8_0x4fb0=function(){return _0x37db74;};return a8_0x4fb0();}function a8_0xdc01(_0x17dde8,_0x16cec1){const _0x148378=a8_0x4fb0();return a8_0xdc01=function(_0xc71efe,_0x3dbe75){_0xc71efe=_0xc71efe-0x144;let _0x4fb048=_0x148378[_0xc71efe];return _0x4fb048;},a8_0xdc01(_0x17dde8,_0x16cec1);}module['exports']=MxCommands;
@@ -1 +1 @@
1
- const a9_0x53b50a=a9_0x2a9c;(function(_0x3a081c,_0x232447){const _0x59738a=a9_0x2a9c,_0x46e156=_0x3a081c();while(!![]){try{const _0x321eaf=-parseInt(_0x59738a(0xed))/0x1*(-parseInt(_0x59738a(0x102))/0x2)+parseInt(_0x59738a(0xe8))/0x3+parseInt(_0x59738a(0xeb))/0x4+parseInt(_0x59738a(0xee))/0x5*(parseInt(_0x59738a(0xf4))/0x6)+parseInt(_0x59738a(0xe7))/0x7+-parseInt(_0x59738a(0x101))/0x8*(-parseInt(_0x59738a(0xec))/0x9)+-parseInt(_0x59738a(0xf6))/0xa;if(_0x321eaf===_0x232447)break;else _0x46e156['push'](_0x46e156['shift']());}catch(_0x22aa9c){_0x46e156['push'](_0x46e156['shift']());}}}(a9_0x3f63,0x949c9));function a9_0x3f63(){const _0x2e7502=['(((.+)+)+)+$','domain','error','constructor','cwd','toString','discoveryOnly','output','opts','8AHywDY','4scxiPs','domainFile','exit','message','search','path','resolve','concurrency','allowPrivate','2435048Tabfqd','1774608KsIntr','../functions/globals','url','2044472rTPDtG','5758983jCRMbZ','494687jHKTgE','5khodOH','domain.txt','props','sources','exports','file','2782578gNUjyZ','payload','29348290FFHXek','../utils/jwtVerify'];a9_0x3f63=function(){return _0x2e7502;};return a9_0x3f63();}const a9_0x1c9c90=(function(){let _0x38dd46=!![];return function(_0xa828f1,_0x56f575){const _0x1e819b=_0x38dd46?function(){if(_0x56f575){const _0x2c5bb1=_0x56f575['apply'](_0xa828f1,arguments);return _0x56f575=null,_0x2c5bb1;}}:function(){};return _0x38dd46=![],_0x1e819b;};}()),a9_0xeb6a23=a9_0x1c9c90(this,function(){const _0x205de2=a9_0x2a9c;return a9_0xeb6a23[_0x205de2(0xfd)]()[_0x205de2(0x106)]('(((.+)+)+)+$')[_0x205de2(0xfd)]()[_0x205de2(0xfb)](a9_0xeb6a23)[_0x205de2(0x106)](_0x205de2(0xf8));});a9_0xeb6a23();const path=require(a9_0x53b50a(0x107)),JwtVerify=require(a9_0x53b50a(0xf7)),{fetchmonoclaudeJSONSkeleton}=require(a9_0x53b50a(0xe9)),{scanRedirects}=require('../functions/redirect');function RedirectCommands(_0x4c6d34){const _0x10337e=a9_0x53b50a;JwtVerify(),fetchmonoclaudeJSONSkeleton();const _0x412bec=_0x4c6d34[_0x10337e(0x100)](),_0x87c0e1=_0x412bec[_0x10337e(0xf3)]?path['resolve'](process['cwd'](),_0x412bec[_0x10337e(0xf3)]):null,_0x8abd5c=_0x412bec[_0x10337e(0x103)]?path[_0x10337e(0x108)](process['cwd'](),_0x412bec[_0x10337e(0x103)]):path[_0x10337e(0x108)](process[_0x10337e(0xfc)](),_0x10337e(0xf0),'redirect',_0x10337e(0xef));try{return scanRedirects({'url':_0x412bec[_0x10337e(0xea)],'domain':_0x412bec[_0x10337e(0xf9)],'domainFile':_0x8abd5c,'file':_0x87c0e1,'sources':_0x412bec[_0x10337e(0xf1)],'sourceLimit':_0x412bec['sourceLimit'],'concurrency':_0x412bec[_0x10337e(0x109)],'timeout':_0x412bec['timeout'],'payload':_0x412bec[_0x10337e(0xf5)],'output':_0x412bec[_0x10337e(0xff)],'allParams':!!_0x412bec['allParams'],'allowPrivate':!!_0x412bec[_0x10337e(0x10a)],'discoveryOnly':!!_0x412bec[_0x10337e(0xfe)],'useUrlFile':!!_0x412bec[_0x10337e(0xf3)]});}catch(_0x511650){console[_0x10337e(0xfa)](_0x511650?.[_0x10337e(0x105)]||_0x511650),process[_0x10337e(0x104)](0x1);}}function a9_0x2a9c(_0xf68e3c,_0x1f65fd){const _0x1bbd7e=a9_0x3f63();return a9_0x2a9c=function(_0xeb6a23,_0x1c9c90){_0xeb6a23=_0xeb6a23-0xe7;let _0x3f63d7=_0x1bbd7e[_0xeb6a23];return _0x3f63d7;},a9_0x2a9c(_0xf68e3c,_0x1f65fd);}module[a9_0x53b50a(0xf2)]=RedirectCommands;
1
+ const a9_0x3ee87b=a9_0x225f;(function(_0x155ea3,_0x1f9728){const _0x4a25f=a9_0x225f,_0x3be480=_0x155ea3();while(!![]){try{const _0x362b32=-parseInt(_0x4a25f(0x1ce))/0x1*(parseInt(_0x4a25f(0x1df))/0x2)+-parseInt(_0x4a25f(0x1e5))/0x3*(parseInt(_0x4a25f(0x1cf))/0x4)+-parseInt(_0x4a25f(0x1e0))/0x5+-parseInt(_0x4a25f(0x1e2))/0x6+-parseInt(_0x4a25f(0x1e1))/0x7+parseInt(_0x4a25f(0x1d4))/0x8*(-parseInt(_0x4a25f(0x1cb))/0x9)+parseInt(_0x4a25f(0x1d9))/0xa;if(_0x362b32===_0x1f9728)break;else _0x3be480['push'](_0x3be480['shift']());}catch(_0x45c58d){_0x3be480['push'](_0x3be480['shift']());}}}(a9_0x31e1,0xc0987));const a9_0x211d00=(function(){let _0x45a954=!![];return function(_0x4c2090,_0x36ff8f){const _0x407424=_0x45a954?function(){const _0x2c6230=a9_0x225f;if(_0x36ff8f){const _0x10bbc6=_0x36ff8f[_0x2c6230(0x1dc)](_0x4c2090,arguments);return _0x36ff8f=null,_0x10bbc6;}}:function(){};return _0x45a954=![],_0x407424;};}()),a9_0x5b5942=a9_0x211d00(this,function(){const _0x57c0a3=a9_0x225f;return a9_0x5b5942[_0x57c0a3(0x1de)]()[_0x57c0a3(0x1e3)](_0x57c0a3(0x1d5))['toString']()['constructor'](a9_0x5b5942)[_0x57c0a3(0x1e3)](_0x57c0a3(0x1d5));});a9_0x5b5942();function a9_0x225f(_0x1209ce,_0x14c4bb){const _0xa8ee1c=a9_0x31e1();return a9_0x225f=function(_0x5b5942,_0x211d00){_0x5b5942=_0x5b5942-0x1ca;let _0x31e175=_0xa8ee1c[_0x5b5942];return _0x31e175;},a9_0x225f(_0x1209ce,_0x14c4bb);}const path=require('path'),JwtVerify=require(a9_0x3ee87b(0x1cd)),{fetchmonoclaudeJSONSkeleton}=require(a9_0x3ee87b(0x1d8)),{scanRedirects}=require(a9_0x3ee87b(0x1e7));function RedirectCommands(_0x3bd4f5){const _0x1908ac=a9_0x3ee87b;JwtVerify(),fetchmonoclaudeJSONSkeleton();const _0x4360fb=_0x3bd4f5['opts'](),_0x69da39=_0x4360fb['file']?path[_0x1908ac(0x1e4)](process[_0x1908ac(0x1e6)](),_0x4360fb[_0x1908ac(0x1e9)]):null,_0x3ec425=_0x4360fb[_0x1908ac(0x1d7)]?path[_0x1908ac(0x1e4)](process[_0x1908ac(0x1e6)](),_0x4360fb[_0x1908ac(0x1d7)]):path[_0x1908ac(0x1e4)](process[_0x1908ac(0x1e6)](),_0x1908ac(0x1ea),'redirect','domain.txt');try{return scanRedirects({'url':_0x4360fb[_0x1908ac(0x1d6)],'domain':_0x4360fb[_0x1908ac(0x1db)],'domainFile':_0x3ec425,'file':_0x69da39,'sources':_0x4360fb[_0x1908ac(0x1ca)],'sourceLimit':_0x4360fb[_0x1908ac(0x1d3)],'concurrency':_0x4360fb[_0x1908ac(0x1d2)],'timeout':_0x4360fb['timeout'],'payload':_0x4360fb[_0x1908ac(0x1e8)],'output':_0x4360fb[_0x1908ac(0x1cc)],'allParams':!!_0x4360fb['allParams'],'allowPrivate':!!_0x4360fb[_0x1908ac(0x1eb)],'discoveryOnly':!!_0x4360fb[_0x1908ac(0x1d1)],'useUrlFile':!!_0x4360fb[_0x1908ac(0x1e9)]});}catch(_0x767536){console[_0x1908ac(0x1d0)](_0x767536?.[_0x1908ac(0x1dd)]||_0x767536),process['exit'](0x1);}}module[a9_0x3ee87b(0x1da)]=RedirectCommands;function a9_0x31e1(){const _0x475f3e=['error','discoveryOnly','concurrency','sourceLimit','24gHwgAa','(((.+)+)+)+$','url','domainFile','../functions/globals','62829880lIJLHt','exports','domain','apply','message','toString','112162PwSNGh','4175710DwqtiT','9256247BRjyay','9380118ldBSFa','search','resolve','1388217HssjfY','cwd','../functions/redirect','payload','file','props','allowPrivate','sources','314037rhjvUc','output','../utils/jwtVerify','5vxIwVq','12RCXbcM'];a9_0x31e1=function(){return _0x475f3e;};return a9_0x31e1();}
package/commands/renew.js CHANGED
@@ -1 +1 @@
1
- var a10_0x23105c=a10_0x2263;(function(_0x127832,_0x35e1d6){var _0x23edd6=a10_0x2263,_0x98f735=_0x127832();while(!![]){try{var _0x10179c=-parseInt(_0x23edd6(0x140))/0x1+-parseInt(_0x23edd6(0x137))/0x2*(-parseInt(_0x23edd6(0x145))/0x3)+-parseInt(_0x23edd6(0x13f))/0x4+-parseInt(_0x23edd6(0x13c))/0x5+-parseInt(_0x23edd6(0x148))/0x6+-parseInt(_0x23edd6(0x143))/0x7+-parseInt(_0x23edd6(0x139))/0x8*(-parseInt(_0x23edd6(0x144))/0x9);if(_0x10179c===_0x35e1d6)break;else _0x98f735['push'](_0x98f735['shift']());}catch(_0x5bf5ef){_0x98f735['push'](_0x98f735['shift']());}}}(a10_0x2f40,0x24450));var a10_0x17003e=(function(){var _0x41b51b=!![];return function(_0x2273bb,_0x765d12){var _0x15f196=_0x41b51b?function(){var _0x11ad45=a10_0x2263;if(_0x765d12){var _0xa6294a=_0x765d12[_0x11ad45(0x13a)](_0x2273bb,arguments);return _0x765d12=null,_0xa6294a;}}:function(){};return _0x41b51b=![],_0x15f196;};}()),a10_0x35a529=a10_0x17003e(this,function(){var _0x40557d=a10_0x2263;return a10_0x35a529[_0x40557d(0x146)]()['search'](_0x40557d(0x141))[_0x40557d(0x146)]()[_0x40557d(0x13d)](a10_0x35a529)[_0x40557d(0x142)](_0x40557d(0x141));});function a10_0x2263(_0x6b3126,_0x40536b){var _0x492246=a10_0x2f40();return a10_0x2263=function(_0x35a529,_0x17003e){_0x35a529=_0x35a529-0x137;var _0x2f4052=_0x492246[_0x35a529];return _0x2f4052;},a10_0x2263(_0x6b3126,_0x40536b);}a10_0x35a529();function a10_0x2f40(){var _0xa71009=['18TNphWw','143742kvwxmN','toString','error','58896RAyoBL','2BLzlsM','../functions/renew','2267512asFcQM','apply','exit','613520rMwzjK','constructor','exports','950712xatDhe','59442krBwDW','(((.+)+)+)+$','search','256144LmawQd'];a10_0x2f40=function(){return _0xa71009;};return a10_0x2f40();}function RenewCommands(){var _0x2d8053=a10_0x2263;try{require(_0x2d8053(0x138));}catch(_0x28c986){console[_0x2d8053(0x147)](_0x28c986),process[_0x2d8053(0x13b)](0x1);}}module[a10_0x23105c(0x13e)]=RenewCommands;
1
+ var a10_0x7c2ce8=a10_0x1f4b;(function(_0x42c056,_0x1d15c2){var _0x1e3f39=a10_0x1f4b,_0x5de6c4=_0x42c056();while(!![]){try{var _0x2e271e=parseInt(_0x1e3f39(0x1f6))/0x1*(parseInt(_0x1e3f39(0x1f8))/0x2)+-parseInt(_0x1e3f39(0x1f2))/0x3*(-parseInt(_0x1e3f39(0x1ee))/0x4)+-parseInt(_0x1e3f39(0x1f0))/0x5+parseInt(_0x1e3f39(0x1eb))/0x6+-parseInt(_0x1e3f39(0x1ef))/0x7*(-parseInt(_0x1e3f39(0x1f7))/0x8)+parseInt(_0x1e3f39(0x1fa))/0x9*(parseInt(_0x1e3f39(0x1f5))/0xa)+-parseInt(_0x1e3f39(0x1f3))/0xb;if(_0x2e271e===_0x1d15c2)break;else _0x5de6c4['push'](_0x5de6c4['shift']());}catch(_0x31f6c1){_0x5de6c4['push'](_0x5de6c4['shift']());}}}(a10_0x4509,0xe53a5));var a10_0x4ef28a=(function(){var _0x35f229=!![];return function(_0x5b082c,_0x509717){var _0x57dbd8=_0x35f229?function(){if(_0x509717){var _0x14eb8e=_0x509717['apply'](_0x5b082c,arguments);return _0x509717=null,_0x14eb8e;}}:function(){};return _0x35f229=![],_0x57dbd8;};}()),a10_0x450803=a10_0x4ef28a(this,function(){var _0x1d0bdd=a10_0x1f4b;return a10_0x450803[_0x1d0bdd(0x1f9)]()['search'](_0x1d0bdd(0x1ec))['toString']()[_0x1d0bdd(0x1f1)](a10_0x450803)['search'](_0x1d0bdd(0x1ec));});function a10_0x4509(){var _0x2fe5f2=['toString','675uhFeqf','2717424RgAlif','(((.+)+)+)+$','exports','4QNVzcC','7ppDIxa','880365yuWAiV','constructor','1396539VCrubX','35102463LIvHkY','error','175820LIaKkE','1qmqFOx','8485736uaPbtQ','2016678jCUZhc'];a10_0x4509=function(){return _0x2fe5f2;};return a10_0x4509();}a10_0x450803();function a10_0x1f4b(_0x1f8fac,_0x443d2d){var _0x415bbb=a10_0x4509();return a10_0x1f4b=function(_0x450803,_0x4ef28a){_0x450803=_0x450803-0x1eb;var _0x4509b9=_0x415bbb[_0x450803];return _0x4509b9;},a10_0x1f4b(_0x1f8fac,_0x443d2d);}function RenewCommands(){var _0x1566a5=a10_0x1f4b;try{require('../functions/renew');}catch(_0x61410b){console[_0x1566a5(0x1f4)](_0x61410b),process['exit'](0x1);}}module[a10_0x7c2ce8(0x1ed)]=RenewCommands;
package/commands/send.js CHANGED
@@ -1 +1 @@
1
- var a11_0xe57c8b=a11_0x516f;function a11_0x516f(_0x27e131,_0x56c9af){var _0x4a0925=a11_0x5d58();return a11_0x516f=function(_0x3ab6d4,_0x410399){_0x3ab6d4=_0x3ab6d4-0x17b;var _0x5d580e=_0x4a0925[_0x3ab6d4];return _0x5d580e;},a11_0x516f(_0x27e131,_0x56c9af);}(function(_0x3bc94b,_0x24fe15){var _0x8f2045=a11_0x516f,_0x5eff55=_0x3bc94b();while(!![]){try{var _0x1bb500=-parseInt(_0x8f2045(0x17b))/0x1+-parseInt(_0x8f2045(0x185))/0x2*(parseInt(_0x8f2045(0x189))/0x3)+parseInt(_0x8f2045(0x181))/0x4*(parseInt(_0x8f2045(0x18c))/0x5)+parseInt(_0x8f2045(0x180))/0x6*(parseInt(_0x8f2045(0x17e))/0x7)+parseInt(_0x8f2045(0x182))/0x8+parseInt(_0x8f2045(0x18a))/0x9*(-parseInt(_0x8f2045(0x187))/0xa)+-parseInt(_0x8f2045(0x18d))/0xb*(-parseInt(_0x8f2045(0x186))/0xc);if(_0x1bb500===_0x24fe15)break;else _0x5eff55['push'](_0x5eff55['shift']());}catch(_0x4bf055){_0x5eff55['push'](_0x5eff55['shift']());}}}(a11_0x5d58,0x1f266));var a11_0x410399=(function(){var _0x162d4b=!![];return function(_0x422a30,_0x4700db){var _0x2f308c=_0x162d4b?function(){if(_0x4700db){var _0x20f558=_0x4700db['apply'](_0x422a30,arguments);return _0x4700db=null,_0x20f558;}}:function(){};return _0x162d4b=![],_0x2f308c;};}()),a11_0x3ab6d4=a11_0x410399(this,function(){var _0x3ac059=a11_0x516f;return a11_0x3ab6d4['toString']()[_0x3ac059(0x18f)](_0x3ac059(0x183))[_0x3ac059(0x18b)]()[_0x3ac059(0x18e)](a11_0x3ab6d4)[_0x3ac059(0x18f)]('(((.+)+)+)+$');});function a11_0x5d58(){var _0x647a19=['406858LzEEEw','12PuurND','10nIceju','message','3kftDgR','253494JpBoOJ','toString','980yjzLVh','1108558qjMrTH','constructor','search','67581uasoLN','exports','error','685489CrsYxN','../functions/sender/index','12eYzgKQ','2040ezGBOi','241392tfOWIv','(((.+)+)+)+$','exit'];a11_0x5d58=function(){return _0x647a19;};return a11_0x5d58();}a11_0x3ab6d4();function SendCommands(){var _0x729028=a11_0x516f;try{require(_0x729028(0x17f))();}catch(_0x206c6d){console[_0x729028(0x17d)]('SEND\x20err:\x20'+_0x206c6d[_0x729028(0x188)]),process[_0x729028(0x184)](0x1);}}module[a11_0xe57c8b(0x17c)]=SendCommands;
1
+ var a11_0x11def9=a11_0x236a;(function(_0x30b300,_0x41ab33){var _0x23d59e=a11_0x236a,_0x401d95=_0x30b300();while(!![]){try{var _0x13b9f1=-parseInt(_0x23d59e(0x201))/0x1+parseInt(_0x23d59e(0x1fd))/0x2*(-parseInt(_0x23d59e(0x1fe))/0x3)+parseInt(_0x23d59e(0x1f8))/0x4+-parseInt(_0x23d59e(0x1f5))/0x5+-parseInt(_0x23d59e(0x1fc))/0x6*(parseInt(_0x23d59e(0x1f6))/0x7)+-parseInt(_0x23d59e(0x200))/0x8+parseInt(_0x23d59e(0x1fb))/0x9;if(_0x13b9f1===_0x41ab33)break;else _0x401d95['push'](_0x401d95['shift']());}catch(_0xb8634){_0x401d95['push'](_0x401d95['shift']());}}}(a11_0x4abe,0xf2441));var a11_0x6ecc7e=(function(){var _0x4b0c3d=!![];return function(_0x249854,_0x368ea4){var _0x33d46d=_0x4b0c3d?function(){if(_0x368ea4){var _0x169246=_0x368ea4['apply'](_0x249854,arguments);return _0x368ea4=null,_0x169246;}}:function(){};return _0x4b0c3d=![],_0x33d46d;};}()),a11_0x92bffd=a11_0x6ecc7e(this,function(){var _0x4c7264=a11_0x236a;return a11_0x92bffd[_0x4c7264(0x1f2)]()[_0x4c7264(0x1f1)]('(((.+)+)+)+$')['toString']()[_0x4c7264(0x1f3)](a11_0x92bffd)[_0x4c7264(0x1f1)]('(((.+)+)+)+$');});a11_0x92bffd();function SendCommands(){var _0x409a23=a11_0x236a;try{require(_0x409a23(0x1f0))();}catch(_0x152162){console[_0x409a23(0x1ff)](_0x409a23(0x1f4)+_0x152162[_0x409a23(0x1fa)]),process[_0x409a23(0x1f9)](0x1);}}function a11_0x236a(_0x431d0e,_0x5f4680){var _0x52cc5c=a11_0x4abe();return a11_0x236a=function(_0x92bffd,_0x6ecc7e){_0x92bffd=_0x92bffd-0x1f0;var _0x4abeb0=_0x52cc5c[_0x92bffd];return _0x4abeb0;},a11_0x236a(_0x431d0e,_0x5f4680);}function a11_0x4abe(){var _0x4404b3=['constructor','SEND\x20err:\x20','9141990SxSOCZ','222901DpfLpe','exports','1602432kLeulB','exit','message','76934979rwUJxP','294vPxXHL','114uOpVlz','82947FTdNNV','error','8537480chdjzi','1924735RioCKT','../functions/sender/index','search','toString'];a11_0x4abe=function(){return _0x4404b3;};return a11_0x4abe();}module[a11_0x11def9(0x1f7)]=SendCommands;