
Research
/Security News
Intercom’s npm Package Compromised in Ongoing Mini Shai-Hulud Worm Attack
Compromised intercom-client@7.0.4 npm package is tied to the ongoing Mini Shai-Hulud worm attack targeting developer and CI/CD secrets.
@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 41 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.

Research
/Security News
Compromised intercom-client@7.0.4 npm package is tied to the ongoing Mini Shai-Hulud worm attack targeting developer and CI/CD secrets.

Research
Socket detected a malicious supply chain attack on PyPI package lightning versions 2.6.2 and 2.6.3, which execute credential-stealing malware on import.

Research
A brand-squatted TanStack npm package used postinstall scripts to steal .env files and exfiltrate developer secrets to an attacker-controlled endpoint.