CVE-2018-25407
SQL Injection in eNdonesia Portal 8.7
Publication date: 2026-05-30
Last updated on: 2026-05-30
Assigner: VulnCheck
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-89 | The product constructs all or part of an SQL command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended SQL command when it is sent to a downstream component. Without sufficient removal or quoting of SQL syntax in user-controllable inputs, the generated SQL query can cause those inputs to be interpreted as SQL instead of ordinary user data. |
Attack-Flow Graph
AI Powered Q&A
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The vulnerability allows unauthenticated attackers to execute arbitrary SQL queries and extract sensitive database information such as usernames and database details.
Such unauthorized access to sensitive data can lead to violations of data protection regulations like GDPR and HIPAA, which require strict controls over personal and sensitive information.
Therefore, exploitation of this vulnerability could result in non-compliance with these standards due to potential data breaches and unauthorized data disclosure.
Can you explain this vulnerability to me?
The vulnerability in eNdonesia Portal 8.7 is a set of multiple SQL injection flaws. These allow unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through specific parameters in the mod.php file.
- The affected parameters are artid, cid, did, contid, and aboutid.
- These parameters exist across several modules: publisher, diskusi, galeri, content, and about.
By exploiting these injection points, attackers can extract sensitive database information such as usernames, database names, and version details.
How can this vulnerability impact me? :
This vulnerability can have serious impacts including unauthorized access to sensitive database information.
- Attackers can retrieve usernames, which may lead to further compromise of user accounts.
- Exposure of database names and version details can aid attackers in crafting more targeted attacks.
Overall, this can lead to data breaches, loss of confidentiality, and potential damage to the integrity of the system.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by sending crafted HTTP requests with SQL injection payloads to the vulnerable parameters such as artid, cid, did, contid, and aboutid in the mod.php file across various modules like publisher, diskusi, galeri, content, and about.
A common approach is to use tools like curl or specialized SQL injection testing tools to send requests that include SQL syntax in these parameters and observe the responses for signs of SQL errors or unexpected data.
- Example curl command to test the 'artid' parameter for SQL injection: curl "http://targetsite/mod.php?artid=1' OR '1'='1"
- Use automated scanners or SQL injection testing tools to probe the parameters mentioned.
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include applying input validation and sanitization on all parameters vulnerable to SQL injection, such as artid, cid, did, contid, and aboutid.
If a patch or update is available for eNdonesia Portal 8.7, it should be applied promptly to fix the underlying SQL injection flaws.
As a temporary measure, consider implementing web application firewall (WAF) rules to block malicious SQL injection payloads targeting these parameters.
Restricting database permissions to limit the impact of a successful injection can also help reduce risk.