Add new command to try when starting msfrpcd.

git-svn-id: file:///home/svn/framework3/trunk@10801 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Matt Weeks 2010-10-23 23:13:12 +00:00
parent ed52da9ee9
commit cdef02c382
2 changed files with 13 additions and 9 deletions

Binary file not shown.

View File

@ -144,24 +144,28 @@ public class MsfguiApp extends SingleFrameApplication {
System.arraycopy(args, 0, winArgs, 3, args.length);
winArgs[0] = "cmd";
winArgs[1] = "/c";
File dir = new File(System.getenv("PROGRAMFILES") + "\\Metasploit\\Framework3\\bin\\");
if (msfCommand.equals("msfencode"))
winArgs[2] = "ruby.exe";
else
winArgs[2] = "rubyw.exe";
winArgs[3] = "/msf3/" + msfCommand;
proc = Runtime.getRuntime().exec(winArgs, null, dir);
} catch (IOException ex4) {
try {
File dir = new File(System.getenv("PROGRAMFILES(x86)")
+ "\\Metasploit\\Framework3\\bin\\");
winArgs[3] = msfCommand;
proc = Runtime.getRuntime().exec(winArgs);
} catch (IOException ex4){
try{
winArgs[3] = "/msf3/" + msfCommand;
File dir = new File(System.getenv("PROGRAMFILES") + "\\Metasploit\\Framework3\\bin\\");
proc = Runtime.getRuntime().exec(winArgs, null, dir);
} catch (IOException ex5) {
try {
File dir = new File(prefix);
File dir = new File(System.getenv("PROGRAMFILES(x86)") + "\\Metasploit\\Framework3\\bin\\");
proc = Runtime.getRuntime().exec(winArgs, null, dir);
} catch (IOException ex6) {
throw new MsfException("Executable not found for "+msfCommand);
try {
File dir = new File(prefix);
proc = Runtime.getRuntime().exec(winArgs, null, dir);
} catch (IOException ex7) {
throw new MsfException("Executable not found for "+msfCommand);
}
}
}
}