deniz bektaş
This commit is contained in:
62
app/su-anda/page.tsx
Normal file
62
app/su-anda/page.tsx
Normal file
@@ -0,0 +1,62 @@
|
||||
import type { Metadata } from "next";
|
||||
|
||||
export const metadata: Metadata = { title: "Şu Anda" };
|
||||
|
||||
const lastUpdated = "2026-04-03";
|
||||
|
||||
export default function SuAndaPage() {
|
||||
return (
|
||||
<div style={{ maxWidth: "100%" }}>
|
||||
<div className="page-title">Şu Anda</div>
|
||||
<p style={{ fontSize: "0.8rem", color: "var(--text-muted)", marginBottom: "0.5rem" }}>
|
||||
Şu anda nelerle ilgileniyorum — bir /now sayfası
|
||||
</p>
|
||||
<p style={{ fontSize: "0.72rem", color: "var(--text-muted)", marginBottom: "2rem" }}>
|
||||
Son güncelleme: {lastUpdated}
|
||||
</p>
|
||||
|
||||
<div className="card prose" style={{ marginBottom: "1rem" }}>
|
||||
<h2>Odak</h2>
|
||||
<p>
|
||||
Red team metodolojileri üzerine yoğunlaşıyorum. Özellikle Active Directory saldırı
|
||||
vektörleri ve lateral movement teknikleri üzerine lab çalışmaları yapıyorum.
|
||||
</p>
|
||||
|
||||
<h2>Okuma</h2>
|
||||
<ul>
|
||||
<li><strong>The Hacker Playbook 3</strong> — Peter Kim</li>
|
||||
<li><strong>Red Team Development and Operations</strong> — Joe Vest</li>
|
||||
<li><strong>Pentest.ws writeupları</strong> — çeşitli yazarlar</li>
|
||||
</ul>
|
||||
|
||||
<h2>Öğrenme</h2>
|
||||
<ul>
|
||||
<li>Active Directory güvenliği (BloodHound, Impacket)</li>
|
||||
<li>C2 framework mimarisi (Havoc, Sliver)</li>
|
||||
<li>Rust ile araç geliştirme</li>
|
||||
</ul>
|
||||
|
||||
<h2>Hedefler</h2>
|
||||
<ul>
|
||||
<li>🎯 OSCP sınavına girmek</li>
|
||||
<li>🎯 Bu siteyi canlıya almak ✅</li>
|
||||
<li>🎯 10 HTB makinesi çözmek</li>
|
||||
<li>🎯 Podcast başlatmak</li>
|
||||
</ul>
|
||||
|
||||
<h2>Dinleme</h2>
|
||||
<p>Darksynth, Industrial, Dark Ambient — çalışırken müzik olmazsa olmaz.</p>
|
||||
|
||||
<h2>İzleme</h2>
|
||||
<ul>
|
||||
<li>Mr. Robot (yeniden izleme)</li>
|
||||
<li>Darknet Diaries Podcast</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div style={{ fontSize: "0.72rem", color: "var(--text-muted)", marginTop: "1rem" }}>
|
||||
Bu sayfa <a href="https://nownownow.com" target="_blank" rel="noopener noreferrer">/now</a> hareketi ilhamıyla oluşturulmuştur.
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user