ICIgnacio Cassiinignaciocassi.hashnode.dev·Feb 5, 2024 · 3 min readUnderstanding Merge Sort AlgorithmMerge Sort is a popular sorting algorithm that follows the divide-and-conquer paradigm. It efficiently sorts an array or a list by recursively dividing it into smaller halves, sorting each half, and then merging the sorted halves. This algorithm ensu...00
ICIgnacio Cassiinignaciocassi.hashnode.dev·Nov 27, 2023 · 4 min readEverything you need to know about Log4Shell vulnerabilityTo understand this vulnerability, we first need to understand its origin. Log4J is the most widely used logging framework in Java for many years. It mainly allows logging events that occur during the execution of a Java application to keep a record, ...00