Files
personalsite/app/su-anda/page.tsx
2026-04-03 16:20:51 +03:00

63 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
);
}