Merge in extapi post mixin
parent
244cf3b3f6
commit
6e43edff4c
|
@ -0,0 +1,25 @@
|
||||||
|
# -*- 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
|
Loading…
Reference in New Issue