Is clean and secure code a myth or a reality? |
Is clean and secure code a myth or a reality? One of the components of the smooth operation of any applications (in addition to stable servers, balanced load, etc.) is clean code. However, is pure code possible in real life, or are these just the dreams of programmers? Where do vulnerabilities come from and how to avoid bugs? "Programming is the art of telling another person what they want from a computer" Donald Knuth What is pure code? However, real programming is much more complicated: no matter what you do, it's hard to avoid mistakes. Doubts about your own professional aptitude continue to grow, and a mistake that you thought would take five minutes to fix eventually takes hours. In addition, the function that you were going to implement has turned into a serious problem for the project.
Clean code is objectively good code. It is written as succinctly and elegantly as possible, without duplication. It is structured in such a way that it is easy to read by both people and computers. Everyone can write code that is understandable to a computer, but only a good programmer can write code that is understandable to a person. Carelessly written code is expensive, and it takes a lot of time and effort to maintain it. In addition, the code is more prone to errors that can cause the program to crash. It should be understood that pure code is a product of collaboration, when everyone in the team needs to understand the code. This optimizes the work in case of a change in the team composition and greatly simplifies refactoring and debugging. Basic concepts Debugging is the correction of errors in the code. Nevertheless, even pure code has an expiration date. Software and computing exist in a rapidly changing landscape. Code that used to be clean is becoming obsolete. Basic concepts As a result, despite the fact that the codebase may be initially clean, the need to scale, make changes and the emergence of new requirements may lead to its contamination. Criteria by which the code can be considered clean: Lack of code redundancy Minimum dependencies Minimum extensions Functionality and readability of the code Code Analysis Code quality and security Why is security taking a back seat? It should be borne in mind that vulnerable code poses a threat not only to the user, but also to the developer. Modern operating systems and applications are connected via the Internet and are regularly updated. In most cases, these updates are made not only to add additional features, but also to fix bugs. Updates make the system more resistant to new malware. We wrote more about the need for updates in the analytical review. Because of vulnerabilities in the code, hackers make attacks on devices. So, they can steal information, interfere with the operation of the device or delete all important information for you. Code vulnerabilities Ensuring the security of the application is primarily the task of the developer, who from the first lines of writing the product code should take care of the security of the product and users. Information security specialists can help improve the code by searching for vulnerabilities that need to be closed. In an ideal world, the developer (independently or with the involvement of specialists) tests the product for penetration, using the most popular and new hacking methods, and then analyzes the result and draws conclusions. Code quality and code security are not the same thing, but they are closely related. And in the current cyber threat environment, developers have to take care of both. It's easier to write good code right away than to fix security-affecting bugs that need to be found first, ahead of the attackers. Perfect code, unfortunately, is not always possible, but it is important to try to write code as cleanly as possible. It is necessary to constantly improve your skills and learn. Below we have collected useful resources that will help you master the skill of safe and clean coding. Useful resources The book is written in simple language, so even a novice programmer can master it. It is recommended to read the book to people who are just beginning to master the profession, because it is important to learn the principles of writing the right code at the very beginning of work. "Refactoring. Improving Existing Code", Martin Fowler The book is intended for both relatively new developers. She will show senior developers how to teach refactoring to others. "Code Complete", by Steve McConnell This book will be useful for developers with 3-5 years of experience. It should be borne in mind that in some places it is frankly outdated and may not always be applicable to the development capabilities of small companies. One disadvantage is the large volume of the book and the fact that it seems to be mainly focused on object-oriented languages (C++, Java) and even older imperative ones (C, Ada, etc.) Read more about the principles of YANGI, DRY, KISS and SOLID. Go back |
13-03-2022, 13:28 |