Managing the secrets must be considered at different levels: Source Code Level for example hard coded in source code. Repository Level for example Git/ Git Hub. Infrastructure Level for example for developing the infrastructure as code. Source Code Level To prevent to have secrects at code level, it’s enough not to write the users, passwords,Continue reading “Managing Secrets”
Category Archives: Code Quality
Fluent Validation
Security aspects in code
There are different aspects which must be considered in source code for a better code quality and security. Some of them from the past time that we didn’t upload our source code in GitHub or other code repositories like: Data injection Database connection string Some other aspects belong to nowadays that we upload code toContinue reading “Security aspects in code”
Fluent Interface
In software engineering, a fluent interface is a method for designing object oriented APIs based extensively on method chaining with the goal of making the readability of the source code close to that of ordinary written prose, essentially creating a domain-specific language within the interface [Wiki]. For example for Stablishing a connection to a databaseContinue reading “Fluent Interface”