All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cybermkd.icewall.attack.MongoInjection Maven / Gradle / Ivy

The newest version!
package com.cybermkd.icewall.attack;

import org.apache.commons.lang.StringUtils;

/**
 * Mongodb防注入
 */
public class MongoInjection implements Istrip {

    private static String[] blackList={"{", "}", "$ne", "$gte", "$gt", "$lt", "$lte", "$in", "$nin", "$exists", "$where", "tojson", "==", "db.","$where"};
    /**
     * @param value 待处理内容
     * @return
     * @Description MongoDB防注入
     */
    @Override
    public String strip(String value) {


        for (int i=0;i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy