Slide 26
Slide 26 text
SQLi
• But what do the functions do?
–sanitize_text_field(): Checks for invalid UTF-8, Convert single < characters to
entity, strip all tags, remove line breaks, tabs and extra white space, strip octets.
• Not really useful (or relevant) to us here.
–esc_sql(): Prepares a string for use as an SQL query. This function is a glorified
addslashes() that works with arrays.
• esc_sql() is also deprecated in favor of using $wpdb->prepare(). It will escape
single quotes in values, but as ORDER and ORDERBY aren’t escaped in the
query, in this case it’s useless.
[ 26 ]