A simplified Elixir string-based XML processor that avoids the atom exhaustion vulnerability present with xmerl based parsers. It does so by using the SimpleForm
DOM reprsentation generated by saxy library. Unlike :xmerl
, this representation only uses strings for all details about the XML document.
This library adds some basic operations for traversing the XML document and obtaining attributes and text values.
Parsing is as straightforward as invoking the following command:
> SimpleXml.parse(~S{<foo a="1">bar</foo>})
{:ok, {"foo", [{"a", "1"}], ["bar"]}}
See SimpleXml.parse/1
for details.
XML digests and signatures can be verified via the following function.
> SimpleXml.verify(root, public_key)
We leave it up to the caller to provide the public key against which verify the signature. Please see SimpleXml.verify/2
documentation for detailed examples.
The package can be installed, via Hex, by adding simple_xml
to your list of dependencies in mix.exs
:
def deps do
[
{:simple_xml, "~> 1.0.0"}
]
end
We welcome merge requests for fixing issues or expanding functionality.
Clone and compile with:
git clone https://github.com/MBXSystems/simple_xml.git
cd simple_xml
mix deps.get
mix compile
Verify that tests and linting pass with your changes.
mix test
mix lint
All code changes should be accompanied with unit tests.
MIT License
Copyright (c) 2023 AHEAD, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.