gpt4 book ai didi

org.mule.runtime.core.api.util.xmlsecurity.XMLSecureFactories类的使用及代码示例

转载 作者:知者 更新时间:2024-03-18 07:16:40 27 4
gpt4 key购买 nike

本文整理了Java中org.mule.runtime.core.api.util.xmlsecurity.XMLSecureFactories类的一些代码示例,展示了XMLSecureFactories类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLSecureFactories类的具体详情如下:
包路径:org.mule.runtime.core.api.util.xmlsecurity.XMLSecureFactories
类名称:XMLSecureFactories

XMLSecureFactories介绍

[英]Provide XML parser factories configured to avoid XXE and BL attacks according to global configuration (safe by default)
[中]根据全局配置提供配置为避免XXE和BL攻击的XML解析器工厂(默认安全)

代码示例

代码示例来源:origin: mulesoft/mule

@Test
public void createsTheCorrectInstances() {
 XMLSecureFactories xmlSecureFactories = XMLSecureFactories.createDefault();
 // As there are casts inside, creation would fail if the appropriate type is not returned
 assertThat(xmlSecureFactories.getDocumentBuilderFactory(), notNullValue());
 assertThat(xmlSecureFactories.getSAXParserFactory(), notNullValue());
 assertThat(xmlSecureFactories.getXMLInputFactory(), notNullValue());
 assertThat(xmlSecureFactories.getTransformerFactory(), notNullValue());
}

代码示例来源:origin: mulesoft/mule

@Override
public Supplier<SAXParserFactory> getSaxParserFactory() {
 return () -> XMLSecureFactories.createDefault().getSAXParserFactory();
}

代码示例来源:origin: mulesoft/mule

@Test
public void cachesXmlFactory() {
 DocumentBuilderFactory documentBuilderFactoryOne = XMLSecureFactories.createDefault().getDocumentBuilderFactory();
 DocumentBuilderFactory documentBuilderFactoryTwo = XMLSecureFactories.createDefault().getDocumentBuilderFactory();
 assertThat(documentBuilderFactoryOne, sameInstance(documentBuilderFactoryTwo));
}

代码示例来源:origin: mulesoft/mule

@Test
 public void handlesDifferentConfigurations() {
  DocumentBuilderFactory insecureFactoryOne = XMLSecureFactories.createWithConfig(true, true).getDocumentBuilderFactory();
  DocumentBuilderFactory secureFactoryOne = XMLSecureFactories.createWithConfig(true, false).getDocumentBuilderFactory();
  DocumentBuilderFactory insecureFactoryTwo = XMLSecureFactories.createWithConfig(true, true).getDocumentBuilderFactory();
  DocumentBuilderFactory secureFactoryTwo = XMLSecureFactories.createWithConfig(true, false).getDocumentBuilderFactory();

  assertThat(insecureFactoryOne, sameInstance(insecureFactoryTwo));
  assertThat(secureFactoryOne, sameInstance(secureFactoryTwo));
  assertThat(insecureFactoryOne, not(sameInstance(secureFactoryOne)));
 }
}

代码示例来源:origin: mulesoft/mule

@Test
public void transformer() {
 TransformerFactory factory = XMLSecureFactories.createDefault().getTransformerFactory();
 assertThat(factory.getClass().getName(), equalTo("com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl"));
}

代码示例来源:origin: mulesoft/mule

@Test
public void xmlInput() {
 XMLInputFactory factory = XMLSecureFactories.createDefault().getXMLInputFactory();
 assertThat(factory.getClass().getName(), equalTo("com.sun.xml.internal.stream.XMLInputFactoryImpl"));
}

代码示例来源:origin: mulesoft/mule

@Test
 public void schema() {
  SchemaFactory factory = XMLSecureFactories.createDefault().getSchemaFactory("http://www.w3.org/2001/XMLSchema");
  assertThat(factory.getClass().getName(), equalTo("com.sun.org.apache.xerces.internal.jaxp.validation.XMLSchemaFactory"));
 }
}

代码示例来源:origin: org.mule.runtime/mule-core

public static XMLSecureFactories createDefault() {
 return new XMLSecureFactories();
}

代码示例来源:origin: mulesoft/mule

@Override
public Supplier<SAXParserFactory> getSaxParserFactory() {
 return () -> XMLSecureFactories.createDefault().getSAXParserFactory();
}

代码示例来源:origin: mulesoft/mule

@Test
public void documentBuilder() {
 DocumentBuilderFactory factory = XMLSecureFactories.createDefault().getDocumentBuilderFactory();
 assertThat(factory.getClass().getName(), equalTo("com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl"));
}

代码示例来源:origin: mulesoft/mule

private String serializeArtifact(ArtifactDeclaration artifact) {
 checkArgument(artifact != null, "The artifact to serialize cannot be null");
 try {
  Document doc = createAppDocument(artifact);
  XmlDslElementModelConverter toXmlConverter = XmlDslElementModelConverter.getDefault(doc);
  DslElementModelFactory modelResolver = DslElementModelFactory.getDefault(context);
  artifact.getGlobalElements()
    .forEach(declaration -> appendChildElement(toXmlConverter, doc.getDocumentElement(),
                          modelResolver, (ElementDeclaration) declaration));
  List<String> cDataElements = getCDataElements(doc.getDocumentElement());
  // write the content into xml file
  TransformerFactory transformerFactory = XMLSecureFactories.createDefault().getTransformerFactory();
  Transformer transformer = transformerFactory.newTransformer();
  transformer.setOutputProperty(OutputKeys.INDENT, "yes");
  transformer.setOutputProperty(OutputKeys.CDATA_SECTION_ELEMENTS, join(cDataElements, " "));
  transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
  DOMSource source = new DOMSource(doc);
  StringWriter writer = new StringWriter();
  transformer.transform(source, new StreamResult(writer));
  return writer.getBuffer().toString();
 } catch (Exception e) {
  throw new MuleRuntimeException(createStaticMessage("Failed to serialize the declaration for the artifact ["
    + artifact.getName() + "]: " + e.getMessage()), e);
 }
}

代码示例来源:origin: org.mule.services/mule-service-soap

public static XMLStreamReader stringToXmlStreamReader(String xml) throws XmlTransformationException {
  try {
   return XMLSecureFactories.createDefault().getXMLInputFactory()
     .createXMLStreamReader(new ByteArrayInputStream(xml.getBytes()));
  } catch (Exception e) {
   throw new XmlTransformationException("Could not transform xml to XmlStreamReader", e);
  }
 }
}

代码示例来源:origin: org.mule.runtime/mule-core-tests

@Test
 public void handlesDifferentConfigurations() {
  DocumentBuilderFactory insecureFactoryOne = XMLSecureFactories.createWithConfig(true, true).getDocumentBuilderFactory();
  DocumentBuilderFactory secureFactoryOne = XMLSecureFactories.createWithConfig(true, false).getDocumentBuilderFactory();
  DocumentBuilderFactory insecureFactoryTwo = XMLSecureFactories.createWithConfig(true, true).getDocumentBuilderFactory();
  DocumentBuilderFactory secureFactoryTwo = XMLSecureFactories.createWithConfig(true, false).getDocumentBuilderFactory();

  assertThat(insecureFactoryOne, sameInstance(insecureFactoryTwo));
  assertThat(secureFactoryOne, sameInstance(secureFactoryTwo));
  assertThat(insecureFactoryOne, not(sameInstance(secureFactoryOne)));
 }
}

代码示例来源:origin: org.mule.runtime/mule-core

public static XMLSecureFactories createWithConfig(Boolean externalEntities, Boolean expandEntities) {
 return new XMLSecureFactories(externalEntities, expandEntities);
}

代码示例来源:origin: org.mule.runtime/mule-core-tests

@Test
public void createsTheCorrectInstances() {
 XMLSecureFactories xmlSecureFactories = XMLSecureFactories.createDefault();
 // As there are casts inside, creation would fail if the appropriate type is not returned
 assertThat(xmlSecureFactories.getDocumentBuilderFactory(), notNullValue());
 assertThat(xmlSecureFactories.getSAXParserFactory(), notNullValue());
 assertThat(xmlSecureFactories.getXMLInputFactory(), notNullValue());
 assertThat(xmlSecureFactories.getTransformerFactory(), notNullValue());
}

代码示例来源:origin: mulesoft/mule

.loadDocument(() -> XMLSecureFactories.createDefault().getSAXParserFactory(),
       new ModuleDelegatingEntityResolver(extensions), resource.getFile(),
       new ByteArrayInputStream(resultStream.toByteArray()));

代码示例来源:origin: org.mule.services/mule-service-soap

public static Element stringToDomElement(String xml) throws XmlTransformationException {
 try {
  DocumentBuilder db = XMLSecureFactories.createDefault().getDocumentBuilderFactory().newDocumentBuilder();
  InputSource is = new InputSource();
  is.setCharacterStream(new StringReader(xml));
  return db.parse(is).getDocumentElement();
 } catch (Exception e) {
  throw new XmlTransformationException("Could not transform xml string to Dom Element", e);
 }
}

代码示例来源:origin: org.mule.runtime/mule-module-spring-config

private String serializeArtifact(ArtifactDeclaration artifact) {
 checkArgument(artifact != null, "The artifact to serialize cannot be null");
 try {
  Document doc = createAppDocument(artifact);
  XmlDslElementModelConverter toXmlConverter = XmlDslElementModelConverter.getDefault(doc);
  DslElementModelFactory modelResolver = DslElementModelFactory.getDefault(context);
  artifact.getGlobalElements()
    .forEach(declaration -> appendChildElement(toXmlConverter, doc.getDocumentElement(),
                          modelResolver, (ElementDeclaration) declaration));
  List<String> cDataElements = getCDataElements(doc.getDocumentElement());
  // write the content into xml file
  TransformerFactory transformerFactory = XMLSecureFactories.createDefault().getTransformerFactory();
  Transformer transformer = transformerFactory.newTransformer();
  transformer.setOutputProperty(OutputKeys.INDENT, "yes");
  transformer.setOutputProperty(OutputKeys.CDATA_SECTION_ELEMENTS, join(cDataElements, " "));
  transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
  DOMSource source = new DOMSource(doc);
  StringWriter writer = new StringWriter();
  transformer.transform(source, new StreamResult(writer));
  return writer.getBuffer().toString();
 } catch (Exception e) {
  throw new MuleRuntimeException(createStaticMessage("Failed to serialize the declaration for the artifact ["
    + artifact.getName() + "]: " + e.getMessage()), e);
 }
}

代码示例来源:origin: mulesoft/mule

private Document getModuleDocument(ExtensionLoadingContext context, URL resource) {
 XmlConfigurationDocumentLoader xmlConfigurationDocumentLoader =
   validateXml ? schemaValidatingDocumentLoader() : schemaValidatingDocumentLoader(NoOpXmlErrorHandler::new);
 try {
  final Set<ExtensionModel> extensions = new HashSet<>(context.getDslResolvingContext().getExtensions());
  createTnsExtensionModel(resource, extensions).ifPresent(extensions::add);
  return xmlConfigurationDocumentLoader.loadDocument(() -> XMLSecureFactories.createDefault().getSAXParserFactory(),
                            new ModuleDelegatingEntityResolver(extensions), resource.getFile(),
                            resource.openStream());
 } catch (IOException e) {
  throw new MuleRuntimeException(
                  createStaticMessage(format("There was an issue reading the stream for the resource %s",
                               resource.getFile())));
 }
}

代码示例来源:origin: org.mule.services/mule-service-soap

public static Document stringToDocument(String xml) throws XmlTransformationException {
 DocumentBuilderFactory factory = XMLSecureFactories.createDefault().getDocumentBuilderFactory();
 try {
  factory.setNamespaceAware(true);
  DocumentBuilder builder = factory.newDocumentBuilder();
  return builder.parse(new ByteArrayInputStream(xml.getBytes()));
 } catch (Exception e) {
  throw new XmlTransformationException("Could not transform xml to Dom Document", e);
 }
}

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com