Coding language + libs + gui suggested to ensure secure strings for password manager [migrated]

I decided to code my own password manager. There are similar posts to this, but with less specific (or not fully covered) answers/requests.
Seeing how popular OSes are coded bloated with little security in mind I want to at least minimize … Continue reading Coding language + libs + gui suggested to ensure secure strings for password manager [migrated]

What are the security related challenges in implementing something like Unix sudo?

There exist several sudo alternatives (systemd’s run0, OpenBSD and doas, etc.), all created after sudo has been an established tool, allegedly for security reasons.
If someone were to implement Unix sudo from scratch today, what would be t… Continue reading What are the security related challenges in implementing something like Unix sudo?

Suggestions for implementing a simplified subset of WebAuthn Relaying Party Operation

Previously some good fellow explained the importance of verifying the public key created and offered by authenticators.
As before, given the complexity of a FULL implementation of RP operation, I believe it’s possible that some aspect may … Continue reading Suggestions for implementing a simplified subset of WebAuthn Relaying Party Operation

Security in Angular: Addressing XSS Concerns with External Libraries and Interpolation

Introduction:
We heavily use external libraries, such as DataTables, in combination with interpolation. In Angular, we’ve identified two primary XSS prevention strategies:

Interpolation ({{ }})
Direct Sanitization with DomSanitizer.saniti… Continue reading Security in Angular: Addressing XSS Concerns with External Libraries and Interpolation