-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (84 loc) · 3.81 KB
/
index.html
File metadata and controls
92 lines (84 loc) · 3.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>xmasscan</title>
<link href="css/style.css" rel="stylesheet">
<style>
#whoami {
list-style: square;
list-style-position: inside;
padding-left: 0.5em;
}
#whoami li {
padding-bottom: 8px;
}
#navbar ul {
border-bottom-color: #d5c4a1;
border-bottom-style: solid;
border-bottom-width: 1px;
}
#navbar li,
#socials li {
float: left;
}
#socials li {
padding-right: 16px;
}
#navbar li a {
color: #d5c4a1;
display: block;
text-align: center;
padding-right: 16px;
}
#navbar li a:hover {
color: #ebdbb2;
}
</style>
</head>
<body>
<div>
<h1 style="margin-left: 2%; margin-bottom: 1%;"><a style="color: #ebdbb2;" href="/index.html">xmasscan</a></h1>
<div id="navbar">
<ul>
<li style="margin-left: 2%;"><a href="/blog.html">blog</a></li>
<li><a href="/resume/out/Michael-Khan.pdf">resume</a></li>
</ul>
</div>
</div>
<div id="content">
<div>
<h2 style="margin-top: 0px; padding-top: 3%;">About Me</h2>
<ul id="whoami">
<li>Michael Hanif Khan</li>
<li>Computer Science Undergraduate @ UIC</li>
<li>President of the Linux User Group @ UIC</li>
<li>CyberForce Participant: '24, '25</li>
<li>MuRL@UIC Research Spring 2025</li>
<li>SISL@UIC & DPI Fall 2025 - Current</li>
</ul>
<ul id="socials">
<li><a href="https://github.com/xmasscan">github</a></li>
<li><a href="https://www.linkedin.com/in/mkhan398/">linkedin</a></li>
</ul>
</div>
<div>
<h3>Fields of Interest</h3>
<p>I like building systems from the ground up, examining other systems from the top down, and bridging the gap between experimentation and digital forensics. Many people would categorize me as a "systems guy". I am interested in a lot within Computer Systems, but I am especially interested in Networking and CyberSecurity.</p>
<p>Please contact me if you have research or work opportunities in the following fields:</p>
<ul>
<li>Cybersecurity</li>
<li>Network Security</li>
<li>Digital Forensics</li>
<li>Cryptography</li>
</ul>
<h3>Why "xmasscan"?</h3>
<p>In the most nascent days of my Cybersecurity career, during high school, I'd spend my free time reading through the <a href="https://nmap.org/book">official nmap book</a>, interesting in learning what I could about basic networking and network scanning.</p>
<p>I very quickly noticed the "Xmas Scan", wherein the scanner abuses a trick implied by the <a href="https://www.rfc-editor.org/rfc/rfc793.txt">TCP RFC</a>. Basically, if you send a packet to a port over TCP without SYN, RST, or ACK bits sent, you <em>should</em> recieve a RST packet in response so that you know something got messed up. Barring scanning, this behavior is most common when connections are choppy or drop in the middle of sending a packet.</p>
<p>What matters, however, is that I found it to be a novel way to approach port scanning which taught me quite a bit about the way packets are constructed. It was what I would consider the true beginning of my formal interest in the field and it is what inspired my ongoing interest in pursuing a career within it.</p>
<p>I chose to name my Github account after the scan because it remains a cool thing to tell people about, and it reminds me why I do what I do everytime I make a commit or merge a pull request!</p>
</div>
</div>
</body>
</html>