26 lines
373 B
Ruby
26 lines
373 B
Ruby
# -*- coding: binary -*-
|
|
|
|
module Msf
|
|
class Post
|
|
module Windows
|
|
|
|
module ExtAPI
|
|
|
|
def load_extapi
|
|
if session.extapi
|
|
return true
|
|
else
|
|
begin
|
|
return session.core.use("extapi")
|
|
rescue Errno::ENOENT
|
|
print_error("Unable to load Extended API.")
|
|
return false
|
|
end
|
|
end
|
|
end
|
|
|
|
end # ExtAPI
|
|
end # Windows
|
|
end # Post
|
|
end # Msf
|