Hacker Commands
Command Reference
Command Reference
Komut Referansı
NMAP - Network Scanning
$ nmap -sS -p- 192.168.1.1
TCP SYN Scan auf alle Ports (Stealth Scan)
$ nmap -sV -sC -O 192.168.1.1
Service/Version Detection + Standard Scripts + OS Detection
$ nmap -A -T4 192.168.1.0/24
Aggressiver Scan des gesamten Subnets (schneller)
$ nmap --script vuln 192.168.1.1
Vulnerability Scan mit NSE Scripts
$ nmap -p 80,443 --script http-enum 192.168.1.1
Web Server Enumeration (Directories, Files)
GREP - Pattern Matching
$ grep -r "password" /var/www/
Rekursive Suche nach "password" in Verzeichnis
$ grep -i "error" /var/log/*.log
Case-insensitive Suche in allen Log-Dateien
$ grep -E "^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$" file.txt
IP-Adressen mit Regex extrahieren
$ grep -v "^#" config.conf | grep -v "^$"
Kommentare und leere Zeilen entfernen
NETCAT - Swiss Army Knife
$ nc -lvnp 4444
Listener starten (Reverse Shell)
$ nc -zv 192.168.1.1 1-1000
Port Scan (Ports 1-1000)
$ nc 192.168.1.1 80 < request.txt
HTTP Request manuell senden
HYDRA - Password Cracking
$ hydra -l admin -P wordlist.txt ssh://192.168.1.1
SSH Brute Force mit Wordlist
$ hydra -L users.txt -P pass.txt ftp://192.168.1.1
FTP Brute Force mit User + Password Liste
SYSTEM RECON
$ find / -perm -4000 2>/dev/null
SUID Binaries finden (Privilege Escalation)
$ ss -tulpn | grep LISTEN
Alle Listening Ports + Prozesse anzeigen
$ cat /etc/passwd | grep -E "sh$"
Alle Benutzer mit Shell-Zugriff
$ ps aux | grep root
Alle Prozesse die als root laufen
WEB EXPLOITATION
$ curl -X POST -d "user=admin&pass=1234" http://target.com/login
POST Request mit Parametern
$ curl -H "User-Agent: Mozilla/5.0" http://target.com
Custom Header setzen
$ sqlmap -u "http://target.com?id=1" --dbs
SQL Injection - Datenbanken enumerieren
NMAP - Network Scanning
$ nmap -sS -p- 192.168.1.1
TCP SYN Scan on all ports (Stealth Scan)
$ nmap -sV -sC -O 192.168.1.1
Service/Version Detection + Default Scripts + OS Detection
$ nmap -A -T4 192.168.1.0/24
Aggressive scan of entire subnet (faster)
$ nmap --script vuln 192.168.1.1
Vulnerability scan with NSE scripts
$ nmap -p 80,443 --script http-enum 192.168.1.1
Web server enumeration (Directories, Files)
GREP - Pattern Matching
$ grep -r "password" /var/www/
Recursive search for "password" in directory
$ grep -i "error" /var/log/*.log
Case-insensitive search in all log files
$ grep -E "^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$" file.txt
Extract IP addresses with regex
$ grep -v "^#" config.conf | grep -v "^$"
Remove comments and empty lines
NETCAT - Swiss Army Knife
$ nc -lvnp 4444
Start listener (Reverse Shell)
$ nc -zv 192.168.1.1 1-1000
Port scan (Ports 1-1000)
$ nc 192.168.1.1 80 < request.txt
Send HTTP request manually
HYDRA - Password Cracking
$ hydra -l admin -P wordlist.txt ssh://192.168.1.1
SSH Brute Force with wordlist
$ hydra -L users.txt -P pass.txt ftp://192.168.1.1
FTP Brute Force with user + password list
SYSTEM RECON
$ find / -perm -4000 2>/dev/null
Find SUID binaries (Privilege Escalation)
$ ss -tulpn | grep LISTEN
Show all listening ports + processes
$ cat /etc/passwd | grep -E "sh$"
All users with shell access
$ ps aux | grep root
All processes running as root
WEB EXPLOITATION
$ curl -X POST -d "user=admin&pass=1234" http://target.com/login
POST request with parameters
$ curl -H "User-Agent: Mozilla/5.0" http://target.com
Set custom header
$ sqlmap -u "http://target.com?id=1" --dbs
SQL Injection - enumerate databases
NMAP - Ağ Tarama
$ nmap -sS -p- 192.168.1.1
Tüm portlarda TCP SYN Tarama (Gizli Tarama)
$ nmap -sV -sC -O 192.168.1.1
Servis/Versiyon Tespiti + Varsayılan Scriptler + OS Tespiti
$ nmap -A -T4 192.168.1.0/24
Tüm subnet'in agresif taraması (daha hızlı)
$ nmap --script vuln 192.168.1.1
NSE scriptleri ile zafiyet taraması
$ nmap -p 80,443 --script http-enum 192.168.1.1
Web sunucu enumerasyonu (Dizinler, Dosyalar)
GREP - Pattern Eşleştirme
$ grep -r "password" /var/www/
Dizinde "password" için recursive arama
$ grep -i "error" /var/log/*.log
Tüm log dosyalarında büyük/küçük harf duyarsız arama
$ grep -E "^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$" file.txt
Regex ile IP adreslerini çıkart
$ grep -v "^#" config.conf | grep -v "^$"
Yorumları ve boş satırları kaldır
NETCAT - İsviçre Çakısı
$ nc -lvnp 4444
Listener başlat (Reverse Shell)
$ nc -zv 192.168.1.1 1-1000
Port taraması (1-1000 portları)
$ nc 192.168.1.1 80 < request.txt
HTTP isteği manuel olarak gönder
HYDRA - Şifre Kırma
$ hydra -l admin -P wordlist.txt ssh://192.168.1.1
Wordlist ile SSH Brute Force
$ hydra -L users.txt -P pass.txt ftp://192.168.1.1
Kullanıcı + şifre listesi ile FTP Brute Force
SİSTEM KEŞFİ
$ find / -perm -4000 2>/dev/null
SUID binary'lerini bul (Yetki Yükseltme)
$ ss -tulpn | grep LISTEN
Tüm dinleyen portları + işlemleri göster
$ cat /etc/passwd | grep -E "sh$"
Shell erişimi olan tüm kullanıcılar
$ ps aux | grep root
Root olarak çalışan tüm işlemler
WEB EXPLOITATION
$ curl -X POST -d "user=admin&pass=1234" http://target.com/login
Parametreli POST isteği
$ curl -H "User-Agent: Mozilla/5.0" http://target.com
Özel header ayarla
$ sqlmap -u "http://target.com?id=1" --dbs
SQL Injection - veritabanlarını listele
AI Bot
Portfolio Assistent
Portfolio Assistant
Portföy Asistanı

Hallo! 👋 Ich bin dein AI-Assistent für Halils Portfolio. Wähle eine Frage oder schreibe mir direkt!

Hello! 👋 I'm your AI assistant for Halil's portfolio. Choose a question or write to me directly!

Merhaba! 👋 Halil'in portföyü için AI asistanınım. Bir soru seç veya bana doğrudan yaz!

HELLO
0%

Hallo, ich bin Halil Yücedag Hello, I'm Halil Yücedag Merhaba, ben Halil Yücedag

Halil Yücedag

🎓 Zertifizierungen

🎓 Certifications

🎓 Sertifikalar

Java Intermediate

Abgeschlossen

Sololearn - 15. Januar 2025
Objektorientierte Programmierung, Klassen, Methoden, Vererbung, Interfaces und Exception Handling in Java.

Java Intermediate

Completed

Sololearn - January 15, 2025
Object-oriented programming, classes, methods, inheritance, interfaces and exception handling in Java.

Java Intermediate

Tamamlandı

Sololearn - 15 Ocak 2025
Nesne yönelimli programlama, sınıflar, metodlar, kalıtım, interface'ler ve Java'da exception handling.

Introduction to Java

Abgeschlossen

Sololearn - 13. Januar 2025
Grundkenntnisse in Java: Variablen, Datentypen, Schleifen, Bedingungen und Methoden.

Introduction to Java

Completed

Sololearn - January 13, 2025
Java fundamentals: variables, data types, loops, conditions and methods.

Introduction to Java

Tamamlandı

Sololearn - 13 Ocak 2025
Java temelleri: değişkenler, veri tipleri, döngüler, koşullar ve metodlar.

Pre Security Learning Path

Abgeschlossen

TryHackMe - 17. Mai 2025 (7h 38min)
Grundlagen der IT-Sicherheit, Netzwerke, Betriebssysteme und Ethical Hacking Prinzipien.

Pre Security Learning Path

Completed

TryHackMe - May 17, 2025 (7h 38min)
IT security fundamentals, networks, operating systems and ethical hacking principles.

Pre Security Learning Path

Tamamlandı

TryHackMe - 17 Mayıs 2025 (7s 38dk)
BT güvenliği temelleri, ağlar, işletim sistemleri ve etik hacking prensipleri.

Full-Stack Development

Abgeschlossen

Mimo - 19. Februar 2025
HTML/CSS, JavaScript, React, Node.js, Express und SQL. End-to-End Full-Stack Anwendungsentwicklung.

Full-Stack Development

Completed

Mimo - February 19, 2025
HTML/CSS, JavaScript, React, Node.js, Express and SQL. End-to-end full-stack application development.

Full-Stack Development

Tamamlandı

Mimo - 19 Şubat 2025
HTML/CSS, JavaScript, React, Node.js, Express ve SQL. Uçtan uca full-stack uygulama geliştirme.

KLCP - Kali Linux Certified Professional

In Bearbeitung

Fortgeschrittene Penetration Testing Zertifizierung mit Fokus auf praktische Sicherheitstests und Exploit-Entwicklung.

Klicken für Fragenkatalog & Lösungen

KLCP - Kali Linux Certified Professional

In Progress

Advanced penetration testing certification focusing on practical security testing and exploit development.

Click for Question Catalog & Solutions

KLCP - Kali Linux Certified Professional

Devam Ediyor

Pratik güvenlik testleri ve exploit geliştirmeye odaklanan ileri düzey penetrasyon testi sertifikası.

Soru Kataloğu & Çözümler için tıklayın

OSWP - Offensive Security Wireless Professional

In Bearbeitung

Spezialisierung auf Wireless Security, WPA/WPA2 Angriffe und drahtlose Netzwerksicherheit.

OSWP - Offensive Security Wireless Professional

In Progress

Specialization in wireless security, WPA/WPA2 attacks and wireless network security.

OSWP - Offensive Security Wireless Professional

Devam Ediyor

Kablosuz güvenlik, WPA/WPA2 saldırıları ve kablosuz ağ güvenliği konularında uzmanlaşma.

Spezialisiert auf Penetration Testing, sichere Systementwicklung und Automatisierung. Derzeit in Vorbereitung auf KLCP- und OSWP-Zertifizierungen.

Specialized in penetration testing, secure system development, and automation. Currently pursuing KLCP and OSWP certifications.

Penetrasyon testleri, güvenli sistem geliştirme ve otomasyon konularında uzmanlaşmış. Şu anda KLCP ve OSWP sertifikalarına hazırlanıyor.

Über mich

Mein Weg als Cybersecurity & Development Expert

About Me

My journey as a Cybersecurity & Development Expert

Hakkımda

Siber Güvenlik ve Geliştirme Uzmanı olarak yolculuğum

Als passionierter Cybersecurity & Development Expert mit mehrjähriger Erfahrung in der Entwicklung sicherheitskritischer Anwendungen und Automatisierungslösungen, bringe ich eine einzigartige Kombination aus technischer Expertise und praktischer Umsetzung mit.

Mobile App Development

Entwicklung der KLCP Quiz App für Kali Linux Zertifizierung mit 499+ Fragen, Terminal-Beispielen und simulierten Prüfungen. Verfügbar im Google Play Store.

AI & Automation

Spezialisiert auf n8n Workflows, lokale AI-Systeme mit Ollama, automatisierte E-Book-Generierung und MCP Flow Integration für Multi-Provider AI-Kommunikation.

Cybersecurity

Erfahrung in Penetration Testing, Entwicklung von Pentest-Simulatoren, System Hardening und sicherer Anwendungsentwicklung. Vorbereitung auf KLCP und OSWP Zertifizierungen.

Full-Stack Development

Expertise in Next.js, TypeScript, PostgreSQL und Cloud-Deployment. Entwicklung skalierbarer Backend-Systeme mit sicherer Authentifizierung und API-Design.

As a passionate Cybersecurity & Development Expert with several years of experience in developing security-critical applications and automation solutions, I bring a unique combination of technical expertise and practical implementation.

Mobile App Development

Development of the KLCP Quiz App for Kali Linux certification with 499+ questions, terminal examples, and simulated exams. Available on Google Play Store.

AI & Automation

Specialized in n8n workflows, local AI systems with Ollama, automated e-book generation, and MCP Flow integration for multi-provider AI communication.

Cybersecurity

Experience in penetration testing, development of pentest simulators, system hardening, and secure application development. Preparing for KLCP and OSWP certifications.

Full-Stack Development

Expertise in Next.js, TypeScript, PostgreSQL and cloud deployment. Development of scalable backend systems with secure authentication and API design.

Güvenlik açısından kritik uygulamalar ve otomasyon çözümleri geliştirmede birkaç yıllık deneyime sahip tutkulu bir Siber Güvenlik ve Geliştirme Uzmanı olarak, teknik uzmanlık ve pratik uygulama konularında eşsiz bir kombinasyon sunuyorum.

Mobil Uygulama Geliştirme

KLCP Quiz Uygulaması geliştirme - Kali Linux sertifikasyonu için 499+ soru, terminal örnekleri ve simüle sınavlar. Google Play Store'da mevcut.

AI ve Otomasyon

n8n workflows, Ollama ile yerel AI sistemleri, otomatik e-kitap üretimi ve çoklu sağlayıcı AI iletişimi için MCP Flow entegrasyonunda uzmanlaşmış.

Siber Güvenlik

Penetrasyon testleri, pentest simülatörü geliştirme, sistem sertleştirme ve güvenli uygulama geliştirme deneyimi. KLCP ve OSWP sertifikalarına hazırlanıyor.

Full-Stack Geliştirme

Next.js, TypeScript, PostgreSQL ve bulut dağıtımında uzmanlık. Güvenli kimlik doğrulama ve API tasarımı ile ölçeklenebilir backend sistemleri geliştirme.

50,000+
Zeilen Code
15+
Projekte
3+
Jahre Erfahrung
2
Zertifizierungen in Vorbereitung
50,000+
Lines of Code
15+
Projects
3+
Years Experience
2
Certifications in Progress
50,000+
Kod Satırı
15+
Proje
3+
Yıl Deneyim
2
Devam Eden Sertifika

Meine Fähigkeiten

Technologien und Tools mit denen ich arbeite

My Skills

Technologies and tools I work with

Yeteneklerim

Çalıştığım teknolojiler ve araçlar

Penetration Testing

Penetration Testing

Penetrasyon Testi

Python

JavaScript

React

Node.js

Linux

Cybersicherheit

Cybersecurity

Siber Güvenlik

KI-Automatisierung

AI Automation

AI Otomasyonu

Mobile Anwendungen

🚀 Unsere Flagship Mobile App - Verbindung von Nutzern mit KI-Persönlichkeiten

Mobile Applications

🚀 Our flagship mobile app - connecting users with AI personalities

Mobil Uygulamalar

🚀 Amiral gemimiz mobil uygulama - kullanıcıları AI kişilikleriyle bağlıyor

KLCP
KLCP

KLCP Quiz App

🎯 Kali Linux Zertifizierung! Vollständige Vorbereitung auf die KLCP-Prüfung mit 499+ Fragen, Terminal-Beispielen und simulierten Zertifizierungsprüfungen.

Android Kotlin Google Play Offline Mode
Verfügbar im Play Store
KLCP
KLCP

KLCP Quiz App

🎯 Kali Linux Certification! Complete preparation for KLCP exam with 499+ questions, terminal examples and simulated certification exams.

Android Kotlin Google Play Offline Mode
Available on Play Store
KLCP
KLCP

KLCP Quiz App

🎯 Kali Linux Sertifikası! 499+ soru, terminal örnekleri ve simüle edilmiş sertifika sınavlarıyla KLCP sınavına tam hazırlık.

Android Kotlin Google Play Çevrimdışı Mod
Play Store'da Mevcut

Kontakt aufnehmen

Lassen Sie uns an Ihrem nächsten Projekt zusammenarbeiten

Get In Touch

Let's work together on your next project

İletişime Geçin

Bir sonraki projenizde birlikte çalışalım

Bereit für die Zusammenarbeit?

Ob Sie eine Sicherheitsbewertung, individuelle Entwicklung oder Automatisierungslösung benötigen, ich helfe Ihnen dabei, Ihre Ideen mit sicherheitsorientierten Prinzipien zum Leben zu erwecken.

Ready to collaborate?

Whether you need a security assessment, custom development, or automation solution, I'm here to help bring your ideas to life with security-first principles.

İşbirliğe hazır mısınız?

Güvenlik değerlendirmesi, özel geliştirme veya otomasyon çözümüne ihtiyacınız olsun, güvenlik öncelikli prensipler ile fikirlerinizi hayata geçirmenize yardımcı olmak için buradayım.

Halilibo179@gmail.com
+49 17634499666
Fulda, Hessen, Deutschland