line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# $Id: Issue.pm 18 2008-05-05 23:55:18Z jabra $ |
2
|
|
|
|
|
|
|
package Burpsuite::Parser::Issue; |
3
|
|
|
|
|
|
|
{ |
4
|
|
|
|
|
|
|
our $VERSION = '0.01'; |
5
|
|
|
|
|
|
|
$VERSION = eval $VERSION; |
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
2416
|
use Object::InsideOut; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
10
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
my @serial_number : Field : Arg(serial_number) : Get(serial_number); |
10
|
|
|
|
|
|
|
my @name : Field : Arg(name) : Get(name); |
11
|
|
|
|
|
|
|
my @host : Field : Arg(host) : Get(host); |
12
|
|
|
|
|
|
|
my @path : Field : Arg(path) : Get(path); |
13
|
|
|
|
|
|
|
my @location : Field : Arg(location) : Get(location); |
14
|
|
|
|
|
|
|
my @severity : Field : Arg(severity) : Get(severity); |
15
|
|
|
|
|
|
|
my @confidence : Field : Arg(confidence) : Get(confidence); |
16
|
|
|
|
|
|
|
my @issue_background : Field : Arg(issue_background) : Get(issue_background); |
17
|
|
|
|
|
|
|
my @issue_detail : Field : Arg(issue_detail) : Get(issue_detail); |
18
|
|
|
|
|
|
|
my @remediation_background : Field : Arg(remediation_background) : Get(remediation_background); |
19
|
|
|
|
|
|
|
my @type : Field : Arg(type) : Get(type); |
20
|
|
|
|
|
|
|
my @request : Field : Arg(request) : Get(request); |
21
|
|
|
|
|
|
|
my @response : Field : Arg(response) : Get(response); |
22
|
|
|
|
|
|
|
} |
23
|
|
|
|
|
|
|
1; |