AI KOMUT MERKEZİ
PROMPT KÜTÜPHANESİ
Yapay zeka modellerini en verimli şekilde kullanmak için hazır komut şablonları.
💻
GPT-4 / Claude 3
Python Port Scanner Scripti
Python kullanarak çok iş parçacıklı (multi-threaded) hızlı bir port tarayıcı iskeleti.
#Python
#Networking
#Security Tool
PROMPT
Write a Python script for a multi-threaded port scanner. It should accept a target IP and a range of ports as arguments. Use the 'socket' and 'threading' libraries. Include error handling for connection timeouts and closed ports. Output open ports to the console in real-time. Add comments explaining the threading logic.
💻
GPT-4
Bash Script: Log Analizi
Apache access loglarında şüpheli IP adreslerini tespit eden script.
#Bash
#Linux
#Forensics
PROMPT
Write a Bash script to analyze an Apache access.log file. The script should identify IP addresses that have made more than 100 requests in the last minute. It should output these IPs and the number of requests. Use awk, sort, and uniq commands.