Changeset 1272
- Timestamp:
- 02/27/08 16:25:46 (9 months ago)
- Files:
-
- honeyclient/trunk/etc/honeyclient.xml (modified) (1 diff)
- honeyclient/trunk/lib/HoneyClient/Manager.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
honeyclient/trunk/etc/honeyclient.xml
r1253 r1272 332 332 <!-- TODO: Update this. --> 333 333 <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.dump334 manager.dump 335 335 </manager_state> 336 < compromise_dump description="When the Manager encounters a compromised VM, it will attempt to append a complete copy of the compromisedinformation to this file, if specified.">337 Compromise.dump338 </ 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> 339 339 <!-- TODO: Update this. --> 340 340 <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 752 752 $LOG->warn("VM Compromised. Last Resource (" . $fingerprint->{'last_resource'} . ")"); 753 753 754 # Dump the fingerprint to the compromisefile, if needed.754 # Dump the fingerprint to a file, if needed. 755 755 # 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"); 757 757 if (length($COMPROMISE_FILE) > 0 && 758 758 defined($fingerprint)) {
