Join us

ContentUpdates and recent posts about Sigstore..
Link
@kala shared a link, 1 week, 3 days ago
FAUN.dev()

Qwen3.7-Plus: Multimodal Agent Intelligence

Qwen3.7-Plus is a powerful multimodal agent that seamlessly blends GUI and CLI interactions, excelling in coding, tool use, and productivity workflows. It generalizes across diverse agent frameworks, delivering competitive text performance and strong reasoning abilities across challenging STEM bench.. read more  

Qwen3.7-Plus: Multimodal Agent Intelligence
Link
@kala shared a link, 1 week, 3 days ago
FAUN.dev()

Building a Continuous Conversational Insights Pipeline in BigQuery

This deep dive reveals a cutting-edge conversational analytics pipeline using Google Cloud and BigQuery to tackle multi-departmental data segmentation challenges with a hybrid semantic filtering approach. By pre-segmenting data and running targeted models, the pipeline uncovers granular insights oft.. read more  

Link
@kala shared a link, 1 week, 3 days ago
FAUN.dev()

Top 7 Python Libraries for Large-Scale Data Processing

This article covers Python libraries that make large-scale data processing faster, more scalable, and easier to manage across modern data workflows... read more  

Top 7 Python Libraries for Large-Scale Data Processing
Link
@kala shared a link, 1 week, 3 days ago
FAUN.dev()

Introducing Claude Opus 4.8

Claude Opus 4.8 delivers top-tier performance with honest and powerful collaboration, outpacing prior models and GPT-5.5 across multiple benchmarks. Opus 4.8's cutting-edge abilities and improved judgment set a new standard for enterprise AI, enhancing reliability and reasoning quality, ready for im.. read more  

Introducing Claude Opus 4.8
Link
@kala shared a link, 1 week, 3 days ago
FAUN.dev()

Rethinking Search as Code Generation

Perplexity's engineers introduced Search as Code, and developers use its Python SDK to call low-level retrieval primitives instead of sending queries to one search endpoint... read more  

Rethinking Search as Code Generation
Link
@devopslinks shared a link, 1 week, 3 days ago
FAUN.dev()

Intel: Our upcoming AI chip will be cheaper, run cooler than Nvidia, AMD options

Intel designed Crescent Island, an AI inference GPU, with lower-cost memory and air cooling, and plans to ship limited quantities this year... read more  

Intel: Our upcoming AI chip will be cheaper, run cooler than Nvidia, AMD options
Link
@devopslinks shared a link, 1 week, 3 days ago
FAUN.dev()

Top 15 DevOps Metrics and How to Read Them

DevOps metrics show how fast & reliable your team delivers software; valuable for saving money & building trust.DORA metricsonly part of the picture. Focus on key categories to understand if overall delivery is improving. Don't just measure, find the bottleneck for real improvement... read more  

Top 15 DevOps Metrics and How to Read Them
Link
@devopslinks shared a link, 1 week, 3 days ago
FAUN.dev()

A Forged Kernel Key and a Rootful Helper: Inside the CIFSwitch Linux Privilege Escalation

A researcher disclosed CIFSwitch, a Linux local privilege escalation flaw present since 2007. Unprivileged users can exploit the CIFS Kerberos mount helper to gain root access... read more  

A Forged Kernel Key and a Rootful Helper: Inside the CIFSwitch Linux Privilege Escalation
Link
@devopslinks shared a link, 1 week, 3 days ago
FAUN.dev()

Well-architected best practices for software supply chain security

AWS security teams define npm supply-chain defense as two tasks: limit credential blast radius and block unverified artifacts before production... read more  

Well-architected best practices for software supply chain security
Link
@devopslinks shared a link, 1 week, 3 days ago
FAUN.dev()

The normal work of creating reliability

SREs should study how engineers keep systems reliable during routine work, including the adjustments they make before incidents occur. Tech teams have adoptedSafety-IIat a limited rate because they lack practical models for observing those adjustments... read more  

The normal work of creating reliability
Sigstore is an open source initiative designed to make software artifact signing and verification simple, automatic, and widely accessible. Its primary goal is to improve software supply chain security by enabling developers and organizations to cryptographically prove the origin and integrity of the software they build and distribute.

At its core, sigstore removes many of the traditional barriers associated with code signing. Instead of managing long-lived private keys manually, sigstore supports keyless signing, where identities are issued dynamically using OpenID Connect (OIDC) providers such as GitHub Actions, Google, or Microsoft. This dramatically lowers operational complexity and reduces the risk of key compromise.

The sigstore ecosystem is composed of several key components:

- Cosign: A tool for signing, verifying, and storing signatures for container images and other artifacts. Signatures are stored alongside artifacts in OCI registries, rather than embedded in them.

- Fulcio: A certificate authority that issues short-lived X.509 certificates based on OIDC identities, enabling keyless signing.

- Rekor: A transparency log that records signing events in an append-only, tamper-evident ledger. This provides public auditability and detection of suspicious or malicious signing activity.

Together, these components allow anyone to verify who built an artifact, when it was built, and whether it has been tampered with, using publicly verifiable cryptographic proofs. This aligns closely with modern supply chain security practices such as SLSA (Supply-chain Levels for Software Artifacts).

sigstore is widely adopted in the cloud-native ecosystem and integrates with tools like Kubernetes, container registries, CI/CD pipelines, and package managers. It is commonly used to sign container images, Helm charts, binaries, and SBOMs, and is increasingly becoming a baseline security requirement for production software delivery.

The project is governed by the OpenSSF (Open Source Security Foundation) and supported by major industry players.