-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: rajapandi1234 <[email protected]>
- Loading branch information
1 parent
be6c621
commit e3f8a7f
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import java.sql.Connection; | ||
import java.sql.DriverManager; | ||
import java.sql.ResultSet; | ||
import java.sql.Statement; | ||
import java.security.MessageDigest; | ||
import java.util.Base64; | ||
|
||
public class VulnerableCode { | ||
public static void main(String[] args) { | ||
// Simulated malicious input for SQL Injection | ||
String userInput = "admin' OR '1'='1"; | ||
|
||
try { | ||
// Vulnerable SQL Query | ||
Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/testdb", "root", "password"); | ||
Statement statement = connection.createStatement(); | ||
String query = "SELECT * FROM users WHERE username = '" + userInput + "'"; | ||
ResultSet resultSet = statement.executeQuery(query); | ||
|
||
// Print the results | ||
while (resultSet.next()) { | ||
System.out.println("User: " + resultSet.getString("username")); | ||
} | ||
|
||
// Insecure Cryptography Example: MD5 for hashing passwords | ||
String password = "supersecretpassword"; | ||
MessageDigest md = MessageDigest.getInstance("MD5"); // MD5 is cryptographically broken | ||
Check failure Code scanning / CodeQL Use of a broken or risky cryptographic algorithm High
Cryptographic algorithm
MD5 Error loading related location Loading |
||
byte[] hash = md.digest(password.getBytes()); | ||
System.out.println("MD5 Hash of password: " + Base64.getEncoder().encodeToString(hash)); | ||
|
||
connection.close(); | ||
} catch (Exception e) { | ||
e.printStackTrace(); | ||
} | ||
} | ||
} |