When security vulnerabilities are discovered by researchers, proper reporting channels are often lacking. As a result, some vulnerabilities are not reported. The purpose of the security.txt
file format file is to provide security researchers the information they can use to report their findings.
Merchants can enter their contact information for security issue reporting from the Commerce Admin. For developers, the Magento_Securitytxt
module provides the following functionality:
.well-known/security.txt
and .well-known/security.txt.sig
files..well-known/security.txt
and .well-known/security.txt.sig
files.A valid security.txt
file might look like the following:
Contact: mailto:security@example.com
Contact: tel:+1-201-555-0123
Encryption: https://example.com/pgp.asc
Acknowledgement: https://example.com/security/hall-of-fame
Policy: https://example.com/security-policy.html
Signature: https://example.com/.well-known/security.txt.sig
To create the security.txt
signature (security.txt.sig
) file:
gpg -u KEYID --output security.txt.sig --armor --detach-sig security.txt
To verify the signature:
gpg --verify security.txt.sig security.txt