post/windows/manage/persistence_exe: fix service creation

Fixes service creation when in post/windows/manage/persistence_exe
bug/bundler_fix
Jannis Pohl 2017-09-23 23:48:50 +02:00 committed by GitHub
parent e8eeb784e4
commit 48188e999e
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ class MetasploitModule < Msf::Post
print_status("Installing as service..")
nam = Rex::Text.rand_text_alpha(rand(8) + 8)
print_status("Creating service #{nam}")
service_create(nam, nam, "cmd /c \"#{script_on_target}\"")
service_create(nam, :path=>"cmd /c \"#{script_on_target}\"")
@clean_up_rc << "execute -H -f sc -a \"delete #{nam}\"\n"
else
print_error("Insufficient privileges to create service")