About

About


╭─ 👻 b0rgch3n@localhost ~ ‹›
╰─$ whoami
b0rgch3n  
> Web Security Engineer  
> Penetration Tester  
> Bug Hunter
╭─ 👻 b0rgch3n@localhost ~ ‹›
╰─$ cat ~/my_cves.txt
* CVE-2024-7898
* CVE-2024-7897
* CVE-2024-7896
* CVE-2024-43022
╭─ 👻 b0rgch3n@localhost ~ ‹›
╰─$ cat ~/contact_me.sh
#!/bin/bash
original="cr4ck_m3"
offsets=(-1 -66 62 4 -8 9 -58 59)
generated=""
for ((i=0; i<${#original}; i++)); do
    orig_char="${original:i:1}"
    orig_ascii=$(printf "%d" "'$orig_char")
    target_ascii=$((orig_ascii + offsets[i]))
    target_char=$(printf "\\$(printf "%o" "$target_ascii")")
    generated="$generated$target_char"
done
echo -e "\nContact me: $generated@wearehackerone.com"