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/lagarciag/huaweimodem
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
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.