Moar Entropy Sources

Awesome initiative and questions. Please keep digging / asking.

Can you make head or tail of Monitoring the kernel entropy buffer with mrtg? Try in KVM?

mrtg is in Debian:

1 Like

Installed it and output looks good.

Not seeing the benefit of this package over running plain cat /proc/sys/kernel/random/entropy_avail. It provides an easy to read cli interface to see server stats like uptime however.

1 Like

Good idea. Done.

True. However that is a separate issue. The sake of discussion “/dev/random vs. /dev/urandom” it can be simplified:
in case of Kicksecure / Whonix: just use /dev/random

Could be posted here Moar Entropy Sources

And this list could also use an update: Entropy, Randomness, /dev/random vs /dev/urandom, Entropy Sources, Entropy Gathering Daemons, RDRAND

Such as:

  • which tools have we exhausted
    • either installed by default or
    • discouraged by their original authors
    • discouraged for other reasons
  • which tools further research is required?
  • which tools in which priority (simplicity such as already in Debian or small code; impact) could be worked on next?
1 Like

Sure.

  • Priority: generating better seeds on boot > injecting entropy from different input type > adding entropy in the same way as a currently installed tool
1 Like

By priority I mean, which software tool is worth packaging, installation by default? Which Software Package?

For example randomsound is not worth it as randomsound is being discouraged nowadays by its author [archive]. Therefore I guess we can scratch audio-entropyd too? On the other hand we could just try either randomsound and/or audio-entropyd. Randomness can never get worse. We could test if there is zero noise nowadays or if it’s still worth something.

Is timer_entropyd same as haveged or jitterentropy-rng? Or is it different?

video-entropyd

  • Do reasons that made randomsound author discourage use of randomsound nowadays [archive] also similarly apply to video-entropyd?
  • VideoEntropyd is like timer-entropyd for a ‘video-4-linux’-compatible device. E.g. a tv-card or a webcam.

  • In our security guide we recommend to disable webcams in BIOS, to cover them or even physically remove them. Therefore worth bothering with it? If a webcam was blocked with a sticker would there be any noise that would generate randomness? The author will probably say we should check for ourselves. Any contributors coming to mind up to test that? Worth it? (Would be done on the host. Not inside VM. Any entropy enhancement of the host also makes VMs benefit.)

EGD - The Entropy Gathering Daemon looks quite old already. Worth contacting its author asking if it could still be useful nowadays? Useful to redirect its output of entropy to /dev/random?

Similar: http://prngd.sourceforge.net/

Any other entropy generators?

Once there is any generator that generates randomness, I can do the polish. That is packaging, running it at early boot as daemon and redirecting the output of the randomness generator to /dev/random.

1 Like

Yes.

Needs more info to determine

I’ll ask but audio_entropyd seems to be a different implementation which doesn’t blindly copy data until it meets sufficient entropy measures

The audio-data is not copied as is but first ‘de-biased’ and analysed to determine how much bits of entropy is in it.

Not clearly known. I’ll need to ask the author to confirm. The wiki description seems to describe differing implementations of a similar concept. I guess each unique algorithm will have its own take of the same source and add more noise?

https://wiki.alpinelinux.org/wiki/Entropy_and_randomness

timer entropy d

should provide on-demand entropy based on variances in timings of sleep command.

vs

Haveged generates entropy based on CPU flutter. The entropy is buffered and fed into the entropy pool when write_wakeup_threshold is reached.

Good question for its author, but I will guess no? It depends on ever changing visual input rather than artifacts in accuracy of the recording device.

Yes. See if it does anything more than what the kernel RNG does and whether it is still useful even if it does.

Great :slight_smile:

1 Like

That has very narrow uses - just for openssl rng.


http://vladz.devzero.fr/guchaos.html Looks interesting if it can indeed safely use known random input from a webserver like random.org.

1 Like

Then let’s change the recommendation. A lot of damage can be done if attacker roots the host. They can spy using the speakers and even HDD platters and so removing access to devices in the TCB is of marginal benefit.

I don’t mind testing , but we must have some entropy measure to gauge the effectiveness.

1 Like

Maybe pollinate is similar?

https://launchpad.net/pollinate

I am skeptical about the approach of fetching entropy from remote sources.

What’s the intended benefit of the users and what use do others interpret into it? The intended benefit the by author might be “make my cloud image work” and then the security interested users might think “it’s to improve the security/entropy of my system”. Therefore we’d have to research that and perhaps ask the author if intended/tested use cases and limitations aren’t spelled out yet.

To use https securely (to connect to an entropy source) you need entropy to begin with (SSL session key). Well, I guess against adversaries who don’t try to MITM this might even improve entropy.

Is it worth the added attack surface, risk of exploitation by a compromised entropy source server?

Kernel is supposed to never worsen entropy no matter if a third party predicable source is added to and mixed with other legit entropy sources. However, how much do we want to trust this, add a potentially compromised third party remote source into the mix?

1 Like

Thanks for the many recent outreach activities!

https://www.whonix.org/pipermail/whonix-devel/2020-January/thread.html

HulaHoop via Whonix Forum:

That has very narrow uses - just for openssl rng.

It does not say that.

“offers an EGD compatible interface to obtain random data and is
intented to be used as an entropy source to feed other software,”

… “especially software based on OpenSSL.”

especially isn’t exclusively. Maybe misread.

“entropy source to feed other software” our “other software” here would
be /dev/random.

Asked about it just now:

https://www.whonix.org/pipermail/whonix-devel/2020-February/001506.html

1 Like

Indeed.

Me too. It’s just a mere curiosity. His package description made me wonder if it is possible to use a unsafe source of randomness and make it safe. I don’t think the added remote attack surface is worth it either, but something to learn about how entropy works.

If that is the case then theoretically the code could be implemented to support untrusted local hwrngs and mitigate all risks while adding value.

1 Like

turbid - High-Entropy Symbol Generator


clrngd - clock randomness gathering daemon


Got answer here:
https://www.whonix.org/pipermail/whonix-devel/2020-February/001507.html



early-rng-init-tools

1 Like

A post was merged into an existing topic: early-rng-init-tools for better entropy?

Entropy, Randomness, /dev/random vs /dev/urandom, Entropy Sources, Entropy Gathering Daemons, RDRAND

ent

sudo apt install ent

ent file_name

rngtest

sudo apt install rng-tools5

cat file_name | rngtest

dieharder

sudo apt install dieharder

dieharder -a -f file_name

PractRand

http://pracrand.sourceforge.net [archive]


timer_entropyd


randomsound


Combining Multiple Jitter Based Entropy Gathering Daemons

1 Like

https://www.chronox.de/esdm.html

1 Like
1 Like

Unrelated, can you please ask Stephan why he didn’t select BLAKE-3 hash instead? It is much faster than SHA3

1 Like

Based on load jitterentropy_rng kernel module using the kernel command line / kernel built-in jitterentropy_rng? · Issue #9 · smuellerDD/jitterentropy-rngd · GitHub it seems like Stephan is pretty relaxed about questions. Please just open a new issue under Issues · smuellerDD/jitterentropy-rngd · GitHub. Seems better if not all questions are coming from me.

Reply received:
Is `jitterentropy-rngd` daemon and/or `jitterentropy_rng.k` kernel module still useful in modern kernels? · Issue #27 · smuellerDD/jitterentropy-rngd · GitHub