A simple proposal to improve safety #845
Replies: 6 comments 4 replies
|
Or an option to just turn that function off would be nice. I know there are others who use these for multiple people, but this is just me. I don't need that lol |
|
I'm trying to think of a good way to implement this but without using a database I can't come up with a proper method other than checking every user file manually on login. If anybody has any ideas I'm all ears. 😊 I would definitely recommend enabling MFA and CAPTCHA for enhanced security to reduce the risk for brute force attacks. |
|
With the current htmly so that the username is not exposed can be done quite easily.. Simply by changing it via theme. Example from blog theme: <span itemprop="author"><a href="<?php echo $p->authorUrl;?>"><?php echo $p->authorName;?></a></span>Remove the anchor tag: <span itemprop="author"><?php echo $p->authorName;?></span>The To remove the author link from the sitemap, go to Edit: so the title is the alias. |
|
Oh I was looking at how to remove the username from the profile URL (/author/USERNAME) but I guess disabling that page would do it. :) |
|
@KuJoe ya it still available/accessible somewhere but as long as we don't expose it should fine 😄 |
|
So what I see is: I assume anchor tag must be removed from both places. Also, in other themes, the p->authorUrl field shows up in a variety of files. Should I just remove the anchor tag wherever p->authorUrl is used? |
Uh oh!
There was an error while loading. Please reload this page.
When an author creates a post, his login appears. This poses a security problem because it is then only necessary to find the password to log in.
It would be nice to be able to use an alias that would be used instead of the login when posting.
All reactions