Headline
CVE-2017-20168: Fixed SQL Injection Issues · jfm-so/piWallet@b420f8c
A vulnerability was found in jfm-so piWallet. It has been rated as critical. Affected by this issue is some unknown functionality of the file api.php. The manipulation of the argument key leads to sql injection. The name of the patch is b420f8c4cbe7f06a34d1b05e90ee5cdfe0aa83bb. It is recommended to apply a patch to fix this issue. VDB-218006 is the identifier assigned to this vulnerability.
Skip to content
Actions
Automate any workflow
Packages
Host and manage packages
Security
Find and fix vulnerabilities
Codespaces
Instant dev environments
Copilot
Write better code with AI
Code review
Manage code changes
Issues
Plan and track work
Discussions
Collaborate outside of code
* Explore
* All features
* Documentation
* GitHub Skills
* Blog
For
Enterprise
Teams
Startups
Education
By Solution
CI/CD & Automation
DevOps
DevSecOps
Case Studies
Customer Stories
Resources
GitHub Sponsors
Fund open source developers
* The ReadME Project
GitHub community articles
* Repositories
* Topics
* Trending
* Collections
Pricing
Notifications
Fork 316
Code
Issues 22
Pull requests 1
Actions
Projects
Wiki
Security
Insights
Permalink
Browse files
Fixed SQL Injection Issues
- Loading branch information
Jaydon Taylor committed
Mar 26, 2017
1 parent c8adf52 commit b420f8c4cbe7f06a34d1b05e90ee5cdfe0aa83bb
Showing 1 changed file with 1 addition and 1 deletion.
@@ -5,7 +5,7 @@
include(‘common.php’);
$con = mysqli_connect(“$db_host","$db_user","$db_pass","$db_name”);
$key = $_GET[‘key’];
$key = mysqli_real_escape_string($con, $_GET[‘key’]);
if (mysqli_connect_errno()) {
echo "Failed to connect to MySQL. Make sure to edit the common.php file: " . mysqli_connect_error();
}
0 comments on commit b420f8c
Please sign in to comment.