diff options
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 @@ | |||
1 | # entropy gathering commands | ||
2 | |||
3 | # Format is: "program-name args" path rate | ||
4 | |||
5 | # The "rate" represents the number of bits of usuable entropy per | ||
6 | # byte of command output. Be conservative. | ||
7 | |||
8 | "ls -alni /var/log" @PROG_LS@ 0.002 | ||
9 | "ls -alni /var/adm" @PROG_LS@ 0.002 | ||
10 | "ls -alni /var/mail" @PROG_LS@ 0.002 | ||
11 | "ls -alni /var/spool/mail" @PROG_LS@ 0.002 | ||
12 | "ls -alni /proc" @PROG_LS@ 0.002 | ||
13 | "ls -alni /tmp" @PROG_LS@ 0.002 | ||
14 | |||
15 | "netstat -an" @PROG_NETSTAT@ 0.005 | ||
16 | "netstat -in" @PROG_NETSTAT@ 0.010 | ||
17 | "netstat -rn" @PROG_NETSTAT@ 0.002 | ||
18 | "netstat -s" @PROG_NETSTAT@ 0.002 | ||
19 | |||
20 | "arp -a -n" @PROG_ARP@ 0.002 | ||
21 | |||
22 | "ifconfig -a" @PROG_IFCONFIG@ 0.002 | ||
23 | |||
24 | "ps laxww" @PROG_PS@ 0.003 | ||
25 | "ps -al" @PROG_PS@ 0.003 | ||
26 | "ps -efl" @PROG_PS@ 0.003 | ||
27 | |||
28 | "w" @PROG_W@ 0.005 | ||
29 | |||
30 | "who -i" @PROG_WHO@ 0.001 | ||
31 | |||
32 | "last" @PROG_LAST@ 0.001 | ||
33 | |||
34 | "lastlog" @PROG_LASTLOG@ 0.001 | ||
35 | |||
36 | "df" @PROG_DF@ 0.010 | ||
37 | "df -i" @PROG_DF@ 0.010 | ||
38 | |||
39 | "vmstat" @PROG_VMSTAT@ 0.010 | ||
40 | "uptime" @PROG_UPTIME@ 0.001 | ||
41 | |||
42 | "ipcs -a" @PROG_IPCS@ 0.001 | ||
43 | |||
44 | "tail -200 /var/log/messages" @PROG_TAIL@ 0.001 | ||
45 | "tail -200 /var/log/syslog" @PROG_TAIL@ 0.001 | ||
46 | "tail -200 /var/adm/messages" @PROG_TAIL@ 0.001 | ||
47 | "tail -200 /var/adm/syslog" @PROG_TAIL@ 0.001 | ||
48 | "tail -200 /var/adm/syslog/syslog.log" @PROG_TAIL@ 0.001 | ||
49 | "tail -200 /var/log/maillog" @PROG_TAIL@ 0.001 | ||
50 | "tail -200 /var/adm/maillog" @PROG_TAIL@ 0.001 | ||