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.
In-house Geoserver written in Node.JS.
Methods: POST
Endpoint: /api/v1/boundary/intersect
Get boundaries that intersect with a given geometry structure. Or in other words return POLYGONS that a given geometry is a part of / inside of.
curl -X POST \
-H "Content-Type: Application/Json" \
-d '{"geojson": { "type": "LineString", "coordinates": [[ 5.32907, 60.39826 ], [ 6.41474, 60.62869 ]] }}' \
"/api/v1/boundary/intersect"
Has the corresponding output of:
{
"områder": [
{ "_id": "52408144e7926dcf1500004b", "navn": "Stølsheimen, Bergsdalen og Vossefjellene" },
{ "_id": "52408144e7926dcf15000025", "navn": "Byfjellene i Bergen" },
{ "_id": "52408144e7926dcf15000035", "navn": "Nordhordland" }
],
"fylker": [
"Hordaland"
],
"kommuner": [
"Samnanger",
"Vaksdal",
"Osterøy",
"Bergen",
"Voss"
]
}
Methods: POST
Endpoint: /api/v1/line/analyze
Analyze a LineString and return some interesting properties.
curl -X POST \
-H "Content-Type: Application/Json" \
-d '{"geojson": { "type": "LineString", "coordinates": [[ 5.32907, 60.39826 ], [ 6.41474, 60.62869 ]] }}' \
"/api/v1/line/analyze"
Has the corresponding output of:
{
"length": 64781,
"geojson": {
"type": "LineString",
"coordinates": [[ 5.32907, 60.39826 ], [ 6.41474, 60.62869 ]],
"properties": {
"start": { "type": "Point", "coordinates": [ 5.32907, 60.39826 ] },
"stop": { "type": "Point", "coordinates": [ 6.41474, 60.62869 ] }
}
}
}
FAQs
Geoserver written in Node.JS
The npm package geoserver receives a total of 21 weekly downloads. As such, geoserver popularity was classified as not popular.
We found that geoserver demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.