Static Analysis of the Dexter Malware Explore a detailed static analysis of malware, uncovering key indicators of compromise, malicious activities, and underlying techniques used for process monitoring and memory manipulation.
HackerRank - Minimum Height Triangle Introduction Given integers b and a, find the smallest integer h, such that there exists a triangle of height h, base b, having an area of at least a. Example Input Output # Input: 2 2 # Output: 2 Explanation: The task is to find the height of the triangle having base
HackerRank - Project Euler #1: Multiples of 3 and 5 Introduction If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. Find the sum of all the multiples of 3 or 5 below N. Input and Output Format # Input: 2
HackerRank - Handshake Introduction At the annual meeting of Board of Directors of Acme Inc. If everyone attending shakes hands exactly one time with every other attendee, how many handshakes are there? Input and Output Format # Input: 2 1 2 # Output: 0 1 Process This is a math challenge. So using the primitive
HackerRank - Sherlock and Divisors Introduction Watson gives an integer N to Sherlock and asks him: What is the number of divisors of N that are divisible by 2? Input and Output Format # Input: 2 9 8 # Output: 0 3 Explanation 9 has three divisors 1, 3 and 9 none of which is divisible by
HackerRank - Printing Tokens Introduction Given a sentence, s, print each word of the sentence in a new line. Input and Output Format # Input: This is C # Output: This is C Process This was a pretty simple challenge. Completing the code, I've added a for loop to print each character at a
HackerRank - Sum of Digits of a Five Digit Number Introduction Given a five digit integer, print the sum of its digit Input: 5 digit number, n Output: sum of 5 digit number Input and Output Format # Input 10564 # Output 16 {: file="Sum Of Digits of a Five Digit Number.c" } $1+0+5+6+4=16$ This