24h | 7d | 30d

Overview

  • Unknown
  • WP images upload on piclect

12 Sep 2026
Published
12 Sep 2026
Updated

CVSS
Pending
EPSS
0.16%

KEV

Description

The WP images upload on piclect WordPress plugin through 1.0 does not validate the name or type of uploaded files before writing them to a publicly accessible directory, allowing unauthenticated attackers to upload arbitrary files and execute arbitrary code on the server.

Statistics

  • 1 Post

Last activity: 18 hours ago

Fediverse

Profile picture fallback

WP images upload on piclect (≤1.0) suffers from CRITICAL CVE-2026-84171: Unauthenticated attackers can upload arbitrary files, risking code execution. Restrict uploads & monitor activity until a fix is released. radar.offseq.com/threat/cve-20

  • 0
  • 0
  • 0
  • 18h ago

Overview

  • IBM
  • App Connect Enterprise

04 Sep 2026
Published
10 Sep 2026
Updated

CVSS v3.1
MEDIUM (5.3)
EPSS
0.29%

KEV

Description

IBM App Connect Enterprise 13.0.1.0 through 13.0.8.1, and 12.0.1.0 through 12.0.12.28 and IBM Integration Bus for z/OS 10.1.0.0 through 10.1.0.7 could allow a remote authenticated attacker to obtain sensitive information due to an XML external entity (XXE) injection.

Statistics

  • 1 Post

Last activity: 18 hours ago

Fediverse

Profile picture fallback

CVE-2026-17444: XXE in IBM App Connect Enterprise & Integration Bus (CVSS 5.3). Remote authenticated attacker can leak sensitive data via XML injection. Impact hits versions 13.0.1.0-13.0.8.1, 12.0.1.0-12.0.12.28, & z/OS 10.1.0.x. valtersit.com/cve/CVE-2026-174

  • 0
  • 0
  • 0
  • 18h ago

Overview

  • PaperCut
  • PaperCut MF/NG

28 Aug 2026
Published
01 Sep 2026
Updated

CVSS v4.0
HIGH (8.8)
EPSS
1.62%

Description

An improper access control vulnerability exists in the web management interface of PaperCut MF and PaperCut NG. Under specific conditions, unauthenticated remote requests targeting administrative functions can trigger backend actions prior to the completion of access validation checks. This allows an unauthenticated remote attacker to modify certain system configurations.

Statistics

  • 1 Post
  • 8 Interactions

Last activity: 15 hours ago

Bluesky

Profile picture fallback
We shared a one-off share of over 400 compromised PaperCut NG/MF instances (via CVE-2026-81578/CVE-2026-82078) observed by @greynoise.io. IP data in our Compromised Website reporting for 2026-09-11, tagged 'papercut-compromise'. Dashboard Tree Map stats: dashboard.shadowserver.org/statistics/c...
  • 3
  • 5
  • 0
  • 15h ago

Overview

  • PaperCut
  • PaperCut MF/NG

28 Aug 2026
Published
01 Sep 2026
Updated

CVSS v4.0
CRITICAL (9.4)
EPSS
1.69%

Description

An unsafe dynamic class loading vulnerability exists in the database connection utilities of PaperCut MF and PaperCut NG. The application instantiates database driver classes based on configurable driver names without validating against an allowlist of approved drivers. If an attacker can manipulate system configuration parameters, this enables the execution of arbitrary Java bytecode residing on the application classpath under the security context of the PaperCut server process.

Statistics

  • 1 Post
  • 8 Interactions

Last activity: 15 hours ago

Bluesky

Profile picture fallback
We shared a one-off share of over 400 compromised PaperCut NG/MF instances (via CVE-2026-81578/CVE-2026-82078) observed by @greynoise.io. IP data in our Compromised Website reporting for 2026-09-11, tagged 'papercut-compromise'. Dashboard Tree Map stats: dashboard.shadowserver.org/statistics/c...
  • 3
  • 5
  • 0
  • 15h ago

Overview

  • VideoLAN
  • VLC media player

09 Sep 2026
Published
09 Sep 2026
Updated

CVSS v4.0
MEDIUM (6.9)
EPSS
0.33%

KEV

Description

VLC media player copies an RTSP response line into a fixed buffer without guaranteeing termination and then treats that buffer as a C string. RtspReadLine in modules/access/rtsp/access.c calls strncpy with the full buffer length, which writes no terminator when the source line is at least as long as the destination, and rtsp_get in modules/access/rtsp/rtsp.c allocates that buffer as BUF_SIZE bytes and passes it to strdup. When a server returns a line of 4096 bytes or more, strdup measures its length past the end of the allocation and copies adjacent heap bytes until an incidental zero byte. Because the affected line is the Session header, the disclosed bytes are retained as the session identifier and sent back to the server on every subsequent request, so the operator of a hostile server reads heap memory from the client rather than inferring it. The attacker controls the line length and therefore how far the read runs. A single playlist entry naming a realrtsp URL is sufficient. The module is a build-time option, disabled in some distribution packages and enabled in the official VideoLAN builds.

Statistics

  • 1 Post

Last activity: 14 hours ago

Fediverse

Profile picture fallback

VLC Media Player hit by two critical security flaws: heap corruption and memory disclosure putting millions at risk

Two critical VLC Media Player vulnerabilities, CVE-2026-56711 and CVE-2026-73324, expose users to heap corruption and memory disclosure. Here’s what to do

thecybersecguru.com/news/vlc-m

  • 0
  • 0
  • 0
  • 14h ago

Overview

  • VideoLAN
  • VLC media player

09 Sep 2026
Published
09 Sep 2026
Updated

CVSS v4.0
HIGH (8.6)
EPSS
0.30%

KEV

Description

VLC media player computes the size of a picture buffer with 32-bit arithmetic and allocates from the wrapped result. In AllocatePicture in src/misc/picture.c the running total is accumulated as i_bytes += p->i_pitch * p->i_lines, and both plane_t fields are declared int in include/vlc_picture.h, so the multiplication is evaluated at 32 bits and wraps before it is widened to the size_t accumulator. The overflow check that precedes it divides in 64-bit arithmetic and therefore does not constrain the product, and the subsequent comparison against PICTURE_SW_SIZE_MAX examines the already wrapped value, so both guards pass. aligned_alloc then reserves the small wrapped size while the decoder writes scanlines sized from the original dimensions. A crafted PNG whose IHDR declares large width and height reaches this path through the image demuxer, whose only size guard is on the input file's byte count rather than the declared dimensions, and the decoder in modules/codec/png.c writes past the end of the allocation with attacker-influenced length and content. Opening the file directly or through a playlist entry is sufficient, with no non-default settings.

Statistics

  • 1 Post

Last activity: 14 hours ago

Fediverse

Profile picture fallback

VLC Media Player hit by two critical security flaws: heap corruption and memory disclosure putting millions at risk

Two critical VLC Media Player vulnerabilities, CVE-2026-56711 and CVE-2026-73324, expose users to heap corruption and memory disclosure. Here’s what to do

thecybersecguru.com/news/vlc-m

  • 0
  • 0
  • 0
  • 14h ago

Overview

  • Microsoft
  • Windows 11 version 23H2

08 Sep 2026
Published
11 Sep 2026
Updated

CVSS v3.1
HIGH (7.8)
EPSS
0.63%

Description

Improper link resolution before file access ('link following') in Windows Update Stack allows an authorized attacker to elevate privileges locally.

Statistics

  • 1 Post

Last activity: 15 hours ago

Bluesky

Profile picture fallback
~Arcticwolf~ Two actively exploited Windows zero-days require urgent patching. - IOCs: CVE-2026-85880, CVE-2026-81963, CVE-2026-69730 - #CVE-2026-81963 #CVE-2026-85880 #ThreatIntel
  • 0
  • 0
  • 0
  • 15h ago

Overview

  • Microsoft
  • Windows 10 Version 1607

08 Sep 2026
Published
11 Sep 2026
Updated

CVSS v3.1
HIGH (7.8)
EPSS
0.57%

Description

Heap-based buffer overflow in Windows ALPC allows an authorized attacker to elevate privileges locally.

Statistics

  • 1 Post

Last activity: 15 hours ago

Bluesky

Profile picture fallback
~Arcticwolf~ Two actively exploited Windows zero-days require urgent patching. - IOCs: CVE-2026-85880, CVE-2026-81963, CVE-2026-69730 - #CVE-2026-81963 #CVE-2026-85880 #ThreatIntel
  • 0
  • 0
  • 0
  • 15h ago
Showing 31 to 38 of 38 CVEs