Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
github.com/zanardo/fxtabs-go
Go package to collect open tabs on all Mozilla Firefox windows (from the same profile).
Tabs are collected from recovery.jsonlz4
file, where Firefox uses as a persistent backup
of open tabs, back and forward button pages, cookies, forms, and other session data.
This file is written almost in real time (there will be only some seconds delay) whenever there is a browsing/tabs action.
Import package in your project:
go get github.com/zanardo/fxtabs-go
Collect open tabs:
package main
import "github.com/zanardo/fxtabs-go"
func main() {
tabs, err := fxtabs.OpenTabs("/path/to/sessionstore-backups/recovery.jsonlz4")
if err != nil {
panic(err)
}
for _, tab := range tabs {
fmt.Printf("title: %s\n", tab.Title)
fmt.Printf("url: %s\n", tab.URL)
}
}
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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.