Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
io.github.irgaly.xml:original-characters-stax
Advanced tools
A Stax Parser Wrapper with original texts from input XML.
A Stax Parser Wrapper with original texts from input XML.
This library is useful to parse and modify XML, with preserving original characters and original XML structures.
exmple: preserving spaces and indent tabs, don't extract &#{unicode};
, don't replace >
with >
, don't replace XML empty tag...
This is a simple wrapper to Woodstox Stax2 XML Parser.
This library is published to Maven Central Repository.
Ensure mavenCentral()
is declared.
settings.gradle.kts
dependencyResolutionManagement {
repositories {
//...
mavenCentral()
}
}
Add dependencies.
build.gradle.kts
dependencies {
implementation("io.github.irgaly.xml:original-characters-stax:1.1.0")
}
Then use library!
OriginalCharactersStaxXml class sample.
This class is a simple wrapper class to Woodstox's WstxEventReader class.
val inputStream = File("input.xml").inputStream()
val parser = OriginalCharactersStaxXmlParser(inputStream)
while (parser.hasNext()) {
val event = parser.nextEvent()
println("original text:[${event.originalText}]")
}
parser.close() // parser closes inputStream too.
parser.nextEvent() returns XmlEvent, that has both of Stax original Event and XML original Text.
event.event // Stax2's XMLEvent2
event.originalText // Original XML's Texts
That sample code's input and output is below.
input.xml
<?xml version="1.0" encoding="utf-8"?>
<!-- header comment -->
<resources>
<!-- comment1 -->
<reference>' &</reference>
<surrogate>🚭</surrogate>
<empty></empty>
</resources>
<!-- footer comment -->
outputs
original text:[<?xml version="1.0" encoding="utf-8"?>]
original text:[
]
original text:[<!-- header comment -->]
original text:[
]
original text:[<resources>]
original text:[
]
original text:[<!-- comment1 -->]
original text:[
]
original text:[<reference>]
original text:[' &]
original text:[</reference>]
original text:[
]
original text:[<surrogate>]
original text:[🚭]
original text:[</surrogate>]
original text:[
]
original text:[<empty>]
original text:[</empty>]
original text:[
]
original text:[</resources>]
original text:[
]
original text:[<!-- footer comment -->]
original text:[]
FAQs
Unknown package
We found that io.github.irgaly.xml:original-characters-stax demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.