Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

微信支付XXE xml外部实体主图漏洞 #163

Open
sitaluo opened this issue Oct 15, 2018 · 1 comment
Open

微信支付XXE xml外部实体主图漏洞 #163

sitaluo opened this issue Oct 15, 2018 · 1 comment

Comments

@sitaluo
Copy link

sitaluo commented Oct 15, 2018

No description provided.

@sitaluo
Copy link
Author

sitaluo commented Oct 15, 2018

看了下,源代码中已经做了处理了。

public final class XmlStream {
private final static String ROOT_ELEMENT_XML = "xml";
private final static String XML_VERSION = "1.0";
private final static ConcurrentHashMap<Class, JAXBContext> jaxbContexts = new ConcurrentHashMap, JAXBContext>();
private final static SAXParserFactory spf = SAXParserFactory.newInstance();
static {
try {
spf.setFeature("http://xml.org/sax/features/external-general-entities", false);
spf.setFeature("http://xml.org/sax/features/external-parameter-entities", false);
spf.setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false);
} catch (Exception e) {
;
}
}

按照微信给的demo比较好少了一个:
setFeature("http://apache.org/xml/features/disallow-doctype-decl", true);

@sitaluo sitaluo changed the title 微信支付XXE xml外部实体主图漏洞 待修复 微信支付XXE xml外部实体主图漏洞 【源代码中已经处理,忽略这条】 Oct 15, 2018
@sitaluo sitaluo changed the title 微信支付XXE xml外部实体主图漏洞 【源代码中已经处理,忽略这条】 微信支付XXE xml外部实体主图漏洞 Oct 15, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant