package com.analysis.common.xss;
import java.util.*;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.logging.Logger;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
*
* HTML filtering utility for protecting against XSS (Cross Site Scripting).
*
* This code is licensed LGPLv3
*
* This code is a Java port of the original work in PHP by Cal Hendersen.
* http://code.iamcal.com/php/lib_filter/
*
* The trickiest part of the translation was handling the differences in regex handling
* between PHP and Java. These resources were helpful in the process:
*
* http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Pattern.html
* http://us2.php.net/manual/en/reference.pcre.pattern.modifiers.php
* http://www.regular-expressions.info/modifiers.html
*
* A note on naming conventions: instance variables are prefixed with a "v"; global
* constants are in all caps.
*
* Sample use:
* String input = ...
* String clean = new HTMLFilter().filter( input );
*
* The class is not thread safe. Create a new instance if in doubt.
*
* If you find bugs or have suggestions on improvement (especially regarding
* performance), please contact us. The latest version of this
* source, and our contact details, can be found at http://xss-html-filter.sf.net
*
* @author Joseph O'Connell
* @author Cal Hendersen
* @author Michael Semb Wever
*/
public final class HTMLFilter {
/** regex flag union representing /si modifiers in php **/
private static final int REGEX_FLAGS_SI = Pattern.CASE_INSENSITIVE | Pattern.DOTALL;
private static final Pattern P_COMMENTS = Pattern.compile("<!--(.*?)-->", Pattern.DOTALL);
private static final Pattern P_COMMENT = Pattern.compile("^!--(.*)--$", REGEX_FLAGS_SI);
private static final Pattern P_TAGS = Pattern.compile("<(.*?)>", Pattern.DOTALL);
private static final Pattern P_END_TAG = Pattern.compile("^/([a-z0-9]+)", REGEX_FLAGS_SI);
private static final Pattern P_START_TAG = Pattern.compile("^([a-z0-9]+)(.*?)(/?)$", REGEX_FLAGS_SI);
private static final Pattern P_QUOTED_ATTRIBUTES = Pattern.compile("([a-z0-9]+)=([\"'])(.*?)\\2", REGEX_FLAGS_SI);
private static final Pattern P_UNQUOTED_ATTRIBUTES = Pattern.compile("([a-z0-9]+)(=)([^\"\\s']+)", REGEX_FLAGS_SI);
private static final Pattern P_PROTOCOL = Pattern.compile("^([^:]+):", REGEX_FLAGS_SI);
private static final Pattern P_ENTITY = Pattern.compile("&#(\\d+);?");
private static final Pattern P_ENTITY_UNICODE = Pattern.compile("&#x([0-9a-f]+);?");
private static final Pattern P_ENCODE = Pattern.compile("%([0-9a-f]{2});?");
private static final Pattern P_VALID_ENTITIES = Pattern.compile("&([^&;]*)(?=(;|&|$))");
private static final Pattern P_VALID_QUOTES = Pattern.compile("(>|^)([^<]+?)(<|$)", Pattern.DOTALL);
private static final Pattern P_END_ARROW = Pattern.compile("^>");
private static final Pattern P_BODY_TO_END = Pattern.compile("<([^>]*?)(?=<|$)");
private static final Pattern P_XML_CONTENT = Pattern.compile("(^|>)([^<]*?)(?=>)");
private static final Pattern P_STRAY_LEFT_ARROW = Pattern.compile("<([^>]*?)(?=<|$)");
private static final Pattern P_STRAY_RIGHT_ARROW = Pattern.compile("(^|>)([^<]*?)(?=>)");
private static final Pattern P_AMP = Pattern.compile("&");
private static final Pattern P_QUOTE = Pattern.compile("<");
private static final Pattern P_LEFT_ARROW = Pattern.compile("<");
private static final Pattern P_RIGHT_ARROW = Pattern.compile(">");
private static final Pattern P_BOTH_ARROWS = Pattern.compile("<>");
// @xxx could grow large... maybe use sesat's ReferenceMap
private static final ConcurrentMap<String,Pattern> P_REMOVE_PAIR_BLANKS = new ConcurrentHashMap<String, Pattern>();
private static final ConcurrentMap<String,Pattern> P_REMOVE_SELF_BLANKS = new ConcurrentHashMap<String, Pattern>();
/** set of allowed html elements, along with allowed attributes for each element **/
private final Map<String, List<String>> vAllowed;
/** counts of open tags for each (allowable) html element **/
private final Map<String, Integer> vTagCounts = new HashMap<String, Integer>();
/** html elements which must always be self-closing (e.g. "<img />") **/
private final String[] vSelfClosingTags;
/** html elements which must always have separate opening and closing tags (e.g. "<b></b>") **/
private final String[] vNeedClosingTags;
/** set of disallowed html elements **/
private final String[] vDisallowed;
/** attributes which should be checked for valid protocols **/
private final String[] vProtocolAtts;
/** allowed protocols **/
private final String[] vAllowedProtocols;
/** tags which should be removed if they contain no content (e.g. "<b></b>" or "<b />") **/
private final String[] vRemoveBlanks;
/** entities allowed within html markup **/
private final String[] vAllowedEntities;
/** flag determining whether comments are allowed in input String. */
private final boolean stripComment;
private final boolean encodeQuotes;
private boolean vDebug = false;
/**
* flag determining whether to try to make tags when presented with "unbalanced"
* angle brackets (e.g. "<b text </b>" becomes "<b> text </b>"). If set to false,
* unbalanced angle brackets will be html escaped.
*/
private final boolean alwaysMakeTags;
/** Default constructor.
*
*/
public HTMLFilter() {
vAllowed = new HashMap<>();
final ArrayList<String> a_atts = new ArrayList<String>();
a_atts.add("href");
a_atts.add("target");
vAllowed.put("a", a_atts);
final ArrayList<String> img_atts = new ArrayList<String>();
img_atts.add("src");
img_atts.add("width");
img_atts.add("height");
img_atts.add("alt");
vAllowed.put("img", img_atts);
final ArrayList<String> no_atts = new ArrayList<String>();
vAllowed.put("b", no_atts);
vAllowed.put("strong", no_atts);
vAllowed.put("i", no_atts);
vAllowed.put("em", no_atts);
vSelfClosingTags = new String[]{"img"};
vNeedClosingTags = new String[]{"a", "b", "strong", "i", "em"};
vDisallowed = new String[]{};
vAllowedProtocols = new String[]{"http", "mailto", "https"}; // no ftp.
vProtocolAtts = new String[]{"src", "href"};
vRemoveBlanks = new String[]{"a", "b", "strong", "i", "em"};
vAllowedEntities = new String[]{"amp", "gt", "lt", "quot"};
stripComment = true;
encodeQuotes = true;
alwaysMakeTags = true;
}
/** Set debug flag to true. Otherwise use default settings. See the default constructor.
*
* @param debug turn debug on with a true argument
*/
public HTMLFilter(final boolean debug) {
this();
vDebug = debug;
}
/** Map-parameter configurable constructor.
*
* @param conf map containing configuration. keys match field names.
*/
public HTMLFilter(final Map<String,Object> conf) {
assert conf.containsKey("vAllowed") : "configuration requires vAllowed";
assert conf.containsKey("vSelfClosingTags") : "configuration requires vSelfClosingTags";
assert conf.containsKey("vNeedClosingTags") : "configuration requires vNeedClosingTags";
assert conf.containsKey("vDisallowed") : "configuration requires vDisallowed";
assert conf.containsKey("vAllowedProtocols") : "configuration requires vAllowedProtocols";
assert conf.containsKey("vProtocolAtts") : "configuration requires vProtocolAtts";
assert conf.containsKey("vRemoveBlanks") : "configuration requires vRemoveBlanks";
assert conf.containsKey("vAllowedEntities") : "configuration requires vAllowedEntities";
vAllowed = Collections.unmodifiableMap((HashMap<String, List<String>>) conf.get("vAl
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
本毕业设计项目是一款基于Spring Boot、Vue和MySQL构建的就业管理系统,代码总量达379个文件,涵盖202个Java源文件、57个JavaScript文件、35个Vue组件文件、24个XML配置文件、13个PNG图像文件、7个CSS样式文件、5个HTML模板文件、5个YAML配置文件、4个属性文件和4个映射文件。系统旨在为四川西南航空职业学院提供高效便捷的就业管理服务。
资源推荐
资源详情
资源评论
收起资源包目录
基于Spring Boot+Vue+MySQL的四川西南航空职业学院2023届毕业设计——就业管理系统源码 (381个子文件)
.babelrc 230B
nginx.conf 3KB
screen.css 48KB
print.css 46KB
swagger-ui.css 26KB
demo.css 8KB
style.css 4KB
iconfont.css 2KB
reset.css 978B
typography.css 0B
Dockerfile 133B
.editorconfig 147B
throbber.gif 9KB
expand.gif 73B
collapse.gif 69B
.gitignore 154B
.gitkeep 0B
demo_index.html 32KB
index.html 5KB
oauth2-redirect.html 2KB
o2c.html 566B
index.html 460B
favicon.ico 5KB
favicon.ico 4KB
favicon.ico 946B
HTMLFilter.java 20KB
SysUserEntity.java 17KB
SysUserServiceImpl.java 14KB
DateUtils.java 11KB
StringUtils.java 11KB
RealtimeMonitorDataBean.java 11KB
SysDeviceServiceImpl.java 10KB
SysMenuController.java 9KB
SysUserController.java 8KB
CloudStorageConfig.java 8KB
HttpUtils.java 6KB
ScheduleUtils.java 5KB
BaiDuUtils.java 5KB
SysClassServiceImpl.java 5KB
ScheduleJobServiceImpl.java 5KB
SysOssController.java 5KB
SysMenuEntity.java 4KB
BeanCopyUtil.java 4KB
SysRoleServiceImpl.java 4KB
BackUpUtils.java 4KB
SysPicServiceImpl.java 4KB
XssHttpServletRequestWrapper.java 4KB
ShiroConfig.java 4KB
SysRoleController.java 4KB
ChickenJob.java 4KB
SysConfigServiceImpl.java 4KB
SysRecruitInfoEntity.java 4KB
OAuth2Filter.java 3KB
ScheduleJobController.java 3KB
ScheduleJob.java 3KB
SysDeviceController.java 3KB
AliyunCloudStorageService.java 3KB
ScheduleJobEntity.java 3KB
CloudStorageService.java 3KB
SysLoginController.java 3KB
QcloudCloudStorageService.java 3KB
SysDictSonServiceImpl.java 3KB
SysCollegeController.java 3KB
EmailUtil.java 3KB
SysRoleEntity.java 3KB
SimpleHttpClient.java 3KB
SystemConstant.java 3KB
SysCaptchaServiceImpl.java 3KB
ScheduleConfig.java 3KB
SysCollegeServiceImpl.java 3KB
PageUtils.java 3KB
SysLogAspect.java 3KB
SysConfigController.java 3KB
RedisUtils.java 3KB
QiniuCloudStorageService.java 3KB
SysLogEntity.java 3KB
SysCollegeEntity.java 3KB
ScheduleJobLogEntity.java 3KB
OAuth2Realm.java 3KB
MyMetaObjectHandler.java 2KB
Query.java 2KB
SysMajorServiceImpl.java 2KB
SysMenuServiceImpl.java 2KB
SysUserService.java 2KB
SysClassEntity.java 2KB
SysDictFaServiceImpl.java 2KB
SwaggerConfig.java 2KB
SysMajorController.java 2KB
SysDictFaController.java 2KB
FileUtil.java 2KB
SysUserTokenServiceImpl.java 2KB
SysMajorEntity.java 2KB
SysRecruitInfoController.java 2KB
MonitorDataBean.java 2KB
SysClassController.java 2KB
OSSFactory.java 2KB
ShiroServiceImpl.java 2KB
IPUtils.java 2KB
SortUtil.java 2KB
RedisConfig.java 2KB
共 381 条
- 1
- 2
- 3
- 4
资源评论
csbysj2020
- 粉丝: 2750
- 资源: 5508
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功