Challenge - 5 Problems
OCSP Stapling Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
💻 Command Output
intermediate1:30remaining
OCSP Stapling Status Check
You run the command
openssl s_client -connect example.com:443 -status to check OCSP stapling on a server. What output indicates that OCSP stapling is working correctly?Attempts:
2 left
💡 Hint
Look for a message that confirms the OCSP response is valid and verified.
✗ Incorrect
The message 'Response verify OK' means the server sent a valid OCSP response, confirming stapling is working.
❓ Configuration
intermediate2:00remaining
Enable OCSP Stapling in Nginx
Which Nginx configuration snippet correctly enables OCSP stapling for a server block?
Attempts:
2 left
💡 Hint
You need to enable stapling and verification, and specify a valid resolver.
✗ Incorrect
Option C correctly enables OCSP stapling and verification and sets public DNS resolvers with timeout.
❓ Troubleshoot
advanced1:30remaining
Troubleshooting OCSP Stapling Failures
After enabling OCSP stapling, your Nginx error log shows:
no responder URL in OCSP response. What is the most likely cause?Attempts:
2 left
💡 Hint
Think about what the OCSP response needs to include to be valid.
✗ Incorrect
If the certificate lacks an OCSP responder URL, Nginx cannot fetch the OCSP response, causing this error.
🔀 Workflow
advanced2:00remaining
OCSP Stapling Renewal Workflow
Which sequence correctly describes the steps Nginx follows to maintain OCSP stapling during operation?
Attempts:
2 left
💡 Hint
Think about fetching, caching, serving, then renewing the OCSP response.
✗ Incorrect
Nginx first fetches the OCSP response, caches it, serves it during TLS handshakes, and renews it before expiry.
✅ Best Practice
expert2:00remaining
Best Practice for OCSP Stapling Resolver Configuration
Which resolver configuration is best practice for OCSP stapling in Nginx to ensure reliability and security?
Attempts:
2 left
💡 Hint
Use public, reliable DNS servers for OCSP resolver settings.
✗ Incorrect
Using public DNS servers like Google's 8.8.8.8 and 8.8.4.4 ensures reliable OCSP response fetching.