SonicWall SMA 1000 Series <= 12.4.3-03453 / 12.5.x <= 12.5.0-02835 Multiple Vulnerabilities (SNWLID-2026-0016)
| Reporter | Title | Published | Views | Family All 26 |
|---|---|---|---|---|
| Exploit for Server-Side Request Forgery in Sonicwall Sma8200V | 4 Sep 202616:30 | – | githubexploit | |
| CVE-2026-83548 | 1 Sep 202620:54 | – | circl | |
| CVE-2026-83549 | 1 Sep 202620:54 | – | circl | |
| SonicWall SMA1000 Appliances Server-Side Request Forgery Vulnerability | 2 Sep 202600:00 | – | cisa_kev | |
| SonicWall SMA1000 Appliances OS Command Injection Vulnerability | 2 Sep 202600:00 | – | cisa_kev | |
| CVE-2026-83548 | 1 Sep 202621:25 | – | cve | |
| CVE-2026-83549 | 1 Sep 202621:28 | – | cve | |
| CVE-2026-83548 | 1 Sep 202621:25 | – | cvelist | |
| CVE-2026-83549 | 1 Sep 202621:28 | – | cvelist | |
| EUVD-2026-69704 | 2 Sep 202600:31 | – | euvd |
10
#%NASL_MIN_LEVEL 80900
##
# (C) Tenable, Inc.
##
include('compat.inc');
if (description)
{
script_id(342663);
script_version("1.2");
script_set_attribute(attribute:"plugin_modification_date", value:"2026/09/04");
script_cve_id("CVE-2026-83548", "CVE-2026-83549");
script_xref(name:"IAVA", value:"2026-A-0930");
script_name(english:"SonicWall SMA 1000 Series <= 12.4.3-03453 / 12.5.x <= 12.5.0-02835 Multiple Vulnerabilities (SNWLID-2026-0016)");
script_set_attribute(attribute:"synopsis", value:
"The remote device is affected by multiple vulnerabilities.");
script_set_attribute(attribute:"description", value:
"The remote host is a SonicWall SMA 1000 Series device that is affected by multiple vulnerabilities:
- A pre-authentication server-side request forgery (SSRF) vulnerability in the SMA1000 Appliance Work Place
interface due to an unintended alternate access path. A remote, unauthenticated attacker could potentially
exploit this to gain unauthorized access to sensitive functionality and perform unauthorized operations.
(CVE-2026-83548)
- A post-authentication improper neutralization of special elements used in an OS command ('OS Command
Injection') vulnerability in the SMA1000 Appliance Management Console (AMC) which, in specific conditions,
could potentially enable a remote authenticated attacker as administrator to execute arbitrary OS commands,
resulting in remote code execution. (CVE-2026-83549)
Note that Nessus has not tested for these issues but has instead relied only on the application's self-reported
version number.");
script_set_attribute(attribute:"see_also", value:"https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2026-0016");
script_set_attribute(attribute:"solution", value:
"Upgrade to SonicWall SMA 1000 Series version 12.4.3-03526 or 12.5.0-02952 or later.");
script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:C/I:C/A:N");
script_set_cvss_temporal_vector("CVSS2#E:F/RL:OF/RC:C");
script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H");
script_set_cvss3_temporal_vector("CVSS:3.0/E:F/RL:O/RC:C");
script_set_attribute(attribute:"cvss_score_source", value:"CVE-2026-83548");
script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
script_set_attribute(attribute:"exploit_available", value:"true");
script_set_attribute(attribute:"vuln_publication_date", value:"2026/09/01");
script_set_attribute(attribute:"patch_publication_date", value:"2026/09/01");
script_set_attribute(attribute:"plugin_publication_date", value:"2026/09/03");
script_set_attribute(attribute:"potential_vulnerability", value:"true");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"cpe", value:"x-cpe:/o:sonicwall:firmware");
script_set_attribute(attribute:"stig_severity", value:"I");
script_set_attribute(attribute:"thorough_tests", value:"true");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"CGI abuses");
script_copyright(english:"This script is Copyright (C) 2026 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencies("sonicwall_sma_web_detect.nbin");
script_require_keys("installed_sw/SonicWall Secure Mobile Access", "Settings/ParanoidReport");
script_require_ports("Services/www", 80, 443);
exit(0);
}
include('http.inc');
include('vcf.inc');
var app_name = 'SonicWall Secure Mobile Access';
vcf::add_separator('-');
get_install_count(app_name:app_name, exit_if_zero:TRUE);
var port = get_http_port(default:443, embedded:TRUE);
var app_info = get_single_install(app_name:app_name, port:port, exit_if_unknown_ver:FALSE);
app_info.port = port;
app_info.app = app_name;
if (empty_or_null(app_info.Series))
app_info.Series = UNKNOWN_VER;
if (app_info.version != UNKNOWN_VER)
app_info.parsed_version = vcf::parse_version(app_info.version);
if (app_info.Series != '1000' && app_info.Series != UNKNOWN_VER)
audit(AUDIT_HOST_NOT, "an SMA 1000 Series device");
var constraints = [
{'max_version':'12.4.3.03453', 'fixed_version':'12.4.3.03526'},
{'min_version': '12.5', 'max_version':'12.5.0.02835', 'fixed_version':'12.5.0.02952'}
];
if (app_info.version == UNKNOWN_VER)
{
# no version, flag with paranoia only
if (report_paranoia < 2)
audit(AUDIT_PARANOID);
vcf::report_results(
app_info:app_info,
fix:'12.5.0.02952',
severity:SECURITY_HOLE
);
exit(0);
}
if (app_info.Series == '1000')
{
# if it's < 12.4 or >= 12.6 and matches the model, check version against fix normally without paranoia
if (ver_compare(ver:app_info.version, fix:'12.4', strict:false) < 0 ||
ver_compare(ver:app_info.version, fix:'12.6', strict:false) >= 0)
{
vcf::check_version_and_report(
app_info:app_info,
constraints:constraints,
severity:SECURITY_HOLE
);
exit(0);
}
else
{
# if it's exactly 12.4 or 12.5, it's not granular so require paranoia to check the version
if (app_info.version == '12.4' || app_info.version == '12.5')
{
if (report_paranoia < 2)
audit(AUDIT_PARANOID);
}
vcf::check_version_and_report(
app_info:app_info,
constraints:constraints,
severity:SECURITY_HOLE
);
exit(0);
}
}
else if (app_info.Series == UNKNOWN_VER)
{
# if we don't know the model but the version is >= 12.6, don't require paranoia
if (ver_compare(ver:app_info.version, fix:'12.6', strict:false) >= 0)
{
vcf::check_version_and_report(
app_info:app_info,
constraints:constraints,
severity:SECURITY_HOLE
);
exit(0);
}
else
{
# otherwise if we don't know the model and the version isn't patched, only flag with paranoia
if (report_paranoia < 2)
audit(AUDIT_PARANOID);
vcf::check_version_and_report(
app_info:app_info,
constraints:constraints,
severity:SECURITY_HOLE
);
exit(0);
}
}
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
04 Sep 2026 00:00Current
9.8High risk
Vulners AI Score9.8
CVSS 3.110
EPSS0.01625
SSVC