This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ################################################################################ | |
| # Cryptocurrency Malware Validation Script | |
| # Author: Security Team | |
| # Description: Validates and checks for cryptocurrency mining malware | |
| # Date: 2026-02-10 | |
| ################################################################################ | |
| set -euo pipefail |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import time | |
| import pyautogui | |
| # Desativa o "failsafe" padrão do pyautogui (mover o mouse para o canto superior esquerdo) | |
| # Se você quiser manter a proteção, comente essa linha. | |
| pyautogui.FAILSAFE = False | |
| try: | |
| print("Pressione Ctrl+C para parar o script.") | |
| while True: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import time | |
| import subprocess | |
| try: | |
| print("Press Ctrl+C to stop the script.") | |
| while True: | |
| # Use Scroll Lock key - it registers as activity but doesn't produce visible output | |
| subprocess.run(['powershell.exe', '-WindowStyle', 'Hidden', '-Command', | |
| 'Add-Type -AssemblyName System.Windows.Forms; ' + | |
| '[System.Windows.Forms.SendKeys]::SendWait("{SCROLLLOCK}{SCROLLLOCK}")'], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # Vulnerable packages and their vulnerable versions | |
| vulnerable_packages_json='[ | |
| {"name":"backslash","vulnerable_version":"0.2.1"}, | |
| {"name":"chalk-template","vulnerable_version":"1.1.1"}, | |
| {"name":"supports-hyperlinks","vulnerable_version":"4.1.1"}, | |
| {"name":"has-ansi","vulnerable_version":"6.0.1"}, | |
| {"name":"simple-swizzle","vulnerable_version":"0.2.3"}, |