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/goplus/gossa
support ABI0 and ABIInternal
ABI0 stack-based ABI
ABIInternal register-based Go calling convention proposal
igop.Mode ExperimentalSupportGC
experimental support runtime.GC and runtime.SetFinalizer
Go version < 1.17:
go get -u github.com/goplus/igop/cmd/igop
Go version >= 1.17:
go install github.com/goplus/igop/cmd/igop@latest
igop # igop repl mode
igop run # run a Go/Go+ package
igop build # compile a Go/Go+ package
igop test # test a package
igop verson # print version
igop export # export Go package to igop builtin package
Usage: igop run [build flags] [package] [arguments...]
-exp-gc
experimental support runtime.GC
-mod value
module download mode to use: readonly, vendor, or mod.
-ssa
print SSA instruction code
-ssa-trace
trace SSA interpreter code
-tags value
a comma-separated list of build tags to consider satisfied during the build
-v print the names of packages as they are compiled.
-x print the commands.
igop # run repl mode, support Go/Go+
igop repl # run repl mode, support Go/Go+
igop repl -go # run repl mode, disable Go+ syntax
https://github.com/goplus/ispx
package main
import (
"github.com/goplus/igop"
_ "github.com/goplus/igop/pkg/fmt"
)
var source = `
package main
import "fmt"
type T struct {}
func (t T) String() string {
return "Hello, World"
}
func main() {
fmt.Println(&T{})
}
`
func main() {
_, err := igop.RunFile("main.go", source, nil, 0)
if err != nil {
panic(err)
}
}
package main
import (
"github.com/goplus/igop"
_ "github.com/goplus/igop/gopbuild"
)
var gopSrc string = `
fields := [
"engineering",
"STEM education",
"and data science",
]
println "The Go+ language for", fields.join(", ")
`
func main() {
_, err := igop.RunFile("main.gop", gopSrc, nil, 0)
if err != nil {
panic(err)
}
}
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.