Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
gopkg.in/phayes/permbits.v0
Easy file permissions for golang. Easily get and set file permission bits.
This package makes it a breeze to check and modify file permission bits in Linux, Mac, and other Unix systems.
permissions, err := permbits.Stat("/path/to/my/file")
if err != nil {
return err
}
// Check to make sure the group can write to the file
// If they can't write, update the permissions so they can
if !permissions.GroupWrite() {
permissions.SetGroupWrite(true)
err := permbits.Chmod("/path/to/my/file", permissions)
if err != nil {
return errors.New("error setting permission on file", err)
}
}
// Also works well with os.File
fileInfo, err := file.Stat()
if err != nil {
return err
}
fileMode := fileInfo.Mode()
permissions := permbits.FileMode(fileMode)
// Disable write access to the file for everyone but the user
permissions.SetGroupWrite(false)
permissions.SetOtherWrite(false)
permbits.UpdateFileMode(&fileMode, permissions)
// You can also work with octets directly
if permissions != 0777 {
return fmt.Errorf("Permissions on file are incorrect. Should be 777, got %o", permissions)
}
FAQs
Unknown package
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.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.