Skip to main content

Boteraser | Website and Server Security Solutions

🛡️ CVE-2026-48488 — phpmyfaq

🟢 CVSS 2.0 — Low ✅ No Known Exploit CWE-328 NVD
2.0
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

phpMyFAQ has Weak Cryptography - SHA1 for Password Hashing

Summary

Attachment passwords are hashed using SHA-1, a cryptographically broken algorithm. SHA-1 has been vulnerable to collision attacks since 2017 (SHAttered).

Details

Affected File : phpmyfaq/src/phpMyFAQ/Attachment/AbstractAttachment.php

<img width="810" height="427" alt="image" src="https://github.com/user-attachments/assets/6499a008-3ece-4291-8296-f1d3303ba35c" />

Impact

  • An attacker can generate SHA-1 collisions to bypass attachment protection
  • Risk of password cracking if database is compromised
  • Estimated cracking time: < 1 minute for standard attachment

Solution

Use bcrypt:

```

public function setPassword(string $password): void

{

$this->passwordHash = password_hash($password, PASSWORD_BCRYPT);

}

public function verifyPassword(string $plainPassword): bool

{

return password_verify($plainPassword, $this->passwordHash);

}

```

How this vulnerability can be exploited

This issue can be reached over the network, attack complexity is low, an attacker needs no privileges on the target. No user interaction is required. Rated impact: confidentiality low, integrity none, availability none.

CVSS metrics in full

The score comes from this vector: CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N/E:U

  • Attack vector: Network — reachable from anywhere that can route to the service.
  • Attack complexity: Low — the attack works reliably, with no preparation.
  • Attack requirements: None — no deployment-specific condition has to hold.
  • Privileges required: None — an unauthenticated stranger can try it.
  • User interaction: None — nobody has to be tricked into anything.
  • Confidentiality impact: Low — limited, and the attacker does not choose what is affected.
  • Integrity impact: None.
  • Availability impact: None.

Weakness class

CVE-2026-48488 is classified as CWE-328: Use of Weak Hash. The product uses an algorithm that produces a digest (output value) that does not meet security expectations for a hash function that allows an adversary to reasonably determine the original input (preimage attack), find another input that can…

Affected software

CVE-2026-48488 is recorded against 3 packages.

  • phpmyfaq/phpmyfaq (fixed in 4.1.4)
  • thorsten/phpmyfaq (fixed in 4.1.4)
  • unknown

Timeline and source

Published on 23 June 2026. No public exploit is currently recorded for this entry. Record sourced from NVD.

References

github.com (Web)
nvd.nist.gov (Advisory)
github.com (Web)
github.com (Package)

Other advisories for this package

phpmyfaq/phpmyfaq has other advisories on record. If you are patching this one, these are worth checking on the same host:

Same weakness in other software

These advisories are the same class of weakness (CWE-328: Use of Weak Hash) in other software:

Details

Severity LOW
CVSS Score 2.0
CVSS Vector CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N/E:U
CWE CWE-328
Public Exploit ✅ No
Source NVD
Published 2026-06-23
Updated 2026-08-20
Modified 2026-06-23
Fix URL N/A

Affected Packages

Software From version Fixed in
phpmyfaq/phpmyfaq 4.1.4
thorsten/phpmyfaq 4.1.4
unknown

Similar Threats

Free Vulnerability Check

Is your site affected by CVE-2026-48488?

BotEraser helps you identify potentially vulnerable plugins and themes by checking your installation against CVE-2026-48488 and other known CVE records.

Scan My Site Free →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.

Browse related advisories

All advisoriesCVECVE 2026