Description
Book-Management-System's Flask API endpoints /student, /record, /books, /find_stu_book, and /find_not_return_book are missing the @login_required decorator that protects sibling routes (/search_student, /storage) in the same file. Because card_id values are sequential integers, the entire student database can be enumerated without authentication.
Published: 2026-08-05
Score: 7.5 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

Book‑Management‑System’s Flask API exposes several endpoints—/student, /record, /books, /find_stu_book, and /find_not_return_book—without the @login_required decorator, whereas sibling routes in the same file are protected. The omission allows an unauthenticated attacker to retrieve sensitive personal data and borrowing history of students. Because the student identifiers are sequential integers, a single attacker can enumerate the entire database by incrementally querying these endpoints. The weakness is a missing authentication flaw (CWE‑306), leading to direct confidentiality disclosure of personally identifiable information.

Affected Systems

The impacted product is Book‑Management‑System from the vendor lyric777. All deployments that include the vulnerable Flask routes are susceptible; the affected versions are not specified in the advisory, so any installed instance of the application is at risk until authentication controls are applied.

Risk and Exploitability

The CVSS score of 7.5 signals a high severity, and the EPSS score of < 1% indicates a low exploitation probability as of this assessment. The vulnerability is not listed in CISA KEV, yet the remote RESTful nature of the API makes it accessible to any network‑connected user. Based on the description, it is inferred that an attacker can send simple HTTP GET requests to the exposed endpoints and iterate over sequential identifiers to harvest sensitive data. Adding a vendor check for any firmware or code base updates is a recommended best practice to stay ahead of mitigations.

Generated by OpenCVE AI on August 10, 2026 at 22:59 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Add authentication enforcement to the vulnerable endpoints by applying the @login_required decorator or equivalent access control logic.
  • Restrict the public API so that these endpoints are no longer exposed to unauthenticated traffic; consider moving them behind a VPN or internal network boundary.
  • Validate card identifiers and enforce rate limiting to prevent automated enumeration attempts.
  • Check the official website for any patches or updates related to this vulnerability and apply them promptly.
  • Conduct a security assessment to confirm that all sensitive data routes now require proper authentication before exposure.

Generated by OpenCVE AI on August 10, 2026 at 22:59 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Mon, 10 Aug 2026 12:00:00 +0000

Type Values Removed Values Added
Description Book-Management-System's Flask API endpoints /student, /record, /books, /find_stu_book, and /find_not_return_book are missing the @login_required decorator that protects sibling routes (/search_student, /storage) in the same file. This allows any unauthenticated remote user to retrieve student PII (name, gender, card validity, debt status) and full book-borrowing history by supplying a card_id. Because card_id values are sequential integers, the entire student database can be enumerated without authentication. Book-Management-System's Flask API endpoints /student, /record, /books, /find_stu_book, and /find_not_return_book are missing the @login_required decorator that protects sibling routes (/search_student, /storage) in the same file. Because card_id values are sequential integers, the entire student database can be enumerated without authentication.

Mon, 10 Aug 2026 11:30:00 +0000

Type Values Removed Values Added
Title Book-Management-System: Unauthenticated Disclosure of Student PII and Borrowing History Book-Management-System - Unauthenticated Disclosure of Student PII and Borrowing History

Fri, 07 Aug 2026 11:45:00 +0000

Type Values Removed Values Added
First Time appeared Lyric777
Lyric777 book-management-system
Vendors & Products Lyric777
Lyric777 book-management-system

Wed, 05 Aug 2026 13:30:00 +0000

Type Values Removed Values Added
Metrics ssvc

{'options': {'Automatable': 'yes', 'Exploitation': 'none', 'Technical Impact': 'partial'}, 'version': '2.0.3'}


Wed, 05 Aug 2026 11:15:00 +0000

Type Values Removed Values Added
Description Book-Management-System's Flask API endpoints /student, /record, /books, /find_stu_book, and /find_not_return_book are missing the @login_required decorator that protects sibling routes (/search_student, /storage) in the same file. This allows any unauthenticated remote user to retrieve student PII (name, gender, card validity, debt status) and full book-borrowing history by supplying a card_id. Because card_id values are sequential integers, the entire student database can be enumerated without authentication.
Title Book-Management-System: Unauthenticated Disclosure of Student PII and Borrowing History
Weaknesses CWE-306
References
Metrics cvssV3_1

{'score': 7.5, 'vector': 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N'}


Subscriptions

Lyric777 Book-management-system
cve-icon MITRE

Status: PUBLISHED

Assigner: TuranSec

Published:

Updated: 2026-08-10T11:45:48.501Z

Reserved: 2026-08-05T10:53:53.175Z

Link: CVE-2026-71241

cve-icon Vulnrichment

Updated: 2026-08-05T12:58:21.511Z

cve-icon NVD

Status : Received

Published: 2026-08-05T11:16:26.997

Modified: 2026-08-10T12:17:26.633

Link: CVE-2026-71241

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-08-10T23:00:07Z

Weaknesses
  • CWE-306

    Missing Authentication for Critical Function