Whats Expert

Whats Expert

ID: gnmmfdohfcohcflccikmlodaeignlkce

Supported Languages

🇧🇷Brazilian Portuguese

Extension Info & Metadata

Status
Active
Version
7.4.3.55
Size
5.38 MB
Rating
5.0/5
Reviews
3
Users
210
Type
Extension
Updated
Aug 3, 2026
Category
Productivity Tools
Price
Paid
Featured
No
Visibility
Listed
Mature
No
By Google
No
Trusted
No

Publisher Contextual Analysis

Author
ewdhtView Profile
MX records exist
Yes
Domain exists
Yes
Is disposable
No
Is role-based
No
Mailbox exists
Yes
Total Extensions
20
Active
20
Obsolete
0
Listed
20
Unlisted
0
Total Users
2,606

Email Change History

1 change
Oct 9, 2025
Domain changed
Screenshot 1

Whats Expert é um CRM para WhatsApp Web. Organize seus chats e otimize seus negócios no WhatsApp Web

Com novas funcionalidades para WhatsApp web, você pode ter mais controle sobre seus leads além de prospectar mais clientes com envios em massa e exportação de contatos na Whats Expert. Crie um verdadeiro funil de CRM para vender mais. Características: ✔ Envio em massa para seus contatos ou contatos importados por CSV ✔ Crie Abas personalizadas, encontre facilmente seus contatos importantes Visão Kanban dos contatos do WhatsApp organize seus leads ✔ Envie mensagens para um número que não esteja na sua agenda ✔ Crie notas para cada contato dentro do contato ✔ Você tem que ligar de volta? Crie lembretes para cada contato ✔ Agende Reuniões no google agenda direto ✔ Crie lembretes de forma simples e seja notificado ✔ Crie um banco de respostas rápidas para enviar com um clique ✔ Exporte todos seus contatos ou contatos de grupos ✔ Use em seu idioma nativo (português, espanhol, inglês) ✔ Borre as mensagens para criar vídeos tutorias ✔ Assistente AI — Sua inteligência artificial pronta para ajudar! Otimize seu tempo com um assistente inteligente, rápido e sempre disponível. Responda dúvidas, automatize tarefas, gere textos, traduções e muito mais com o poder da IA. Ideal para profissionais, equipes e quem busca praticidade no dia a dia. Importante: ✔ Aprovado na auditoria de segurança do Google Chrome ✔ Não usa banco de dados, tudo acontece no seu computador. Whats Expert é uma extensão independente do Chrome que adiciona recursos extras ao seu WhatsApp web, não fazemos parte do WhatsApp Inc., não temos contrato de uso ou licenças exclusivas

Item
Type
Severity
Description
unlimitedStorage
Permission
Medium
This permission removes storage quota restrictions. Rated Medium because it can store large amounts of user data without limits, potentially impacting browser performance and storing extensive tracking data.
storage
Permission
Medium
This permission allows storing data locally in the browser. Rated Medium because it can persist sensitive user data, track user activities over time, and potentially store malicious payloads.
tabs
Permission
Medium
This permission enables tab management and monitoring. Rated Medium because it can track open tabs, access tab metadata, and monitor user browsing patterns.
https://web.whatsapp.com/*
Host
Medium
Host permission — access limited to this URL pattern.
alarms
Permission
Low
This permission schedules periodic tasks. Rated Low because it can only trigger events at specified times without access to sensitive data.

The config object explicitly names `remote_code` (commented 'URL do código remoto') pointing to `https://code.wascript.com.br/`. This URL is fetched every 10 minutes and also used by the 'inject-code' handler to supply content scripts with a remote code URL. This gives the publisher server-side control over extension behaviour on WhatsApp Web without issuing a new CWS-reviewed build — a classic remote backdoor pattern. The comment and variable name leave no ambiguity about the intended purpose.

background.js (Line 21)
const n = {  // NomeID Da WL Ativa  name: "watidy",  // Versão de build  version: "7.4.3.55",  // Chave de criptografia  cript_key: "ffce211a-7b07-4d91-ba5d-c40bb4034a83",  // Url do backend principal  backend_plugin: "https://backend-plugin.wascript.com.br/",  // Url do backend Antigo  backend: "https://painel-old.wascript.com.br/",  // Url do backend de funções auxiliares  backend_utils: "https://backend-utils.wascript.com.br/",  // WebSockets  webSocket: {    "multi-atendimento": "https://multi-atendimento.wascript.com.br",    "api-whatsapp": "https://api-whatsapp.wascript.com.br"  },  // Url do painel de clientes  painel_cliente: "https://app.wascript.com.br",  // Url do audio transcriber  audio_transcriber: "https://audio-transcriber.wascript.com.br/transcription",  // Url do código remoto  remote_code: "https://code.wascript.com.br/",  //remote_code: "https://dev.watools.com.br/",  // Limite de mídia no Resposta Rápida  midiaLimit: 50};

Every 10 minutes (via the 'Ten_Minutes' chrome.alarms alarm) the background script GETs `https://code.wascript.com.br/config.json` and forwards the entire parsed JSON payload to every WhatsApp Web content-script tab under the message key 'Update_DomSelector'. Because the primary content-script bundle (the file referenced in content/index.js) is absent from this extraction, the consumer of that message cannot be audited — but the infrastructure for receiving server-controlled configuration on a recurring basis is confirmed. The `remote_code` property of that config is separately extracted and passed to content scripts in the `inject-code` flow, indicating it is a URL for dynamic script loading.

background.js (Line 181)
const f = async () => {  try {    const t = await (await fetch(`${n.remote_code}config.json`, {        method: "GET"      }))      .json();    return s("https://web.whatsapp.com/*", "Update_DomSelector", t), t;  } catch (e) {    return console.error("Erro ao buscar configurações externas:", e), null;  }};

Function `v()` is invoked whenever any internal sender dispatches a `{message: 'inject-code'}` event. It calls `f()` to obtain the remote config and specifically destructures `remote_code` — a URL that the missing primary content script is expected to receive and dynamically execute on the WhatsApp Web page. The error string 'MODULO_EXTERNAL_NOT_INITIALIZED_IN_BACKGROUND' confirms this is the entry point for loading a remote module. Combined with the absent main content chunk, this is the plausible execution path for the WaSteal payload.

background.js (Line 374)
v = async (e) => {  try {    const {      remote_code: t    } = await f();    if (!t)      throw new Error("Error url remote code não capturada");  } catch (t) {    console.error("Erro ao injetar WPP:", t), s("https://web.whatsapp.com/*", "module-error", {      code: "MODULO_EXTERNAL_NOT_INITIALIZED_IN_BACKGROUND"    });  }},

By severity

Critical0
High3
Medium0
Low0

Versions scanned

Showing 1 of 43 scanned versions with more than one unique finding. Counts are unique findings that include each version.

Extension VersionCode Review Findings
7.4.3.553

Files with findings

1 distinct path — top paths by unique finding count:

  • background.js3
S.No.
Category
Severity
File
Summary
Found in Version
1Remote Code Loading
high
background.js (line 21)The config object explicitly names `remote_code` (commented 'URL do código remoto') pointing to `https://code.wascript.com.br/`. This URL is fetched every 10 minutes and also used by the 'inject-code' handler to suppl…
2Remote Code Loading
high
background.js (line 181)Every 10 minutes (via the 'Ten_Minutes' chrome.alarms alarm) the background script GETs `https://code.wascript.com.br/config.json` and forwards the entire parsed JSON payload to every WhatsApp Web content-script tab u…
3Remote Code Loading
high
background.js (line 374)Function `v()` is invoked whenever any internal sender dispatches a `{message: 'inject-code'}` event. It calls `f()` to obtain the remote config and specifically destructures `remote_code` — a URL that the missing pri…
URLs
130
IPv4
221
IPv6
0

URLs

View the external URLs this extension communicates with to understand its network activity and data interactions.

Gain full insight into all external connections.

Upgrade for full visibility.

backend-plugin.wascript.com.br-https://backend-plugin.wascript.com.br/
painel-old.wascript.com.br-https://painel-old.wascript.com.br/
backend-utils.wascript.com.br-https://backend-utils.wascript.com.br/
multi-atendimento.wascript.com.br-https://multi-atendimento.wascript.com.br
api-whatsapp.wascript.com.br-https://api-whatsapp.wascript.com.br
app.wascript.com.br-https://app.wascript.com.br
audio-transcriber.wascript.com.br/transcriptionhttps://audio-transcriber.wascript.com.br/transcription
code.wascript.com.br-https://code.wascript.com.br/
dev.watools.com.br-https://dev.watools.com.br/
web.whatsapp.com-https://web.whatsapp.com?bearer_token=${o}`
Showing 1 to 10 of 130 rows
Rows per page:

Gain full insight into all external connections.

Upgrade for full visibility.

7.4.3.55
IPv4
-
1.7.8.4
IPv4
-
1.8.9.4
IPv4
-
1.4.8.7
IPv4
-
1.7.3.9
IPv4
-
19.22.16.16
IPv4
-
61.14.83.83
IPv4
-
3.84.61.61
IPv4
-
1.11.29.8
IPv4
-
1.11.3.8
IPv4
-
1.1.29.81
IPv4
-
1.1.29.8
IPv4
-
45.27.65.6
IPv4
-
2.38.94.94
IPv4
-
2.46.81.81
IPv4
-
14.58.81.81
IPv4
-
13.57.86.86
IPv4
-
13.57.91.91
IPv4
-
11.47.72.72
IPv4
-
11.47.8.8
IPv4
-
14.57.86.86
IPv4
-
35.37.87.36
IPv4
-
11.43.66.66
IPv4
-
1.44.65.65
IPv4
-
14.41.8.8
IPv4
-
11.44.59.59
IPv4
-
1.43.67.67
IPv4
-
11.44.76.76
IPv4
-
11.44.63.63
IPv4
-
37.31.85.29
IPv4
-
1.44.69.69
IPv4
-
1.44.59.59
IPv4
-
37.31.86.29
IPv4
-
4.72.83.83
IPv4
-
1.44.64.64
IPv4
-
11.44.73.73
IPv4
-
2.16.34.34
IPv4
-
28.39.35.35
IPv4
-
28.39.33.33
IPv4
-
2.16.33.33
IPv4
-
28.39.34.34
IPv4
-
2.17.33.33
IPv4
-
1.13.28.78
IPv4
-
18.43.34.34
IPv4
-
16.45.34.34
IPv4
-
16.45.33.33
IPv4
-
1.5.5.5
IPv4
-
5.5.75.75
IPv4
-
82.82.82.82
IPv4
-
48.33.12.58
IPv4
-
1.16.26.16
IPv4
-
26.14.11.46
IPv4
-
15.3.23.27
IPv4
-
19.39.24.59
IPv4
-
35.86.52.47
IPv4
-
75.4.57.42
IPv4
-
51.28.16.16
IPv4
-
47.41.14.23
IPv4
-
46.32.5.22
IPv4
-
12.18.14.13
IPv4
-
62.91.41.13
IPv4
-
24.47.15.3
IPv4
-
1.93.72.26
IPv4
-
81.62.1.5
IPv4
-
11.14.28.5
IPv4
-
37.33.39.37
IPv4
-
1.17.35.12
IPv4
-
29.35.14.55
IPv4
-
24.22.13.18
IPv4
-
36.42.16.29
IPv4
-
32.25.37.12
IPv4
-
1.2.2.13
IPv4
-
68.56.16.41
IPv4
-
1.24.53.6
IPv4
-
1.68.73.17
IPv4
-
94.54.72.13
IPv4
-
102.11.22.41
IPv4
-
1.29.45.12
IPv4
-
34.78.24.6
IPv4
-
1.59.79.74
IPv4
-
2.67.12.35
IPv4
-
63.23.9.62
IPv4
-
2.52.74.1
IPv4
-
2.44.9.21
IPv4
-
1.8.32.63
IPv4
-
18.51.17.54
IPv4
-
28.13.4.67
IPv4
-
95.47.31.41
IPv4
-
57.9.34.34
IPv4
-
27.37.49.57
IPv4
-
35.39.25.63
IPv4
-
63.81.98.31
IPv4
-
68.2.44.42
IPv4
-
1.28.3.53
IPv4
-
79.82.97.35
IPv4
-
1.25.56.38
IPv4
-
78.25.53.86
IPv4
-
75.36.11.59
IPv4
-
18.38.37.29
IPv4
-
1.4.74.14
IPv4
-
2.51.69.36
IPv4
-
12.41.4.2
IPv4
-
45.5.18.51
IPv4
-
64.78.21.49
IPv4
-
88.35.46.34
IPv4
-
60.71.46.24
IPv4
-
26.24.31.73
IPv4
-
88.1.36.6
IPv4
-
1.32.65.5
IPv4
-
62.46.11.46
IPv4
-
5.55.43.84
IPv4
-
11.28.32.23
IPv4
-
1.15.33.44
IPv4
-
31.13.48.15
IPv4
-
22.11.53.14
IPv4
-
85.18.17.19
IPv4
-
74.95.25.23
IPv4
-
13.3.19.22
IPv4
-
11.15.24.2
IPv4
-
11.26.21.15
IPv4
-
34.28.14.17
IPv4
-
24.13.14.36
IPv4
-
15.16.18.17
IPv4
-
59.69.25.19
IPv4
-
21.4.36.44
IPv4
-
99.47.32.14
IPv4
-
99.36.36.31
IPv4
-
17.16.29.19
IPv4
-
14.39.22.61
IPv4
-
12.2.91.41
IPv4
-
4.16.36.43
IPv4
-
32.3.71.39
IPv4
-
93.98.2.88
IPv4
-
1.16.59.44
IPv4
-
95.22.35.43
IPv4
-
31.27.19.11
IPv4
-
54.13.23.36
IPv4
-
6.77.18.82
IPv4
-
15.93.19.61
IPv4
-
3.1.24.77
IPv4
-
19.17.83.49
IPv4
-
1.13.21.55
IPv4
-
21.35.1.27
IPv4
-
1.13.46.47
IPv4
-
14.75.5.95
IPv4
-
58.4.12.28
IPv4
-
1.67.56.42
IPv4
-
48.68.44.26
IPv4
-
26.15.33.24
IPv4
-
12.27.18.33
IPv4
-
77.19.24.19
IPv4
-
59.19.22.16
IPv4
-
11.71.49.28
IPv4
-
23.21.35.19
IPv4
-
7.17.82.61
IPv4
-
15.25.42.56
IPv4
-
11.7.24.14
IPv4
-
17.61.11.83
IPv4
-
18.81.43.17
IPv4
-
15.33.22.12
IPv4
-
1.45.11.34
IPv4
-
5.29.16.33
IPv4
-
14.46.25.5
IPv4
-
89.59.17.68
IPv4
-
22.23.11.24
IPv4
-
47.14.2.24
IPv4
-
16.19.14.2
IPv4
-
38.33.42.11
IPv4
-
29.13.13.31
IPv4
-
79.25.49.84
IPv4
-
12.29.28.13
IPv4
-
85.24.34.2
IPv4
-
26.62.34.17
IPv4
-
16.45.23.34
IPv4
-
44.31.13.22
IPv4
-
1.21.13.42
IPv4
-
26.49.31.37
IPv4
-
81.54.14.53
IPv4
-
17.15.22.27
IPv4
-
7.41.34.27
IPv4
-
1.27.58.58
IPv4
-
3.48.22.24
IPv4
-
5.21.77.69
IPv4
-
11.69.48.1
IPv4
-
1.36.18.16
IPv4
-
25.18.1.29
IPv4
-
18.39.21.16
IPv4
-
1.28.25.15
IPv4
-
2.26.35.57
IPv4
-
13.12.26.43
IPv4
-
1.47.21.6
IPv4
-
102.14.98.25
IPv4
-
19.33.17.35
IPv4
-
102.17.45.13
IPv4
-
75.24.16.19
IPv4
-
15.19.9.28
IPv4
-
100.39.23.32
IPv4
-
101.43.17.22
IPv4
-
1.52.29.15
IPv4
-
3.18.78.49
IPv4
-
83.7.28.91
IPv4
-
1.5.75.75
IPv4
-
67.26.74.62
IPv4
-
79.32.79.75
IPv4
-
1.88.16.69
IPv4
-
22.12.43.25
IPv4
-
1.13.1.4
IPv4
-
2.4.4.53
IPv4
-
1.72.78.78
IPv4
-
2.13.42.26
IPv4
-
12.39.18.8
IPv4
-
2.182.5.5
IPv4
-
29.29.6.57
IPv4
-
29.29.59.57
IPv4
-
43.45.87.91
IPv4
-
23.13.33.41
IPv4
-
44.11.77.14
IPv4
-
24.1.43.19
IPv4
-
4.2.11.65
IPv4
-
31.12.47.19
IPv4
-
35.14.53.74
IPv4
-
Showing 1 to 221 of 230 rows
Rows per page:
Showing 1 to 10 of 50 rows
Rows per page:

Code Diff

Compare extension code between any two versions.

0 changed files (scanned top 25 shared text files)

No comparable text files found between these versions.

Browse and explore files within this extension package

Gain full insight into all external connections.

Upgrade for full visibility.