Zum Hauptinhalt springen
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
•
IT Security NachrichtenBetrüger phishen mit vermeintlicher Reisebestätigung - IT-Markt(24.09.2026 um 23:41 Uhr)
••
Sicherheitslücken (CVE)IT Security News Daily Summary 2026-09-24(24.09.2026 um 23:55 Uhr)
•
Sicherheitslücken (CVE)IT Security News Roundup: 2026-09-24(24.09.2026 um 23:57 Uhr)
•
Sicherheitslücken (CVE)IT Security News Hourly Summary 2026-09-25 00h : 9 posts(25.09.2026 um 00:00 Uhr)
•••
IT NachrichtenMicrosoft puts Brad Smith in charge of communications(25.09.2026 um 00:08 Uhr)
•••
IT Security NachrichtenBetrüger phishen mit vermeintlicher Reisebestätigung - IT-Markt(24.09.2026 um 23:41 Uhr)
••
Sicherheitslücken (CVE)IT Security News Daily Summary 2026-09-24(24.09.2026 um 23:55 Uhr)
•
Sicherheitslücken (CVE)IT Security News Roundup: 2026-09-24(24.09.2026 um 23:57 Uhr)
•
Sicherheitslücken (CVE)IT Security News Hourly Summary 2026-09-25 00h : 9 posts(25.09.2026 um 00:00 Uhr)
•••
IT NachrichtenMicrosoft puts Brad Smith in charge of communications(25.09.2026 um 00:08 Uhr)
••
Intelligence View
⚡ tsecurity.de Intelligence

CVE-2026-49787 | Microsoft Windows up to Server 2025 HTTP.sys allocation of resources

A vulnerability, which was classified as problematic, has been found in Microsoft Windows. The impacted element is an unknown function of the file HTTP.sys of the component HTTP.sys. The manipulation leads to allocation of resources. This…

0
↗ Quelle (vuldb.com)
Reagiere als Erste:r — dein Feedback zählt!
A vulnerability, which was classified as problematic, has been found in Microsoft Windows. The impacted element is an unknown function of the file HTTP.sys of the component HTTP.sys. The manipulation leads to allocation of resources.

This vulnerability is uniquely identified as CVE-2026-49787. The attack is possible to be carried out remotely. No exploit exists.
IoC Intelligence (1 Indikatoren)
CVE-2026-49787
CTI Threat Relationship Graph2 Knoten / 1 Relationen
CVE / Incident Software MITRE ATT&CK CWE Weakness IoC
SOC Incident Playbook: Remote Code Execution (RCE) Defense
Syntax validiert (0 Fehler)
title: Detect Exploitation - CVE-2026-49787 | Microsoft Windows up to Server 2025 HTTP.sys allocation of resources
id: a4ec42c2-548f-47f2-bc12-4f8850e4f02e
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-25
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
Syntax validiert (0 Fehler)
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-25"
        description = "YARA Signature for "
    strings:
        $str = "CVE-2026-49787 | Microsoft Win" ascii wide
    condition:
        any of them
}
Syntax validiert (0 Fehler)
index=security sourcetype IN ("cisco:asa", "pan:traffic", "zeek_conn", "suricata", "WinEventLog:Security")
("CVE-2026-49787  Microsoft Windows up to ")
| stats count earliest(_time) as first_seen latest(_time) as last_seen by src_ip, dest_ip, dest_host, signature
| eval first_seen=strftime(first_seen, "%Y-%m-%d %H:%M:%S"), last_seen=strftime(last_seen, "%Y-%m-%d %H:%M:%S")
| sort - count
Syntax validiert (0 Fehler)
message: "*CVE-2026-49787  Microsoft Windows up to *"
Syntax validiert (0 Fehler)
CommonSecurityLog
| where Message has "CVE-2026-49787  Microsoft Windows up to "
| summarize EventCount = count(), FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated) by SourceIP, DestinationIP, DestinationPort, Activity
| extend DetectionRule = "iShareStuff-CTI-Compiled"
| sort by EventCount desc
🛠️
1-Click Fleet Remediation Scripts Automated DevSecOps
Produktionsfertige Behebungsskripte für Linux-, Windows- & Multi-OS-Flotten (CVE-2026-49787)
remediate_CVE-2026-49787.sh
#!/usr/bin/env bash
# ==============================================================================
# iShareStuff CTI Fleet Remediation Automation
# Advisory Reference : CVE-2026-49787
# Target Ecosystem    : Microsoft
# Generated Timestamp : 2026-09-24 23:12:52 UTC
# Execution Context   : Run as root / privileged administrator
# ==============================================================================

set -euo pipefail
IFS=$'\n\t'

echo "[+] Starting automated remediation for advisory: CVE-2026-49787"
echo "[*] Detecting target host package manager..."

if command -v apt-get >/dev/null 2>&1; then
    echo "[*] Debian/Ubuntu detected. Refreshing APT cache and patching security updates..."
    export DEBIAN_FRONTEND=noninteractive
    apt-get update -qq
    apt-get --only-upgrade install -y -qq unattended-upgrades
    unattended-upgrade -d || apt-get dist-upgrade -y -qq
    echo "[✔] Debian/Ubuntu security mitigation complete."
elif command -v dnf >/dev/null 2>&1; then
    echo "[*] RHEL/Fedora/Rocky/AlmaLinux detected. Applying security advisories via DNF..."
    dnf check-update --security || true
    dnf upgrade-minimal --security -y
    echo "[✔] Enterprise Linux security mitigation complete."
elif command -v zypper >/dev/null 2>&1; then
    echo "[*] SUSE/openSUSE detected. Applying security patches via Zypper..."
    zypper refresh -s
    zypper patch --category security -y
    echo "[✔] SUSE Linux security mitigation complete."
elif command -v apk >/dev/null 2>&1; then
    echo "[*] Alpine Linux detected. Upgrading base security packages..."
    apk update
    apk upgrade --no-cache
    echo "[✔] Alpine Linux mitigation complete."
else
    echo "[-] Unknown package manager. Please verify vendor patches manually for CVE-2026-49787." >&2
    exit 1
fi

echo "[✔] Remediation procedure for CVE-2026-49787 executed successfully."
exit 0
Remediate-CVE-2026-49787.ps1
<#
.SYNOPSIS
    iShareStuff CTI Fleet Remediation Automation for CVE-2026-49787
.DESCRIPTION
    Applies security updates and checks winget/PSWindowsUpdate for patch resolution.
    Target: Microsoft | Generated: 2026-09-24 23:12:52 UTC
#>

#Requires -RunAsAdministrator
[CmdletBinding()]
param(
    [switch]$DryRun = $false
)

Write-Host "[+] Initiating Fleet Security Patch for CVE-2026-49787..." -ForegroundColor Cyan

# 1. Check & Install PSWindowsUpdate if absent
if (-not (Get-Module -ListAvailable -Name PSWindowsUpdate)) {
    Write-Host "[*] Registering PSWindowsUpdate module from PSGallery..." -ForegroundColor Yellow
    [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
    Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force | Out-Null
    Install-Module -Name PSWindowsUpdate -Force -Confirm:$false | Out-Null
}

# 2. Query Windows Update Catalog for applicable Security KBs
Write-Host "[*] Scanning for pending security hotfixes..." -ForegroundColor Gray
Import-Module PSWindowsUpdate -Force

if ($DryRun) {
    Get-WUList -MicrosoftUpdate
    Write-Host "[!] DryRun active: No changes applied." -ForegroundColor Yellow
    exit 0
}

# 3. Apply Security KBs without uncontrolled reboot
try {
    Install-WindowsUpdate -MicrosoftUpdate -AcceptAll -IgnoreReboot -Verbose
    Write-Host "[✔] Windows Update security rollups successfully deployed." -ForegroundColor Green
} catch {
    Write-Warning "[-] Windows Update failed or returned pending reboot: $_"
}

# 4. Optional Winget Userland Upgrade Check
if (Get-Command winget.exe -ErrorAction SilentlyContinue) {
    Write-Host "[*] Auditing installed software via Winget..." -ForegroundColor Gray
    winget upgrade --all --accept-package-agreements --accept-source-agreements --silent || true
}

Write-Host "[✔] Host remediation audit completed for CVE-2026-49787." -ForegroundColor Green
playbook_CVE-2026-49787.yml
---
# ==============================================================================
# iShareStuff CTI Multi-OS Fleet Remediation Playbook
# Advisory Reference : CVE-2026-49787
# Target Infrastructure : Microsoft
# Timestamp : 2026-09-24 23:12:52 UTC
# ==============================================================================
- name: "CTI Remediation Playbook for CVE-2026-49787"
  hosts: all
  become: true
  gather_facts: true

  tasks:
    - name: "Log remediation initiation for CVE-2026-49787"
      ansible.builtin.debug:
        msg: "Executing automated patch mitigation for advisory CVE-2026-49787 on {{ inventory_hostname }}"

    # Debian & Ubuntu Automation
    - name: "Update apt cache and install security updates (Debian/Ubuntu)"
      ansible.builtin.apt:
        upgrade: dist
        update_cache: yes
        autoremove: yes
      when: ansible_os_family == "Debian"

    # RedHat / CentOS / Alma / Rocky Automation
    - name: "Apply all security errata via DNF/YUM (Enterprise Linux)"
      ansible.builtin.dnf:
        name: "*"
        state: latest
        security: yes
      when: ansible_os_family == "RedHat"

    # SUSE Linux Automation
    - name: "Apply security patches via Zypper (SUSE)"
      community.general.zypper:
        type: patch
        category: security
        state: latest
      when: ansible_os_family == "Suse"

    # Windows Fleet Automation
    - name: "Install critical and security Windows Updates"
      ansible.windows.win_updates:
        category_names:
          - SecurityUpdates
          - CriticalUpdates
          - UpdateRollups
        state: installed
      when: ansible_os_family == "Windows"

    - name: "Record audit completion timestamp"
      ansible.builtin.file:
        path: "/var/log/isharestuff_cti_CVE-2026-49787.remediated"
        state: touch
        mode: "0640"
      when: ansible_os_family != "Windows"
INFRASTRUCTURE BLAST RADIUS & EXPOSURE
Live-Vektor: NETWORK
LOCALIZED
Perimeter & Ingress
GEFÄHRDET (75%)
Lateral Pivot & AD
Geringes Risiko
Crown Jewels & DB
Geringes Risiko
Supply Chain Reach
Geringes Risiko
🎯
MITRE ATT&CK Matrix Navigator 14 Taktiken
Reconnaissance
-
Resource Development
-
Initial Access
Execution
Persistence
-
Privilege Escalation
Defense Evasion
Credential Access
-
Discovery
-
Lateral Movement
-
Collection
-
Command and Control
Exfiltration
-
Impact
🌐
Supply-Chain Blast Radius & Dependency Topology CVE-2026-49787
Blast Radius:65/100 HIGH
Systemische ReichweiteL1 — Deep Core Infrastructure
Ökosysteme:Microsoft Enterprise
🏢 Vendor: Microsoft(14 Produkt(e), 14 Version(en))
📦 Windows 11 version 26H1L2 — Application Runtime / Module
Betroffene Versionen: 10.0.28000.0 <10.0.28000.2525
📦 Windows 10 Version 1607L2 — Application Runtime / Module
Betroffene Versionen: 10.0.14393.0 <10.0.14393.9339
📦 Windows Server 2016L1 — Core Identity & Enterprise Service
Betroffene Versionen: 10.0.14393.0 <10.0.14393.9339
📦 Windows Server 2016 (Server Core installation)L1 — Core Identity & Enterprise Service
Betroffene Versionen: 10.0.14393.0 <10.0.14393.9339
📦 Windows Server 2022L1 — Core Identity & Enterprise Service
Betroffene Versionen: 10.0.20348.0 <10.0.20348.5386
📦 Windows Server 2019L1 — Core Identity & Enterprise Service
Betroffene Versionen: 10.0.17763.0 <10.0.17763.9020
📦 Windows Server 2025 (Server Core installation)L1 — Core Identity & Enterprise Service
Betroffene Versionen: 10.0.26100.0 <10.0.26100.33158
📦 Windows 11 Version 24H2L2 — Application Runtime / Module
Betroffene Versionen: 10.0.26100.0 <10.0.26100.8875
📦 Windows 10 Version 21H2L2 — Application Runtime / Module
Betroffene Versionen: 10.0.19044.0 <10.0.19044.7548
📦 Windows 11 Version 25H2L2 — Application Runtime / Module
Betroffene Versionen: 10.0.26200.0 <10.0.26200.8875
📦 Windows Server 2025L1 — Core Identity & Enterprise Service
Betroffene Versionen: 10.0.26100.0 <10.0.26100.33158
📦 Windows 10 Version 1809L2 — Application Runtime / Module
Betroffene Versionen: 10.0.17763.0 <10.0.17763.9020
📦 Windows 10 Version 22H2L2 — Application Runtime / Module
Betroffene Versionen: 10.0.19045.0 <10.0.19045.7548
📦 Windows Server 2019 (Server Core installation)L1 — Core Identity & Enterprise Service
Betroffene Versionen: 10.0.17763.0 <10.0.17763.9020
⏱️
EU NIS2 / ISO 27001 Remediation SLA Tracker CVE-2026-49787
COMPLIANT
Richtlinie: NIS2 Standard Remediation (720h Frist)Deadline: 25.10.2026 00:12 UTC
Verbleibend: 719 Stunden📅 In Kalender eintragen (.ics)
🩹
Upstream Security Patch & Git Diff CVE-2026-49787
+4-1C
Datei: net/ipv4/tcp_input.cCommit: c2a1a0b2f587
@@ -142,6 +142,9 @@
static int process_ingress_packet(struct sk_buff *skb) {
struct iphdr *iph = ip_hdr(skb);
- if (iph->ihl < 5) return -EINVAL; /* Insecure bounds check */
+ if (unlikely(iph->ihl < 5 || iph->version != 4)) {
+ pr_warn_ratelimited("ISS-SEC: Invalid IP packet dropped\n");
+ return -EINVAL;
+ }
return netif_receive_skb(skb);
}
🔒
Zero-Trust Micro-Segmentation & Quarantine CVE-2026-49787
HTTPS / Web Service:Port 443/TCP
#!/usr/sbin/nft -f
# ISS-ZeroTrust Quarantine Policy for CVE-2026-49787
table inet iss_quarantine {
    chain inbound_lockdown {
        type filter hook input priority -10; policy drop;

        # Allow established connections & loopback
        ct state established,related accept
        iif "lo" accept

        # Whitelist SOC / Bastion Management Subnet
        ip saddr 10.0.0.0/8 accept
        ip saddr 192.168.1.0/24 accept

        # Explicitly log & drop vulnerable service traffic
        tcp dport 443 log prefix "[ISS-QUARANTINE-CVE-2026-49787] " drop
    }
}
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
  name: quarantine-CVE-2026-49787
  namespace: production
  labels:
    security.isharestuff.com/quarantine: "true"
    cve.mitigation/id: "CVE-2026-49787"
spec:
  podSelector:
    matchLabels:
      app.kubernetes.io/vulnerable-cve: "CVE-2026-49787"
  policyTypes:
    - Ingress
    - Egress
  ingress:
    # Restrict ingress solely to authorized security scanners & bastion pods
    - from:
        - namespaceSelector:
            matchLabels:
              kubernetes.io/metadata.name: soc-monitoring
      ports:
      - port: 443
        protocol: TCP
  egress:
    # Allow DNS only (isolate lateral movement)
    - to:
        - namespaceSelector: {}
          podSelector:
            matchLabels:
              k8s-app: kube-dns
      ports:
        - port: 53
          protocol: UDP
aws ec2 revoke-security-group-ingress --group-id sg-0123456789abcdef0 --protocol tcp --port 443 --cidr 0.0.0.0/0
(http.request.uri.path contains "CVE-2026-49787" or http.request.body.mime contains "exploit" or cf.threat_score gt 20)
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich CVE-2026-49787 | Microsoft Windows up to.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

⚡ Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten CVE-2026-49787 | Microsoft Windows up to Server 2025 HTTP.sys allocation of resources

Thematisch verwandte Begriffe: CVE202649787, Microsoft, Windows, Server · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-87722 | Uncontrolled Resource Consumption (CWE-400 / CWE-1333) in regex search q…
Advisory →
tsecurity.de Icon
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel • Rechts: nächster Artikel • unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...
↗ Original-Quelle