mirror of
https://github.com/jtesta/ssh-audit.git
synced 2024-11-16 13:35:39 +01:00
10 lines
235 B
Bash
Executable File
10 lines
235 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This script is run on in docker container. It will enable logging for sshd in
|
|
# /var/log/auth.log.
|
|
|
|
/etc/init.d/rsyslog start
|
|
sleep 1
|
|
/openssh/sshd-5.6p1 -o LogLevel=DEBUG3 -f /etc/ssh/sshd_config-5.6p1_test1
|
|
/bin/bash
|