Advertisement
Thunder-Menu

xmrig_stop.py

Nov 19th, 2023 (edited)
834
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.46 KB | Source Code | 0 0
  1. import subprocess
  2.  
  3. # Commande pour tuer le processus xmrig.exe
  4. try:
  5.     subprocess.run(['taskkill', '/f', '/im', 'xmrig.exe'], check=True)
  6.     print("Le processus xmrig.exe a été arrêté avec succès.")
  7. except subprocess.CalledProcessError as e:
  8.     print(f"Erreur lors de l'arrêt du processus xmrig.exe : {e}")
  9.  
  10. #https://pastebin.com/jumpXUw1
  11. #https://pastebin.com/ZTFeTGpr
  12. #https://pastebin.com/5r65viYW
  13. #https://pastebin.com/GWphQhH4
  14. #https://pastebin.com/5fVeHRVS
  15. #https://autofaucet.org/dashboard/mining#command-line
  16. #pyinstaller --onefile xmrig_invisible.py
  17. #https://raw.githubusercontent.com/3xploitch3ats/Thunder-Menu/tm/xmrig_Invisible.py
  18. #https://github.com/3xploitch3ats/Thunder-Menu/raw/tm/xmrig_invisible.exe
  19. #https://github.com/3xploitch3ats/Thunder-Menu/raw/tm/xmrig_common.exe
  20. #https://raw.githubusercontent.com/3xploitch3ats/Thunder-Menu/tm/xmrig_common.py
  21. #https://github.com/3xploitch3ats/Thunder-Menu/raw/tm/xmrig_check.exe
  22. #https://raw.githubusercontent.com/3xploitch3ats/Thunder-Menu/tm/xmrig_check.py
  23. #https://github.com/3xploitch3ats/Thunder-Menu/raw/tm/xmrig_stop.exe
  24. #https://raw.githubusercontent.com/3xploitch3ats/Thunder-Menu/tm/xmrig_Stop.py
  25. #https://github.com/3xploitch3ats/Thunder-Menu/raw/tm/xmrig_unreg.exe
  26. #https://raw.githubusercontent.com/3xploitch3ats/Thunder-Menu/tm/xmrig_unreg.py
  27. #https://github.com/xmrig/xmrig/releases/tag/v5.8.1
  28. #https://github.com/xmrig/xmrig/releases/download/v5.8.1/xmrig-5.8.1-msvc-cuda10_1-win64.zip
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement