
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
frock-static
Advanced tools
A static file server plugin for frock
, that can source its static files from
interesting places.
A static file source can be:
It's important to note that this is not a proxy; it doesn't pass any information about your request to the data source, nor does it modify the sourced data in any way.
frockfile
ExampleIn your working directory, create a frockfile.js
:
{
"servers": [
{
"port": 8080,
"routes": [
{
"path": "/api/people",
"methods": ["GET"],
"handler": "frock-static",
"options": {
"file": "fixtures/static/people.json",
"contentType": "application/json"
}
},
{
"path": "/api/remote",
"methods": ["GET"],
"handler": "frock-static",
"options": {
"status": 201,
"url": "http://paste.prod.urbanairship.com/raw/6255",
"contentType": "application/json"
}
},
{
"path": "/api/static/*",
"methods": ["GET"],
"handler": "frock-static",
"options": {
"dir": "fixtures/static/",
"baseUrl": "/api/static/"
}
}
]
}
]
}
frock-static
also supports a shorthand syntax, which is convenient for when
you have to define a bunch of static sub-routes:
{
"servers": [
{
"port": 6070,
"routes": [
{
"path": "/api/resources/*",
"methods": ["GET"],
"handler": "frock-static",
"options": {
"routes": [
{
"path": "people",
"file": "fixtures/static/people.json"
},
{
"path": "places",
"file": "fixtures/static/places.json"
},
{
"path": "things",
"url": "https://raw.github.com/someone/something/file.json"
}
],
"contentType": "application/json"
}
}
]
}
]
}
Apache 2.0, see LICENSE for details.
FAQs
A static file server for frock
The npm package frock-static receives a total of 1 weekly downloads. As such, frock-static popularity was classified as not popular.
We found that frock-static demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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 researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.