-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathredteam.html
More file actions
135 lines (125 loc) · 7.5 KB
/
Copy pathredteam.html
File metadata and controls
135 lines (125 loc) · 7.5 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Phixon — Red Team Operations</title>
<link rel="icon" type="image/x-icon" href="icon.ico">
<style>
:root{
--black:#0a0908;
--gold:#c9a24a;
--gold-bright:#e6c878;
--gold-dim:#7a6430;
--ink:#e8e2d0;
--ink-dim:#8a8474;
--line:rgba(201,162,74,0.18);
--mono: 'JetBrains Mono', 'Consolas', monospace;
--serif: 'Cormorant Garamond', 'Times New Roman', serif;
}
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=JetBrains+Mono:wght@300;400;500;700&display=swap');
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{background:var(--black);color:var(--ink);font-family:var(--mono);overflow-x:hidden;}
::selection{background:var(--gold);color:var(--black);}
main{position:relative;z-index:10;}
.wrap{max-width:1000px;margin:0 auto;padding:0 40px;}
nav{position:sticky;top:0;z-index:50;background:rgba(10,9,8,0.88);backdrop-filter:blur(10px);border-bottom:1px solid var(--line);}
nav .wrap{display:flex;align-items:center;justify-content:space-between;height:64px;max-width:1000px;}
.brand{font-family:var(--serif);font-weight:700;font-size:20px;letter-spacing:4px;color:var(--gold-bright);text-decoration:none;}
.brand span{color:var(--gold-dim);}
.navlinks a{color:var(--ink-dim);text-decoration:none;font-size:12px;letter-spacing:1.5px;}
.navlinks a:hover{color:var(--gold-bright);}
.hero{padding:100px 0 60px;}
.eyebrow{font-size:11px;letter-spacing:5px;color:var(--gold-dim);text-transform:uppercase;margin-bottom:18px;}
h1{font-family:var(--serif);font-weight:600;font-size:clamp(32px,5vw,52px);color:var(--ink);letter-spacing:1px;margin-bottom:20px;}
h1 em{color:var(--gold-bright);font-style:normal;}
.lede{font-family:var(--serif);font-size:19px;line-height:1.7;color:var(--ink-dim);max-width:640px;}
section{padding:60px 0;border-top:1px solid var(--line);}
.section-eyebrow{font-size:11px;letter-spacing:5px;color:var(--gold-dim);text-transform:uppercase;margin-bottom:8px;}
h2{font-family:var(--serif);font-weight:600;font-size:clamp(26px,3.5vw,36px);color:var(--gold-bright);letter-spacing:1px;margin-bottom:8px;}
.section-note{font-size:13px;color:var(--ink-dim);margin-bottom:40px;max-width:600px;line-height:1.7;}
table{width:100%;border-collapse:collapse;margin-top:10px;}
thead th{
text-align:left;
font-size:11px;
letter-spacing:2px;
color:var(--gold-dim);
text-transform:uppercase;
padding:12px 0;
border-bottom:1px solid var(--line);
}
thead th.clause-col{width:240px;}
tbody td{
padding:18px 0;
border-bottom:1px solid var(--line);
vertical-align:top;
}
tbody tr:last-child td{border-bottom:none;}
.doc-name{font-family:var(--serif);font-size:18px;color:var(--ink);font-weight:600;}
.doc-desc{font-size:13px;color:var(--ink-dim);line-height:1.6;margin-top:4px;max-width:520px;}
.doc-clause{font-size:12.5px;color:var(--gold-dim);letter-spacing:.5px;}
footer{border-top:1px solid var(--line);padding:30px 0;font-size:11px;color:var(--gold-dim);letter-spacing:2px;text-align:center;margin-top:20px;}
@media(max-width:640px){
table, thead, tbody, th, td, tr{display:block;}
thead{display:none;}
tbody td{border-bottom:none;padding:4px 0;}
tbody tr{padding:18px 0;border-bottom:1px solid var(--line);}
}
</style>
</head>
<body>
<main>
<nav>
<div class="wrap">
<a class="brand" href="index.html">PHIX<span>ON</span></a>
<div class="navlinks"><a href="index.html">← Back</a></div>
</div>
</nav>
<div class="hero">
<div class="wrap">
<div class="eyebrow">Adversary Emulation</div>
<h1>Red Team <em>Operations</em></h1>
<p class="lede">Objective-based engagements that emulate a real adversary end to end. Every operation is mapped to a MITRE ATT&CK tactic so findings translate directly into detection coverage.</p>
</div>
</div>
<section id="core">
<div class="wrap">
<div class="section-eyebrow">Section 1</div>
<h2>Core Operations</h2>
<p class="section-note">The standard chain: get in, move, and stay in — tested end to end.</p>
<table>
<thead><tr><th>Service</th><th class="clause-col">ATT&CK Tactic</th></tr></thead>
<tbody>
<tr><td><div class="doc-name">Endpoint Analysis</div><div class="doc-desc">Attack surface enumeration and AV/EDR evasion testing on target hosts.</div></td><td class="doc-clause">Discovery / Defense Evasion</td></tr>
<tr><td><div class="doc-name">Firewall Penetration</div><div class="doc-desc">Perimeter bypass via misconfigurations, protocol tunneling, and rule-set gaps.</div></td><td class="doc-clause">Initial Access</td></tr>
<tr><td><div class="doc-name">Lateral Movement</div><div class="doc-desc">Pivoting across hosts and segments using captured credentials and trust relationships.</div></td><td class="doc-clause">Lateral Movement</td></tr>
<tr><td><div class="doc-name">Privilege Escalation</div><div class="doc-desc">Local and domain-level escalation via misconfigurations, unpatched services, and token abuse.</div></td><td class="doc-clause">Privilege Escalation</td></tr>
<tr><td><div class="doc-name">Credential Harvesting</div><div class="doc-desc">LLMNR/NBT-NS poisoning, Kerberoasting, and hash capture for credential material.</div></td><td class="doc-clause">Credential Access</td></tr>
<tr><td><div class="doc-name">Persistence Mechanisms</div><div class="doc-desc">Backdoors, scheduled tasks, and Golden/Silver Ticket techniques to survive reboots and resets.</div></td><td class="doc-clause">Persistence</td></tr>
</tbody>
</table>
</div>
</section>
<section id="specialized">
<div class="wrap">
<div class="section-eyebrow">Section 2</div>
<h2>Specialized Operations</h2>
<p class="section-note">Targeted engagements for specific attack surfaces beyond the standard chain.</p>
<table>
<thead><tr><th>Service</th><th class="clause-col">ATT&CK Tactic</th></tr></thead>
<tbody>
<tr><td><div class="doc-name">Active Directory Exploitation</div><div class="doc-desc">Full domain compromise path: relay attacks, delegation abuse, DCSync.</div></td><td class="doc-clause">Multiple Tactics</td></tr>
<tr><td><div class="doc-name">Social Engineering & Phishing Simulation</div><div class="doc-desc">Pretext-driven email and voice campaigns to test human-layer defenses.</div></td><td class="doc-clause">Initial Access</td></tr>
<tr><td><div class="doc-name">Wireless Network Attacks</div><div class="doc-desc">Rogue AP deployment, handshake capture, and WPA/WPA2 cracking.</div></td><td class="doc-clause">Initial Access</td></tr>
<tr><td><div class="doc-name">Physical Security Assessment</div><div class="doc-desc">Badge cloning, tailgating, and on-site access testing.</div></td><td class="doc-clause">Initial Access</td></tr>
<tr><td><div class="doc-name">C2 Infrastructure & Exfiltration</div><div class="doc-desc">Command-and-control channel deployment and simulated data exfiltration.</div></td><td class="doc-clause">Command & Control / Exfiltration</td></tr>
<tr><td><div class="doc-name">Detection Evasion</div><div class="doc-desc">AV/EDR bypass, log tampering, and anti-forensic technique validation.</div></td><td class="doc-clause">Defense Evasion</td></tr>
</tbody>
</table>
</div>
</section>
<footer>PHIXON · RED TEAM OPERATIONS · ROOTEDCHIP.XYZ</footer>
</main>
</body>
</html>