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.
@ale-rainbow/rainbow-notification
Advanced tools
Shared notification component for Rainbow's Web and Electron clients
This component provide a vanilla JS implementation and an associated css file. It is intended to be used by both the Web client and the Electron container.
Two classes in this module the RainbowNotification class and the RainbowNotificationAction class.
These two class are essentially "model" class which stored the notification data. But the RainbowNotification class also provided rendering ang event binding methods.
###RainbowNotification : the main class which describes the notification###
public id: string; // The notif identifier
public type: string; // The notif type 'info' or 'call'
// Originator info
public origin: string; // The notification originator (most often a contact name)
// Content stuff
public message: string; // The notification message
public mdMessage: string; // A markdown isued message (with appropriate css styling)
public avatarURL: string; // The avatarURL of the oginator
public infoTitle: string; // Additional information title
public infoMessage: string; // Additional information message
public callSubject: string; // Another additional message (used for call subject)
// AutoClose stuff
public delay: number; // The automatic close delay in ms (default : 15000ms);
public delayTimeout; // Private data to store the delay timeout object
public autoCloseAction; // The handler funct called when notif automatically close
// Action buttons
public actions: RainbowNotificationAction[]; // Array of actions
// Rendering and event binding methods
public getHTMLContent(): string; // Return the html code of the notification
public attachActionHandlers(attach: boolean = true): void // Bind/Unbind event to actions
###RainbowNotificationAction : describe a notification action###
// Action button description
public label: string; // The action button label
public color: string; // The button color ("grren", "red" or null)
public icon: string; // The icon identifier
// Multiple choice stuff
public choice: any[]; // List of choices
public choiceTitleLabel: string; // Title label choice action (optional)
public choiceCloseLabel: string; // Label for close choice action
public choiceHandler: any; // handler function for choice
Change version number in package
npm login mcordebard the pwd
npm run build
npm publish --access public
FAQs
Alcatel-Lucent Enterprise Rainbow Notification
The npm package @ale-rainbow/rainbow-notification receives a total of 73 weekly downloads. As such, @ale-rainbow/rainbow-notification popularity was classified as not popular.
We found that @ale-rainbow/rainbow-notification demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
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.