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.
zone.cogni.semanticz:irigenerator
Advanced tools
This project serves for generating IRIs using a predefined template based on existing RDF data.
This project servers for generating IRIs using a predefined template based on existing RDF data.
Having an RDF resource with an IRI:
@prefix eczm: <https://example.cogni.zone/model#> .
https://resource/2 a eczm:Two ;
eczm:year "2021" ;
eczm:sequence "0005" .
created on the frontend, we want to generate the IRI https://example.cogni.zone/2021/0005
based on:
#{[baseUri]}/#{[year]}/#{[sequence]}
baseUri
of https://example.cogni.zone
year
and sequence
PREFIX eczm: <https://example.cogni.zone/model#>
SELECT ?year ?sequence {
<#{[uri]}> eczm:year ?year ;
eczm:sequence ?sequence
}
where #{[uri]}
points to the original IRI of the resource (https://resource/2
).
To pick the correct template for the given IRI another SPARQL query is used:
PREFIX eczm: <https://example.cogni.zone/model#> .
SELECT ?uri { ?uri a eczm:Two }
The project has been extracted from Asquare and the following classes are either copies of subset of their respective Asquare counterparts:
FAQs
Unknown package
We found that zone.cogni.semanticz:irigenerator 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.