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.

KLCP - Kali Linux Certified Professional

In Progress

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

KLCP - Kali Linux Certified Professional

Devam Ediyor

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

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 Alie.info Android App mit 9 KI-Smileys, vollständiger Backend-Integration, Zahlungssystem und über 50.000 Zeilen Code. Aktuell in Prüfung 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 Alie.info Android App with 9 AI smileys, complete backend integration, payment system, and over 50,000 lines of code. Currently under review in the 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

Alie.info Android Uygulaması geliştirme - 9 AI smiley, tam backend entegrasyonu, ödeme sistemi ve 50.000'den fazla kod satırı. Şu anda Google Play Store'da inceleme aşamasında.

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

Drache

Alie.info Android App

🎯 Unser Hauptprojekt! Full-stack Android App mit 9 KI-Smileys, Chat-Features, Coin-System, Avatar Creator und Premium-Funktionen. Aktuell in Prüfung im Google Play Store.

Android Kotlin Next.js PostgreSQL AI Integration Google Play
In Prüfung bei Google Play Store
Dragon

Alie.info Android App

🎯 Our main project! Full-stack Android app with 9 AI smileys, chat features, coin system, avatar creator, and premium functions. Currently under review in the Google Play Store.

Android Kotlin Next.js PostgreSQL AI Integration Google Play
Under review in Google Play Store
Ejderha

Alie.info Android Uygulaması

🎯 Ana projemiz! 9 AI smiley, sohbet özellikleri, coin sistemi, avatar yaratıcısı ve premium fonksiyonları olan full-stack Android uygulaması. Şu anda Google Play Store'da inceleme aşamasında.

Android Kotlin Next.js PostgreSQL AI Integration Google Play
Google Play Store'da inceleme aşamasında

Ausgewählte Projekte

Eine Auswahl meiner Cybersecurity- und Entwicklungsarbeiten

Featured Projects

A selection of my cybersecurity and development work

Öne Çıkan Projeler

Siber güvenlik ve geliştirme çalışmalarımdan bir seçki

🔒 Cybersecurity Projekte

🔒 Cybersecurity Projects

🔒 Siber Güvenlik Projeleri

Die Digitale Maske

Umfassende Cybersecurity-Forschung über digitale Identitäten und Social Engineering. Eine detaillierte Analyse moderner Bedrohungen und Schutzmaßnahmen.

Privacy OPSEC Anonymity Security

The Digital Mask

Comprehensive cybersecurity research on digital identities and social engineering. A detailed analysis of modern threats and protective measures.

Privacy OPSEC Anonymity Security

Dijital Maske

Dijital kimlikler ve sosyal mühendislik üzerine kapsamlı siber güvenlik araştırması. Modern tehditlerin ve koruyucu önlemlerin detaylı analizi.

Gizlilik OPSEC Anonimlik Güvenlik

Fort Nox - System Hardening

Systemhärtung in 11 umfassenden Schritten. Jeder Schritt zielt auf kritische Sicherheitsebenen ab, um die Angriffsfläche systematisch zu reduzieren.

System Hardening Security Linux

Fort Nox - System Hardening

System hardening in 11 comprehensive steps. Each step targets critical security layers to systematically reduce attack surface.

System Hardening Security Linux

Fort Nox - Sistem Sertleştirme

11 kapsamlı adımda sistem sertleştirme. Her adım, saldırı yüzeyini sistematik olarak azaltmak için kritik güvenlik katmanlarını hedefler.

Sistem Sertleştirme Güvenlik Linux

Pentest Simulator

Automatisiertes Penetrationstesting-Tool, das Netzwerke scannt, Schwachstellen identifiziert und umfassende Sicherheitsberichte generiert.

Penetration Testing JavaScript Security

Pentest Simulator

Automated penetration testing tool that scans networks, identifies vulnerabilities, and generates comprehensive security reports.

Penetration Testing JavaScript Security

Pentest Simülatörü

Ağları tarayan, güvenlik açıklarını tespit eden ve kapsamlı güvenlik raporları oluşturan otomatik penetrasyon test aracı.

Penetrasyon Testi JavaScript Güvenlik

n8n Automatisierung Projekte

n8n Automation Projects

n8n Otomasyon Projeleri

E-Book Creator

Autonomes E-Book-Generierungssystem mit Ein-Klick-Erstellung oder geplanter Generierung. Angetrieben von KI für Inhaltserstellung und Formatierung.

OpenAI JavaScript Python Automation

E-Book Creator

Autonomous e-book generation system with one-click creation or scheduled generation. Powered by AI for content creation and formatting.

OpenAI JavaScript Python Automation

E-Kitap Yaratıcısı

Tek tıkla oluşturma veya zamanlanmış üretim ile otonom e-kitap üretim sistemi. İçerik oluşturma ve biçimlendirme için AI destekli.

OpenAI JavaScript Python Otomasyon

Lokales KI-System

Komplett offline KI-System ohne API-Beschränkungen. Vollständig autonom und lokal einsetzbar für sensible Operationen.

React JavaScript Python Ollama

Local AI System

Completely offline AI system without API restrictions. Fully autonomous and deployable locally for sensitive operations.

React JavaScript Python Ollama

Yerel AI Sistemi

API kısıtlaması olmayan tamamen çevrimdışı AI sistemi. Hassas işlemler için tamamen otonom ve yerel olarak dağıtılabilir.

React JavaScript Python Ollama

MCP Flow Integration

Model Context Protocol Integration für nahtlose Multi-Provider AI-Kommunikation mit OpenAI, Claude und anderen AI-Services.

MCP Protocol TypeScript n8n Multi-AI

MCP Flow Integration

Model Context Protocol Integration for seamless multi-provider AI communication with OpenAI, Claude and other AI services.

MCP Protocol TypeScript n8n Multi-AI

MCP Akış Entegrasyonu

OpenAI, Claude ve diğer AI servisleri ile kesintisiz çoklu sağlayıcı AI iletişimi için Model Context Protocol entegrasyonu.

MCP Protokolü TypeScript n8n Çoklu-AI

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