
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
better-multiselect
Advanced tools
I like macos finder's multiselect. For some reason no one gets this right for lists of items on the web.
I like macos finder's multiselect. For some reason no one gets this right for lists of items on the web.
Multiselect
tracks the selection state for various kinds of clicks so
selection doesn't feel broken.
class Example extends React.Component {
constructor() {
super()
this.selection = new Multiselect()
}
onClick(event, index) {
console.log('click', index)
if (event.metaKey) {
this.selection.commandClick(index)
} else if (event.shiftKey) {
this.selection.shiftClick(index)
} else {
this.selection.click(index)
}
this.forceUpdate()
}
render() {
const indexes = []
for (var i = 0; i < 100; i++) {
indexes.push(i)
}
const elements = []
indexes.forEach((i) => {
let style = {height: '16px', userSelect: 'none', '-webkit-user-select': 'none'}
if (this.selection.isSelected(i)) {
style.backgroundColor = 'blue'
style.color = 'white'
}
elements.push(
<div key={i} style={style} onClick={(event) => { this.onClick(event, i) }}>
element - {i}
</div>
)
})
return (
<div>
{elements}
</div>
)
}
}
ReactDOM.render(
<Example/>,
document.getElementById('root')
)
FAQs
I like macos finder's multiselect. For some reason no one gets this right for lists of items on the web.
The npm package better-multiselect receives a total of 0 weekly downloads. As such, better-multiselect popularity was classified as not popular.
We found that better-multiselect 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.