Changeset 413

Show
Ignore:
Timestamp:
05/30/07 10:25:03 (1 year ago)
Author:
kindlund
Message:

Integration testing.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • honeyclient/branches/exp/mbriggs-db/t/honeyclient_agent_integrity_registry.t

    r176 r413  
    171171      } 
    172172    ], 
    173     'status' => 'changed'
     173    'status' => $HoneyClient::Agent::Integrity::Registry::KEY_MODIFIED
    174174    'key_name' => 'HKEY_CURRENT_USER\\Testing Group 3', 
    175175  }, 
    176176  { 
    177177    'entries' => [], 
    178     'status' => 'deleted'
     178    'status' => $HoneyClient::Agent::Integrity::Registry::KEY_DELETED
    179179    'key_name' => 'HKEY_CURRENT_USER\\Testing Group 4', 
    180180  }, 
     
    187187      } 
    188188    ], 
    189     'status' => 'changed'
     189    'status' => $HoneyClient::Agent::Integrity::Registry::KEY_MODIFIED
    190190    'key_name' => 'HKEY_CURRENT_USER\\Testing Group 5', 
    191191  }, 
     
    201201      } 
    202202    ], 
    203     'status' => 'added'
     203    'status' => $HoneyClient::Agent::Integrity::Registry::KEY_ADDED
    204204    'key_name' => 'HKEY_CURRENT_USER\\Testing Group 6', 
    205205  }, 
     
    212212      } 
    213213    ], 
    214     'status' => 'changed'
     214    'status' => $HoneyClient::Agent::Integrity::Registry::KEY_MODIFIED
    215215    'key_name' => 'HKEY_CURRENT_USER\\Testing Group 6\\With\\Really\\Deep\\Nested\\Directory\\Structure', 
    216216  }, 
     
    228228      } 
    229229    ], 
    230     'status' => 'changed'
     230    'status' => $HoneyClient::Agent::Integrity::Registry::KEY_MODIFIED
    231231    'key_name' => 'HKEY_CURRENT_USER\\Testing Group 7', 
    232232  }, 
     
    239239      } 
    240240    ], 
    241     'status' => 'deleted'
     241    'status' => $HoneyClient::Agent::Integrity::Registry::KEY_DELETED
    242242    'key_name' => 'HKEY_CURRENT_USER\\Testing Group 8\\{00021492-0000-0000-C000-000000000046}', 
    243243  }, 
     
    250250      } 
    251251    ], 
    252     'status' => 'added'
     252    'status' => $HoneyClient::Agent::Integrity::Registry::KEY_ADDED
    253253    'key_name' => 'HKEY_CURRENT_USER\\Testing Group 8\\{01021492-0000-0000-C000-000000000046}', 
    254254  }, 
     
    261261      } 
    262262    ], 
    263     'status' => 'added'
     263    'status' => $HoneyClient::Agent::Integrity::Registry::KEY_ADDED
    264264    'key_name' => 'HKEY_CURRENT_USER\\Tsting Group 9', 
    265265  } 
  • honeyclient/branches/exp/mbriggs-db/t/honeyclient_manager_db.t

    r173 r413  
    7676            { 
    7777                name => 'QuickTime Task', 
    78                 new_val => '"C:\Program Files\QuickTime\qttask.exe" -atboottime' 
     78                new_value => '"C:\Program Files\QuickTime\qttask.exe" -atboottime' 
    7979            } 
    8080        ] 
     
    166166            { 
    167167                name => 'QuickTime Task', 
    168                 new_val => '"C:\Program Files\QuickTime\qttask.exe" -atboottime' 
     168                new_value => '"C:\Program Files\QuickTime\qttask.exe" -atboottime' 
    169169            } 
    170170        ] 
     
    188188    cmp_ok($hcdb->CheckFingerprint($exploit5,$scores),'>',0,"CheckFingerprint() Success"); 
    189189    use Data::Dumper; $Data::Dumper::Indent = 1; 
    190     print 'Scores Debug: '.Dumper($scores)."\n"; 
     190    #print 'Scores Debug: '.Dumper($scores)."\n"; 
    191191 
    192192    is($hcdb->CheckFingerprint($exploit6,$scores),0,"CheckFingerprint() Fail"); 
    193193    use Data::Dumper; $Data::Dumper::Indent = 1; 
    194     print 'Scores Debug: '.Dumper($scores)."\n"; 
     194    #print 'Scores Debug: '.Dumper($scores)."\n"; 
    195195} 
    196196