Any obvious pitfalls of modeling access control policies using subject, scope, object?

Context
A small web application with REST API and postgres as db, that has users, documents and teams. A user can do basic CRUD operations on document.
A user is always a part of a team. A team is generated on user signup. A team has at le… Continue reading Any obvious pitfalls of modeling access control policies using subject, scope, object?

Dattell report reveals most popular technologies for data engineers

Discover some of the most popular tools and technologies desired by employers looking to fill data engineering jobs, according to Dattell.
The post Dattell report reveals most popular technologies for data engineers appeared first on TechRepublic.
Continue reading Dattell report reveals most popular technologies for data engineers

Storing strings in a Database that are only visible to their owner who stored them when they were logged in

In my application, logged-in users create some strings, and those strings are stored in the Postgres database.
But, because they are in plaintext, their values are visible to me, as I have access to the database.
Is there a way to do some … Continue reading Storing strings in a Database that are only visible to their owner who stored them when they were logged in

Is there much practical security value in using passwords/usernames for postgres instances used on development machines?

So say you are developing multiple different projects for different clients and want your developers to use postgres on their development machine (i.e. localhost connection in the development environment). Does one add much/anything, from … Continue reading Is there much practical security value in using passwords/usernames for postgres instances used on development machines?

How to configure openjdk for FIPS and simple postgres connection example [migrated]

I have a simple Java application running in an openjdk Docker container that is executing on a FIPS enabled host system (on a Kubernetes cluster where all nodes have FIPS enabled).
I am running a kubectl apply -f simple-java-deployment.yam… Continue reading How to configure openjdk for FIPS and simple postgres connection example [migrated]