ArnoldMC77
Regular Member
- May 13, 2018
- 204
- 94
I am trying to change the wp-admin to a custom login link. Previously, I have used plugins but I would prefer to change it without a plugin. Doe anyone have any suggestions?
That's like going to school for 8 years to be a doctor so you can put a bandaid on a splinter lol. What's wrong with just using the plugin? They're not very heavy weight.That you guys. I am not an advanced coder. I can get by with a little HTML, PHP and Java. I have taken courses at Code Academy. Is there anything courses you can recommend that I can learn specifically to write code for this?
Something on "wordpress custom theme" or "make a wp theme from scratch" should help. Try youtube for example. Free tutorials should be enough for getting started.That you guys. I am not an advanced coder. I can get by with a little HTML, PHP and Java. I have taken courses at Code Academy. Is there anything courses you can recommend that I can learn specifically to write code for this?
There isn't anything wrong with it for now. I thought I may be able to write a few lines of code to change it.That's like going to school for 8 years to be a doctor so you can put a bandaid on a splinter lol. What's wrong with just using the plugin? They're not very heavy weight.
Can anyone recommend a good plugin?I used a wordpress plugin to do this, which randomized the address of each site, then I didn't record them all properly, and couldn't log in, so had to reset a bunch of sites and delete the plugin.
WPS Hide LoginCan anyone recommend a good plugin?
You can do the same thing with your theme too. If you don't want to edit the theme directly, make a child theme out of it.
Then load whatever you need from functions.php.
Matter of taste. No matter if you are limiting login attempts or not. An alphanumeric sentence with special characters is improbable (notice my choice of word) to crack for any computer out there right now. If you are worried about ddos, then don't be; coz they can ddos your home page too for that matter. Bruteforcing only works with weaker passwords. You should be more concerned about stuffs like sql injection, rfi, lfi and so on. Bruteforcing isn't that big of a deal imho.Noob security question to follow up on the subject: How critical is it to hide WP login if you have limit login attempts?
Thanks, that helps and makes me feel better.If you are worried about ddos, then don't be
This doesn'tYou should be more concerned about stuffs like sql injection, rfi, lfi and so on
All simple stuffs!! I just used jargons lol.. let me explain..This doesn'tand I'm not sure what you said.
So let's say that someone did this to a website and months after it seems as if it's still there. Would you know (or someone you know) how to get rid of this problem?RFI - Remote File Inclusion vulnerability. Using these the hackers gain access to your server's file system (ever heard the term c99 shell? Related to this.). Mainly caused by bad upload scripts.
I will tell you a dirty little secret that I have used before. Look for any php file which is more than 30kb. It may actually be a shell. No one in their right mind would make a single file so huge (except for the noobs lol.. dont use those scripts). Additionally there are advanced techniques to prevent these. For example, file versioning systems like git lets you see even if a single char has been changed. You should always use proper permissions too.So let's say that someone did this to a website and months after it seems as if it's still there. Would you know (or someone you know) how to get rid of this problem?
Asking for a friend!
Thanks for the explanation