防止SQL注入

该代码示例展示了如何在Java中使用PreparedStatement来防止SQL注入攻击。用户输入的账号和密码被安全地设置为SQL查询的参数,避免了直接拼接字符串可能导致的安全风险。当尝试用恶意输入如or1=1时,程序能正确识别为无效的用户名或密码,确保了登录的安全性。
摘要由CSDN通过智能技术生成

防止SQL注入

/**
 * 防止SQL注入的方法
 */
public class PreparedStatementUserLoginPart {
	public static void main(String[] args) throws SQLException, ClassNotFoundException {
		Scanner scanner = new Scanner(System.in);
		System.out.println("请输入账号");
		String account = scanner.nextLine();
		System.out.println("请输入密码");
		String password = scanner.nextLine();

		Class.forName("com.mysql.cj.jdbc.Driver");

		//Connection connection = DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/test", "root", "123456");
		Properties info = new Properties();
		info.put("user", "root");
		info.put("password", "123456");

		Connection connection = DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/test", info);

		/*
		preparStatement:
		1.编写sql语句 其中动态值部分使用占位符‘?’替代 注意:?只能替代值
		2.创建preparStatement 并且传入动态值
		3.执行sql语句
		 */

		String sql = "select * from test.t_user where account = ? and password = ?";
		PreparedStatement prepareStatement = connection.prepareStatement(sql);
		prepareStatement.setObject(1, account);
		prepareStatement.setObject(2, password);

		ResultSet resultSet = prepareStatement.executeQuery();

		if (resultSet.next()){
			System.out.println("登录成功!");
		}else {
			System.out.println("用户名或密码错误!");
		}

		resultSet.close();
		prepareStatement.close();
		connection.close();

	}
}

运行结果

请输入账号
root
请输入密码
' or '1' = '1
用户名或密码错误!

Process finished with exit code 0
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值