How we keep mts-technonatura-server safe from outsiders #11
Aldhanekaa
announced in
Announcements
Replies: 1 comment
-
and later we'll improve the main website (and the dashboard) security performance! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
🎉 So earlier we just improved the security performance on our server!
In this discussion, I'll cover up how we keep mts-technonatura-server safe from outsiders.
Introduction
We'll always keep safe the user data from outsiders, thus we just improved the security performance!
Security
Our server protects from the XSS Attack, SQL Attack (of course bcz because we don't use SQL database), clickjacking attacks, and MIME sniffing.
Authentication Security
So how do we keep safe user data? What are data we collect? How does the authentication work?
What data we collect from the user?
We collect your password (hashed password), email, username, name, and others (you can see in the
user.model.ts
)Security
As mentioned in the main security section, our server protects from the XSS Attack, blocks clickjacking attacks, etc. Even me (Aldhan) the maintainer, the database holder, I couldn't know what's your password you're using because after you created an account we hashed your password and then the hashed password saved to your user database.
Beta Was this translation helpful? Give feedback.
All reactions