X7ROOT File Manager
Current Path:
/home/freights/public_html/wp-content/plugins/wp-email-capture/inc
home
/
freights
/
public_html
/
wp-content
/
plugins
/
wp-email-capture
/
inc
/
??
..
??
admin-sidebar.php
(8.53 KB)
??
core.php
(1.17 KB)
??
css
??
dashboard.php
(2.54 KB)
??
deprecated
??
display.php
(6.75 KB)
??
enqueue.php
(2.73 KB)
??
exportcsv.php
(1.23 KB)
??
functions.php
(13.13 KB)
??
gdpr.php
(11.25 KB)
??
gutenberg.php
(651 B)
??
help.php
(10.94 KB)
??
img
??
install.php
(1.72 KB)
??
js
??
options.php
(44.95 KB)
??
process.php
(10.78 KB)
??
security.php
(1.05 KB)
??
tabledata.php
(3.49 KB)
??
tempdata.php
(970 B)
??
tinymce.php
(1.1 KB)
??
tracking.php
(5.12 KB)
??
widget.php
(2.28 KB)
Editing: security.php
<?php /* Check for injection characters */ /* function wp_email_injection_chars($s = "") { return (stripos("\r", $s) || stripos("\n", $s) || stripos("%0a", $s) || stripos("%0d", $s)) ? TRUE : FALSE; } */ /* Make output safe for the browser */ /* function wp_email_capture_bsafe($input = "") { return htmlspecialchars(stripslashes($input)); } */ /** * Strip Slashes from the string * @param string $s the string to use. * @return string The string cleaned of slashes. */ function wp_email_stripslashes($s = "") { if (defined('TEMPLATEPATH') || (get_magic_quotes_gpc())) { return stripslashes($s); } else { return $s; } } /** * Avoid injection tests * @param string $str the string to check * @return string the cleaned string */ function wp_email_injection_test($str = "") { $tests = array("/bcc\:/i", "/Content\-Type\:/i", "/Mime\-Version\:/i", "/cc\:/i", "/from\:/i", "/to\:/i", "/Content\-Transfer\-Encoding\:/i"); return preg_replace($tests, "", $str); }
Upload File
Create Folder