Terminology Index
Glossary
1801 terms
Showing 705-736 of 1801 terms
Function Code Security
Securing the code inside a serverless function, validating inputs, avoiding injection and insecure dependencies, and handling secrets safely, since the function's own logic is part of the attack surface even though the platform manages the servers.
Serverless shifts infrastructure to the provider, but the function's code remains the developer's responsibility and a real attack surface. Function code security means writing functions that treat event input as untrusted, avoid injection and insecure patterns, manage secrets through a vault rather than hardcoding, and fail safely. Because functions are small and numerous, consistent secure-coding practices and scanning are how this is enforced across a serverless estate.
Introduced in: Cloud Workload Protection
Examples
- Validating event input inside a function to prevent injection.
- Retrieving a function's secrets from a vault instead of hardcoding them.
- Scanning function code for insecure patterns before deployment.
No related terms linked yet.
