Static Scan Results
scanned 2h ago · by rust-scannerStatic analysis flagged 9 finding(s) at 93.0% confidence. This version is warn-only unless an AI or security-team review confirms malicious behavior.
Static reason
No blocking static signals were detected.; previous stored version diff introduced dangerous source
Decision evidence
public snapshotBehavioral surface
ChildProcessEnvironmentVarsNetwork
HighEntropyStringsUrlStrings
NoLicense
Source & flagged code
2 flagged · loading sourcedist/server/pages.jsView file
53async function restQuery(siteId, filters, limit) {
L54: const apiKey = process.env.NEXT_PUBLIC_FIREBASE_API_KEY;
L55: const projectId = process.env.NEXT_PUBLIC_FIREBASE_PROJECT_ID;
L56: if (!apiKey || !projectId) return [];
L57: const url = `https://firestore.googleapis.com/v1/projects/${projectId}/databases/(default)/documents/sites/${siteId}:runQuery?key=${apiKey}`;
L58: const where = filters.length === 1 ? filters[0] : { compositeFilter: { op: "AND", filters } };
...
L64: headers: { "Content-Type": "application/json" },
L65: body: JSON.stringify({ structuredQuery }),
L66: // Pagina's zijn ISR-gecached; next-cache mag dit hergebruiken.
...
L69: if (!res.ok) return [];
L70: const rows = await res.json();
L71: return rows.filter((r) => r.document).map((r) => parse(r.document.name.split("/").pop(), decodeFields(r.document.fields))).filter((p) => p !== null);
High
Credential Exfiltration
Source combines credential-like environment material and outbound requests; review data flow before blocking.
dist/server/pages.jsView on unpkg · L53dist/XiCMSProvider.jsView file
•matchType = previous_version_dangerous_delta
matchedPackage = @xiwebdesign/xicms-core@4.18.0
matchedIdentity = npm:QHhpd2ViZGVzaWduL3hpY21zLWNvcmU:4.18.0
similarity = 0.483
summary = stored previous version shares package body but lacks this dangerous source file
Critical
Previous Version Dangerous Delta
This package version adds a dangerous source file absent from the previous stored version; route for source-aware review.
dist/XiCMSProvider.jsView on unpkgFindings
1 Critical1 High2 Medium5 Low
CriticalPrevious Version Dangerous Deltadist/XiCMSProvider.js
HighCredential Exfiltrationdist/server/pages.js
MediumNetwork
MediumEnvironment Vars
LowNon Install Lifecycle Scripts
LowScripts Present
LowHigh Entropy Strings
LowUrl Strings
LowNo License