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.
simple-boot-core
Advanced tools
const option = new CustomSimOption([GlobalAdvice]);
const simpleApplication = new SimpleApplication(AppRouter, option);
simpleApplication.run();
simpleApplication.routing<CustomRouter, CustomModule>(new Intent('/b')).then(it => {
let moduleInstance = it.getModuleInstance<B>();
moduleInstance.print();
});
@Sim()
export class AppRouter extends CustomRouter {
'' = A;
'/' = A;
'/b' = B;
notFound(url: Intent): ConstructorType<Module> | undefined {
return super.notFound(url);
}
}
@Sim()
export class B extends CustomModule {
constructor(private a: A, private option: CustomSimOption) {
super();
}
print() {
this.a.print();
console.log('bbb print')
}
err() {
this.publish(new Intent('A://gogo?a=55', 'ddddddddddd'));
this.publish(new Intent('A://gogo?bb=44&ff=44', '444'));
this.publish(new Intent('A://gogo?gg=55&sadfsdf=444', '55'));
throw new UserNotFound('good');
}
}
FAQs
front end SPA frameworks
The npm package simple-boot-core receives a total of 6 weekly downloads. As such, simple-boot-core popularity was classified as not popular.
We found that simple-boot-core 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.