如何修复我的Python代码中的“语法无效”错误?

时间:2019-01-19 05:12:28

标签: python

我正在编写代码以用于测试目的。我正在尝试在Windows虚拟机和Kali Linux虚拟机之间建立连接。我已经为此目的编写了一个侦听器,但是它无法正常工作。

我的Python代码:

enter image description here

在Kali Linux上运行侦听器的结果:

enter image description here

1 个答案:

答案 0 :(得分:1)

@Klaus D.是正确的,您的__init__的每一侧都需要两个下划线,而不是1。这也是一个确保您的类中的方法正确缩进的好主意。

#!/usr/bin/python

import socket

class Listener:
    def __init__(self, ip, port):
        listener = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
        listener.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
        listener.bind((ip, port))
        listener.listen(0)
        print("Waiting for connections....")
        self.connection, address = listener.accept()
        print("Got a connection from " + str(address))

    def execute_remotely(self, command):
        self.connection.send(command)
        return self.connection.recv(1024)

    def run(self):
        while True:
            command = raw_input(">>")
            result = self.execute_remotely(command)
            print(result)

myListener = Listener("10.0.2.15", 8080)
myListener.run()