line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# $Id: Host.pm 18 2008-05-05 23:55:18Z jabra $ |
2
|
|
|
|
|
|
|
package MetasploitExpress::Parser::Task; |
3
|
|
|
|
|
|
|
{ |
4
|
1
|
|
|
1
|
|
1503
|
use Object::InsideOut; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
my @completed_at : Field : Arg(completed_at) : Get(completed_at); |
7
|
|
|
|
|
|
|
my @created_at : Field : Arg(created_at) : Get(created_at); |
8
|
|
|
|
|
|
|
my @created_by : Field : Arg(created_by) : Get(created_by); |
9
|
|
|
|
|
|
|
my @description : Field : Arg(description) : Get(description); |
10
|
|
|
|
|
|
|
my @error : Field : Arg(error) : Get(error); |
11
|
|
|
|
|
|
|
my @id : Field : Arg(id) : Get(id); |
12
|
|
|
|
|
|
|
my @module : Field : Arg(module) : Get(module); |
13
|
|
|
|
|
|
|
my @path : Field : Arg(path) : Get(path); |
14
|
|
|
|
|
|
|
my @progress : Field : Arg(progress) : Get(progress); |
15
|
|
|
|
|
|
|
my @result : Field : Arg(result) : Get(result); |
16
|
|
|
|
|
|
|
my @updated_at : Field : Arg(updated_at) : Get(updated_at); |
17
|
|
|
|
|
|
|
my @workspace_id : Field : Arg(workspace_id) : Get(workspace_id); |
18
|
|
|
|
|
|
|
} |
19
|
|
|
|
|
|
|
1; |