header-logo
Suggest Exploit
vendor:
JAWS
by:
Unknown
7.5
CVSS
HIGH
Remote SQL Injection
89
CWE
Product Name: JAWS
Affected Version From: Unknown
Affected Version To: Unknown
Patch Exists: NO
Related CWE:
CPE: a:jaws:jaws
Metasploit:
Other Scripts:
Platforms Tested: Unknown
Unknown

JAWS Remote SQL Injection Vulnerability

The JAWS application is affected by a remote SQL injection vulnerability. This vulnerability exists due to a failure in properly sanitizing user-supplied URI parameter input before using it in an SQL query. An attacker can exploit this issue to manipulate database queries and potentially view or modify sensitive information.

Mitigation:

To mitigate this vulnerability, it is recommended to sanitize user input before using it in SQL queries. Additionally, regular security updates and patches from the vendor should be applied.
Source

Exploit-DB raw data:

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

JAWS is reportedly affected by a remote SQL injection vulnerability. This issue occurs in the controlpanel.php script due to a failure of the application to properly sanitize user-supplied URI parameter input before using it in an SQL query.

Because of this, a malicious user may influence database queries in order to view or modify sensitive information, potentially compromising the software or the database.

<script type="text/javascript">

function crypt_form(form) {
var new_password = calcMD5(form.password.value);
form.crypted_password.value = "' or '2'='2";
form.password.value = "";
return true;
}
</script>