Changeset 53

Show
Ignore:
Timestamp:
11/30/06 03:04:02 (2 years ago)
Author:
kindlund
Message:

more debugging

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • honeyclient/branches/bug/42/lib/HoneyClient/Agent/Integrity.pm

    r52 r53  
    252252    '\[HKEY_LOCAL_MACHINE\SOFTWARE\\\Microsoft\\\Windows\\\CurrentVersion\\\WindowsUpdate\\\Reporting\\\EventCache\\\.*\]', 
    253253    '\[HKEY_LOCAL_MACHINE\SOFTWARE\\\Microsoft\\\Windows\\\CurrentVersion\\\WindowsUpdate\\\Reporting\\\EventCache\\\.+\]', 
     254    '\[HKEY_CURRENT_USER\\\Software\\\Microsoft\\\Windows\\\CurrentVersion\\\Explorer\\\MountPoints2\\\CPC\\\Volume\]' 
    254255    '\[HKEY_CURRENT_USER\\\Software\\\Microsoft\\\Windows\\\CurrentVersion\\\Explorer\\\MountPoints2\\\CPC\\\Volume\\\.*\]' 
     256    '\[HKEY_USERS\\\S.+\\\Software\\\Microsoft\\\Windows\\\CurrentVersion\\\Explorer\\\MountPoints2\\\CPC\\\Volume\]', 
     257    '\[HKEY_USERS\\\S.+\\\Software\\\Microsoft\\\Windows\\\CurrentVersion\\\Explorer\\\MountPoints2\\\CPC\\\Volume\\\.*\]', 
    255258); 
    256259 
     
    15021505 
    15031506    foreach my $exclude_key (@{$self->{reg_exclude_array}}){ 
    1504 ###       print "trying to match $enclosing_key against exclude key $exclude_key\n"; 
     1507      print "trying to match $enclosing_key against exclude key $exclude_key\n"; 
    15051508        if($enclosing_key =~ /$exclude_key/){ 
    1506 ###           print "SUCCESS! I'm outta here!\n"; 
     1509          print "SUCCESS! I'm outta here!\n"; 
    15071510            return $start_line; 
    15081511        }