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.
github.com/jordan-wright/unindexed
A Golang HTTP FileSystem that disables directory indexing.
By default, the http.Dir
filesystem has directory indexing enabled. For example, let's say you have a .git/
folder at the root of the folder you're serving. If someone were to request your_url/.git/
, the contents of the folder would be listed.
This package disables directory indexing, preventing the contents from being listed.
go get -u github.com/jordan-wright/unindexed
The easiest way to use unindexed
is as a drop-in replacement for http.Dir
, which is commonly used to serve static files.
Here's a simple example using the gorilla/mux
router:
package main
import (
"log"
"net/http"
"github.com/gorilla/mux"
"github.com/jordan-wright/unindexed"
)
func main() {
router := mux.NewRouter()
router.PathPrefix("/").Handler(http.FileServer(unindexed.Dir("../static")))
log.Fatal(http.ListenAndServe(":8080", router))
}
Other examples can be found in the examples/
directory.
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.