
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
github.com/files-com/files-sdk-go/v2
The Files.com Go client library provides convenient access to the Files.com API from applications written in the Go language.
Make sure your project is using Go Modules (it will have a go.mod
file in its
root if it already is):
go mod init
Then, reference files-sdk-go in a Go program with import
:
import (
"github.com/Files-com/files-sdk-go/v2"
"github.com/Files-com/files-sdk-go/v2/folder"
)
Run any of the normal go
commands (build
/install
/test
). The Go
toolchain will resolve and fetch the files module automatically.
export FILES_API_KEY="XXXX-XXXX..."
import (
"github.com/Files-com/files-sdk-go/v2"
)
files_sdk.APIKey = "XXXX-XXXX..."
import (
"github.com/Files-com/files-sdk-go/v2"
"github.com/Files-com/files-sdk-go/v2/file"
)
config := files_sdk.Config{APIKey: "XXXX-XXXX..."}
client := file.Client{Config: config}
import (
files_sdk "github.com/Files-com/files-sdk-go/v2"
folder "github.com/Files-com/files-sdk-go/v2/folder"
"fmt"
)
func main() {
it, err := folder.ListFor(files_sdk.FolderListForParams{})
if err != nil {
// deal with error
}
for it.Next() {
entry := it.Folder()
fmt.Println(entry.Path)
}
}
import (
files_sdk "github.com/Files-com/files-sdk-go/v2"
file "github.com/Files-com/files-sdk-go/v2/file"
)
func main() {
client := file.Client{}
uploadPath := "file-to-upload.txt"
destinationPath := "file-to-upload.txt"
err := client.Upload(UploadWithFile(uploadPath), UploadWithDestinationPath(destinationPath))
if err != nil {
panic(err)
}
}
import file "github.com/Files-com/files-sdk-go/v2/file"
func main() {
client := file.Client{}
io := strings.NewReader("my file contents")
destinationPath := "my-file.txt"
err := client.Upload(UploadWithReader(io), UploadWithDestinationPath(destinationPath))
if err != nil {
panic(err)
}
}
import file "github.com/Files-com/files-sdk-go/v2/file"
func main() {
client := file.Client{}
downloadPath := "file-to-download.txt"
fileEntry, err := client.DownloadToFile(files_sdk.FileDownloadParams{Path: "file-to-download.txt"}, downloadPath)
if err != nil {
panic(err)
}
}
docker build . --tag files-sdk-go:latest
docker run --workdir /app --volume ${PWD}:/app -it files-sdk-go
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
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.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.