See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
# ECDSA using P-384 and SHA-384 (NIST curve, part of CNSA Suite, and approved to protect "top secret" systems) | |
# https://apps.nsa.gov/iaarchive/library/ia-guidance/ia-solutions-for-classified/algorithm-guidance/commercial-national-security-algorithm-suite-factsheet.cfm | |
# https://tools.ietf.org/html/rfc7518#section-3.4 | |
# Generate private key | |
openssl ecparam -name secp384r1 -genkey -noout -out jwtES384key.pem | |
# Generate public key | |
openssl ec -in jwtES384key.pem -pubout -out jwtES384pubkey.pem |
Security Advisories / Bulletins / vendors Responses linked to Log4Shell (CVE-2021-44228)
#!/bin/bash | |
# 🚀 Discover More: Testing Your Firewall in 60 Seconds: A Lightweight WAF Testing Script That Anyone Can Use | |
# Learn how this script works and the best practices for WAF testing. | |
# Read the full article here: | |
# 👉 https://medium.com/@kochuraa/testing-your-firewall-in-60-seconds-a-lightweight-waf-testing-script-that-anyone-can-use-a7a725fefcb7 | |
# Safe WAF Tester Script | |
# Usage: ./waf-smoke-test.sh <URL> [-o output.md] [-H "Header: Value"] | |
# Examples: |