import type { Metadata } from "next"; export const metadata: Metadata = { title: "Faydalı Linkler" }; interface LinkItem { title: string; url: string; description: string; } interface Category { name: string; icon: string; links: LinkItem[]; } const categories: Category[] = [ { name: "Öğrenme Platformları", icon: "◈", links: [ { title: "HackTheBox", url: "https://hackthebox.com", description: "CTF ve penetrasyon testi platformu" }, { title: "TryHackMe", url: "https://tryhackme.com", description: "Yeni başlayanlar için siber güvenlik eğitimi" }, { title: "PentesterLab", url: "https://pentesterlab.com", description: "Web güvenliği odaklı pratik eğitim" }, { title: "PortSwigger Web Academy", url: "https://portswigger.net/web-security", description: "Burp Suite ekibinin ücretsiz web güvenlik eğitimi" }, { title: "PicoCTF", url: "https://picoctf.org", description: "Carnegie Mellon üniversitesinin ücretsiz CTF platformu" }, ], }, { name: "Araçlar", icon: "⊡", links: [ { title: "Nmap", url: "https://nmap.org", description: "Ağ keşif ve güvenlik tarama aracı" }, { title: "Burp Suite", url: "https://portswigger.net/burp", description: "Web uygulama güvenlik testi aracı" }, { title: "Metasploit", url: "https://metasploit.com", description: "Penetrasyon testi framework'ü" }, { title: "Ghidra", url: "https://ghidra-sre.org", description: "NSA'nın açık kaynak reverse engineering aracı" }, { title: "CyberChef", url: "https://gchq.github.io/CyberChef", description: "Veri dönüştürme ve analiz aracı" }, { title: "OSINT Framework", url: "https://osintframework.com", description: "OSINT araçları haritası" }, ], }, { name: "Kaynaklar & Dokümantasyon", icon: "▤", links: [ { title: "OWASP", url: "https://owasp.org", description: "Web güvenlik standartları ve kaynakları" }, { title: "GTFOBins", url: "https://gtfobins.github.io", description: "Linux privilege escalation teknikleri" }, { title: "LOLBAS", url: "https://lolbas-project.github.io", description: "Windows living off the land binaries" }, { title: "PayloadsAllTheThings", url: "https://github.com/swisskyrepo/PayloadsAllTheThings", description: "Güvenlik testleri için payload koleksiyonu" }, { title: "HackTricks", url: "https://book.hacktricks.xyz", description: "Kapsamlı hacking teknikleri kitabı" }, { title: "Exploit Database", url: "https://exploit-db.com", description: "Public exploit veritabanı" }, ], }, { name: "Red Team", icon: "⚔", links: [ { title: "Red Team Notes", url: "https://www.ired.team", description: "Red team teknikleri ve notları" }, { title: "Cobalt Strike Guide", url: "https://hstechdocs.helpsystems.com/manuals/cobaltstrike", description: "Cobalt Strike resmi dokümantasyonu" }, { title: "BloodHound", url: "https://github.com/BloodHoundAD/BloodHound", description: "Active Directory saldırı yolları analizi" }, { title: "Impacket", url: "https://github.com/impacket/impacket", description: "Python ağ protokol kütüphanesi" }, ], }, { name: "Haberler & Blog", icon: "◎", links: [ { title: "Krebs on Security", url: "https://krebsonsecurity.com", description: "Brian Krebs'in güvenlik blogu" }, { title: "The Hacker News", url: "https://thehackernews.com", description: "Siber güvenlik haberleri" }, { title: "Darknet Diaries", url: "https://darknetdiaries.com", description: "Gerçek siber suç hikayeleri podcast'i" }, { title: "Project Zero Blog", url: "https://googleprojectzero.blogspot.com", description: "Google'ın güvenlik araştırma blogu" }, ], }, { name: "CTF Writeupları", icon: "◆", links: [ { title: "0xdf hacks stuff", url: "https://0xdf.gitlab.io", description: "HTB ve CTF writeupları" }, { title: "IppSec YouTube", url: "https://www.youtube.com/@ippsec", description: "HTB makineleri video çözümleri" }, { title: "CTFtime", url: "https://ctftime.org", description: "CTF yarışmaları takvimi ve arşivi" }, ], }, ]; export default function FaydalıLinklerPage() { return (
Faydalı Linkler

Kategorilere göre düzenlenmiş faydalı bağlantılar koleksiyonu

{categories.map((cat) => (
{cat.icon} {cat.name}
{cat.links.map((link) => (
{link.title}

{link.description}

))}
))}
); }