简体   繁体   中英

Scapy sr1 function without outputs

when I use the function sr1() on any packet i get the automatic output: in send() function you can add extra parameter, #verbose=False# and it's stop printing outputs, but in sr1() i don't know how, and if it can even be done.

the output after the sr1() function

thanks for any event

I believe the flag you want is "verbose=0".
Basic example:

sr1(packet, verbose=0)

Used in the 3-way handshake:

ip = IP(dst=target)  
syn = ip/TCP(sport=self.sport, dport=self.dport, flags="S", seq=self.seq)  
synack = sr1(syn, verbose=0, timeout=2)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM