chenrui
2025-02-28 99755eea33cf009c36507df468c244f3be5b34c9
ruoyi-common/src/main/java/com/ruoyi/common/utils/html/EscapeUtil.java
@@ -153,15 +153,4 @@
        return tmp.toString();
    }
    public static void main(String[] args)
    {
        String html = "<script>alert(1);</script>";
        String escape = EscapeUtil.escape(html);
        // String html = "<scr<script>ipt>alert(\"XSS\")</scr<script>ipt>";
        // String html = "<123";
        // String html = "123>";
        System.out.println("clean: " + EscapeUtil.clean(html));
        System.out.println("escape: " + escape);
        System.out.println("unescape: " + EscapeUtil.unescape(escape));
    }
}