/external/bcc/tools/ |
D | sslsniff_example.txt | 6 text. Useful, for example, to sniff HTTP before encrypted with SSL. 74 -p PID, --pid PID sniff this PID only. 75 -c COMM, --comm COMM sniff only commands matching string. 82 ./sslsniff # sniff OpenSSL and GnuTLS functions 83 ./sslsniff -p 181 # sniff PID 181 only 84 ./sslsniff -c curl # sniff curl command only
|
/external/scapy/test/ |
D | sendsniff.uts | 1 % send, sniff, sr* tests for Scapy 25 = Run a sniff thread on the tap1 **interface** 28 target=sniff, 50 = Run a sniff thread on the tap1 **interface** 53 target=sniff, 107 = Run a sniff thread on the tun1 **interface** 110 target=sniff, 134 = Run a sniff thread on the tun1 **interface** 137 target=sniff,
|
D | answering_machines.uts | 12 @mock.patch("scapy.ansmachine.sniff") 14 def sniff(*args,**kargs): 16 mock_sniff.side_effect = sniff 109 @mock.patch("scapy.layers.dot11.sniff") 111 def sniff(*args,**kargs): 113 mock_sniff.side_effect = sniff
|
D | dnssecRR.uts | 126 …ffScapy is an interactive packet manipulation program that enables you to sniff, mangle, send netw…
|
D | pipetool.uts | 233 sniff(count=3)
|
/external/scapy/scapy/modules/ |
D | voip.py | 16 from scapy.sendrecv import sniff 88 sniff(store=0, prn=play, **kargs) 131 sniff(store=0, prn=play, **kargs) 147 sniff(store=0, prn=play, **kargs)
|
D | p0f.py | 25 from scapy.sendrecv import sniff 579 pl = sniff(iface=iface, filter='tcp and port ' + str(port), count = count, timeout=3)
|
/external/scapy/scapy/ |
D | ansmachine.py | 16 from scapy.sendrecv import send,sendp,sniff 126 self.sniff() 130 def sniff(self): member in AnsweringMachine 131 sniff(**self.optsniff)
|
D | supersocket.py | 71 def sniff(self, *args, **kargs): member in SuperSocket 73 return sendrecv.sniff(opened_socket=self, *args, **kargs)
|
D | sendrecv.py | 601 def sniff(count=0, store=True, offline=None, prn=None, lfilter=None, function 850 return sniff(opened_socket={sckt1: if1, sckt2: if2}, prn=prn, 862 sniff(prn=_cb, store=False, *args, **kargs)
|
/external/skia/tools/ |
D | get_images_from_skps.cpp | 52 void sniff(const void* ptr, size_t len) { in sniff() function 128 Sniffer sniff(file.c_str()); in get_images_from_file() local 133 ((Sniffer*)ctx)->sniff(data, size); in get_images_from_file() 136 procs.fImageCtx = &sniff; in get_images_from_file()
|
/external/skqp/tools/ |
D | get_images_from_skps.cpp | 52 void sniff(const void* ptr, size_t len) { in sniff() function 128 Sniffer sniff(file.c_str()); in get_images_from_file() local 133 ((Sniffer*)ctx)->sniff(data, size); in get_images_from_file() 136 procs.fImageCtx = &sniff; in get_images_from_file()
|
/external/python/cpython3/Lib/test/ |
D | test_csv.py | 993 dialect = sniffer.sniff(header, ",;") 1001 dialect = sniffer.sniff(self.sample1) 1006 dialect = sniffer.sniff(self.sample2) 1013 dialect = sniffer.sniff(self.sample3) 1018 dialect = sniffer.sniff(self.sample3, delimiters="?,") 1020 dialect = sniffer.sniff(self.sample3, delimiters="/,") 1022 dialect = sniffer.sniff(self.sample4) 1024 dialect = sniffer.sniff(self.sample5) 1026 dialect = sniffer.sniff(self.sample6) 1028 dialect = sniffer.sniff(self.sample7) [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_csv.py | 1042 dialect = sniffer.sniff(header, ",;") 1050 dialect = sniffer.sniff(self.sample1) 1055 dialect = sniffer.sniff(self.sample2) 1062 dialect = sniffer.sniff(self.sample3) 1067 dialect = sniffer.sniff(self.sample3, delimiters="?,") 1069 dialect = sniffer.sniff(self.sample3, delimiters="/,") 1071 dialect = sniffer.sniff(self.sample4) 1073 dialect = sniffer.sniff(self.sample5) 1075 dialect = sniffer.sniff(self.sample6) 1077 dialect = sniffer.sniff(self.sample7) [all …]
|
/external/python/cpython3/Lib/email/ |
D | contentmanager.py | 156 sniff = embedded_body(lines[:10]) 157 sniff_qp = quoprimime.body_encode(sniff.decode('latin-1'), 159 sniff_base64 = binascii.b2a_base64(sniff)
|
/external/scapy/doc/scapy/ |
D | extending.rst | 49 …1 frames from a Wi-Fi card in monitor mode. Note the store=0 parameter to sniff() to avoid storing… 58 sniff(prn=arp_monitor_callback, filter="arp", store=0)
|
D | usage.rst | 498 sniff : Sniff packets 529 single: sniff() 531 … clone tcpdump or tshark. Either one interface or a list of interfaces to sniff on can be provided… 533 >>> sniff(filter="icmp and host 66.35.250.151", count=2) 546 >>> sniff(iface="wifi0", prn=lambda x: x.summary()) 563 >>> sniff(iface="eth1", prn=lambda x: x.show()) 618 >>> sniff(iface=["eth1","eth2"], prn=lambda x: x.sniffed_on+": "+x.summary()) 626 >>> pkts = sniff(prn=lambda x:x.sprintf("{IP:%IP.src% -> %IP.dst%\n}{Raw:%Raw.load%\n}")) 642 We can sniff and do passive OS fingerprinting:: 654 >>> a=sniff(prn=prnp0f) [all …]
|
/external/python/cpython3/Lib/ |
D | csv.py | 176 def sniff(self, sample, delimiters=None): member in Sniffer 394 rdr = reader(StringIO(sample), self.sniff(sample))
|
/external/python/cpython2/Lib/ |
D | csv.py | 176 def sniff(self, sample, delimiters=None): member in Sniffer 397 rdr = reader(StringIO(sample), self.sniff(sample))
|
/external/scapy/scapy/layers/ |
D | dot11.py | 449 def sniff(self): member in WiFi_am 450 sniff(iface=self.iffrom, **self.optsniff)
|
D | inet6.py | 62 from scapy.sendrecv import sendp, sniff, sr, srp1 3333 sniff(store=0, 3587 sniff(store=0, 3817 sniff(store=0, 3898 sniff(store=0,
|
/external/u-boot/board/buffalo/lsxl/ |
D | README | 25 address assigned to the board, you either have to sniff the traffic or
|
/external/python/cpython3/Doc/library/ |
D | csv.rst | 256 .. method:: sniff(sample, delimiters=None) 272 dialect = csv.Sniffer().sniff(csvfile.read(1024))
|
/external/python/cpython2/Doc/library/ |
D | csv.rst | 257 .. method:: sniff(sample, delimiters=None) 273 dialect = csv.Sniffer().sniff(csvfile.read(1024))
|
/external/scapy/scapy/modules/krack/ |
D | automaton.py | 38 def sniff(self, *args, **kwargs): member in DHCPOverWPA
|