Changeset 1272

Show
Ignore:
Timestamp:
02/27/08 16:25:46 (9 months ago)
Author:
kindlund
Message:

Renamed Compromise.dump to fingerprint.dump, for readability.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • honeyclient/trunk/etc/honeyclient.xml

    r1253 r1272  
    332332        <!-- TODO: Update this. --> 
    333333        <manager_state description="Upon termination, the Manager will attempt to append a complete copy of its state into this file, if specified." default=""> 
    334             Manager.dump 
     334            manager.dump 
    335335        </manager_state> 
    336         <compromise_dump description="When the Manager encounters a compromised VM, it will attempt to append a complete copy of the compromised information to this file, if specified."> 
    337             Compromise.dump 
    338         </compromise_dump> 
     336        <fingerprint_dump description="When the Manager encounters a suspicious VM, it will attempt to append a complete copy of the fingerprint information to this file, if specified."> 
     337            fingerprint.dump 
     338        </fingerprint_dump> 
    339339        <!-- TODO: Update this. --> 
    340340        <address description="The IP or hostname that all Manager modules should use, when accepting SOAP requests." default="localhost"> 
  • honeyclient/trunk/lib/HoneyClient/Manager.pm

    r1271 r1272  
    752752                    $LOG->warn("VM Compromised. Last Resource (" . $fingerprint->{'last_resource'} . ")"); 
    753753 
    754                     # Dump the fingerprint to the compromise file, if needed. 
     754                    # Dump the fingerprint to a file, if needed. 
    755755                    # XXX: May want to change this format/usage, eventually. 
    756                     my $COMPROMISE_FILE = getVar(name => "compromise_dump"); 
     756                    my $COMPROMISE_FILE = getVar(name => "fingerprint_dump"); 
    757757                    if (length($COMPROMISE_FILE) > 0 && 
    758758                        defined($fingerprint)) {