
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@emartech/fake-server
Advanced tools
'use strict';
const FakeServer = require('../lib');
const jwtSecret = 'token';
const jwtToken = jwt.sign({ user: 'test user' }, jwtSecret);
const app = FakeServer.createApp([
{
url: '/handshake',
authentication: {
escher: {
credentialScope: 'eu/fake-server/test_request',
keyPool: JSON.stringify([{
keyId: 'my-test-key-id_v1',
secret: 'my-secret',
acceptOnly: 0
}])
}
}
response: { payload: jwtToken }
},
{
url: '/get-list',
response: {
payload: { list: ['test', 'example'] }
},
authentication: {
jwt: { secret: jwtSecret }
}
}
]);
app.listen(9999);
Note: You don't have to provide the credentialScope
or keyPool
for escher configuration. The defaults for these properties are the SUITE_ESCHER_KEY_POOL
and SUITE_ESCHER_CREDENTIAL_SCOPE
environment variables.
FAQs
## Example
The npm package @emartech/fake-server receives a total of 0 weekly downloads. As such, @emartech/fake-server popularity was classified as not popular.
We found that @emartech/fake-server demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 68 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.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.