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.
UDPパケットをncatサーバーに送信しようとする簡単なプログラムを作成しました
コードは次のとおりです。
from scapy.all import * sr1(IP(dst="127.0.0.1")/UDP(dport=8080)/"TAG1")
しかし、ncat サーバーからは何も得られません。誰かが私が間違っていることを教えてもらえますか?
ネットワーク関連のプロジェクトを開発するときは、tcpdump や wireshark などのキャプチャ ソフトウェアをインストールすることをお勧めします。ネットワーク内にあるものを確認するのに役立ちます。 tcpdump を使用してすべてのパケットを 127.0.0.1 に取得するには、次のコマンドを使用できます。
tcpdump -i eth0 "dst 127.0.0.1 and dst port 8080"