CEChiama Evansinevanscreator.hashnode.dev·Jan 20, 2025 · 1 min readMaximum of Integer SequencesLet's get the maximum amount of value from this sequence of numbers: 60, 50, 95,80, 70 1. Algorithmic ideas: Compare arrays[i] with arrays[i + 1], if arrays[i] > arrays[i + 1] are exchanged. So continue until the last number, arrays[length - 1] is ...00
CEChiama Evansinevanscreator.hashnode.dev·Feb 4, 2024 · 1 min readThe eight CISSP security domains, part 1the meaning of certified information system security professionals password attacks: the type of attack that attempts to access password-secured devices, systems, networks, and data forms of password attack: brute force, rainbow table password attack...00
CEChiama Evansinevanscreator.hashnode.dev·Feb 4, 2024 · 2 min readMethod of attacks in cybersecuritymalware: software designed to harm devices or network virus: malware program that modifies other computer programs by inserting its code to modify the computer program negatively by damaging and/or destroying data typical example of a virus is a malw...00
CEChiama Evansinevanscreator.hashnode.dev·Feb 4, 2024 · 1 min readtcp analysis with wiresharkthrough this article, I'd like to help you to learn the art of protocol analysis. this is a hands‑on article, so make sure to get out your copy of Wireshark. What is tcp: fundamentally, the Transport Control Protocol allows two endpoints to exchange ...00
CEChiama Evansinevanscreator.hashnode.dev·Sep 7, 2023 · 2 min readDemystifying Transport Protocols: The TCP Handshake and Endpoint SessionsIn the ever-evolving landscape of networking and cybersecurity, understanding the role of transport protocols is essential. Transmission Control Protocol (TCP), a fundamental transport protocol, not only facilitates data transfer but also plays a piv...00