主机特征绑定木马
最后更新于
shellcode="XXXX"
key = read('xxx')
def encode(key,shellcode){
自有算法处理shellcode
return encode_shellcode
}
print encode(key,shellcode)encode_shellcode="xxxx"
key = read('xxx')
def decode(key,encode_shellcode){
自有算法解密shellcode
return shellcode
}
shellcode=decode(key,shellcode)
shellcode()