
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.
clearbit-jsr-mocks
Advanced tools
A mock shim for javascript remoting (special thanks to Dan Shahin)
Use to test local versions of single page salesforce apps without deploying to server
yarn add clearbit-jsr-mocks
const yourMock = { foo: 'bar' };
const remoting = vfr(
new vfrMocks({
getAccounts: {
method: (arg) => yourMock
}
})
);
In your VF page add something like the following to resolve the names of the remote actions.
<head>
...
<script>
window.vfr = {
getAccounts: '{!$RemoteAction.AccountController.getAccounts}',
}
</script>
...
In your ES6 code, add
arg => remoting({ method: 'getAccounts', args: [arg] });
clearbit-jsr-mocks utilizes a global object named vfr
to map your short method name to the fully qualified remote action name. However, you do not have to use this, you can specify the fully qualified remote action name. However, this approach is not dynamic-namespace safe, so is not recommended.
arg => remoting({ method: 'ns.AccountController.getAccounts', args: [arg] });
FAQs
jsr-mocks
We found that clearbit-jsr-mocks 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 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.