GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: A web-based client to manage Nessus scans.
Clone URL: git://github.com/dxoigmn/achilles.git
Add necessary files and directories.
dxoigmn (author)
Sat May 03 16:57:10 -0700 2008
commit  8dceef350094cf8d54392d19567a6142ca403e61
tree    78499dcdf342e5a2f2f6cab397078775274a67b1
parent  c1ba7274dd9a591e39160c23af8543d176cf2929
...
4
5
6
7
 
8
9
10
...
20
21
22
23
24
 
25
...
4
5
6
 
7
8
9
10
...
20
21
22
 
23
24
25
0
@@ -4,7 +4,7 @@ status :name => 'Open (Needs Remediation)', :default => true
0
 status :name => 'Closed (Remediated)'
0
 status :name => 'Logged (No Remediation Necessary)'
0
 
0
-localize :name => 'All', :cidr => '0.0.0.0/0', :as => 'World'
0
+localize :name => 'Local', :cidr => '127.0.0.1/32', :as => 'Local'
0
 
0
 classification :name => 'Compromised'
0
 classification :name => 'Full Control - Remote'
0
@@ -20,4 +20,4 @@ classification :name => 'Data Corruption'
0
 classification :name => 'System Info Disclosure'
0
 classification :name => 'Service Control'
0
 
0
-user :name => '', :locations => ['World']
0
\ No newline at end of file
0
+user :name => '', :locations => ['Local']
0
\ No newline at end of file
...
21
22
23
24
 
25
26
27
 
28
29
30
...
115
116
117
118
119
 
 
120
121
122
...
21
22
23
 
24
25
26
 
27
28
29
30
...
115
116
117
 
 
118
119
120
121
122
0
@@ -21,10 +21,10 @@ ActiveRecord::Schema.define(:version => 11) do
0
 
0
   create_table "hosts", :force => true do |t|
0
     t.string "name"
0
- t.integer "ip", :limit => 10, :default => 0, :null => false
0
+ t.integer "ip", :default => 0, :null => false
0
     t.datetime "scan_start"
0
     t.datetime "scan_end"
0
- t.integer "vulnerabilities_count", :default => 0, :null => false
0
+ t.integer "vulnerabilities_count", :default => 0, :null => false
0
     t.datetime "created_at"
0
     t.datetime "updated_at"
0
     t.integer "location_id"
0
@@ -115,8 +115,8 @@ ActiveRecord::Schema.define(:version => 11) do
0
 
0
   create_table "subnets", :force => true do |t|
0
     t.string "name"
0
- t.integer "lowest_ip_address", :limit => 10, :default => 0, :null => false
0
- t.integer "highest_ip_address", :limit => 10, :default => 4294967295, :null => false
0
+ t.integer "lowest_ip_address", :default => 0, :null => false
0
+ t.integer "highest_ip_address", :default => 4294967295, :null => false
0
     t.integer "location_id"
0
     t.datetime "created_at"
0
     t.datetime "updated_at"

Comments

    No one has commented yet.