|
|
|
|
|
0 Replies and 2587 Views
add admin user via phpmyadmin 2587 0
Started by SuperUser Account
INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_status`) VALUES ('newadmin', MD5('pass123'), 'firstname lastname', 'emailexample.com', '0'); INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, (Select max(id) FROM wp_users), 'wp_capabilities', 'a:1:{s:13:'administrator';s:1:'1';}'); INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, (Select max(id) FROM w...
|
|
|
|
0 |
2587 |
17 May 2016 04:41 PM |
|
0 |
2686 |
03 Jan 2016 02:04 PM |
|
0 Replies and 3815 Views
more security - themes & plug ins 3815 0
Started by SuperUser Account
wpscan maintains a vulnerability database at https://wpvulndb.com/ a plugin you can add to your site: https://wordpress.org/plugins/plugin-security-scanner/ It will alert you if any of your plugins have vulnerabilities. It uses the wpscan database Then there is https://www.exploit-db.com/ which goes beyond wordpress. And .... if you are a gluten for more there is the cve details http://www.cvedetails.com/
|
|
|
|
0 |
3815 |
23 Oct 2015 01:23 PM |
|
0 Replies and 3377 Views
wordpress hardening tips 3377 0
Started by SuperUser Account
Do not use admin or any part of the url as the user name , pick something random or not easy to associate with the site. Consider using SSL for the site (also gives seo boost) From codex.wordpress.org wp-includes: A second layer of protection can be added where scripts are generally not intended to be accessed by any user. One way to do that is to block those scripts using mod_rewrite in the .htaccess ...
|
|
|
|
0 |
3377 |
23 Oct 2015 08:19 AM |
|