
Security News
curl Shuts Down Bug Bounty Program After Flood of AI Slop Reports
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.
A go client for the Interlink Configuration Management Database HTTP API.
An example of how to use is below:
// import the library
package main
import "southwinds.dev/interlink-client"
func main() {
// prepares the client configuration
cfg := &ilink.ClientConf{
BaseURI: "http://localhost:8080",
InsecureSkipVerify: true,
AuthMode: ilink.Basic,
Username: "admin",
Password: "0n1x",
// uncomment below & reset configuration vars
// to test using an OAuth bearer token
// AuthMode: OIDC,
// TokenURI: "https://dev-447786.okta.com/oauth2/default/v1/token",
// ClientId: "0oalyh...356",
// AppSecret: "Tsed........OP0oEf9H7",
}
// create an instance of the web api client
client, err := ilink.NewClient(cfg)
if err != nil {
panic(err)
}
// create a new model
model := &ilink.Model {
Key: "test_model",
Name: "Test Model",
Description: "Test Model",
}
// put the model
result, err := client.PutModel(model)
if err != nil {
panic(err)
}
if result.Error {
panic(result.Message)
}
}
// create an instance of the client
func createClient() *ilink.Client {
client, err := ilink.NewClient(&ilink.ClientConf{
BaseURI: "http://localhost:8080",
InsecureSkipVerify: true,
AuthMode: ilink.Basic,
Username: "admin",
Password: "0n1x",
// uncomment below & reset configuration vars
// to test using an OAuth bearer token
// AuthMode: OIDC,
// TokenURI: "https://dev-447786.okta.com/oauth2/default/v1/token",
// ClientId: "0oalyh...356",
// AppSecret: "Tsed........OP0oEf9H7",
})
if err != nil { panic(err) }
return client
}
More examples can be found here.
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
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.

Product
Scan results now load faster and remain consistent over time, with stable URLs and on-demand rescans for fresh security data.

Product
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.