Skip to content

Commit ffa84ef

Browse files
committed
fix msf rpc port defaults
1 parent 3039abc commit ffa84ef

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

cSploit/src/org/csploit/android/core/System.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,11 +180,12 @@ public static void init(Context context) throws Exception{
180180
HTTP_PROXY_PORT = Integer.parseInt(getSettings().getString("PREF_HTTP_PROXY_PORT", "8080"));
181181
HTTP_SERVER_PORT = Integer.parseInt(getSettings().getString("PREF_HTTP_SERVER_PORT", "8081"));
182182
HTTPS_REDIR_PORT = Integer.parseInt(getSettings().getString("PREF_HTTPS_REDIRECTOR_PORT", "8082"));
183-
MSF_RPC_PORT = Integer.parseInt(getSettings().getString("MSF_RPC_PORT", "5553"));
183+
MSF_RPC_PORT = Integer.parseInt(getSettings().getString("MSF_RPC_PORT", "55553"));
184184
} catch(NumberFormatException e){
185185
HTTP_PROXY_PORT = 8080;
186186
HTTP_SERVER_PORT = 8081;
187187
HTTPS_REDIR_PORT = 8082;
188+
MSF_RPC_PORT = 55553;
188189
}
189190

190191
// initialize network data at the end

0 commit comments

Comments
 (0)