Skip to content

Commit

Permalink
Create b.java
Browse files Browse the repository at this point in the history
Signed-off-by: rajapandi1234 <[email protected]>
  • Loading branch information
rajapandi1234 authored Nov 27, 2024
1 parent 31d34c9 commit af87f20
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions b.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;

public class VulnerableApp {
public static void main(String[] args) {
String userInput = "test'; DROP TABLE users; --"; // Simulated malicious input

try {
// Connect to the database
Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/testdb", "root", "password");

// Vulnerable: User input directly concatenated into SQL query
String query = "SELECT * FROM users WHERE username = '" + userInput + "'";
Statement statement = connection.createStatement();
ResultSet resultSet = statement.executeQuery(query);

// Print the results
while (resultSet.next()) {
System.out.println("User: " + resultSet.getString("username"));
}

connection.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}

0 comments on commit af87f20

Please sign in to comment.