Package cn.aprilsoft.TinyAppServer.configuare.sceurity

Source Code of cn.aprilsoft.TinyAppServer.configuare.sceurity.UrlSecurityUtil

package cn.aprilsoft.TinyAppServer.configuare.sceurity;

import cn.aprilsoft.TinyAppServer.exception.ServerException;

public class UrlSecurityUtil {

    public static void checkUrlUpFolder(String url) {
        if (url.replace('\\', '/').contains("/../")) {
            throw new ServerException("Contains up folder.");
        }
    }
}
TOP

Related Classes of cn.aprilsoft.TinyAppServer.configuare.sceurity.UrlSecurityUtil

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.