Closed. This question needs to be more focused. It is not currently accepting answers. Learn more。
想改进这个问题吗?更新问题,使其只关注一个问题editing this post。
两年前关闭。
我在我的服务器上找到了这个代码
我希望你这里没有重要的数据;-)!
想改进这个问题吗?更新问题,使其只关注一个问题editing this post。
两年前关闭。
sun.misc.BASE64Decoder TGJfB = new sun.misc.BASE64Decoder();
byte[] htIVP = TGJfB.decodeBuffer("cm0gL3RtcC95Z0ZEN0I=");
String [] PHaar = new String[3];
PHaar[0] = "/bin/sh";
PHaar[1] = "-c";
PHaar[2] = new String(htIVP, "UTF-8");
Runtime.getRuntime().exec(PHaar);
我在我的服务器上找到了这个代码
最佳答案
base64编码字符串包含此明文:cm0gL3RtcC95Z0ZEN0I=
与该代码等价的是在shell中执行此操作:
/bin/sh -c 'rm /tmp/ygFD7B'
我希望你这里没有重要的数据;-)!
关于linux - Groovy函数的作用是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47138300/
10-09 05:20