diff options
author | Damien Miller <djm@mindrot.org> | 2000-05-02 01:56:41 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-05-02 01:56:41 +0200 |
commit | 0437b33e54fd72060d17908d6abf96bfabaacad2 (patch) | |
tree | f4fe0e394d30b915b5647c8c6d48c86b43337c96 /ssh_prng_cmds.in | |
parent | - OpenBSD CVS update (diff) | |
download | openssh-0437b33e54fd72060d17908d6abf96bfabaacad2.tar.xz openssh-0437b33e54fd72060d17908d6abf96bfabaacad2.zip |
- Add Andre Lucas' <andre.lucas@dial.pipex.com> patch to read entropyV_2_0_0_BETA1
gathering commands from a text file
Diffstat (limited to 'ssh_prng_cmds.in')
-rw-r--r-- | ssh_prng_cmds.in | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/ssh_prng_cmds.in b/ssh_prng_cmds.in new file mode 100644 index 000000000..16ecb30bb --- /dev/null +++ b/ssh_prng_cmds.in @@ -0,0 +1,50 @@ +# entropy gathering commands + +# Format is: "program-name args" path rate + +# The "rate" represents the number of bits of usuable entropy per +# byte of command output. Be conservative. + +"ls -alni /var/log" @PROG_LS@ 0.002 +"ls -alni /var/adm" @PROG_LS@ 0.002 +"ls -alni /var/mail" @PROG_LS@ 0.002 +"ls -alni /var/spool/mail" @PROG_LS@ 0.002 +"ls -alni /proc" @PROG_LS@ 0.002 +"ls -alni /tmp" @PROG_LS@ 0.002 + +"netstat -an" @PROG_NETSTAT@ 0.005 +"netstat -in" @PROG_NETSTAT@ 0.010 +"netstat -rn" @PROG_NETSTAT@ 0.002 +"netstat -s" @PROG_NETSTAT@ 0.002 + +"arp -a -n" @PROG_ARP@ 0.002 + +"ifconfig -a" @PROG_IFCONFIG@ 0.002 + +"ps laxww" @PROG_PS@ 0.003 +"ps -al" @PROG_PS@ 0.003 +"ps -efl" @PROG_PS@ 0.003 + +"w" @PROG_W@ 0.005 + +"who -i" @PROG_WHO@ 0.001 + +"last" @PROG_LAST@ 0.001 + +"lastlog" @PROG_LASTLOG@ 0.001 + +"df" @PROG_DF@ 0.010 +"df -i" @PROG_DF@ 0.010 + +"vmstat" @PROG_VMSTAT@ 0.010 +"uptime" @PROG_UPTIME@ 0.001 + +"ipcs -a" @PROG_IPCS@ 0.001 + +"tail -200 /var/log/messages" @PROG_TAIL@ 0.001 +"tail -200 /var/log/syslog" @PROG_TAIL@ 0.001 +"tail -200 /var/adm/messages" @PROG_TAIL@ 0.001 +"tail -200 /var/adm/syslog" @PROG_TAIL@ 0.001 +"tail -200 /var/adm/syslog/syslog.log" @PROG_TAIL@ 0.001 +"tail -200 /var/log/maillog" @PROG_TAIL@ 0.001 +"tail -200 /var/adm/maillog" @PROG_TAIL@ 0.001 |