From 6a21b45c99abf92ca5f7785eca5e48a0f37d5ff3 Mon Sep 17 00:00:00 2001 From: Jared Date: Mon, 4 Dec 2023 14:21:25 -0500 Subject: [PATCH] Updated WordPress Plugin Security Testing Cheat Sheet (markdown) --- WordPress-Plugin-Security-Testing-Cheat-Sheet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WordPress-Plugin-Security-Testing-Cheat-Sheet.md b/WordPress-Plugin-Security-Testing-Cheat-Sheet.md index d14aef1..1eb64e7 100644 --- a/WordPress-Plugin-Security-Testing-Cheat-Sheet.md +++ b/WordPress-Plugin-Security-Testing-Cheat-Sheet.md @@ -102,7 +102,7 @@ Example regex: `wpdb->(query|get_var|get_row|get_col|get_results|replace)\((?!.* Unsafe escaping ('securing') API methods: -- ```esc_sql()``` function does not adequately protect against SQL Injection [https://codex.wordpress.org/Function_Reference/esc_sql](https://codex.wordpress.org/Function_Reference/esc_sql) +- ```esc_sql()``` function does not adequately protect against SQL Injection [https://developer.wordpress.org/reference/functions/esc_sql/](https://developer.wordpress.org/reference/functions/esc_sql/) - ```escape()``` same as above - ```esc_like()``` same as above - ```like_escape()``` same as above