This article is a part of our Vulnerability Database (back to index)

Cross-site Scripting occurrences in S-cms

A vulnerability was found in S-CMS 5.0 Build 20220328. It has been declared as problematic. Affected by this vulnerability is an unknown functionality of the component Contact Information Page. The manipulation of the argument Make a Call leads to cross site scripting. The attack can be launched remotely. The exploit has been disclosed to the public and may be used. The identifier VDB-215197 was assigned to this vulnerability. (2022-12-09, CVE-2022-4377)

S-CMS Government Station Building System v5.0 contains a cross-site scripting (XSS) vulnerability in /function/booksave.php. (2021-12-22, CVE-2020-20426)

S-CMS Government Station Building System v5.0 contains a cross-site scripting (XSS) vulnerability in the search function. (2021-12-22, CVE-2020-20425)

Cross Site Scripting (XSS) in S-CMS build 20191014 and earlier allows remote attackers to execute arbitrary code via the 'Site Title' parameter of the component '/data/admin/#/app/config/'. (2021-09-15, CVE-2020-19158)

Cross Site Scripting (XSS) in S-CMS v1.0 allows remote attackers to execute arbitrary code via the component '/admin/tpl.php?page='. (2021-08-31, CVE-2020-19046)

A cross site scripting (XSS) vulnerability in S-CMS PHP v3.0 allows attackers to execute arbitrary web scripts or HTML via a crafted payload entered into the Copyright text box under Basic Settings. (2021-07-30, CVE-2020-20699)

A stored cross site scripting (XSS) vulnerability in /app/config/of S-CMS PHP v3.0 allows attackers to execute arbitrary web scripts or HTML via a crafted payload. (2021-07-30, CVE-2020-20701)

A stored cross site scripting (XSS) vulnerability in /app/form_add/of S-CMS PHP v3.0 allows attackers to execute arbitrary web scripts or HTML via a crafted payload entered into the Title Entry text box. (2021-07-30, CVE-2020-20700)

S-CMS v1.5 has XSS in tpl.php via the member/member_login.php from parameter. (2019-10-09, CVE-2019-17368)

s-cms V3.0 has XSS in index.php?type=text via the S_id parameter. (2019-09-14, CVE-2019-16312)

S-CMS PHP v1.0 has XSS in 4.edu.php via the S_id parameter. (2019-03-22, CVE-2019-9925)

An issue was discovered in S-CMS 3.0. It allows XSS via the admin/demo.php T_id parameter. (2018-12-26, CVE-2018-20476)

An issue was discovered in S-CMS v1.5. There is an XSS vulnerability in search.php via the keyword parameter. (2018-11-09, CVE-2018-19145)

Why Cross-site Scripting can be dangerous

Cross site scripting is an attack where a web page executes code that is injected by an adversary. It usually appears, when users input is presented. This attack can be used to impersonate a user, take over control of the session, or even steal API keys.

The attack can be executed e.g. when you application injects the request parameter directly into the HTML code of the page returned to the user:

https://server.com/confirmation?message=Transaction+Complete

what results in:

<span>Confirmation: Transaction Complete</span>

In that case the message can be modified to become a valid Javascript code, e.g.:

https://server.com/confirmation?message=<script>dangerous javascript code here</script>

and it will be executed locally by the user's browser with full access to the user's personal application/browser data:

<span>Confirmation: <script>dangerous javascript code here</script></span>

Scan Your Web App Now
Scan your application
for 14 days for free

No credit card is required. No commitment.

Sign Up Free