Cross-site scripting (XSS) is a security bug that can affect websites. If present in your website, this bug can allow an attacker to add their own malicious JavaScript code onto the HTML pages displayed to your users. It refers to client-side code injection attack wherein an attacker can execute malicious scripts into a legitimate website or web application. XSS is one
Month: October 2015
Easy method to reset wordpress admin password
an easy way to reset wordpress admin password via FTP follow this steps: 1 – Login to your site via FTP 2 – download your active theme’s functions.php file 3 – Edit the file and add this code to it, after the first <?php:
1 |
wp_set_password( 'password', 1 ); |
“1” is the user ID number in the wp_users table, and ‘password’ is your new password
begin
begin