Advertisement
FlyFar

core/view.py

Nov 19th, 2023
730
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 3.19 KB | Cybersecurity | 0 0
  1. ######################################################
  2. #                                                    #
  3. #       HeraChromeKeylogger                          #
  4. #                                                    #
  5. # by:     UNDEADSEC                                  #
  6. #                                                    #
  7. # Telegram Group: https://t.me/UndeadSec             #
  8. # YouTube Channel: https://youtube.com/c/UndeadSec   #
  9. # Twitter: https://twitter.com/UndeadSec                #
  10. #                                                    #
  11. ######################################################
  12. from os import system
  13. from huepy import *
  14.  
  15. def clear():
  16.     system('clear')
  17.  
  18. def phpNot():
  19.     print(red("\n\n[!] PHP installation not found. Please install PHP and run me again. http://www.php.net/ "))
  20.  
  21. def head():
  22.     clear()
  23.     print(cyan('''
  24. UNDEADSEC | t.me/UndeadSec | youtube.com/c/UndeadSec - BRAZIL
  25.  
  26. ██  ██ ████
  27. ██  ██ ██   ██   ██████
  28. ██████ ████ ████ ██  ██ v1.0
  29. ██  ██ ██   ██   ██████
  30. ██  ██ ████ ██   ██  ██ Twitter: https://twitter.com/UndeadSec
  31.   CHROME KEYLOGGER
  32.      EXTENSION'''))
  33.  
  34. def printQue(text):
  35.     print(que(text))
  36.  
  37. def done():
  38.     print(good('Done. Load your extension in Chrome. (/MaliciousExtension/)'))
  39.     print(good('Your logs will be saved as logs.txt'))
  40.  
  41.  
  42. def checkEd():
  43.     print(red(" [!] Do you agree to use this tool for educational purposes only? (y/N) "), end = '')
  44.     if input('> ').upper() != 'Y':
  45.         clear()
  46.         print(red('\n[ YOU ARE NOT AUTHORIZED TO USE THIS TOOL ]\n'))
  47.         exit(0)
  48.  
  49. def end():
  50.     clear()
  51.     print(cyan('''
  52.         ,-`{-`/
  53.      ,-~ , \ {-~~-,
  54.    ,~  ,   ,`,-~~-,`,        ██  ██ ████
  55.  ,`   ,   { {      } }       ██  ██ ██   ██   ██████               }/
  56. ;     ,--/`\ \   / /        ██████ ████ ████ ██  ██      }/      /,/
  57. ;  ,-./      \ \ { {  (      ██  ██ ██   ██   ██████     /,;    ,/ ,/
  58. ; /   `       } } `, `-`-.___ ██  ██ ████ ██   ██  ██    / `,  ,/  `,/
  59. \|         ,`,`    `~.___,---} CHROME KEYLOGGER        / ,`,,/  ,`,;
  60.  `        { {                      EXTENSION      __  /  ,`/   ,`,;
  61.        /   \ \                                _,`, `{  `,{   `,`;`
  62.       {     } }       /~\        .-:::-.     (--,   ;\ `,}  `,`;
  63.       \\._./ /      /` , \     ,:::::::::,     `~;   \},/  `,`;     ,-=-
  64.        `-..-`      /. `  .\_   ;:::::::::::;  __,{     `/  `,`;     {
  65.                   / , ~ . ^ `~`\:::::::::::<<~>-,,`,    `-,  ``,_    }
  66.                /~~ . `  . ~  , .`~~\:::::::;    _-~  ;__,        `,-`
  67.       /`\   /~,  . ~ , '  `  ,  .` \::::;`   <<<~```   ``-,,__   ;
  68.      /` .`\ /` .  ^  ,  ~  ,  . ` . ~\~                      ascii by xiong
  69.  
  70. > Watch us on YouTube: https://youtube.com/c/UndeadSec
  71. > Follow me on Twitter: https://twitter.com/A1S0N_
  72. > Contribute on Github: https://github.com/UndeadSec/HeraKeylogger
  73. > Join our Telegram Group(Portuguese Brazil): https://t.me/UndeadSec \n'''))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement