Files
metasploit-gs/lib/msf/core/rpc/core.rb
T
HD Moore 71c5175a85 This patch introduces a really basic RPC service. It is still a long way from its final version
git-svn-id: file:///home/svn/framework3/trunk@5991 4d416f70-5f16-0410-b530-b9f4589650da
2008-12-02 22:09:34 +00:00

13 lines
146 B
Ruby

module Msf
module RPC
class Core < Base
def version(token)
authenticate(token)
{ "version" => ::Msf::Framework::Version }
end
end
end
end