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

      Coded Smorgasbord: High Strung

      September 26, 2025

      Chainguard launches trusted collection of verified JavaScript libraries

      September 26, 2025

      CData launches Connect AI to provide agents access to enterprise data sources

      September 26, 2025

      PostgreSQL 18 adds asynchronous I/O to improve performance

      September 26, 2025

      Distribution Release: Neptune 9.0

      September 25, 2025

      Distribution Release: Kali Linux 2025.3

      September 23, 2025

      Distribution Release: SysLinuxOS 13

      September 23, 2025

      Development Release: MX Linux 25 Beta 1

      September 22, 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

      PHP 8.5.0 RC 1 available for testing

      September 26, 2025
      Recent

      PHP 8.5.0 RC 1 available for testing

      September 26, 2025

      Terraform Code Generator Using Ollama and CodeGemma

      September 26, 2025

      Beyond Denial: How AI Concierge Services Can Transform Healthcare from Reactive to Proactive

      September 25, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      Distribution Release: Neptune 9.0

      September 25, 2025
      Recent

      Distribution Release: Neptune 9.0

      September 25, 2025

      FOSS Weekly #25.39: Kill Switch Phones, LMDE 7, Zorin OS 18 Beta, Polybar, Apt History and More Linux Stuff

      September 25, 2025

      Distribution Release: Kali Linux 2025.3

      September 23, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»News & Updates»Microsoft and Xbox just gave this Halo fan game their blessing — it’s Vampire Survivors with Master Chief, and I’m having a blast

    Microsoft and Xbox just gave this Halo fan game their blessing — it’s Vampire Survivors with Master Chief, and I’m having a blast

    June 24, 2025

    Spartan Survivors is an amazing fan-made Halo game that’s essentially Vampire Survivors with Master Chief, and Microsoft and Xbox just gave it a green light.

    Source: Read More / Windows Central

    Facebook Twitter Reddit Email Copy Link
    Previous ArticleBorderlands 4 dev says it’s getting this beloved feature late — here’s why it won’t be at launch
    Next Article NVIDIA’s most affordable RTX 50-series GPU is here for laptops, and it’s coming to desktops in July — just don’t expect any reviews

    Related Posts

    News & Updates

    Distribution Release: Neptune 9.0

    September 25, 2025
    Learning Resources

    FOSS Weekly #25.39: Kill Switch Phones, LMDE 7, Zorin OS 18 Beta, Polybar, Apt History and More Linux Stuff

    September 25, 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

    How to be witty and off-the-cuff as a slow deep thinker

    Learning Resources

    Rilasciato Amarok 3.3: Il Lettore Musicale Open Source Ora Completamente Portato su Qt 6

    Linux

    Need a power bank you can keep in your pocket? I found one for $22 (and it packs a punch)

    News & Updates

    My favorite new (and free) game just got a big update, and now it’s better than ever

    News & Updates

    Highlights

    CVE-2025-37991 – HP parisc SIGFPE Double Crash Vulnerability

    May 20, 2025

    CVE ID : CVE-2025-37991

    Published : May 20, 2025, 6:15 p.m. | 34 minutes ago

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

    parisc: Fix double SIGFPE crash

    Camm noticed that on parisc a SIGFPE exception will crash an application with
    a second SIGFPE in the signal handler. Dave analyzed it, and it happens
    because glibc uses a double-word floating-point store to atomically update
    function descriptors. As a result of lazy binding, we hit a floating-point
    store in fpe_func almost immediately.

    When the T bit is set, an assist exception trap occurs when when the
    co-processor encounters *any* floating-point instruction except for a double
    store of register %fr0. The latter cancels all pending traps. Let’s fix this
    by clearing the Trap (T) bit in the FP status register before returning to the
    signal handler in userspace.

    The issue can be reproduced with this test program:

    root@parisc:~# cat fpe.c

    static void fpe_func(int sig, siginfo_t *i, void *v) {
    sigset_t set;
    sigemptyset(&set);
    sigaddset(&set, SIGFPE);
    sigprocmask(SIG_UNBLOCK, &set, NULL);
    printf(“GOT signal %d with si_code %ldn”, sig, i->si_code);
    }

    int main() {
    struct sigaction action = {
    .sa_sigaction = fpe_func,
    .sa_flags = SA_RESTART|SA_SIGINFO };
    sigaction(SIGFPE, &action, 0);
    feenableexcept(FE_OVERFLOW);
    return printf(“%lfn”,1.7976931348623158E308*1.7976931348623158E308);
    }

    root@parisc:~# gcc fpe.c -lm
    root@parisc:~# ./a.out
    Floating point exception

    root@parisc:~# strace -f ./a.out
    execve(“./a.out”, [“./a.out”], 0xf9ac7034 /* 20 vars */) = 0
    getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
    …
    rt_sigaction(SIGFPE, {sa_handler=0x1110a, sa_mask=[], sa_flags=SA_RESTART|SA_SIGINFO}, NULL, 8) = 0
    — SIGFPE {si_signo=SIGFPE, si_code=FPE_FLTOVF, si_addr=0x1078f} —
    — SIGFPE {si_signo=SIGFPE, si_code=FPE_FLTOVF, si_addr=0xf8f21237} —
    +++ killed by SIGFPE +++
    Floating point exception

    Severity: 0.0 | NA

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

    CVE-2013-10065 – Sysax Multi-Server SSH Denial-of-Service Vulnerability

    August 5, 2025

    Hackers Can Now Exploit AI Models via PyTorch – Critical Bug Found

    April 21, 2025

    CVE-2025-27577 – Apache OpenHarmony TCB Arbitrary Code Execution Vulnerability

    August 11, 2025
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

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