Changeset 524

Show
Ignore:
Timestamp:
06/17/07 18:02:56 (1 year ago)
Author:
kindlund
Message:

Debugging

Files:

Legend:

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

    r521 r524  
    134134            <Filesystem> 
    135135                <directories_to_check description="List of base directories on the filesystem to recursively analyze.  Use a regular slash (/) instead of a backslash (\) as a directory separator character."> 
    136                     <name>C:/</name> 
     136                    <!-- <name>C:/</name> --> 
     137                    <name>C:/Temp</name> 
    137138                </directories_to_check> 
    138139                <exclude_list description="List of regular expressions that match files/directories to exclude from analysis.  These entries match files/directories that change normally during the course of driving the target application.  As such, they are excluded from analysis in order to reduce false positives.  Use a regular slash (/) instead of a backslash (\) as a directory separator character.  Never prefix any entry with a carat (^) before the drive letter, such as '^C:/', and never add the regex suffix ($) to the end of an expression, such as 'C:/Temp$'.  All comparisons are case-insensitive."> 
     
    190191            <Registry> 
    191192                <hives_to_check description="List of registry hives to analyze."> 
    192                     <name>HKEY_LOCAL_MACHINE</name> 
    193                     <name>HKEY_CLASSES_ROOT</name> 
     193                    <!-- <name>HKEY_LOCAL_MACHINE</name> 
     194                    <name>HKEY_CLASSES_ROOT</name> --> 
    194195                    <name>HKEY_CURRENT_USER</name> 
    195                     <name>HKEY_USERS</name> 
    196                     <name>HKEY_CURRENT_CONFIG</name> 
     196                    <!-- <name>HKEY_USERS</name> 
     197                    <name>HKEY_CURRENT_CONFIG</name> --> 
    197198                </hives_to_check> 
    198199                <exclude_list description="List of perl regular expressions, each matching one or more registry key directory names to exclude from analysis.  These entries match registry key directories that change normally during the course of driving the target application.  As such, they are excluded from analysis in order to reduce false positives.  As in normal regular expressions, each backslash (\) must be escaped (\\) and each regex must not end with any backslash character."> 
  • honeyclient/trunk/lib/HoneyClient/Manager.pm

    r521 r524  
    720720                        $LOG->info("All URLs exhausted.  Shutting down Manager."); 
    721721                        # Get a local copy of the configuration and kill the global copy. 
    722                         my $vmCfg = $vmCloneConfig; 
    723                         $vmCloneConfig = undef; 
    724                         $LOG->info("Calling destroyVM(config => " . $vmCfg . ")."); 
    725                         $stubVM->destroyVM(config => $vmCfg); 
    726                         print "Done!\n"; 
    727                         _cleanup(); 
     722                        #my $vmCfg = $vmCloneConfig; 
     723                        #$vmCloneConfig = undef; 
     724                        #$LOG->info("Calling destroyVM(config => " . $vmCfg . ")."); 
     725                        #$stubVM->destroyVM(config => $vmCfg); 
     726                        #print "Done!\n"; 
     727                        #_cleanup(); 
    728728 
    729729                    } else {