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.
github.com/nullboundary/gopenframeworks
Gopenframeworks (temporary project name) is a proof of concept exploring the possibility of using go to create a graphics framework inspired by openframeworks. All contributions to the framework are welcome, but this framework is NOT ready for use yet.
go get github.com/nullboundary/gopenframeworks
package main
import (
"fmt"
gof "github.com/nullboundary/gopenframeworks"
)
var y float32 = 100
var width float32 = 1024
var height float32 = 768
//--------------------------------------------------------------
func (app testApp) Setup() {
fmt.Println("Hello World")
gof.Background(0, 0, 0.2)
}
//--------------------------------------------------------------
func (app testApp) Update() {
y = y - 1
if y < 0 {
y = height
}
}
//--------------------------------------------------------------
func (app testApp) Draw() {
redTriangle := gof.Triangle(0, 0, 0, width, 0, 0, width/2, height, 0)
redTriangle.Fill(1, 0, 0, 1.0) //r,g,b,a
redTriangle.Draw()
cutOutRect := gof.Rectangle((width/2)-150.0, 0, 300, 300) //x,y,w,h
cutOutRect.Fill(0, 0, 0.2, 0.4) //r,g,b,a
cutOutRect.Draw()
movingLine := gof.NewLine(0, y, 0, width, y, 0)
movingLine.Fill(1, 0, 0, 1.0)
movingLine.Draw()
}
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.
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.