We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, The following line make an infinite sleep when we try to start a shell inside a meterpreter session :
pymetasploit3/pymetasploit3/msfrpc.py
Line 1958 in 498d65f
The reason is that meterpreter never show the ">" character when we try to launch a shell session. We should replace the line by something like that :
res = self.run_with_output("shell") if "command not found" in res: return False else: return True
Thanks for the great work !
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
The following line make an infinite sleep when we try to start a shell inside a meterpreter session :
pymetasploit3/pymetasploit3/msfrpc.py
Line 1958 in 498d65f
The reason is that meterpreter never show the ">" character when we try to launch a shell session.
We should replace the line by something like that :
Thanks for the great work !
The text was updated successfully, but these errors were encountered: