
Security News
libxml2 Maintainer Ends Embargoed Vulnerability Reports, Citing Unsustainable Burden
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
github.com/iij/doapi
DO is IIJ DNS outsource service.
package main
// Usage:
// export IIJAPI_ACCESS_KEY=<YOUR ACCESSS KEY>
// export IIJAPI_SECRET_KEY=<YOUR SECRET KEY>
// export DOSERVICECODE=<YOUR DO CODE>
import (
"log"
"os"
"github.com/iij/doapi"
"github.com/iij/doapi/protocol"
)
func main() {
api := doapi.NewAPI(os.Getenv("IIJAPI_ACCESS_KEY"), os.Getenv("IIJAPI_SECRET_KEY"))
// List zones
request := protocol.ZoneListGet{ DoServiceCode: os.Getenv("DOSERVICECODE"), }
response := protocol.ZoneListGetResponse{}
if err := doapi.Call(*api, request, &response); err == nil {
for _, zone := range response.ZoneList {
log.Println("zone", zone)
}
}
}
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
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
Research
Security News
Socket investigates hidden protestware in npm packages that blocks user interaction and plays the Ukrainian anthem for Russian-language visitors.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.