Imported Upstream version 2.7
[ossec-hids.git] / src / agentlessd / scripts / ssh_integrity_check_linux
1 #!/usr/bin/env expect
2
3 # @(#) $Id: ./src/agentlessd/scripts/ssh_integrity_check_linux, 2011/09/08 dcid Exp $
4
5 # Agentless monitoring
6 #
7 # Copyright (C) 2009 Trend Micro Inc.
8 # All rights reserved.
9
10 # This program is a free software; you can redistribute it
11 # and/or modify it under the terms of the GNU General Public
12 # License (version 2) as published by the FSF - Free Software
13 # Foundation.
14
15
16 # Main script.
17 source "agentless/main.exp"
18
19
20 # SSHing to the box and passing the directories to check.
21 if [catch {
22     spawn ssh $hostname
23 } loc_error] {
24     send_user "ERROR: Opening connection: $loc_error.\n"
25     exit 1;
26 }
27
28
29 source $sshsrc
30 source $susrc
31
32 set timeout 600
33 send "echo \"INFO: Starting.\"; for i in `find $args 2>/dev/null`;do tail \$i >/dev/null 2>&1 && md5=`md5sum \$i | cut -d \" \" -f 1` && sha1=`sha1sum \$i | cut -d \" \" -f 1` && echo FWD: `stat --printf \"%s:%a:%u:%g\" \$i`:\$md5:\$sha1 \$i; done; exit\r"
34 send "exit\r"
35
36 expect {
37     timeout {
38         send_user "ERROR: Timeout while running commands on host: $hostname .\n"
39         exit 1;
40     }
41     eof {
42         send_user "\nINFO: Finished.\n"
43         exit 0;
44     }
45 }
46
47 exit 0;