Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在远程服务器上使用 scapy 来转储这样的流量
sniff(filter='icmp', iface='eth1', timeout=5)
要连接到远程服务器,我正在使用 RPyC。
conn = rpyc.classic.connect(HOST_IP)
但我不明白如何在远程服务器上使用 scapy。如何通过 RPyC 在远程服务器上调用嗅探功能?
这个问题可能被认为更广泛 - 如何在远程机器上导入模块并使用它的功能?
你不应该icmp用过滤器嗅探。您需要过滤tcp以获取通过 TCP 的 RPyC 连接。
icmp
tcp