root/honeyclient/branches/rel/1.1/bin/identify_clients.sh

Revision 1531, 302 bytes (checked in by kindlund, 7 months ago)

Updated utility script.

  • Property svn:executable set to *
Line 
1 #!/bin/bash
2
3 DATASTORE_PATH="/vm/clones"
4 #DATASTORE_PATH="/vm/suspicious"
5 LIST=$(find $DATASTORE_PATH -maxdepth 1 -mindepth 1 -type d -exec basename {} \;)
6
7 for VM in $LIST ; do
8     echo -n $VM
9     perl -Ilib bin/identify_client.pl $VM && echo " - Not In Database" || echo " - Exists In Database"
10 done
Note: See TracBrowser for help on using the browser.