diff options
Diffstat (limited to 'other/openssh-reverse/ssh_prng_cmds')
| -rw-r--r-- | other/openssh-reverse/ssh_prng_cmds | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/other/openssh-reverse/ssh_prng_cmds b/other/openssh-reverse/ssh_prng_cmds new file mode 100644 index 0000000..0faeda8 --- /dev/null +++ b/other/openssh-reverse/ssh_prng_cmds | |||
| @@ -0,0 +1,51 @@ | |||
| 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" 0.02 | ||
| 9 | "ls -alni /var/adm" 0.02 | ||
| 10 | "ls -alni /var/mail" 0.02 | ||
| 11 | "ls -alni /var/spool/mail" 0.02 | ||
| 12 | "ls -alni /proc" 0.02 | ||
| 13 | "ls -alni /tmp" 0.02 | ||
| 14 | |||
| 15 | "netstat -an" 0.05 | ||
| 16 | "netstat -in" 0.05 | ||
| 17 | "netstat -rn" 0.02 | ||
| 18 | "netstat -pn" 0.02 | ||
| 19 | "netstat -s" 0.02 | ||
| 20 | |||
| 21 | "arp -a -n" 0.02 | ||
| 22 | |||
| 23 | "ifconfig -a" 0.02 | ||
| 24 | |||
| 25 | "ps laxww" 0.03 | ||
| 26 | "ps -al" 0.03 | ||
| 27 | "ps -efl" 0.03 | ||
| 28 | |||
| 29 | "w" 0.05 | ||
| 30 | |||
| 31 | "who -i" 0.01 | ||
| 32 | |||
| 33 | "last" 0.01 | ||
| 34 | |||
| 35 | "lastlog" 0.01 | ||
| 36 | |||
| 37 | "df" 0.01 | ||
| 38 | "df -i" 0.01 | ||
| 39 | |||
| 40 | "vmstat" 0.01 | ||
| 41 | "uptime" 0.01 | ||
| 42 | |||
| 43 | "ipcs -a" 0.01 | ||
| 44 | |||
| 45 | "tail -200 /var/log/messages" 0.01 | ||
| 46 | "tail -200 /var/log/syslog" 0.01 | ||
| 47 | "tail -200 /var/adm/messages" 0.01 | ||
| 48 | "tail -200 /var/adm/syslog" 0.01 | ||
| 49 | "tail -200 /var/adm/syslog/syslog.log" 0.01 | ||
| 50 | "tail -200 /var/log/maillog" 0.01 | ||
| 51 | "tail -200 /var/adm/maillog" 0.01 | ||
