A simple proposal to improve safety #845
Replies: 5 comments 3 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 |
Beta Was this translation helpful? Give feedback.
-
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. |
Beta Was this translation helpful? Give feedback.
-
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. |
Beta Was this translation helpful? Give feedback.
-
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. :) |
Beta Was this translation helpful? Give feedback.
-
@KuJoe ya it still available/accessible somewhere but as long as we don't expose it should fine 😄 |
Beta Was this translation helpful? Give feedback.
-
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.
Beta Was this translation helpful? Give feedback.
All reactions