Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
github.com/lagarciag/huaweimoden
The Huawei Modem Go library provides a simple and convenient way to interact with Huawei LTE WiFi routers (MiFi) through a series of HTTP API endpoints. This library enables users to perform various operations, such as logging in, retrieving device status, sending SMS messages, and more.
To install the Huawei Modem Go library, use the following command:
go get github.com/lagarciag/huaweimodem
Here's a basic example of how to use the library to log in to the modem, get device status, and send an SMS message.
package main
import (
"fmt"
"log"
"net/http"
device "github.com/lagarciag/huaweimodem"
"go.uber.org/zap"
)
func main() {
logger, _ := zap.NewProduction()
defer logger.Sync()
sugar := logger.Sugar()
// Initialize the device
modem := device.Device{
l: sugar,
client: &http.Client{},
deviceIP: "192.168.8.1",
user: "admin",
password: "yourpassword",
}
// Login to the modem
err := modem.Login()
if err != nil {
log.Fatalf("Failed to login: %v", err)
}
defer modem.Logout()
// Get device status
status, err := modem.GetDeviceStatus()
if err != nil {
log.Fatalf("Failed to get device status: %v", err)
}
fmt.Printf("Device Status: %+v\n", status)
// Send an SMS
err = modem.SendSMS("1234567890", "Hello from Go!")
if err != nil {
log.Fatalf("Failed to send SMS: %v", err)
}
fmt.Println("SMS sent successfully")
}
This project is licensed under the MIT License - see the LICENSE file for details.
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests.
Special thanks to the open-source community and contributors.
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
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.