24h | 7d | 30d

Overview

  • Linux
  • Linux

22 Apr 2026
Published
30 Apr 2026
Updated

CVSS v3.1
HIGH (7.8)
EPSS
0.01%

KEV

Description

In the Linux kernel, the following vulnerability has been resolved: crypto: algif_aead - Revert to operating out-of-place This mostly reverts commit 72548b093ee3 except for the copying of the associated data. There is no benefit in operating in-place in algif_aead since the source and destination come from different mappings. Get rid of all the complexity added for in-place operation and just copy the AD directly.

Statistics

  • 67 Posts
  • 374 Interactions

Last activity: Last hour

Fediverse

Profile picture fallback

Ooooh, nice:

xint.io/blog/copy-fail-linux-d

CVE-2026-31431: Local privilege escalation to root using a trivial 732 byte python script for pretty much every Linux distribution since 2017.

#CopyFail

  • 30
  • 19
  • 0
  • 13h ago
Profile picture fallback

I’m a bit surprised they did not wait till a patch was available for the major distros. Smells like an IPO or the next round of funding is coming soon.

You probably want to keep a close eye on any system you maintain where unprivileged users have shell access and update as soon as possible.

copy.fail

security-tracker.debian.org/tr

ubuntu.com/security/CVE-2026-3

suse.com/security/cve/CVE-2026

#copyfail

  • 16
  • 7
  • 0
  • 13h ago
Profile picture fallback

The CopyFail folks shouldn't have routed stderr to /dev/null in their workaround guidance. For some platforms, where it's not a module ... that mitigation is a no-op:

$ rmmod algif_aead
rmmod: ERROR: Module algif_aead is builtin.

So if there's no kernel patch available yet, you can't use that workaround. Instead, use AppArmor / seccomp / SELinux to block unprivileged AF_ALG socket creation if you can (but don't just turn these hardening layers up if they''re not already in place - they can be tricky)

  • 12
  • 19
  • 0
  • 10h ago
Profile picture fallback

Copy Fail — CVE-2026-31431
copy.fail/

Istheinternetburning ?

  • 12
  • 8
  • 0
  • 13h ago
Profile picture fallback

Wir checken Eure Linux-Distro! Kommt beim nächsten #DiDay mit euren abgehangenen 5-er Kerneln vorbei und wir halten Händchen, während wir gemeinsam exploit.py von CVE-2026-31431 ausführen.

  • 8
  • 38
  • 0
  • 12h ago
Profile picture fallback

this fixed it for me:

cat >/etc/modprobe.d/disable-algif-aead.conf <<'EOF'
install algif_aead /bin/false
blacklist algif_aead
EOF

depmod -a

rmmod algif_aead

i tested with this: github.com/rootsecdev/cve_2026

  • 10
  • 18
  • 0
  • 9h ago
Profile picture fallback

RE: hachyderm.io/@petrillic/116489

I have had a confirmation that it can work on the Amazon Linux kernel, but also RHEL says "fix deferred" for all affected RHEL versions: access.redhat.com/security/cve

  • 10
  • 17
  • 0
  • 13h ago
Profile picture fallback

As people rightly highlight that the #CopyFail fix status in various #Linux distros is… confusing, it’s worth keeping in mind you can deploy the workaround everywhere with no side effects:

# echo "install algif_aead /bin/false" > /etc/modprobe.d/disable-algif.conf
# rmmod algif_aead 2>/dev/null || true

By ‘confusing’ I mean:

  • 10
  • 2
  • 0
  • 3h ago
Profile picture fallback
  • 9
  • 7
  • 0
  • 2h ago
Profile picture fallback

⚠️ : Major Linux distributions are impacted by a Privilege Escalation Vulnerability dubbed "CopyFail" (CVE-2026-31431) which sat undetected since 2017.
A 732-byte Python script allows any user on Linux to become root:


👇
cyberkendra.com/2026/04/a-732-

  • 7
  • 5
  • 1
  • 10h ago
Profile picture fallback

> If your kernel was built between 2017 and the patch — which covers essentially every mainstream Linux distribution — you're affected.

#CVE-2026-31431

copy.fail

#CopyFail #SysAdmin #Exploit #Kernel #Linux #Security

  • 6
  • 6
  • 0
  • 12h ago
Profile picture fallback

Mitigation to / :

- If kernel config has CONFIG_CRYPTO_USER_API_AEAD=m:

echo "install algif_aead /bin/false" | sudo tee /etc/modprobe.d/disable-algif.conf; sudo rmmod algif_aead

- If kernel config has CONFIG_CRYPTO_USER_API_AEAD=y:

Add "initcall_blacklist=algif_aead_init" to the kernel command line and reboot.

openwall.com/lists/oss-securit

  • 5
  • 5
  • 0
  • 2h ago
Profile picture fallback

qucik mitigation for the copy.fail linux privilage excalation in case you can't reboot your systems right now:

Step 1:
make sure the algif_aead module is not loaded -> lsmod | grep algif_aead
Step 2:
find /lib/modules/$(uname -r) -iname '*algif_aead*' -print -delete

#CopyFail #CVE_2026_31431

  • 4
  • 12
  • 0
  • 12h ago
Profile picture fallback

Very unfortunate that the fix for CVE-2026-31431 isn't easily backportable, with a new API being added, and then its implementation details changing, since the last LTS (6.12 vs 6.18).

  • 4
  • 4
  • 0
  • 8h ago
Profile picture fallback

Copy Fail (copy.fail/, CVE-2026-31431) is a good reminder why I don’t want to run CI jobs only in containers.

It would be great to get some momentum to code.forgejo.org/forgejo/forge (microVMs for forgejo actions). At least on bare metal (or nested VMs with nested KVM) this would make things a lot safer. It would also simplify the usage of containers/docker in CI jobs without compromising security, which is kind of a pain with Codeberg Action currently.

#security

  • 3
  • 3
  • 0
  • 2h ago
Profile picture fallback

copy.fail/

Local Privilege Escalation in every Linux kernel since 2017

Hopefully no one is sitting on a low-privilege RCE...

  • 3
  • 2
  • 0
  • 2h ago
Profile picture fallback

Hello

I am here to ruin your day again

copy.fail/ / CVE-2026-31431

Seems RHEL don't think this is all that important, CloudLinux's kernel image (presumably derived from RHEL) has the problem module built in, so you can't even mitigate while we wait for patching. CageFS does help as - afaict - no setuid binaries are included in the default cagefs env. Many Debian versions lack a patch at time of writing, but blocking the module did work for me.

#infosec #linux #vulnerability

  • 2
  • 1
  • 0
  • 12h ago
Profile picture fallback

Joker voice: Just wait 'til malicious agents and oberly aggressive users get a load of CVE-2026-31431

  • 2
  • 1
  • 0
  • 6h ago
Profile picture fallback

#linux #kernel #exploit - I completely missed this one:

bugcrowd.com/blog/what-we-know

Privilege escalation on all linux kernels since 2017. And I cannot even see if my current ubuntu kernel has a patch for it...

Gotta sign up on some more security accounts here!

  • 2
  • 1
  • 0
  • 2h ago
Profile picture fallback
  • 1
  • 0
  • 0
  • 2h ago
Profile picture fallback

むー?まずいか?
Linuxカーネルの脆弱性「CopyFail (CVE-2026-31431)」をEC2のUbuntu 22.04で実証してみた
https://zenn.dev/aeyesec/articles/7e4a1e3c83e81b

  • 1
  • 0
  • 0
  • Last hour
Profile picture fallback

So... came home to a proverbial tire fire. CVE-2026-31431

Yay. I am bold and DGAF so I made the call to shut off all login access (a call backed up by my peers shortly after).

Users who don't check their mail, look at status, or check our websites will be sending in 'URGENT' tickets any minute now.

  • 0
  • 5
  • 0
  • 6h ago
Profile picture fallback

This is what I'm pasting into my own linux systems to implement the mitigation suggested at the website.
It may not be right for you. The 'chattr +i' may make it more difficult to undo!
MIT license, or at least its disclaimers, apply.

f=disable-algif_aead-CVE-2026-31431.conf
if ! [ -d /etc/modprobe.d ]; then
printf 'This system does not seem to have a /etc/modprobe.d dir, so this script would need to be adapted.\n' >&2
return 74
else
sudo /bin/env -i /bin/sh -c 'set -x;set -e;cd /etc/modprobe.d;umask 133;printf '\''install algif_aead /bin/false\n'\'' >'"$f"';chattr +i '"$f"
fi
sudo /bin/env -i /bin/sh -c '(set -x;rmmod -v algif_aead)2>&1|grep -v "is not currently loaded"'
ls -l /etc/modprobe.d/$f
cat -t /etc/modprobe.d/$f

  • 0
  • 1
  • 0
  • 11h ago
Profile picture fallback

@mttaggart

Editing to add:

RHEL has now updated the severity and the fix is no longer "deferred" for all affected OSes.

Looks like it requires a local user account, with a password set, to exploit, yes?

access.redhat.com/security/cve

  • 0
  • 1
  • 0
  • 13h ago
Profile picture fallback

@chuso Probably worth mentioning the related bug on #Gentoo Bugzilla.

bugs.gentoo.org/show_bug.cgi?i

Looks like @thesamesam is well and truly onto it.

Also for #Debian users, at the moment they're working on fixes: security-tracker.debian.org/tr

  • 0
  • 1
  • 0
  • Last hour
Profile picture fallback

I'm not sure if this will help and I haven't been able to test all of these yet (just don't have everything set up for it), but I've tried to put out some detections for #cve-2026-31431 for Wazuh, Auditd and MISP and YARA items.

Mileage will vary on this until it can be tested a bit more thoroughly. Please feel free to drop a PR if you have better updates to what's here.

github.com/insomnisec/Detectio

#cyber #linux #lpe #vulnerability #cve

  • 0
  • 0
  • 0
  • 5h ago
Profile picture fallback

CVE-2026-31431 #copyfail Tetragon Tracing Policy - Kill unprivileged aead_recvmsg. This is the low-level customization of configuration policies your #Linux EDR should have. Also, watch out for processes running NULL argv gist.github.com/cr0nx/3079c573

  • 0
  • 0
  • 0
  • 4h ago
Profile picture fallback
CopyFail (CVE-2026-31431) — a 732-byte Python script that roots every Linux distro shipped since 2017. 🧵
https://x.com/i/status/2049533584097362272
  • 0
  • 0
  • 0
  • 3h ago
Profile picture fallback

@giggls Verdammt, ja. Das ist die richtige ID:
euvd.enisa.europa.eu/vulnerabi

Die Bezeichnungen bei den Europäern sind irritierend. Warum müssen die eigene Nummern vergeben?
"EUVD-2026-24639"

  • 0
  • 0
  • 0
  • 2h ago
Profile picture fallback

@fooflington ich bins grade.
security-tracker.debian.org/tr
Einfach mal nen poc (nicht überprüft) raushauen ohne responsible disclosure fürn maximalen fame um den eigenen KI scanner zu promoten.

  • 0
  • 0
  • 0
  • 2h ago
Profile picture fallback

@fanf42 → lets an unprivileged local user write into the page cache and obtain root
CVE-2026-31431, no score yet at NIST

  • 0
  • 0
  • 0
  • 2h ago
Profile picture fallback

Me: Nothing bad ever happened on Wednesdays. I should be able to relax.
CopyFail:

  • 0
  • 0
  • 0
  • Last hour
Profile picture fallback

so what do I even do at this point. the patch for CVE-2026-31431 isn't out yet on debian stable and the only fixes I see are to recompile the kernel which I have zero idea how to do

  • 0
  • 0
  • 0
  • Last hour

Bluesky

Profile picture fallback
Nouvelle faille de secu dans le kernel Linux depuis 2017 la veille d'un gros week-end : copy fail ou CVE-2026-31431 Un script python de 732 bits permet une élévation de privilège copy.fail
  • 4
  • 13
  • 0
  • 1h ago
Profile picture fallback
La IA ha ajudat a descobrir una nova vulnerabilitat crítica a Linux: CVE-2026-31431 “Copy Fail” Un únic script Python de 732 línies permet a qualsevol usuari local obtenir accés root en pràcticament tots els sistemes Linux des de 2017. copy.fail
  • 1
  • 7
  • 0
  • 12h ago
Profile picture fallback
Copy Fail – CVE-2026-31431 | Discussion
  • 1
  • 2
  • 1
  • 14h ago
Profile picture fallback
CopyFail (CVE-2026-31431) in Go. In case you want to get root from a static binary without Python as a dependency. github.com/badsectorlab...
  • 0
  • 1
  • 1
  • 10h ago
Profile picture fallback
Major Linux distributions are patching a local privilege escalation vulnerability known as Copy Fail (CVE-2026-31431) due to a logic flaw in the kernel.
  • 0
  • 1
  • 0
  • 9h ago
Profile picture fallback
💡 Summary: Copy Failは、2017年以降のほぼ全ての主流Linuxディストリビューションで共通して存在する、権限のないローカルユーザーがページキャッシュへ4バイトを書き込み、root権限を取得できる直線的なLPE(CVE-2026-31431)です。影響はAF_ALGを経由した暗号処理経路の不具合を突くもので、パッチ適用後は再現性が低下しますが、未パッチ環境ではコンテナ間の境界を越える危険性があります。対策はディストリビューションのカーネルをパッチ済みバージョンへ更新すること、必要に応じてAF_ALGの無効化とセキュアモードの適用です。
  • 0
  • 1
  • 0
  • 7h ago
Profile picture fallback
「Copy Fail」CVE-2026-31431 — 9年間潜んでいた732バイトPythonでLinuxがroot化される脆弱性と対策|zephel01 https://note.com/zephel01/n/n7fa6564b43cf
  • 0
  • 1
  • 0
  • 2h ago
Profile picture fallback
Copy Fail – CVE-2026-31431 https://copy.fail/ (https://news.ycombinator.com/item?id=47952181)
  • 0
  • 0
  • 5
  • 14h ago
Profile picture fallback
Copy Fail – CVE-2026-31431 #HackerNews https://copy.fail/
  • 0
  • 0
  • 0
  • 14h ago
Profile picture fallback
CVE-2026-31431 https://nvd.nist.gov/vuln/detail/CVE-2026-31431 https://www.cve.org/CVERecord?id=CVE-2026-31431 >An unprivileged local user can write 4 controlled bytes into the page cache of any readable file on a Linux system, and use that to gain root. https://copy.fail/
  • 0
  • 0
  • 0
  • 9h ago
Profile picture fallback
🌐コピー失敗 – CVE-2026-31431 https://copy.fail/ via #HackerNews
  • 0
  • 0
  • 0
  • 8h ago
Profile picture fallback
A critical vulnerability, CVE-2026-31431, has been announced, allowing root access on nearly all major Linux distributions. It presents a significant security risk for systems that users can log onto.
  • 0
  • 0
  • 0
  • 7h ago
Profile picture fallback
コピー失敗 – CVE-2026-31431 Copy Fail – CVE-2026-31431 🔺 571 💬 57 🔗 HN Post | Article
  • 0
  • 0
  • 0
  • 7h ago
Profile picture fallback
Copy Fail – CVE-2026-31431 https://copy.fail/ comments #copy.fail
  • 0
  • 0
  • 0
  • 7h ago
Profile picture fallback
A 732-Byte Python Script Can Get Root on Every Major Linux Distro CVE-2026-31431 "Copy Fail": a logic bug in the Linux kernel lets any local user get root on Ubuntu, RHEL, Amazon Linux, and SUSE since 2017. Read Details- www.cyberkendra.com/2026/04/a-73... #linux #ubuntu #copyfail #security
  • 0
  • 0
  • 0
  • 6h ago
Profile picture fallback
🚨 Copy Fail (CVE-2026-31431) Linux kernel LPE → page cache corruption → overwrite binaries → root. Public PoC dropped ~24h ago. Tested: ✔ Ubuntu 24.04 / 25.10 (x86_64 + ARM64) If you get code execution → you get root. PoC: github.com/pascal-gujer... #linux #infosec
  • 0
  • 0
  • 0
  • 1h ago
Profile picture fallback
Copy Fail: Public PoC and Full Details Disclosed for the 732-Byte Linux Root Exploit (CVE-2026-31431) https://securityonline.info/linux-kernel-copy-fail-root-exploit-poc-public-disclosure/
  • 0
  • 0
  • 0
  • 1h ago
Profile picture fallback
Разработчиците на Xint Code – средство за сигурност, базирано на алгоритми с изкуствен интелект откриха в ядрото на Linux и съответно, в повечето популярни дистрибуции опасна уязвимост, която получи името Copy Fail и обозначението CVE-2026-31431...
  • 0
  • 0
  • 0
  • 1h ago
Profile picture fallback
❗CVE-2026-31431 „Copy Fail“: Wir haben die Schwachstelle bewertet und Schutzmaßnahmen umgesetzt. Das betroffene Kernel-Modul wurde deaktiviert und entladen, der Page Cache geleert. Kein Neustart nötig, keine geplante Downtime für Kundensysteme.
  • 0
  • 0
  • 0
  • Last hour
Profile picture fallback
Copy Fail (CVE-2026-31431): The 732‑Byte Python Script That Has Owned Every Linux Since 2017 + Video Introduction: A deterministic logic flaw silently introduced into the Linux kernel in 2017 has just been publicly disclosed as “Copy Fail” (CVE-2026-31431). Attackers with access to any…
  • 0
  • 0
  • 0
  • Last hour

Overview

  • GitHub
  • Enterprise Server

10 Mar 2026
Published
29 Apr 2026
Updated

CVSS v4.0
HIGH (8.7)
EPSS
0.35%

KEV

Description

An improper neutralization of special elements vulnerability was identified in GitHub Enterprise Server that allowed an attacker with push access to a repository to achieve remote code execution on the instance. During a git push operation, user-supplied push option values were not properly sanitized before being included in internal service headers. Because the internal header format used a delimiter character that could also appear in user input, an attacker could inject additional metadata fields through crafted push option values. This vulnerability was reported via the GitHub Bug Bounty program and has been fixed in GitHub Enterprise Server versions 3.14.25, 3.15.20, 3.16.16, 3.17.13, 3.18.7 and 3.19.4.

Statistics

  • 20 Posts
  • 111 Interactions

Last activity: 5 hours ago

Fediverse

Profile picture fallback

With Microsoft pushing AI slop & bots hard into every product without any verification and accountability I am not surprised bug like this now exists. Critical GitHub RCE bug exposed millions of repositories including private one that business users like to keep their code private. GitHub Enterprise Server that allowed an attacker with push access to a repository to achieve remote code execution on the instance nvd.nist.gov/vuln/detail/CVE-2

  • 41
  • 40
  • 0
  • 19h ago
Profile picture fallback

Aside from the abysimal uptime Github currently presents, they -also- had one of the worst security incidents you can think of: An RCE via a simple “git push” with total loss of tenant isolation (via wiz.io/blog/github-rce-vulnera).

If GitHub weren't such a central piece of infrastructure, the current situation would be disastrous for their business.

I am afraid this is just the beginning. #github #security

  • 5
  • 3
  • 0
  • 23h ago
Profile picture fallback

Critical GitHub RCE Vulnerability CVE-2026-3854 Exposed Millions of Repositories to Cross-Tenant Access
#CyberSecurity
securebulletin.com/critical-gi

  • 5
  • 1
  • 0
  • 23h ago
Profile picture fallback

GitHub remote code execution vulnerability found (and patched). This writeup is good. It digs deep into the details.
wiz.io/blog/github-rce-vulnera

  • 1
  • 1
  • 0
  • 23h ago
Profile picture fallback

"A single git push command was enough to exploit a flaw in GitHub's internal protocol and achieve code execution on backend infrastructure.
[…]
This research was made possible by AI-augmented reverse engineering tooling, particularly IDA MCP, which allowed us to rapidly analyze compiled binaries and reconstruct internal protocols at a speed that would not have been feasible manually."
wiz.io/blog/github-rce-vulnera

  • 0
  • 0
  • 0
  • 21h ago
Profile picture fallback

En las últimas 24 horas se detectaron vulnerabilidades críticas que permiten ejecución remota de código en ProFTPD y GitHub Enterprise Server, y una rápida explotación de SQL Injection en LiteLLM compromete datos en la nube; además, el ransomware VECT 2.0 destruye archivos irreversiblemente en múltiples sistemas, aumentando el riesgo. Descubre estos y más detalles en el siguiente listado de noticias sobre seguridad informática:

🗞️ ÚLTIMAS NOTICIAS EN SEGURIDAD INFORMÁTICA 🔒
====| 🔥 LO QUE DEBES SABER HOY 29/04/26 📆 |====

🔓 CVE-2026-42167 PERMITE EVITAR AUTENTICACIÓN Y EJECUCIÓN DE CÓDIGO EN PROFTPD

Se ha identificado una grave vulnerabilidad en ProFTPD, catalogada como CVE-2026-42167, que permite saltarse procesos de autenticación, elevar privilegios y ejecutar código arbitrario. Esta falla representa un riesgo significativo para servidores FTP que no estén actualizados. Se recomienda aplicar la actualización que MITRE y los desarrolladores emitirán próximamente para mitigar posibles ataques. Mantente alerta y protege tus sistemas. Descubre todos los detalles sobre esta vulnerabilidad y cómo protegerte aquí 👉 djar.co/tWdN

💻 VULNERABILIDAD CRÍTICA RCE EN GITHUB ENTERPRISE SERVER CVE-2026-3854

GitHub Enterprise Server enfrenta una vulnerabilidad con un puntaje CVSS de 8.7 que permite la ejecución remota de código, poniendo en riesgo repositorios y datos sensibles de las organizaciones. Esta amenaza impacta directamente en la integridad y la seguridad de los entornos corporativos que utilizan esta plataforma. La actualización inmediata es vital para evitar compromisos graves. Analiza a fondo la vulnerabilidad y las versiones afectadas para tomar acción rápida. Más información y recomendaciones aquí 👉 djar.co/lWbCh

⚠️ EXPLOTACIÓN RÁPIDA DE SQL INJECTION EN LITELLM CVE-2026-42208

En un caso alarmante, la vulnerabilidad SQL Injection CVE-2026-42208 en LiteLLM fue aprovechada en menos de 36 horas tras su divulgación, comprometiendo credenciales y poniendo en riesgo cuentas en la nube. Esto evidencia la necesidad de implementar medidas proactivas y monitorear activamente los sistemas contra ataques tempranos. Revisa cómo se desarrolló este incidente y las mejores prácticas para proteger tus datos en la nube. Entérate aquí 👉 djar.co/LQrNO4

🛡️ VECT: RANSOMWARE COMO SERVICIO Y SU IMPACTO EN LA CADENA DE SUMINISTRO

El ransomware VECT, surgido en diciembre de 2025, se distingue por operar bajo modelo Ransomware-as-a-Service, causando estragos en varias cadenas de suministro. Su capacidad para expandirse y ejecutar ataques destructivos torna esencial entender su funcionamiento para anticipar y mitigar riesgos. La investigación de Check Point revela sus tácticas y evolución, información clave para defensores de la ciberseguridad. Explora el análisis completo sobre VECT y su impacto aquí 👉 djar.co/O8ko

💥 VECT 2.0 DESTRUYE IRREVERSIBLEMENTE ARCHIVOS EN WINDOWS, LINUX Y ESXI

La actualización 2.0 del ransomware VECT introduce un fallo en la gestión del nonce que provoca la destrucción permanente de archivos mayores a 131KB, haciendo inútiles los pagos de rescate y complicando las opciones de recuperación. Afecta múltiples sistemas operativos, aumentando la gravedad de los ataques. Comprender esta nueva versión es vital para fortalecer las estrategias de defensa y respuesta ante incidentes. Conoce más sobre esta amenaza crítica y cómo proteger tus datos aquí 👉 djar.co/pYoGQk

🎯 CLASE VIRTUAL AVANZADA: DETECCIÓN Y PREVENCIÓN DE MALWARE - CQURE ACADEMY

Especialistas en ciberseguridad tienen la oportunidad de profundizar en técnicas avanzadas de búsqueda y prevención de malware a través de esta clase magistral en vivo. La formación incluye métodos prácticos y teóricos para identificar amenazas complejas y fortalecer la postura defensiva de las organizaciones frente a ataques sofisticados. No pierdas la oportunidad de actualizar tus habilidades y conocimientos. Inscríbete y accede al curso aquí 👉 djar.co/RYH0

📚 GUÍA PARA AUTORES EN CIBERSEGURIDAD - THE HACKER RECIPES

Esta guía es ideal para profesionales interesados en escribir sobre hacking ético, pruebas de penetración y ciberseguridad. Ofrece estrategias claras para estructurar contenido técnico y didáctico, facilitando la comunicación efectiva de conocimientos complejos. Una herramienta valiosa para quienes desean contribuir al ecosistema de la seguridad informática con contenidos de calidad. Descubre cómo mejorar tus publicaciones y aportar valor aquí 👉 djar.co/u2Dz

  • 1
  • 1
  • 0
  • 22h ago

Bluesky

Profile picture fallback
In early March, GitHub patched a critical remote code execution vulnerability (CVE-2026-3854) that could have allowed attackers to access millions of private repositories.
  • 2
  • 6
  • 0
  • 20h ago
Profile picture fallback
💡 Summary: Wiz Research が GitHub の内部 git インフラに深刻な脆弱性 CVE-2026-3854 を発見。認証済みユーザーが git push 1 回でリモートコード実行が可能で、GitHub Enterprise Server では全サーバーの乗っ取り、GitHub.com では共有ストレージノード上の多数のリポジトリへ影響を及ぼす恐れがある。GitHub は GitHub.com を即時緩和、GHES には脆弱性修正を提供、GHES の影響インスタンスはまだ多くが脆弱とのこと。
  • 0
  • 1
  • 0
  • 21h ago
Profile picture fallback
研究者らが、単一のGitプッシュで悪用可能なGitHubの重大なRCE脆弱性CVE-2026-3854を発見 Researchers Discover Critical GitHub CVE-2026-3854 RCE Flaw Exploitable via Single Git Push #HackerNews (Apr 28) thehackernews.com/2026/04/rese...
  • 0
  • 1
  • 0
  • 8h ago
Profile picture fallback
Securing GitHub: Wiz Research uncovers Remote Code Execution in GitHub.com and GitHub Enterprise Server (CVE-2026-3854) www.wiz.io/blog/github-...
  • 0
  • 0
  • 0
  • 22h ago
Profile picture fallback
GitHubのリモートコード実行脆弱性:CVE-2026-3854の詳細解説 GitHub RCE Vulnerability: CVE-2026-3854 Breakdown 🔺 382 💬 13 🔗 HN Post | Article
  • 0
  • 0
  • 0
  • 21h ago
Profile picture fallback
CVE-2026-3854 Exposes a Critical Weak Point in GitHub’s Git Push Pipeline socradar.io/blog/cve-202...
  • 0
  • 0
  • 0
  • 21h ago
Profile picture fallback
88% of self-hosted GitHub servers exposed to RCE, researchers warn (CVE-2026-3854) 🔗 Read more: www.helpnetsecurity.com/2026/04/29/c... #GitHub #vulnerability #cybersecurity
  • 0
  • 0
  • 0
  • 19h ago
Profile picture fallback
Advierten que el 88% de los servidores GitHub autohospedados están expuestos a la ejecución remota de código (CVE-2026-3854). La versión en la nube ya está parchada, pero si usas la versión Enterprise Server, ¡debes actualizar de inmediato a las versiones corregidas www.linkedin.com/pulse/invest...
  • 0
  • 0
  • 0
  • 14h ago
Profile picture fallback
GitHub fixed a critical RCE flaw (CVE-2026-3854) allowing attackers to access millions of private repos via a malicious git push. GitHub.com patched it fast, but many Enterprise Servers remain at risk and need urgent updates. #CVE20263854 #GitHub
  • 0
  • 0
  • 0
  • 12h ago
Profile picture fallback
研究者らは、自己ホスト型のGitHubサーバーの88%がリモートコード実行(RCE)の脆弱性にさらされていると警告している(CVE-2026-3854) 88% of self-hosted GitHub servers exposed to RCE, researchers warn (CVE-2026-3854) #HelpNetSecurity (Apr 29) www.helpnetsecurity.com/2026/04/29/c...
  • 0
  • 0
  • 0
  • 8h ago
Profile picture fallback
GitHub fixed CVE-2026-3854, a critical RCE flaw in both cloud and GitHub Enterprise Server. Authenticated users with write access could execute commands via manipulated git push options. #GitHubSecurity #RCEVulnerability #EnterpriseServer
  • 0
  • 0
  • 0
  • 6h ago
Profile picture fallback
The latest update for #CyCognito includes "Emerging Threat: (CVE-2026-3854) #GitHub Enterprise Server RCE via Git Push Injection" and "Emerging Threat: (CVE-2026-40372) ASP.NET Core Privilege Escalation via Signature Bypass". #cybersecurity #AttackSurfaceManagement https://opsmtrs.com/44Srq0X
  • 0
  • 0
  • 0
  • 5h ago

Overview

  • cPanel
  • cPanel

29 Apr 2026
Published
30 Apr 2026
Updated

CVSS v4.0
CRITICAL (9.3)
EPSS
Pending

KEV

Description

cPanel and WHM versions after 11.40 contain an authentication bypass vulnerability in the login flow that allows unauthenticated remote attackers to gain unauthorized access to the control panel.

Statistics

  • 16 Posts
  • 49 Interactions

Last activity: 1 hour ago

Fediverse

Profile picture fallback

An authentication bypass security issue has been identified in the cPanel software (including DNSOnly) affecting all versions after 11.40.

This one is ugly, folks. Go update your servers now, and run the detection script.

support.cpanel.net/hc/en-us/ar

#Webhosting #cPanel #WHM

  • 2
  • 1
  • 0
  • 3h ago
Profile picture fallback

🚨 CRITICAL auth bypass in cPanel & WHM (CVE-2026-41940, CVSS 9.3) lets unauthenticated attackers access the control panel. Patch not confirmed — restrict interface to trusted IPs & monitor advisories. radar.offseq.com/threat/cve-20

  • 0
  • 0
  • 0
  • 8h ago

Bluesky

Profile picture fallback
The Internet Is Falling Down, Falling Down, Falling Down (cPanel & WHM Authentication Bypass CVE-2026-41940) - watchTowr Labs
  • 0
  • 0
  • 6
  • 16h ago
Profile picture fallback
CVE-2026-41940: CRITICAL cPanel & WHM Zero-Day Authentication Bypass—Patch Now or Get Hacked! + Video Introduction A newly disclosed pre-authentication bypass vulnerability tracked as CVE-2026-41940 affects every supported version of cPanel & WHM—the control plane software managing an estimated 70…
  • 0
  • 0
  • 0
  • 15h ago
Profile picture fallback
🚨 On 4/28/26, #cPanel issued a security update to fix a critical vuln. affecting its WHM and WP Squared products. With a CVSS score of 9.8, CVE-2026-41940 allows unauth. remote attackers to bypass authentication & gain administrative access to systems: r-7.co/4vZ0vgX
  • 0
  • 0
  • 0
  • 12h ago
Profile picture fallback
実環境での悪用事例:cPanelのCVE-2026-41940認証バイパスのゼロデイ脆弱性に関する概念実証(PoC)が公開されました Exploited in the Wild: PoC Released for cPanel CVE-2026-41940 Authentication Bypass Zero-Day #DailyCyberSecurity (Apr 29) securityonline.info/cpanel-authe...
  • 0
  • 0
  • 0
  • 8h ago
Profile picture fallback
A critical vulnerability (CVE-2026-41940) in cPanel & WHM's authentication mechanism poses a severe risk to internet infrastructure, allowing unauthorized access. Discovered by watchTowr Labs, this exploit could lead to widespread disruption if not addressed promptly.
  • 0
  • 0
  • 0
  • 4h ago
Profile picture fallback
Critical cPanel Flaw Lets Attackers Bypass Login, Patch Urgently A critical security vulnerability tracked as CVE-2026-41940 has been discovered in most versions of cPanel and WebHost Manager (WHM), potentially allowing attackers to access hosting control panels without authentication.
  • 0
  • 0
  • 0
  • 1h ago

Overview

  • Microsoft
  • Windows 10 Version 1607

14 Apr 2026
Published
29 Apr 2026
Updated

CVSS v3.1
MEDIUM (4.3)
EPSS
7.19%

Description

Protection mechanism failure in Windows Shell allows an unauthorized attacker to perform spoofing over a network.

Statistics

  • 12 Posts
  • 7 Interactions

Last activity: 8 hours ago

Fediverse

Profile picture fallback

APT28 Exploits Windows 0-Click Flaw CVE-2026-32202 to Steal NTLM Hashes via Defender SmartScreen Bypass
#CyberSecurity
securebulletin.com/apt28-explo

  • 4
  • 0
  • 0
  • 23h ago
Profile picture fallback

CISA's KEV catalog now includes CVE-2024-1708 and CVE-2024-1709 (ConnectWise ScreenConnect auth bypass + RCE chain) plus CVE-2026-32202 (Windows Shell). APT28 has been weaponizing these since December 2025. The...

captechgroup.com/about-us/thre

  • 0
  • 0
  • 0
  • 20h ago

Bluesky

Profile picture fallback
⚠️ Microsoft confirme l'exploitation de la CVE-2026-32202 Une faille de sécurité présente dans l'interface Windows Shell est considérée comme exploitée par Microsoft. Ma publication à ce sujet : - www.it-connect.fr/vols-didenti... #windows #infosec #cybersecurite
  • 0
  • 1
  • 0
  • 23h ago
Profile picture fallback
CISAとマイクロソフトは、Windowsシェル脆弱性(CVE-2026-32202)の悪用が活発に行われていると警告した CISA, Microsoft warn of active exploitation of Windows Shell vulnerability (CVE-2026-32202) #HelpNetSecurity (Apr 29) www.helpnetsecurity.com/2026/04/29/w...
  • 0
  • 1
  • 0
  • 8h ago
Profile picture fallback
CISA, Microsoft warn of active exploitation of Windows Shell vulnerability (CVE-2026-32202) 📖 Read more: www.helpnetsecurity.com/2026/04/29/w... #cybersecurity #cybersecuritynews #vulnerability #Windows #WindowsServer
  • 0
  • 0
  • 0
  • 23h ago
Profile picture fallback
CISA and Microsoft confirm active exploitation of CVE-2026-32202, a Windows Shell flaw causing automatic NTLM authentication leaks via malicious LNK icons. Linked to APT28 and incomplete patch fixes. #CVE202632202 #WindowsVulnerabilities #USA
  • 0
  • 0
  • 0
  • 22h ago
Profile picture fallback
📢 CVE-2026-32202 : faille Windows Shell activement exploitée, liée à APT28 📝 ## 🗓️ Contexte Publié le 28 avril 2026 par The Cyber Security Hub sur LinkedIn, cet article… https://cyberveille.ch/posts/2026-04-29-cve-2026-32202-faille-windows-shell-activement-exploitee-liee-a-apt28/ #APT28 #Cyberveille
  • 0
  • 0
  • 0
  • 19h ago
Profile picture fallback
Attackers exploit a zero-click Windows flaw, CVE-2026-32202, exposing sensitive information on vulnerable systems.
  • 0
  • 0
  • 0
  • 14h ago
Profile picture fallback
CISA mandates federal agencies to patch a Windows zero-click vulnerability CVE-2026-32202 by May 12 under BOD 22-01. The flaw connects to APT28 and follows an incomplete Microsoft fix for CVE-2026-21510. #CVE2026 #APT28 #USA
  • 0
  • 1
  • 0
  • 20h ago
Profile picture fallback
📢 Patch incomplet d'APT28 : CVE-2026-21510 laisse place à CVE-2026-32202, coercition d'authentification zero-click 📝 ## 🔍 Contex… https://cyberveille.ch/posts/2026-04-29-patch-incomplet-d-apt28-cve-2026-21510-laisse-place-a-cve-2026-32202-coercition-d-authentification-zero-click/ #APT28 #Cyberveille
  • 0
  • 0
  • 0
  • 21h ago
Profile picture fallback
CISAが既知の悪用された脆弱性2件をカタログに追加 CISA Adds Two Known Exploited Vulnerabilities to Catalog #CISA (Apr 28) CVE-2024-1708 ConnectWise ScreenConnect パストラバーサル脆弱性 CVE-2026-32202 Microsoft Windows保護メカニズムの不具合の脆弱性 www.cisa.gov/news-events/...
  • 0
  • 0
  • 0
  • 8h ago

Overview

  • Pending

Pending
Published
Pending
Updated

CVSS
Pending
EPSS
Pending

KEV

Description

This candidate has been reserved by a CVE Numbering Authority (CNA). This record will be updated by the assigning CNA once details are available.

Statistics

  • 9 Posts
  • 6 Interactions

Last activity: 3 hours ago

Fediverse

Profile picture fallback

LiteLLM-Sicherheitslücke CVE-2026-42208: SQL-Injection binnen 36 Stunden nach Veröffentlichung aktiv ausgenutzt

all-about-security.de/litellm-

#llm #cve #cybersecurity

  • 1
  • 1
  • 0
  • 3h ago
Profile picture fallback

🛑 LiteLLM CVE-2026-42208 exploited in ~36 hours.

A pre-auth SQL injection exposed credential tables with LLM and cloud keys—turning a simple flaw into account-level risk.

No PoC needed; advisory and schema were enough.

🔗 Read details → thehackernews.com/2026/04/lite

  • 0
  • 1
  • 0
  • 22h ago
Profile picture fallback

This is the issue with AI in criminal hands. Speed to market.

thehackernews.com/2026/04/lite

  • 0
  • 0
  • 0
  • 5h ago
Profile picture fallback

En las últimas 24 horas se detectaron vulnerabilidades críticas que permiten ejecución remota de código en ProFTPD y GitHub Enterprise Server, y una rápida explotación de SQL Injection en LiteLLM compromete datos en la nube; además, el ransomware VECT 2.0 destruye archivos irreversiblemente en múltiples sistemas, aumentando el riesgo. Descubre estos y más detalles en el siguiente listado de noticias sobre seguridad informática:

🗞️ ÚLTIMAS NOTICIAS EN SEGURIDAD INFORMÁTICA 🔒
====| 🔥 LO QUE DEBES SABER HOY 29/04/26 📆 |====

🔓 CVE-2026-42167 PERMITE EVITAR AUTENTICACIÓN Y EJECUCIÓN DE CÓDIGO EN PROFTPD

Se ha identificado una grave vulnerabilidad en ProFTPD, catalogada como CVE-2026-42167, que permite saltarse procesos de autenticación, elevar privilegios y ejecutar código arbitrario. Esta falla representa un riesgo significativo para servidores FTP que no estén actualizados. Se recomienda aplicar la actualización que MITRE y los desarrolladores emitirán próximamente para mitigar posibles ataques. Mantente alerta y protege tus sistemas. Descubre todos los detalles sobre esta vulnerabilidad y cómo protegerte aquí 👉 djar.co/tWdN

💻 VULNERABILIDAD CRÍTICA RCE EN GITHUB ENTERPRISE SERVER CVE-2026-3854

GitHub Enterprise Server enfrenta una vulnerabilidad con un puntaje CVSS de 8.7 que permite la ejecución remota de código, poniendo en riesgo repositorios y datos sensibles de las organizaciones. Esta amenaza impacta directamente en la integridad y la seguridad de los entornos corporativos que utilizan esta plataforma. La actualización inmediata es vital para evitar compromisos graves. Analiza a fondo la vulnerabilidad y las versiones afectadas para tomar acción rápida. Más información y recomendaciones aquí 👉 djar.co/lWbCh

⚠️ EXPLOTACIÓN RÁPIDA DE SQL INJECTION EN LITELLM CVE-2026-42208

En un caso alarmante, la vulnerabilidad SQL Injection CVE-2026-42208 en LiteLLM fue aprovechada en menos de 36 horas tras su divulgación, comprometiendo credenciales y poniendo en riesgo cuentas en la nube. Esto evidencia la necesidad de implementar medidas proactivas y monitorear activamente los sistemas contra ataques tempranos. Revisa cómo se desarrolló este incidente y las mejores prácticas para proteger tus datos en la nube. Entérate aquí 👉 djar.co/LQrNO4

🛡️ VECT: RANSOMWARE COMO SERVICIO Y SU IMPACTO EN LA CADENA DE SUMINISTRO

El ransomware VECT, surgido en diciembre de 2025, se distingue por operar bajo modelo Ransomware-as-a-Service, causando estragos en varias cadenas de suministro. Su capacidad para expandirse y ejecutar ataques destructivos torna esencial entender su funcionamiento para anticipar y mitigar riesgos. La investigación de Check Point revela sus tácticas y evolución, información clave para defensores de la ciberseguridad. Explora el análisis completo sobre VECT y su impacto aquí 👉 djar.co/O8ko

💥 VECT 2.0 DESTRUYE IRREVERSIBLEMENTE ARCHIVOS EN WINDOWS, LINUX Y ESXI

La actualización 2.0 del ransomware VECT introduce un fallo en la gestión del nonce que provoca la destrucción permanente de archivos mayores a 131KB, haciendo inútiles los pagos de rescate y complicando las opciones de recuperación. Afecta múltiples sistemas operativos, aumentando la gravedad de los ataques. Comprender esta nueva versión es vital para fortalecer las estrategias de defensa y respuesta ante incidentes. Conoce más sobre esta amenaza crítica y cómo proteger tus datos aquí 👉 djar.co/pYoGQk

🎯 CLASE VIRTUAL AVANZADA: DETECCIÓN Y PREVENCIÓN DE MALWARE - CQURE ACADEMY

Especialistas en ciberseguridad tienen la oportunidad de profundizar en técnicas avanzadas de búsqueda y prevención de malware a través de esta clase magistral en vivo. La formación incluye métodos prácticos y teóricos para identificar amenazas complejas y fortalecer la postura defensiva de las organizaciones frente a ataques sofisticados. No pierdas la oportunidad de actualizar tus habilidades y conocimientos. Inscríbete y accede al curso aquí 👉 djar.co/RYH0

📚 GUÍA PARA AUTORES EN CIBERSEGURIDAD - THE HACKER RECIPES

Esta guía es ideal para profesionales interesados en escribir sobre hacking ético, pruebas de penetración y ciberseguridad. Ofrece estrategias claras para estructurar contenido técnico y didáctico, facilitando la comunicación efectiva de conocimientos complejos. Una herramienta valiosa para quienes desean contribuir al ecosistema de la seguridad informática con contenidos de calidad. Descubre cómo mejorar tus publicaciones y aportar valor aquí 👉 djar.co/u2Dz

  • 1
  • 1
  • 0
  • 22h ago

Bluesky

Profile picture fallback
A critical SQL injection (CVE-2026-42208) in LiteLLM was exploited days after disclosure, exposing API keys and credentials. Patch 1.83.7 fixes the flaw by parameterizing key verification queries. #LiteLLM #SQLInjection #OpenSource
  • 0
  • 1
  • 0
  • 17h ago
Profile picture fallback
LiteLLM CVE-2026-42208 SQL Injection Exploited within 36 Hours of Disclosure #cybersecurity #hacking #news #infosec #security #technology #privacy thehackernews.com/20...
  • 0
  • 0
  • 0
  • 13h ago
Profile picture fallback
CVE-2026-42208:LiteLLMのバグが、公開から36時間後に悪用される CVE-2026-42208: LiteLLM bug exploited 36 hours after its disclosure #SecurityAffairs (Apr 29) securityaffairs.com/191483/hacki...
  • 0
  • 0
  • 0
  • 8h ago
Profile picture fallback
LiteLLM-Sicherheitslücke CVE-2026-42208: SQL-Injection binnen 36 Stunden nach Veröffentlichung aktiv ausgenutzt www.all-about-security.de/litellm-sich... #cve #llm #cybersecurity #itsecurity #itsicherheit
  • 0
  • 0
  • 0
  • 3h ago
Profile picture fallback
LiteLLM CVE-2026-42208 SQL Injection Exploited within 36 Hours of Disclosure reconbee.com/litellm-cve-... #LiteLLM #LLM #sqlinjection #SQL #cybersecurity #cyberattack
  • 0
  • 0
  • 0
  • 3h ago

Overview

  • ProFTPD
  • ProFTPD

28 Apr 2026
Published
29 Apr 2026
Updated

CVSS v3.1
HIGH (8.1)
EPSS
0.24%

KEV

Description

mod_sql in ProFTPD before 1.3.10rc1 allows remote attackers to execute arbitrary code via a username, in scenarios where there is logging of USER requests with an expansion such as %U, and the SQL backend allows commands (e.g., COPY TO PROGRAM).

Statistics

  • 4 Posts
  • 2 Interactions

Last activity: 15 hours ago

Fediverse

Profile picture fallback

CVE-2026-42167 Allows Auth Bypass And RCE In ProFTPD
zeropath.com/blog/proftpd-cve-

  • 0
  • 0
  • 2
  • 15h ago
Profile picture fallback

En las últimas 24 horas se detectaron vulnerabilidades críticas que permiten ejecución remota de código en ProFTPD y GitHub Enterprise Server, y una rápida explotación de SQL Injection en LiteLLM compromete datos en la nube; además, el ransomware VECT 2.0 destruye archivos irreversiblemente en múltiples sistemas, aumentando el riesgo. Descubre estos y más detalles en el siguiente listado de noticias sobre seguridad informática:

🗞️ ÚLTIMAS NOTICIAS EN SEGURIDAD INFORMÁTICA 🔒
====| 🔥 LO QUE DEBES SABER HOY 29/04/26 📆 |====

🔓 CVE-2026-42167 PERMITE EVITAR AUTENTICACIÓN Y EJECUCIÓN DE CÓDIGO EN PROFTPD

Se ha identificado una grave vulnerabilidad en ProFTPD, catalogada como CVE-2026-42167, que permite saltarse procesos de autenticación, elevar privilegios y ejecutar código arbitrario. Esta falla representa un riesgo significativo para servidores FTP que no estén actualizados. Se recomienda aplicar la actualización que MITRE y los desarrolladores emitirán próximamente para mitigar posibles ataques. Mantente alerta y protege tus sistemas. Descubre todos los detalles sobre esta vulnerabilidad y cómo protegerte aquí 👉 djar.co/tWdN

💻 VULNERABILIDAD CRÍTICA RCE EN GITHUB ENTERPRISE SERVER CVE-2026-3854

GitHub Enterprise Server enfrenta una vulnerabilidad con un puntaje CVSS de 8.7 que permite la ejecución remota de código, poniendo en riesgo repositorios y datos sensibles de las organizaciones. Esta amenaza impacta directamente en la integridad y la seguridad de los entornos corporativos que utilizan esta plataforma. La actualización inmediata es vital para evitar compromisos graves. Analiza a fondo la vulnerabilidad y las versiones afectadas para tomar acción rápida. Más información y recomendaciones aquí 👉 djar.co/lWbCh

⚠️ EXPLOTACIÓN RÁPIDA DE SQL INJECTION EN LITELLM CVE-2026-42208

En un caso alarmante, la vulnerabilidad SQL Injection CVE-2026-42208 en LiteLLM fue aprovechada en menos de 36 horas tras su divulgación, comprometiendo credenciales y poniendo en riesgo cuentas en la nube. Esto evidencia la necesidad de implementar medidas proactivas y monitorear activamente los sistemas contra ataques tempranos. Revisa cómo se desarrolló este incidente y las mejores prácticas para proteger tus datos en la nube. Entérate aquí 👉 djar.co/LQrNO4

🛡️ VECT: RANSOMWARE COMO SERVICIO Y SU IMPACTO EN LA CADENA DE SUMINISTRO

El ransomware VECT, surgido en diciembre de 2025, se distingue por operar bajo modelo Ransomware-as-a-Service, causando estragos en varias cadenas de suministro. Su capacidad para expandirse y ejecutar ataques destructivos torna esencial entender su funcionamiento para anticipar y mitigar riesgos. La investigación de Check Point revela sus tácticas y evolución, información clave para defensores de la ciberseguridad. Explora el análisis completo sobre VECT y su impacto aquí 👉 djar.co/O8ko

💥 VECT 2.0 DESTRUYE IRREVERSIBLEMENTE ARCHIVOS EN WINDOWS, LINUX Y ESXI

La actualización 2.0 del ransomware VECT introduce un fallo en la gestión del nonce que provoca la destrucción permanente de archivos mayores a 131KB, haciendo inútiles los pagos de rescate y complicando las opciones de recuperación. Afecta múltiples sistemas operativos, aumentando la gravedad de los ataques. Comprender esta nueva versión es vital para fortalecer las estrategias de defensa y respuesta ante incidentes. Conoce más sobre esta amenaza crítica y cómo proteger tus datos aquí 👉 djar.co/pYoGQk

🎯 CLASE VIRTUAL AVANZADA: DETECCIÓN Y PREVENCIÓN DE MALWARE - CQURE ACADEMY

Especialistas en ciberseguridad tienen la oportunidad de profundizar en técnicas avanzadas de búsqueda y prevención de malware a través de esta clase magistral en vivo. La formación incluye métodos prácticos y teóricos para identificar amenazas complejas y fortalecer la postura defensiva de las organizaciones frente a ataques sofisticados. No pierdas la oportunidad de actualizar tus habilidades y conocimientos. Inscríbete y accede al curso aquí 👉 djar.co/RYH0

📚 GUÍA PARA AUTORES EN CIBERSEGURIDAD - THE HACKER RECIPES

Esta guía es ideal para profesionales interesados en escribir sobre hacking ético, pruebas de penetración y ciberseguridad. Ofrece estrategias claras para estructurar contenido técnico y didáctico, facilitando la comunicación efectiva de conocimientos complejos. Una herramienta valiosa para quienes desean contribuir al ecosistema de la seguridad informática con contenidos de calidad. Descubre cómo mejorar tus publicaciones y aportar valor aquí 👉 djar.co/u2Dz

  • 1
  • 1
  • 0
  • 22h ago

Overview

  • SGLang
  • SGLang

20 Apr 2026
Published
29 Apr 2026
Updated

CVSS
Pending
EPSS
0.38%

KEV

Description

SGLang's reranking endpoint (/v1/rerank) achieves Remote Code Execution (RCE) when a model file containing a malcious tokenizer.chat_template is loaded, as the Jinja2 chat templates are rendered using an unsandboxed jinja2.Environment().

Statistics

  • 1 Post
  • 2 Interactions

Last activity: 19 hours ago

Fediverse

Profile picture fallback

CERT/CC issued advisory VU#915947 for SGLang (an AI inference server), CVE-2026-5760, severity 9.8. A poisoned GGUF model file carries a chat-template that SGLang renders through Jinja2 with no sandbox. Arbitrary Python runs on the host. Same root cause as llama-cpp-python (2024) and vLLM (2025). Sandboxed Jinja2 existed the whole time and three frameworks left the line untouched. Any GGUF you did not build yourself runs code on load.

#AI #InfoSec #CyberSecurity #OpenSource #LLM

  • 1
  • 1
  • 0
  • 19h ago

Overview

  • cursor
  • cursor

13 Feb 2026
Published
13 Feb 2026
Updated

CVSS v3.1
HIGH (8.1)
EPSS
0.05%

KEV

Description

Cursor is a code editor built for programming with AI. Sandbox escape via writing .git configuration was possible in versions prior to 2.5. A malicious agent (ie prompt injection) could write to improperly protected .git settings, including git hooks, which may cause out-of-sandbox RCE next time they are triggered. No user interaction was required as Git executes these commands automatically. Fixed in version 2.5.

Statistics

  • 1 Post
  • 1 Interaction

Last activity: 21 hours ago

Bluesky

Profile picture fallback
Vulnerability in Cursor IDE (CVE-2026-26268) #appsec
  • 1
  • 0
  • 0
  • 21h ago

Overview

  • thymeleaf
  • thymeleaf

17 Apr 2026
Published
22 Apr 2026
Updated

CVSS v3.1
CRITICAL (9.1)
EPSS
0.05%

KEV

Description

Thymeleaf is a server-side Java template engine for web and standalone environments. Versions 3.1.3.RELEASE and prior contain a security bypass vulnerability in the the expression execution mechanisms. Although the library provides mechanisms to prevent expression injection, it fails to properly neutralize specific syntax patterns that allow for the execution of unauthorized expressions. If an application developer passes unvalidated user input directly to the template engine, an unauthenticated remote attacker can bypass the library's protections to achieve Server-Side Template Injection (SSTI). This issue has ben fixed in version 3.1.4.RELEASE.

Statistics

  • 1 Post
  • 3 Interactions

Last activity: 7 hours ago

Bluesky

Profile picture fallback
The latest update for #Snyk includes "'A Mini Shai-Hulud Has Appeared': Bun-Based Stealer Hits #SAP @cap-js and mbt npm Packages" and "Don't Panic: The Thymeleaf Template Injection That Only Hurts If You Let It (CVE-2026-40478)". #CyberSecurity #DevOps #OpenSource https://opsmtrs.com/3yzKsZo
  • 0
  • 3
  • 0
  • 7h ago

Overview

  • composer
  • composer

15 Apr 2026
Published
16 Apr 2026
Updated

CVSS v3.1
HIGH (8.8)
EPSS
0.04%

KEV

Description

Composer is a dependency manager for PHP. Versions 1.0 through 2.2.26 and 2.3 through 2.9.5 contain a command injection vulnerability in the Perforce::syncCodeBase() method, which appends the $sourceReference parameter to a shell command without proper escaping, and additionally in the Perforce::generateP4Command() method as in GHSA-wg36-wvj6-r67p / CVE-2026-40176, which interpolates user-supplied Perforce connection parameters (port, user, client) from the source url field without proper escaping. An attacker can inject arbitrary commands through crafted source reference or source url values containing shell metacharacters, even if Perforce is not installed. Unlike CVE-2026-40176, the source reference and url are provided as part of package metadata, meaning any compromised or malicious Composer repository can serve package metadata declaring perforce as a source type with malicious values. This vulnerability is exploitable when installing or updating dependencies from source, including the default behavior when installing dev-prefixed versions. This issue has been fixed in Composer 2.2.27 (2.2 LTS) and 2.9.6 (mainline). If developers are unable to immediately update, they can avoid installing dependencies from source by using --prefer-dist or the preferred-install: dist config setting, and only use trusted Composer repositories as a workaround.

Statistics

  • 1 Post
  • 1 Interaction

Last activity: 17 hours ago

Fediverse

Profile picture fallback

Composer (the dominant PHP package manager) shipped 2.9.6 and 2.2.27 LTS in April. The release fixes two command-injection bugs in the Perforce driver. CVE-2026-40261, severity 8.8. A malicious composer.json declares a Perforce repository and the shell runs whether or not Perforce is installed. Packagist disabled Perforce metadata April 10. Most CI build agents kept no audit trail across the ninety days the bug was live.

#PHP #CyberSecurity #DevOps #InfoSec #SupplyChain

  • 0
  • 1
  • 0
  • 17h ago
Showing 1 to 10 of 40 CVEs