File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5163,11 +5163,11 @@ def import_nessus_nbe_file(args={})
5163
5163
# There is no place the NBE actually stores the plugin name used to
5164
5164
# scan. You get "Security Note" or "Security Warning," and that's it.
5165
5165
def import_nessus_nbe ( args = { } , &block )
5166
- data = args [ :data ]
5166
+ nbe_data = args [ :data ]
5167
5167
wspace = args [ :wspace ] || workspace
5168
5168
bl = validate_ips ( args [ :blacklist ] ) ? args [ :blacklist ] . split : [ ]
5169
5169
5170
- nbe_copy = data . dup
5170
+ nbe_copy = nbe_data . dup
5171
5171
# First pass, just to build the address map.
5172
5172
addr_map = { }
5173
5173
@@ -5183,7 +5183,7 @@ def import_nessus_nbe(args={}, &block)
5183
5183
addr_map [ hname ] = addr
5184
5184
end
5185
5185
5186
- data . each_line do |line |
5186
+ nbe_data . each_line do |line |
5187
5187
r = line . split ( '|' )
5188
5188
next if r [ 0 ] != 'results'
5189
5189
hname = r [ 2 ]
You can’t perform that action at this time.
0 commit comments