保護資料庫免於SQL 注入:Java 中轉義字串指南
防止SQL 注入攻擊對於確保資料庫的安全Java應用程式.一種有效的方法是在 SQL 查詢中使用字串值之前對其進行轉義。這可以防止注入可能危害資料庫的惡意字元。
雖然「replaceAll」字串函數提供了解決方案,但手動處理各種轉義字元可能具有挑戰性。相反,更可靠的方法是採用PreparedStatements,它會自動轉義輸入中的任何特殊字元。
這是使用PreparedStatements的範例:
public insertUser(String name, String email) { Connection conn = null; PreparedStatement stmt = null; try { conn = setupTheDatabaseConnectionSomehow(); stmt = conn.prepareStatement("INSERT INTO person (name, email) values (?, ?)"); stmt.setString(1, name); stmt.setString(2, email); stmt.executeUpdate(); } finally { try { if (stmt != null) { stmt.close(); } } catch (Exception e) { // log this error } try { if (conn != null) { conn.close(); } } catch (Exception e) { // log this error } } }
透過使用PreparedStatements,您可以放心使用者輸入的任何字元都會安全地插入資料庫而不會造成任何損害。
以上是PreparedStatements 如何保護我的 Java 資料庫免於 SQL 注入?的詳細內容。更多資訊請關注PHP中文網其他相關文章!