Adblock Pro

Adblock Pro

ID: kkjokbgfeiakpodabmpoenjokahkidlf

Supported Languages

πŸ‡§πŸ‡·Brazilian Portuguese
πŸ‡³πŸ‡±Dutch
πŸ‡ΊπŸ‡ΈEnglish
πŸ‡«πŸ‡·French
πŸ‡©πŸ‡ͺGerman
πŸ‡΅πŸ‡ΉPortuguese
πŸ‡ͺπŸ‡ΈSpanish

Extension Info & Metadata

Status
Removed
Version
1.0.0
Size
6.84 MB
Rating
4.0/5
Reviews
23
Users
10,000
Type
Extension
Updated
May 23, 2025
Category
Productivity Workflow
Price
Free
Featured
No
Visibility
Listed
Mature
No
By Google
No
Trusted
Yes

Publisher Contextual Analysis

Author
cletazView Profile
MX records exist
Yes
Domain exists
Yes
Is disposable
No
Is role-based
No
Mailbox exists
Yes
Total Extensions
1
Active
0
Obsolete
1
Listed
1
Unlisted
0
Total Users
10,000
Screenshot 1
Screenshot 2
Screenshot 3
Screenshot 4
Screenshot 5

Block ads, pop-ups and intrusive trackers on YouTube, Facebook, and all websites!

Adblock Pro is a powerful browser extension designed to block intrusive ads, pop-ups, video ads, and trackers. Enjoy a faster, cleaner, and more private browsing experience. Key Features: 🚫 Blocks all types of ads: banners, pop-ups, video ads πŸ›‘οΈ Protects your privacy by blocking trackers and analytics ⚑ Speeds up websites by removing unnecessary clutter 🌍 Works on all major websites and platforms πŸ”’ No personal data collection β€” privacy-first Why Choose? βœ… Easy to install and use 🧭 Simple, intuitive interface βš™οΈ Works out of the box β€” no setup needed πŸ” Frequent updates to stay ahead of new ad technologies πŸ“¬ Contact: For support or suggestions, email: [email protected]

Item
Type
Severity
Description
declarativeNetRequest
Permission
Critical
This permission allows the extension to define rules to block, redirect, or modify network requests. Rated Critical because it can control all network traffic, potentially blocking security updates or redirecting to malicious sites.
scripting
Permission
Critical
This permission allows injection and execution of JavaScript on any webpage. Rated Critical because it can modify page content, steal sensitive data, and inject malicious code into any site the extension has access to.
*://*/*
Host
Critical
Broad host access β€” the extension can read/modify content on every website.
Contextual Risk Factors
Risk Factor
High
The following context increases the overall risk:β€’ 10% increase: Early script execution enables pre-emptive content manipulation
Broad Host Permissions
Risk Factor
High
This extension has broad host permissions allowing it to access many or all websites.
Broad Content Script Access
Risk Factor
High
This extension can inject scripts into any website.
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.
Early Content Script Execution
Risk Factor
Medium
This extension runs content scripts at document_start.

On install, the extension auto-opens an external third-party landing page at adblock-pro.com without user consent. Combined with the fact that the underlying source is a verbatim repackage of Raymond Hill's uBlock Origin Lite ([email protected], ID cimighlppcgcoapaliogpjjdehbnofhn β€” both names appear in the code at lines 4150-4151), this strongly suggests a rebranded clone driving traffic/affiliate revenue to a third-party domain that users may mistake for the original ad blocker. Classic clone-extension phishing/monetization vector.

javaScripts/service-worker.js (Line 5006)
(async function() {      if (e.runtime.onInstalled.addListener((t => {          "install" === t.reason && e.tabs.create({            url: "https://adblock-pro.com/index.html"          });        })), await async function() {            const e = await u("rulesetConfig");

The service worker still contains hardcoded identity checks for the original uBlock Origin Lite ([email protected] / cimighlppcgcoapaliogpjjdehbnofhn) β€” confirming this `Adblock Pro` extension (kkjokbgfeiakpodabmpoenjokahkidlf) is a verbatim repackage of Raymond Hill's uBOL under a different publisher and brand. While the code itself is the legitimate open-source uBOL (no exfiltration, no remote code load, all `fetch()` calls target bundled extension-local JSON paths), this is a brand/publisher impersonation pattern frequently used by clone extensions to capitalize on a known good codebase while controlling the auto-update channel for later malicious updates.

javaScripts/service-worker.js (Line 4145)
const q = (() => {    if (t.onRuleMatchedDebug instanceof Object == 0) return !1;    const {      id: n    } = e.runtime;    return "[email protected]" !== n && "ddkjiahejlhfcafbddmgiahcphecmpfh" !== n &&      "cimighlppcgcoapaliogpjjdehbnofhn" !== n;  })(),

The manifest exposes every file in the extension package (`resources: ["*"]`) to every web origin (`matches: ["*://*/*"]`). Any page can probe extension resources via chrome-extension:// URLs, enabling extension fingerprinting/detection and broad attack surface. While `use_dynamic_url` mitigates static ID fingerprinting, the wildcard resource exposure is broader than necessary.

manifest.json (Line 31)
{  "web_accessible_resources": [    {      "resources": [        "*"      ],      "matches": [        "*://*/*"      ],      "use_dynamic_url": true    }  ]}

Content script (injected at document_start into every frame on every URL via the `*://*/*` host permission) reports the host of every page the user visits to the background service worker via `getSiteStatusInRules` and emits a `pageReload` message on every navigation. Functionally this is for per-site filter rule lookup (uBOL pattern), but it gives the extension's background page a complete real-time browsing log of every domain the user visits.

javaScripts/content-script.js (Line 3851)
window.onbeforeunload = function() {chrome.runtime.sendMessage({  type: "pageReload"});}, chrome.runtime.onMessage.addListener((function(e) {return "reloadPage" === e.type && location.reload(), !0;})), chrome.runtime.sendMessage({type: "getSiteStatusInRules",host: window.location.host}, (e => {  e && (r = e, function() {    const e = new MutationObserver(i);    e.observe(window.document, {      attributes: !0,      childList: !0,      subtree: !0    }), setTimeout((() => {      e.disconnect();    }), 1e4);  }));}));

Registers a global mousedown listener on every page that captures the DOM target of every right-click (button === 2) and stores it. This is the AdGuard element-picker integration (legitimate when invoked by user via popup), but it runs unconditionally on every page in every frame, recording right-click targets in a closure variable accessible to extension messaging β€” broader than strictly necessary.

javaScripts/assistantForRules.js (Line 1)
function startHelperForRules() {  chrome.runtime.onMessage.addListener((function(e) {    if ("startHelperForRules" === e.type) {      var s = e.options,        a = s.addRuleCallbackName,        n = null;      t && s.selectElement && (n = t), assistant ? assistant.close() : assistant = adguardAssistant(),        assistant.start(n, (function(t) {          chrome.runtime.sendMessage({            type: a,            ruleText: t          });        }));    }  }));  var t = null;  document.addEventListener("mousedown", (function(e) {    2 === e.button && (t = e.target);  }));}startHelperForRules();

By severity

Critical0
High0
Medium2
Low3

Versions scanned

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

Extension VersionCode Review Findings
1.0.05

Files with findings

4 distinct paths β€” top paths by unique finding count:

  • javaScripts/service-worker.js2
  • javaScripts/assistantForRules.js1
  • javaScripts/content-script.js1
  • manifest.json1
S.No.
Category
Severity
File
Summary
Found in Version
1Other
medium
javaScripts/service-worker.js (line 4145)The service worker still contains hardcoded identity checks for the original uBlock Origin Lite ([email protected] / cimighlppcgcoapaliogpjjdehbnofhn) β€” confirming this `Adblock Pro` extension (kkjokbgfeiakpodab…
2Phishing
medium
javaScripts/service-worker.js (line 5006)On install, the extension auto-opens an external third-party landing page at adblock-pro.com without user consent. Combined with the fact that the underlying source is a verbatim repackage of Raymond Hill's uBlock Ori…
3Tracking
low
manifest.json (line 31)The manifest exposes every file in the extension package (`resources: ["*"]`) to every web origin (`matches: ["*://*/*"]`). Any page can probe extension resources via chrome-extension:// URLs, enabling extension finge…
4Tracking
low
javaScripts/content-script.js (line 3851)Content script (injected at document_start into every frame on every URL via the `*://*/*` host permission) reports the host of every page the user visits to the background service worker via `getSiteStatusInRules` an…
5Tracking
low
javaScripts/assistantForRules.js (line 1)Registers a global mousedown listener on every page that captures the DOM target of every right-click (button === 2) and stores it. This is the AdGuard element-picker integration (legitimate when invoked by user via p…
URLs
854
IPv4
435
IPv6
1

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.

jquery.com-https://jquery.com/
jquery.org/licensehttps://jquery.org/license
adblock-pro.com/index.htmlhttps://adblock-pro.com/index.html
clients2.google.com/service/update2/crxhttps://clients2.google.com/service/update2/crx
*/*http://*/*
*/*https://*/*
github.com/uBlockOrigin/uAssetshttps://github.com/uBlockOrigin/uAssets
someonewhocares.org/hosts/https://someonewhocares.org/hosts/
github.com/AdguardTeam/AdguardFiltershttps://github.com/AdguardTeam/AdguardFilters#adguard-filters
github.com/easylist/easylisthttps://github.com/easylist/easylist#fanboy-lists
Showing 1 to 10 of 860 rows
Rows per page:

Gain full insight into all external connections.

Upgrade for full visibility.

193.142.147.230
IPv4
-
5.253.86.213
IPv4
-
37.16.75.37
IPv4
-
192.168.0.1
IPv4
-
192.168.1.1
IPv4
-
1.1.1.1
IPv4
-
216.18.176.4
IPv4
-
120.132.57.41
IPv4
-
199.116.177.156
IPv4
-
0.0.0.1
IPv4
-
109.123.233.251
IPv4
-
141.98.82.232
IPv4
-
157.90.183.248
IPv4
-
162.252.214.4
IPv4
-
164.132.74.156
IPv4
-
167.206.10.148
IPv4
-
167.71.252.38
IPv4
-
167.99.31.227
IPv4
-
172.255.103.118
IPv4
-
172.255.6.135
IPv4
-
172.255.6.137
IPv4
-
172.255.6.139
IPv4
-
172.255.6.140
IPv4
-
172.255.6.150
IPv4
-
172.255.6.152
IPv4
-
172.255.6.199
IPv4
-
172.255.6.2
IPv4
-
172.255.6.217
IPv4
-
172.255.6.228
IPv4
-
172.255.6.248
IPv4
-
172.255.6.252
IPv4
-
172.255.6.254
IPv4
-
172.255.6.59
IPv4
-
185.149.120.173
IPv4
-
185.193.38.148
IPv4
-
188.42.84.110
IPv4
-
188.42.84.137
IPv4
-
188.42.84.159
IPv4
-
188.42.84.160
IPv4
-
188.42.84.162
IPv4
-
188.42.84.21
IPv4
-
188.42.84.23
IPv4
-
194.26.232.61
IPv4
-
2.87.160.7
IPv4
-
203.195.121.0
IPv4
-
203.195.121.1
IPv4
-
203.195.121.103
IPv4
-
203.195.121.11
IPv4
-
203.195.121.119
IPv4
-
203.195.121.134
IPv4
-
203.195.121.184
IPv4
-
203.195.121.195
IPv4
-
203.195.121.209
IPv4
-
203.195.121.217
IPv4
-
203.195.121.219
IPv4
-
203.195.121.224
IPv4
-
203.195.121.229
IPv4
-
203.195.121.24
IPv4
-
203.195.121.28
IPv4
-
203.195.121.29
IPv4
-
203.195.121.34
IPv4
-
203.195.121.36
IPv4
-
203.195.121.40
IPv4
-
203.195.121.46
IPv4
-
203.195.121.70
IPv4
-
203.195.121.72
IPv4
-
203.195.121.73
IPv4
-
203.195.121.74
IPv4
-
23.109.121.125
IPv4
-
23.109.150.208
IPv4
-
23.109.150.253
IPv4
-
23.109.170.212
IPv4
-
23.109.170.228
IPv4
-
23.109.170.241
IPv4
-
23.109.170.255
IPv4
-
23.109.170.60
IPv4
-
23.109.248.125
IPv4
-
23.109.248.129
IPv4
-
23.109.248.130
IPv4
-
23.109.248.135
IPv4
-
23.109.248.139
IPv4
-
23.109.248.14
IPv4
-
23.109.248.149
IPv4
-
23.109.248.174
IPv4
-
23.109.248.183
IPv4
-
23.109.248.20
IPv4
-
23.109.248.229
IPv4
-
23.109.248.247
IPv4
-
23.109.248.29
IPv4
-
23.109.87.123
IPv4
-
23.109.87.170
IPv4
-
23.195.91.195
IPv4
-
34.102.137.201
IPv4
-
34.215.155.61
IPv4
-
35.194.26.233
IPv4
-
35.224.227.218
IPv4
-
35.227.234.222
IPv4
-
35.232.188.118
IPv4
-
35.238.205.163
IPv4
-
35.239.57.233
IPv4
-
37.1.209.213
IPv4
-
37.1.213.100
IPv4
-
44.228.85.26
IPv4
-
45.32.105.134
IPv4
-
5.61.55.143
IPv4
-
51.77.227.100
IPv4
-
51.77.227.101
IPv4
-
51.77.227.102
IPv4
-
51.77.227.103
IPv4
-
51.77.227.96
IPv4
-
51.77.227.97
IPv4
-
51.77.227.98
IPv4
-
51.77.227.99
IPv4
-
51.89.187.136
IPv4
-
51.89.187.137
IPv4
-
51.89.187.138
IPv4
-
51.89.187.139
IPv4
-
51.89.187.140
IPv4
-
51.89.187.141
IPv4
-
51.89.187.142
IPv4
-
51.89.187.143
IPv4
-
77.162.125.199
IPv4
-
88.42.84.136
IPv4
-
91.241.60.117
IPv4
-
111.90.159.132
IPv4
-
111.90.150.10
IPv4
-
111.90.150.149
IPv4
-
193.197.158.209
IPv4
-
212.95.32.75
IPv4
-
180.76.2.18
IPv4
-
109.169.66.161
IPv4
-
0.0.0.0
IPv4
-
127.0.0.1
IPv4
-
78.46.19.203
IPv4
-
213.8.137.51
IPv4
-
160.153.137.218
IPv4
-
160.153.138.105
IPv4
-
198.12.144.78
IPv4
-
198.71.233.107
IPv4
-
198.71.233.138
IPv4
-
198.71.233.179
IPv4
-
198.71.233.227
IPv4
-
198.71.233.86
IPv4
-
45.40.148.147
IPv4
-
50.62.172.232
IPv4
-
160.153.138.163
IPv4
-
198.71.233.197
IPv4
-
160.153.137.14
IPv4
-
192.168.10.113
IPv4
-
154.7.80.158
IPv4
-
194.59.220.161
IPv4
-
205.209.138.102
IPv4
-
23.231.151.252
IPv4
-
60.190.139.164
IPv4
-
174.127.195.66
IPv4
-
172.86.179.138
IPv4
-
208.94.244.100
IPv4
-
208.94.244.98
IPv4
-
199.180.100.185
IPv4
-
174.123.15.43
IPv4
-
180.96.27.85
IPv4
-
202.102.26.253
IPv4
-
47.100.0.249
IPv4
-
58.218.200.135
IPv4
-
59.36.101.209
IPv4
-
61.10.2.86
IPv4
-
70.86.24.120
IPv4
-
75.125.41.29
IPv4
-
137.175.73.220
IPv4
-
156.233.32.123
IPv4
-
192.151.218.66
IPv4
-
23.224.89.2
IPv4
-
115.28.114.149
IPv4
-
117.60.146.16
IPv4
-
111.75.255.103
IPv4
-
182.150.59.104
IPv4
-
210.40.130.91
IPv4
-
65.109.238.16
IPv4
-
178.32.140.64
IPv4
-
212.47.219.162
IPv4
-
172.104.145.13
IPv4
-
35.193.89.147
IPv4
-
109.248.59.27
IPv4
-
195.133.60.89
IPv4
-
46.8.158.101
IPv4
-
46.8.158.80
IPv4
-
46.8.158.94
IPv4
-
52.25.25.125
IPv4
-
23.83.114.131
IPv4
-
46.105.62.117
IPv4
-
176.31.96.119
IPv4
-
213.206.98.70
IPv4
-
198.16.64.66
IPv4
-
90.63.192.161
IPv4
-
95.169.186.139
IPv4
-
185.87.50.147
IPv4
-
185.127.19.213
IPv4
-
5.45.79.91
IPv4
-
50.7.134.117
IPv4
-
176.58.105.153
IPv4
-
188.120.246.210
IPv4
-
188.40.18.172
IPv4
-
188.72.225.106
IPv4
-
195.161.119.239
IPv4
-
213.163.70.183
IPv4
-
213.186.217.210
IPv4
-
78.140.145.178
IPv4
-
80.91.178.234
IPv4
-
80.93.49.192
IPv4
-
80.93.56.187
IPv4
-
83.218.204.107
IPv4
-
90.156.144.98
IPv4
-
91.194.251.66
IPv4
-
95.168.161.173
IPv4
-
95.211.26.129
IPv4
-
89.108.109.12
IPv4
-
188.93.22.165
IPv4
-
213.151.2.195
IPv4
-
35.178.185.67
IPv4
-
5.101.115.170
IPv4
-
62.109.18.206
IPv4
-
95.213.229.88
IPv4
-
95.213.231.34
IPv4
-
85.10.194.51
IPv4
-
37.1.201.32
IPv4
-
37.1.202.140
IPv4
-
37.1.203.156
IPv4
-
37.1.204.182
IPv4
-
37.1.204.76
IPv4
-
37.1.205.159
IPv4
-
37.1.205.47
IPv4
-
37.1.206.118
IPv4
-
37.1.206.121
IPv4
-
37.1.206.231
IPv4
-
37.1.206.95
IPv4
-
37.1.207.130
IPv4
-
37.1.207.65
IPv4
-
37.1.216.106
IPv4
-
37.1.216.119
IPv4
-
37.1.217.105
IPv4
-
37.1.217.113
IPv4
-
5.45.65.153
IPv4
-
5.45.66.118
IPv4
-
5.45.70.162
IPv4
-
5.45.86.39
IPv4
-
5.45.87.85
IPv4
-
178.63.99.21
IPv4
-
3.248.18.175
IPv4
-
35.227.231.163
IPv4
-
45.58.146.154
IPv4
-
82.196.13.38
IPv4
-
82.221.81.9
IPv4
-
178.79.136.45
IPv4
-
52.216.146.90
IPv4
-
92.42.104.146
IPv4
-
212.27.60.108
IPv4
-
94.156.65.204
IPv4
-
179.43.189.62
IPv4
-
74.119.239.234
IPv4
-
162.241.194.206
IPv4
-
51.195.133.131
IPv4
-
66.206.3.34
IPv4
-
82.118.242.69
IPv4
-
136.243.73.30
IPv4
-
138.201.126.227
IPv4
-
156.236.126.173
IPv4
-
196.196.230.76
IPv4
-
167.71.49.177
IPv4
-
134.209.82.119
IPv4
-
154.213.16.136
IPv4
-
158.247.212.220
IPv4
-
165.227.168.212
IPv4
-
132.148.220.142
IPv4
-
167.99.196.225
IPv4
-
38.180.96.244
IPv4
-
193.143.1.45
IPv4
-
193.143.1.214
IPv4
-
193.143.1.217
IPv4
-
5.39.217.206
IPv4
-
5.39.221.180
IPv4
-
193.148.70.153
IPv4
-
1.14.61.188
IPv4
-
85.17.76.181
IPv4
-
88.150.149.92
IPv4
-
80.209.252.146
IPv4
-
128.199.175.251
IPv4
-
139.99.33.192
IPv4
-
149.56.24.226
IPv4
-
15.235.11.45
IPv4
-
96.43.139.236
IPv4
-
96.43.139.237
IPv4
-
109.234.34.246
IPv4
-
65.108.132.145
IPv4
-
166.62.7.206
IPv4
-
213.133.100.18
IPv4
-
149.13.77.20
IPv4
-
85.114.133.62
IPv4
-
91.116.142.114
IPv4
-
212.13.64.105
IPv4
-
184.106.248.76
IPv4
-
184.154.142.242
IPv4
-
187.6.64.32
IPv4
-
200.72.40.46
IPv4
-
190.115.18.20
IPv4
-
111.90.141.252
IPv4
-
161.97.106.129
IPv4
-
185.53.88.104
IPv4
-
185.53.88.204
IPv4
-
185.53.88.15
IPv4
-
185.153.231.222
IPv4
-
103.74.5.104
IPv4
-
185.193.17.214
IPv4
-
158.220.106.212
IPv4
-
161.97.70.5
IPv4
-
38.242.194.12
IPv4
-
193.124.191.200
IPv4
-
173.249.8.3
IPv4
-
45.86.86.235
IPv4
-
194.110.247.242
IPv4
-
111.90.151.26
IPv4
-
111.90.159.159
IPv4
-
94.103.83.138
IPv4
-
188.166.182.72
IPv4
-
1.0.0.0
IPv4
-
45.12.2.2
IPv4
-
107.152.37.223
IPv4
-
185.217.95.43
IPv4
-
185.217.95.48
IPv4
-
185.217.95.49
IPv4
-
157.245.12.72
IPv4
-
139.99.33.205
IPv4
-
139.99.120.222
IPv4
-
185.231.223.76
IPv4
-
75.119.147.12
IPv4
-
194.163.158.12
IPv4
-
149.102.130.200
IPv4
-
45.67.231.215
IPv4
-
161.97.116.33
IPv4
-
89.117.61.35
IPv4
-
185.182.187.38
IPv4
-
173.212.245.75
IPv4
-
46.149.76.81
IPv4
-
154.12.229.9
IPv4
-
81.0.220.98
IPv4
-
158.69.0.212
IPv4
-
95.216.163.177
IPv4
-
192.99.70.18
IPv4
-
5.182.209.205
IPv4
-
173.249.59.185
IPv4
-
194.163.145.21
IPv4
-
94.250.202.221
IPv4
-
185.217.95.30
IPv4
-
207.244.225.48
IPv4
-
194.163.183.129
IPv4
-
149.28.158.117
IPv4
-
212.32.226.234
IPv4
-
51.81.238.0
IPv4
-
193.178.172.113
IPv4
-
157.245.195.114
IPv4
-
37.49.229.132
IPv4
-
216.155.135.144
IPv4
-
164.68.127.15
IPv4
-
194.233.87.224
IPv4
-
154.26.132.73
IPv4
-
194.233.73.15
IPv4
-
103.194.170.153
IPv4
-
46.166.167.16
IPv4
-
188.166.39.172
IPv4
-
173.199.167.192
IPv4
-
164.68.105.199
IPv4
-
173.249.49.204
IPv4
-
139.99.33.210
IPv4
-
139.99.61.225
IPv4
-
94.237.74.225
IPv4
-
68.65.123.84
IPv4
-
152.44.32.81
IPv4
-
3.37.104.109
IPv4
-
103.204.13.68
IPv4
-
78.142.19.8
IPv4
-
173.192.147.21
IPv4
-
61.160.236.52
IPv4
-
194.233.68.230
IPv4
-
51.79.155.108
IPv4
-
172.104.39.221
IPv4
-
103.10.200.48
IPv4
-
103.10.200.57
IPv4
-
103.10.200.61
IPv4
-
103.10.201.26
IPv4
-
128.199.117.89
IPv4
-
128.199.142.177
IPv4
-
139.59.96.74
IPv4
-
142.44.144.187
IPv4
-
143.198.45.189
IPv4
-
188.166.64.6
IPv4
-
45.63.19.229
IPv4
-
51.79.169.33
IPv4
-
128.199.132.128
IPv4
-
128.199.178.246
IPv4
-
128.199.25.237
IPv4
-
13.250.221.149
IPv4
-
139.162.32.45
IPv4
-
139.177.184.39
IPv4
-
139.99.116.123
IPv4
-
157.245.201.128
IPv4
-
167.172.95.197
IPv4
-
167.99.30.155
IPv4
-
167.99.31.248
IPv4
-
170.187.225.84
IPv4
-
172.104.168.127
IPv4
-
172.104.170.60
IPv4
-
172.104.41.68
IPv4
-
172.104.45.42
IPv4
-
172.105.112.176
IPv4
-
18.140.221.249
IPv4
-
188.166.222.66
IPv4
-
188.166.249.9
IPv4
-
192.53.114.253
IPv4
-
192.53.115.182
IPv4
-
192.53.172.56
IPv4
-
3.0.11.134
IPv4
-
3.1.126.175
IPv4
-
52.221.82.123
IPv4
-
52.223.3.189
IPv4
-
54.151.184.106
IPv4
-
54.179.243.161
IPv4
-
54.251.104.51
IPv4
-
75.2.66.64
IPv4
-
91.233.198.25
IPv4
-
94.237.73.68
IPv4
-
142.91.159.218
IPv4
-
162.215.254.42
IPv4
-
178.175.132.130
IPv4
-
188.165.178.248
IPv4
-
163.172.219.174
IPv4
-
122.51.121.126
IPv4
-
4:6:7:8:9:10:11:12
IPv6
-
Showing 1 to 436 of 440 rows
Rows per page:
Version
Size
Is Malicious
Findings
Permhash
1.0.0
Latest
6.84 MB
Benign
5
Showing 1 to 1 of 10 rows
Rows per page:

Browse and explore files within this extension package

Gain full insight into all external connections.

Upgrade for full visibility.