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.
Couillard is a small trebuchet you aim and launch at your users. It's a lean A/B testing tool to validate hypotheses and determine what to build.
yarn add couillard
// Your metrics store, can be Segment, Amplitude, SQL, mongo, or whatever you like.
const saveMetrics = metrics =>
fetch('...', {
method: 'POST',
body: JSON.stringify(metrics)
})
// Create variation A component.
const WelcomeA = props => (
<p>
Welcome I'm experiment A, {props.name},
<button onClick={hit('welcome', saveMetrics)}>Click Me</button>
</p>
)
// Create variation B component.
const WelcomeB = props => (
<p>
Welcome I'm experiment B, {props.name},
<button onClick={hit('welcome', saveMetrics)}>Click Me</button>
</p>
)
// Aim your experiment at your users.
const Welcome = aim('welcome', 50, saveMetrics, {
A: WelcomeA,
B: WelcomeB
})
// Only WelcomeA or WelcomeB will render.
const Home = () => {
launch('welcome', saveMetrics)
return (
<div class={style.home}>
<h1>Home</h1>
<Welcome name="Jannette" />
</div>
)
}
export Home
FAQs
Couillard is a small trebuchet, you aim, and launch at your users.
We found that couillard 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.