Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      tRPC vs GraphQL vs REST: Choosing the right API design for modern web applications

      June 26, 2025

      Jakarta EE 11 Platform launches with modernized Test Compatibility Kit framework

      June 26, 2025

      Can Good UX Protect Older Users From Digital Scams?

      June 25, 2025

      Warp 2.0 evolves terminal experience into an Agentic Development Environment

      June 25, 2025

      The top 4 Bluetooth speakers I’m taking everywhere this summer (including a surprise pick)

      June 27, 2025

      Your Android phone is getting a big security upgrade for free – here’s what’s new

      June 27, 2025

      How a 5-minute circuit scan saved me hundreds (and exposed a serious wiring surprise)

      June 27, 2025

      Using AI saves teachers ‘six weeks per year,’ Gallup poll finds – but at what cost?

      June 27, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      billboard.js 3.16.0 release: ✨ bar trending line & improved resizing performance!

      June 27, 2025
      Recent

      billboard.js 3.16.0 release: ✨ bar trending line & improved resizing performance!

      June 27, 2025

      ISO 20022 – End of MT Coexistence for Cash Instructions Fast Approaching

      June 27, 2025

      Building Trust and Shaping the Future: Implementing Responsible AI – Part 2

      June 27, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      Windows 11 KB5060826 fixes slow Search, direct download links

      June 27, 2025
      Recent

      Windows 11 KB5060826 fixes slow Search, direct download links

      June 27, 2025

      Rilasciata Tails 6.17: Più Privacy e Sicurezza con le Nuove Funzionalità

      June 27, 2025

      Rilasciata Deepin 25: La distribuzione GNU/Linux immutabile con assistente vocale e pacchetti universali

      June 27, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Security»Common Vulnerabilities and Exposures (CVEs)»CVE-2025-4551 – ContiNew Admin Cross Site Scripting Vulnerability

    CVE-2025-4551 – ContiNew Admin Cross Site Scripting Vulnerability

    May 11, 2025

    CVE ID : CVE-2025-4551

    Published : May 11, 2025, 11:15 p.m. | 1 hour, 15 minutes ago

    Description : A vulnerability, which was classified as problematic, was found in ContiNew Admin up to 3.6.0. Affected is an unknown function of the file /dev-api/common/file. The manipulation of the argument File leads to cross site scripting. It is possible to launch the attack remotely. The exploit has been disclosed to the public and may be used. The vendor was contacted early about this disclosure but did not respond in any way.

    Severity: 3.5 | LOW

    Visit the link for more details, such as CVSS details, affected products, timeline, and more…

    Source: Read More

    Facebook Twitter Reddit Email Copy Link
    Previous ArticleCVE-2025-4552 – ContiNew Admin Remote Unverified Password Change Vulnerability
    Next Article CVE-2025-4550 – PHPGurukul Apartment Visitors Management System SQL Injection Vulnerability

    Related Posts

    Security

    MongoDB Server Pre-Authentication Vulnerability Let Attackers Trigger DoS Condition

    June 27, 2025
    Security

    Securitybedrijf meldt mogelijk misbruik van nieuw CitrixBleed-lek

    June 27, 2025
    Leave A Reply Cancel Reply

    For security, use of Google's reCAPTCHA service is required which is subject to the Google Privacy Policy and Terms of Use.

    Continue Reading

    CVE-2025-26396 – SolarWinds Dameware Mini Remote Control Local Privilege Escalation Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    Critical ABB EIBPORT Flaw: Update Now to Prevent Building Automation Hijacks!

    Security

    CVE-2025-4174 – PHPGurukul COVID19 Testing Management System SQL Injection Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    Opera’s Android browser just got a major tab management upgrade

    News & Updates

    Highlights

    CVE-2025-37814 – Linux Kernel TTY Mouse Reporting Vulnerability

    May 8, 2025

    CVE ID : CVE-2025-37814

    Published : May 8, 2025, 7:15 a.m. | 58 minutes ago

    Description : In the Linux kernel, the following vulnerability has been resolved:

    tty: Require CAP_SYS_ADMIN for all usages of TIOCL_SELMOUSEREPORT

    This requirement was overeagerly loosened in commit 2f83e38a095f
    (“tty: Permit some TIOCL_SETSEL modes without CAP_SYS_ADMIN”), but as
    it turns out,

    (1) the logic I implemented there was inconsistent (apologies!),

    (2) TIOCL_SELMOUSEREPORT might actually be a small security risk
    after all, and

    (3) TIOCL_SELMOUSEREPORT is only meant to be used by the mouse
    daemon (GPM or Consolation), which runs as CAP_SYS_ADMIN
    already.

    In more detail:

    1. The previous patch has inconsistent logic:

    In commit 2f83e38a095f (“tty: Permit some TIOCL_SETSEL modes
    without CAP_SYS_ADMIN”), we checked for sel_mode ==
    TIOCL_SELMOUSEREPORT, but overlooked that the lower four bits of
    this “mode” parameter were actually used as an additional way to
    pass an argument. So the patch did actually still require
    CAP_SYS_ADMIN, if any of the mouse button bits are set, but did not
    require it if none of the mouse buttons bits are set.

    This logic is inconsistent and was not intentional. We should have
    the same policies for using TIOCL_SELMOUSEREPORT independent of the
    value of the “hidden” mouse button argument.

    I sent a separate documentation patch to the man page list with
    more details on TIOCL_SELMOUSEREPORT:
    https://lore.kernel.org/all/20250223091342.35523-2-gnoack3000@gmail.com/

    2. TIOCL_SELMOUSEREPORT is indeed a potential security risk which can
    let an attacker simulate “keyboard” input to command line
    applications on the same terminal, like TIOCSTI and some other
    TIOCLINUX “selection mode” IOCTLs.

    By enabling mouse reporting on a terminal and then injecting mouse
    reports through TIOCL_SELMOUSEREPORT, an attacker can simulate
    mouse movements on the same terminal, similar to the TIOCSTI
    keystroke injection attacks that were previously possible with
    TIOCSTI and other TIOCL_SETSEL selection modes.

    Many programs (including libreadline/bash) are then prone to
    misinterpret these mouse reports as normal keyboard input because
    they do not expect input in the X11 mouse protocol form. The
    attacker does not have complete control over the escape sequence,
    but they can at least control the values of two consecutive bytes
    in the binary mouse reporting escape sequence.

    I went into more detail on that in the discussion at
    https://lore.kernel.org/all/20250221.0a947528d8f3@gnoack.org/

    It is not equally trivial to simulate arbitrary keystrokes as it
    was with TIOCSTI (commit 83efeeeb3d04 (“tty: Allow TIOCSTI to be
    disabled”)), but the general mechanism is there, and together with
    the small number of existing legit use cases (see below), it would
    be better to revert back to requiring CAP_SYS_ADMIN for
    TIOCL_SELMOUSEREPORT, as it was already the case before
    commit 2f83e38a095f (“tty: Permit some TIOCL_SETSEL modes without
    CAP_SYS_ADMIN”).

    3. TIOCL_SELMOUSEREPORT is only used by the mouse daemons (GPM or
    Consolation), and they are the only legit use case:

    To quote console_codes(4):

    The mouse tracking facility is intended to return
    xterm(1)-compatible mouse status reports. Because the console
    driver has no way to know the device or type of the mouse, these
    reports are returned in the console input stream only when the
    virtual terminal driver receives a mouse update ioctl. These
    ioctls must be generated by a mouse-aware user-mode application
    such as the gpm(8) daemon.

    Jared Finder has also confirmed in
    https://lore.kernel.org/all/491f3df9de6593df8e70dbe77614b026@finder.org/
    that Emacs does not call TIOCL_SELMOUSEREPORT directly, and it
    would be difficult to find good reasons for doing that, given that
    it would interfere with the reports that GPM is sending.

    More information on the interaction between GPM, terminals and th
    —truncated—

    Severity: 0.0 | NA

    Visit the link for more details, such as CVSS details, affected products, timeline, and more…

    Microsoft Teams to block “unauthorized screen captures” — This new Prevent Screen Capture tool improves your privacy

    May 15, 2025

    Forget Ray-Bans: The $399 Meta Oakley smart glasses are better in almost every way

    June 20, 2025

    Mozilla annuncia la chiusura di Pocket

    May 23, 2025
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.