
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
@simpleview/sv-certs-client
Advanced tools
Client for communicating with sv-certs. This npm package contains classes for communicating with the sv-certs GraphQL system.
npm install @simpleview/sv-certs-client
This section is provided to provide additional information about the GraphQL endpoints. To see the input parameters and output of each endpoint, please view the Schema in the GraphQL Explorer at https://graphql.simpleviewinc.com/.
All calls can only be made via an SV users. Bearer token must be provided in Authorization header per most sv-graphql projects.
query {
certificates(acct_id: "test-certificates") {
list {
count
docs {
acct_id
name
domains
challenge_type
active
}
}
}
}
curl
.mutation {
certificates(acct_id: "0") {
upsert(
input: [
{
name: "your_name1"
domains: ["your_url1.com", "*.your_url1.com"]
challenge_type: dns01
active: true
password: "yourpassword1"
}
{
name: "your_name2"
domains: ["your_url1.com"]
challenge_type: http01
active: true
password: "yourpassword2"
}
]
) {
success
message
results {
success
message
doc {
acct_id
name
domains
challenge_type
active
}
}
errors {
success
message
doc {
acct_id
name
domains
challenge_type
active
}
}
}
}
}
mutation {
certificates(acct_id: "0") {
remove(input: { name: "your_name1" }) {
success
message
}
}
}
FAQs
Client for communicating with sv-certs
We found that @simpleview/sv-certs-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
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 data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.