# plugin-url **Repository Path**: ja-netfilter/plugin-url ## Basic Information - **Project Name**: plugin-url - **Description**: A plugin for the ja-netfilter, it can block http requests. - **Primary Language**: Java - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: https://ja-netfilter.com - **GVP Project**: No ## Statistics - **Stars**: 16 - **Forks**: 104 - **Created**: 2022-06-01 - **Last Updated**: 2025-06-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # plugin-url ### A plugin for the [ja-netfilter](https://gitee.com/ja-netfilter/ja-netfilter), it can block http requests. #### Use the `mvn clean package` command to compile and use `url-vX.X.X-jar-with-dependencies.jar` file! ## Config file: `url.conf` ``` [URL] EQUAL,https://someurl # EQUAL Use `equals` to compare # EQUAL_IC Use `equals` to compare, ignore case # KEYWORD Use `contains` to compare # KEYWORD_IC Use `contains` to compare, ignore case # PREFIX Use `startsWith` to compare # PREFIX_IC Use `startsWith` to compare, ignore case # SUFFIX Use `endsWith` to compare # SUFFIX_IC Use `endsWith` to compare, ignore case # REGEXP Use regular expressions to matchh ```