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/philiphil/timezonemapper
Golang lib that converts from GPS coordinate latitude/longitude to timezone string.
Translated from java version, see https://github.com/drtimcooper/LatLongToTimezone .
go get -u github.com/zsefvlol/timezonemapper
package main
import (
"fmt"
"github.com/zsefvlol/timezonemapper"
"time"
)
func main() {
// Get timezone string from lat/long
timezone := timezonemapper.LatLngToTimezoneString(39.9254474,116.3870752)
// Should print "Timezone: Asia/Shanghai"
fmt.Printf("Timezone: %s\n", timezone)
// Load location from timezone
loc, _ := time.LoadLocation(timezone)
// Parse time string with location
t, _ :=time.ParseInLocation("2006-01-02 15:04:05", "2010-01-01 00:00:00", loc)
// Should print
// 2010-01-01 00:00:00 +0800 CST
// 2009-12-31 16:00:00 +0000 UTC
fmt.Println(t)
fmt.Println(t.UTC())
}
Last updated at 2019.10.22
Will update (I guess) if the original project drtimcooper/LatLongToTimezone updates.
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.