Is malware less prevalent in the Apple App Store compared to the Google Play Store?

I was searching for reports about malware on the Apple App Store and only found minor ones (at least from a user’s perspective) on the first few Google search results.
Doing the same search for the Android Play Store leads to several sever… Continue reading Is malware less prevalent in the Apple App Store compared to the Google Play Store?

Is using weak random numbers for the initialization vector of AES just a theoretical issue?

I’m the maintainer of pypdf, a Python library for reading/manipulating PDF documents. I recently discovered that pypdf used random instead of secrets for …

Generating the initialization vector (IV) in AES
As part of generating the U-Val… Continue reading Is using weak random numbers for the initialization vector of AES just a theoretical issue?

Which attacks are prevented by switching the user within the docker container, given a read-only root fs?

There are recommendations to run processes as a non-privileged user within the docker container:

[…] run your processes as non-privileged users inside the container

See: docs.docker.com, also 1, 2
One reason I can see is that an attack… Continue reading Which attacks are prevented by switching the user within the docker container, given a read-only root fs?