Glossary J
7 terms starting with J
A jailbreak is an adversarial prompt technique that attempts to bypass a language model's safety guidelines and content filters to produce outputs the model would normally refuse. Jailbreaks exploit prompt framing tricks, roleplay scenarios, and encoding tricks to confuse safety mechanisms. Robustness against jailbreaks is an ongoing alignment and red-teaming challenge.
View full page →Jamstack is an architectural approach for web applications built on pre-rendered markup, client-side JavaScript, and API-based dynamic functionality — decoupled from any specific backend. Jamstack sites are served from CDNs, load instantly, and scale trivially. The term has evolved to include SSR and ISR patterns, with platforms like Netlify and Vercel defining the deployment model.
View full page →Jenkins is an open-source automation server that orchestrates CI/CD pipelines through a rich plugin ecosystem (1,800+ plugins). It supports both declarative and scripted (Groovy) pipeline-as-code via Jenkinsfiles. While Jenkins remains widely deployed in enterprises, its operational complexity and plugin maintenance burden have driven adoption toward cloud-native alternatives like GitHub Actions and GitLab CI.
View full page →JIT access eliminates standing privileged access by granting elevated permissions only when needed and for the minimum duration required. Users request elevated access, it is approved and provisioned automatically, and it expires after a defined time window. JIT access reduces the attack surface created by always-on admin accounts and is a key control in zero trust and cloud PAM strategies.
View full page →JSON is a lightweight data interchange format that's easy for humans to read and machines to parse. It's the dominant format for REST API payloads, configuration files, and data storage in document databases. JSON's simplicity (strings, numbers, booleans, arrays, objects, null) makes it universal across programming languages and platforms.
View full page →Just-in-Time (JIT) access grants users or workloads temporary elevated permissions for specific tasks on a time-limited basis rather than maintaining standing privileged access. JIT access reduces the window of exposure from compromised privileged credentials and limits insider threat risk. Cloud PAM solutions and tools like AWS SSO time-bound permission sets, Azure PIM, and Teleport implement JIT workflows with approval gates and full audit trails for privileged operations.
View full page →A JWT is a compact, URL-safe token format used to securely transmit claims between parties. JWTs are self-contained — they encode user identity, permissions, and expiration in a signed payload that doesn't require server-side session storage. They're the standard token format for OAuth 2.0 and modern authentication systems.
View full page →