Studying the fields of secure systems, assembly code, and reverse engineering.
Despite my lack of practical experience, I have a strong desire to learn and a keen interest in this area. I enjoy breaking down software to get at the core of how it functions, which is why I find reverse engineering and assembly code so fascinating.
I turn vulnerabilities into solutions.
Passionate about ethical hacking, secure coding practices, and reverse engineering. Always looking for vulnerabilities to patch and systems to harden.
Specialized in Cybersecurity
1-year professional internship to complete middle school qualification
Specialized technical secondary education in Information Technology
<div class="responsive-container">
<h2>Welcome</h2>
<p>This is responsive HTML!</p>
</div>
This is responsive HTML!
.hover-effect {
transition: all 0.3s ease;
padding: 10px;
background: #f0f0f0;
}
.hover-effect:hover {
transform: scale(1.1);
background: #007bff;
color: white;
}
function countDown(from) {
let count = from;
const timer = setInterval(() => {
if (count <= 0) {
clearInterval(timer);
return "Blast off!";
}
count--;
return count;
}, 1000);
}
def fibonacci(n):
if n <= 0:
return []
elif n == 1:
return [0]
elif n == 2:
return [0, 1]
fib = [0, 1]
for i in range(2, n):
fib.append(fib[i-1] + fib[i-2])
return fib
# First 5 Fibonacci numbers
fibonacci(5)
public class Encryption {
public static String encrypt(String text, int shift) {
StringBuilder result = new StringBuilder();
for (int i = 0; i < text.length(); i++) {
char ch = text.charAt(i);
if (Character.isLetter(ch)) {
char base = Character.isUpperCase(ch) ? 'A' : 'a';
ch = (char)(((ch - base + shift) % 26) + base);
}
result.append(ch);
}
return result.toString();
}
}
<?php
function greet($name) {
echo "Hello, " . $name . "!";
}
greet("World");
?>
; Simple x86 Assembly code to add two numbers
section .data
num1 dd 10
num2 dd 20
result dd 0
section .text
global _start
_start:
mov eax, [num1]
add eax, [num2]
mov [result], eax
; Exit program
mov eax, 1
int 0x80