#include <stdio.h>
typedef struct {
const char *name;
const char *edu;
const char *kernel;
const char *thm;
const char *skills[6];
const char *motto;
} Engineer;
int main(void) {
Engineer me = {
.name = "Abdul Wahid Khan",
.edu = "M.Sc. Cyber Security — NFSU (pursuing)",
.kernel = "Nova-Kernels · MT6785 · Android 15 · KernelSU",
.thm = "TryHackMe Top 2% · GURU [0xC] · 108 rooms",
.skills = { "penetration testing", "kernel development",
"cloud security", "binary exploitation",
"DevSecOps", "CTF" },
.motto = "I break systems to understand them. Then I harden them.",
};
printf("name : %s\n", me.name);
printf("edu : %s\n", me.edu);
printf("kernel : %s\n", me.kernel);
printf("thm : %s\n", me.thm);
printf("skills : ");
for (int i = 0; i < 6; i++)
printf("%s%s", me.skills[i], i < 5 ? ", " : "\n");
printf("motto : \"%s\"\n", me.motto);
return 0;
}M.Sc. Cyber Security student at NFSU and DevSecOps Engineer at Lixta Networks, working on cloud security, CI/CD hardening, and infrastructure automation across AWS and Azure.
Founder of @Nova-Kernels - custom Android Linux kernels for Xiaomi MT6785 targeting Android 15, with KernelSU integration, CPU scheduler tuning, and I/O optimisations.
CTF competitor on TryHackMe (Top 2% globally) across pwn, crypto, RE, binary exploitation, web, and forensics.
My active projects:
- Sentry - runtime dependency threat detection across pip/npm/cargo with CVE enforcement via OSV API
- CIVIC Sentinel - Aadhaar anomaly detection using Isolation Forest, Z-score, and LOF with a Streamlit dashboard
- UnTor - Tor circuit reconstruction from PCAP via Stem and flow-timing correlation
Check my site for more.





