亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? changelog

?? Scapy是一種功能強大的網絡分組操作工具
??
?? 第 1 頁 / 共 5 頁
字號:
# $Log: scapy.py,v $# Revision 1.0.5.1  2006/10/19 15:56:43  pbi# Release 1.0.5## Revision 1.0.4.106  2006/10/17 16:50:19  pbi# - fixed ScapyFreqFilter (ticket #19)## Revision 1.0.4.105  2006/10/17 16:12:03  pbi# - added 'count' parameter to send()/sendp() and __gen_send() to send the same set of#   packets a given number of times## Revision 1.0.4.104  2006/10/17 16:06:26  pbi# - added alternative 'n' parameter to corrupt_bits() and corrupt_bytes()#   to specify how much bits/bytes to corrupt, instead of working with percentages## Revision 1.0.4.103  2006/10/06 17:33:53  pbi# - added doc strings to Field class (ticket #14)## Revision 1.0.4.102  2006/10/06 17:17:08  pbi# - added my_globals parameter to autorun_commands() and all autorun_get_*() (ticket #15)## Revision 1.0.4.101  2006/10/06 17:09:10  pbi# - used get_it() in get_if_raw_addr()# - made interfaces with no IP return 0.0.0.0 (ticket #16)## Revision 1.0.4.100  2006/10/06 16:59:24  pbi# - removed all <tab> inconsistencies (ticket #17)## Revision 1.0.4.99  2006/10/06 16:33:08  pbi# - fixed typo in ISAKMPAttributeTypes (ticket #13)## Revision 1.0.4.98  2006/10/06 16:31:41  pbi# - added additionnal DHCP Options (ticket #11)## Revision 1.0.4.97  2006/10/06 15:34:38  pbi# - fixed DHCPtypes value (ticket #10)# - added new DHCPtypes values## Revision 1.0.4.96  2006/10/06 14:53:59  pbi# - fixed WEP building (broken since 1.0.4.86)## Revision 1.0.4.95  2006/10/06 14:53:19  pbi# - moved payload building call into a hookable method outside Packet.do_build()## Revision 1.0.4.94  2006/10/06 14:02:24  pbi# - now import Set object to have it on hand## Revision 1.0.4.93  2006/10/06 14:01:55  pbi# - moved field initialization from default valies from Packet.__init__()#   to Packet.init_fields()## Revision 1.0.4.92  2006/10/06 14:00:31  pbi# - WARNING: internal API change. Packet.do_dissect() now only dissects current layer.#   Pre/post_dissect hooks and payload dissection are called from Packet.dissect().## Revision 1.0.4.91  2006/10/06 12:24:56  pbi# - added fragmentation informations in IP.summary()## Revision 1.0.4.90  2006/10/06 12:24:11  pbi# - Packet.name is now automatically set to the class name if not specified## Revision 1.0.4.89  2006/10/06 12:22:47  pbi# - fixed StrFixedLenField.i2len() to return field actual length instead of fixed length that#   is already known## Revision 1.0.4.88  2006/10/06 12:20:50  pbi# - replaced type(x) is type by more correct isinstance(x, type)## Revision 1.0.4.87  2006/10/06 12:15:24  pbi# - fix corrupt_bits() probability computation## Revision 1.0.4.86  2006/09/23 19:36:30  pbi# - moved payload building from Packet.do_build() to Packet.build()# - added post build transform logic so that transformation functions can be applied#   to a freshly assembled layer## Revision 1.0.4.85  2006/09/23 06:54:37  pbi# - modified MutatedBytes/MutatedBits way of working# - renamed them CorruptedBytes/CorruptedBits# - added corrupt_bytes() and corrupt_bits() functions## Revision 1.0.4.84  2006/09/23 06:52:46  pbi# - improved import_hexcap() to handle more hexdump outputs## Revision 1.0.4.83  2006/09/11 15:50:32  pbi# - fixed some glurks is_promisc()# - added promiscping() function (A. Brodin)## Revision 1.0.4.82  2006/09/11 15:36:35  pbi# - added conf.autofragment paramter (default to 1)# - added auto IP fragmentation code into L3PacketSocket() to handle "Message Too Long" exceptions## Revision 1.0.4.81  2006/09/11 15:35:29  pbi# - changed sane() to sane_color() and added sane() that does not use color themes# - added hexstr() that returns a one line hexdump string from a string## Revision 1.0.4.80  2006/09/11 15:23:40  pbi# - fixed ISAKMPTransformSetField() to manage fields that should not use TLV encoding but need it# - changed N and D ISAKMP payload types to more explicit identifiers: Notification and Delete## Revision 1.0.4.79  2006/09/11 15:22:50  pbi# - renamed PacketList.hexdump() to PacketList.rawhexdump()# - added PacketList.hexdump() to print and hexdump of all packets topped by a summary of the dumped packet## Revision 1.0.4.78  2006/09/11 15:22:03  pbi# - added MutateBytes() volatile to randomly alter bytes in a string# - added MutateBits() volatile class to do random bitflips on a string## Revision 1.0.4.77  2006/09/11 15:20:47  pbi# - added IncrementalValue() volatile class for sequence number fields## Revision 1.0.4.76  2006/09/11 12:53:52  pbi# - Use random.randrange() instead of random.randint() for RandNum()# - RandInt() now reaches 2**32-1# - added RandSInt() and RandSLong() for signed values## Revision 1.0.4.75  2006/09/11 12:51:10  pbi# - Entries in arp_cache are now permanent if they have 0 or None instead of timeout## Revision 1.0.4.74  2006/08/27 17:36:08  pbi# - tweaked make_*_table() to add horizontal separation lines## Revision 1.0.4.73  2006/08/27 16:11:06  pbi# - added multiplot to plot many series from the same packet list. The function must returns#   a couple whose first element is the label of a serie and the second is the data to plot.## Revision 1.0.4.72  2006/08/27 15:13:36  pbi# - WARNING: API change. crc32() is now the zlib function.#   crc32(0xffffffffL, s) --> ~crc32(z)&0xffffffffL## Revision 1.0.4.71  2006/08/27 14:16:47  pbi# - fixed possible failures in DNS.summary()## Revision 1.0.4.70  2006/08/27 14:11:38  pbi# - improved L3PacketSocket to build the list of interfaces only when needed (promisc=1)## Revision 1.0.4.69  2006/08/27 14:10:05  pbi# - added gz parameter to PcapWriter (and thus wrpcap()) to gzip captures# - added abilty to read gzipped pcap files in PcapReader (and thus rdpcap())## Revision 1.0.4.68  2006/08/27 13:59:20  pbi# - changed Net representation for it to work with Packet.command()## Revision 1.0.4.67  2006/08/27 13:58:48  pbi# - added diffplot() to PacketList to plot a function of couples (l[i],l[i+delay])## Revision 1.0.4.66  2006/08/27 12:52:13  pbi# - added prototype to psdump() and pdfdump() docstring## Revision 1.0.4.65  2006/08/27 12:47:32  pbi# - have srloop() and srploop() return results of all probes## Revision 1.0.4.64  2006/08/11 12:24:31  pbi# - patched getmacbyip() to handle IP multicast and return the right MAC multicast## Revision 1.0.4.63  2006/08/11 12:13:45  pbi# - fixed lambda filtering in PacketList.plot()## Revision 1.0.4.62  2006/08/11 12:12:51  pbi# - fixed reinstantiation of a PacketList as parameter to another PacketList## Revision 1.0.4.61  2006/08/11 12:11:10  pbi# - added docstring to route.delt()## Revision 1.0.4.60  2006/08/11 12:10:41  pbi# - fixed /proc/net/route parsing to handle reject routes## Revision 1.0.4.59  2006/08/05 15:38:50  pbi# - added ActionField(): a wrapper to put arround a field that will trigger the call of a method#   each time a value is manually set into a field## Revision 1.0.4.58  2006/08/05 15:37:31  pbi# - fix: moved call to superclass' constructor in EnumField's constructor## Revision 1.0.4.57  2006/07/28 21:57:19  pbi# - fixed get_if_hwaddr() exception catching in SourceMACField and ARPSourceMACField## Revision 1.0.4.56  2006/07/28 17:24:39  pbi# - fixed typo in inet_pton## Revision 1.0.4.55  2006/07/19 17:23:30  pbi# - fix: ls() look for Packet subclasses in both globals() and __builtin__## Revision 1.0.4.54  2006/07/19 17:13:25  pbi# - forced _ special variable initisalization to None in autorun_commands()## Revision 1.0.4.53  2006/07/17 17:35:48  pbi# - replaced getattr() by Packet.getfieldval() in FieldLenField.i2m()## Revision 1.0.4.52  2006/07/17 17:28:20  pbi# - improved MACField.i2m()## Revision 1.0.4.51  2006/07/17 17:27:40  pbi# - changed Packet.__iter__() to clone unrolled packets without transforming fields values through i2h() and h2i()## Revision 1.0.4.50  2006/07/17 15:18:06  pbi# - added Packet.getfieldval() and NoPayload.getfieldval() to return the internal value of a field# - changed Packet.__getattr__() to use Packet.getfieldval()# - changed do_build, do_build_ps, guess_payload_class, __eq__, haslayer, getlayer to use Packet.getfieldval()## Revision 1.0.4.49  2006/07/17 14:00:53  pbi# - fixed little endian fields for big endian machines (replaced @ by <)## Revision 1.0.4.48  2006/07/17 13:43:04  pbi# - simplified PacketListField.addfield()## Revision 1.0.4.47  2006/07/17 13:42:09  pbi# - simplified Dot11SCField.is_applicable()## Revision 1.0.4.46  2006/07/17 13:40:55  pbi# - added __nonzero__() methods to Packet and Payload for the first to be true and the second#   to be false without assembling the packet## Revision 1.0.4.45  2006/07/17 13:37:19  pbi# - fixed Ether_Dot3_Dispatcher() to make it work with no arguments## Revision 1.0.4.44  2006/07/13 09:52:57  pbi# - Fixed 3BytesField assembling (N. Bareil, ticket #6)## Revision 1.0.4.43  2006/07/12 16:07:11  pbi# - fixed docstring of Packet.post_dissection()## Revision 1.0.4.42  2006/07/12 13:36:01  pbi# - added Packet.from_hexcap() class method## Revision 1.0.4.41  2006/07/12 13:35:37  pbi# - added a Packet.pre_dissect() hook## Revision 1.0.4.40  2006/07/12 13:23:19  pbi# - Added a Ether/802.3 dispatcher for "Ethernet" linktype# - 802.1q use LLC payload if type < 1500# - enhanced Dot3.mysummary()## Revision 1.0.4.39  2006/07/11 22:40:37  pbi# - fixed Dot11.answers() behaviour for management frames (L. Butti, ticket #5)## Revision 1.0.4.38  2006/07/11 22:37:36  pbi# - fixed endianness of some 802.11 fields (L. Butti, ticket #3)## Revision 1.0.4.37  2006/07/11 22:36:06  pbi# - removed SC field from 802.11 control frames (L. Butti, ticket #4)## Revision 1.0.4.36  2006/07/11 22:10:01  pbi# - fixed TCPOptionsField to support SAck option (P. Lindholm, ticket #3)# - strengthened TCPOptionsField against bad options## Revision 1.0.4.35  2006/07/11 21:57:37  pbi# - fix typo## Revision 1.0.4.34  2006/06/23 17:35:43  pbi# - improved error message details for get_if_hwaddr()## Revision 1.0.4.33  2006/06/23 17:33:38  pbi# - arping() function can update ARP cache if parameter cache=1 (D. Schuster, ticket #2)## Revision 1.0.4.32  2006/06/23 16:27:44  pbi# - fixed: overloaded volatile fields were not fixed for sending## Revision 1.0.4.31  2006/05/27 23:04:41  pbi# - fixed possible loop in TCP options## Revision 1.0.4.30  2006/05/25 18:00:40  pbi# - added split_layers(), split_top_down() and split_bottom_up() to undo the#   effects of bind_layers(), bind_top_down() and bind_bottom_up()## Revision 1.0.4.29  2006/05/25 10:25:32  pbi# - added missing SPI field for ISAKMP_payload_Proposal## Revision 1.0.4.28  2006/05/25 09:23:16  pbi# - almost reversed Field.h2i() removal patch (1.0.4.25) (changed my mind :))# - had Field.any2i() use Field.h2i()## Revision 1.0.4.27  2006/05/24 21:15:22  pbi# - enhanced Packet.__getattr__ prettiness## Revision 1.0.4.26  2006/05/24 20:50:47  pbi# - enhanced prettiness of DNSRRCountField## Revision 1.0.4.25  2006/05/24 20:49:44  pbi# - removed h2i() methods from Field API## Revision 1.0.4.24  2006/04/29 13:52:35  pbi# - added next_payload value overloading for ISAKMP layers## Revision 1.0.4.23  2006/04/29 13:31:18  pbi# - removed forgotten debug prints..## Revision 1.0.4.22  2006/04/29 13:20:30  pbi# - fixed ISAKMPTransformSetField# - fixed ISAKMP_payload_Transform length calculation## Revision 1.0.4.21  2006/04/29 12:48:13  pbi# - WARNING: Field API changed. parameter shift must be now provided to the#   length-varying field and not to the length field.# - added Field.i2len() method to return the length of a field (the number of#   bytes in the raw packet string)## Revision 1.0.4.20  2006/04/28 21:53:24  pbi# - fixed some problems with Packet.haslayer()/getlayer() for empty and list fields# - reduced Packet.haslayer()/getlayer() speed overhead to the same level as older versions## Revision 1.0.4.19  2006/04/26 14:55:18  pbi# - fixed (again) filter attaching on linux/amd64 (W. Robinet)## Revision 1.0.4.18  2006/04/26 12:55:29  pbi# - fixed Dot11WEP default icv value## Revision 1.0.4.17  2006/04/26 12:55:01  pbi# - ATTENTION: API change: Packet.post_build() now takes current#   assembled layer and assembled payload separately. Thus the#   new prototype: post_build(self, pkt payload) -> pkt. post_build()#   is in charge to join current layer and payload.#   Old API will work for a small transition time.## Revision 1.0.4.16  2006/04/25 15:23:49  pbi# - added internal _iterpacket parameter to SetGen to prevent iteration over Packet instances# - bugfix: prevented iteration over Packet instances in Packet.getlayer/haslayer/show()## Revision 1.0.4.15  2006/04/24 12:27:35  pbi# - added NetFlow v1 protocol layer (M. Geli)## Revision 1.0.4.14  2006/04/24 11:08:53  pbi# - big ISAKMPAttributeTypes update (W. McVey)# - changed ISAKMPTransformSetField to dissectTLV attributes (W. McVey)# - changed ISAKMPTransformSetField to assemble TLV attributes# - fixed ISAKMPTransformSetField to handle broken packets## Revision 1.0.4.13  2006/04/23 21:12:08  pbi# - big p0f update (P. Lalet)## Revision 1.0.4.12  2006/04/20 13:10:13  pbi# - fixed a bug with alias_type in Packet.guess_payload_class() when a field exists only#   in the alias class## Revision 1.0.4.11  2006/04/20 13:07:15  pbi# - enhanced LaTeXTheme2: used \bfseries and added colors to styles fail, success and even## Revision 1.0.4.10  2006/04/20 09:13:49  pbi# - fixed SetGen to better test int couples for intervals## Revision 1.0.4.9  2006/04/10 05:31:11  pbi# - use None value to specify timeout must be calculated in __sr_loop()

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品网站在线观看| 美女精品一区二区| 色综合久久99| 午夜精品久久久久久| 久久夜色精品一区| 99精品欧美一区二区三区综合在线| 亚洲精品久久久蜜桃| 日韩欧美一卡二卡| 91丝袜国产在线播放| 久久精品国产一区二区三| 中文字幕高清一区| 3d动漫精品啪啪1区2区免费| 国产精品一二三四五| 日日噜噜夜夜狠狠视频欧美人| 久久先锋资源网| 777午夜精品视频在线播放| 成人性生交大片免费看视频在线 | 91精品国产综合久久久久久久| 久久精品国产**网站演员| 一区二区在线看| 中文字幕日本不卡| 久久久国产午夜精品 | 国产成人丝袜美腿| 日韩avvvv在线播放| 亚洲一区二区三区四区五区黄 | 国产精品美女久久久久久久久久久 | 国产精品影音先锋| 免费欧美日韩国产三级电影| 日日夜夜免费精品视频| 日日夜夜一区二区| 天堂蜜桃一区二区三区| 亚洲午夜久久久久久久久电影院| 亚洲免费视频中文字幕| 一区二区三区中文字幕| 亚洲一区二区三区四区五区黄| 亚洲欧美日韩电影| 日韩和欧美一区二区| 精品一区二区国语对白| 成人丝袜18视频在线观看| 91蜜桃婷婷狠狠久久综合9色| 色婷婷av一区二区三区大白胸| 欧美日韩免费视频| 精品999在线播放| 日韩伦理电影网| 日韩成人av影视| 国产99久久久国产精品免费看| 99精品久久久久久| 欧美一区二区三区喷汁尤物| 国产精品久久久久久久久图文区| 婷婷久久综合九色综合绿巨人| 国产综合色产在线精品| 欧美日韩午夜精品| 中文字幕在线免费不卡| 美女视频黄 久久| 欧美色图激情小说| 一区二区三区精品| 懂色av一区二区夜夜嗨| 日韩美女主播在线视频一区二区三区| 中文字幕在线一区| 蜜桃精品视频在线观看| 欧美男人的天堂一二区| 一色桃子久久精品亚洲| 成人中文字幕在线| 久久青草国产手机看片福利盒子 | 中文字幕一区二区三区av| 日本欧美久久久久免费播放网| 欧美亚洲综合在线| 一区二区三区中文字幕| 91在线视频在线| 一区二区三区免费| 色诱视频网站一区| 亚洲午夜久久久久久久久电影网| 97久久超碰国产精品电影| 亚洲人成网站影音先锋播放| 成人av高清在线| 依依成人精品视频| 欧美精品色综合| 经典三级在线一区| 日本一区二区成人在线| 91亚洲精华国产精华精华液| 亚洲国产日韩一级| 日韩欧美电影一二三| 丰满亚洲少妇av| 香蕉久久夜色精品国产使用方法 | 欧美视频一区在线| 亚洲va在线va天堂| 国产欧美日韩三区| 777久久久精品| 国产成人欧美日韩在线电影| 午夜精品久久久久久久久久| 国产日韩综合av| 欧美精品免费视频| 欧美成人精品3d动漫h| 91色乱码一区二区三区| 国产乱码字幕精品高清av| 亚洲与欧洲av电影| 中文字幕永久在线不卡| 欧美一区国产二区| 欧美日韩三级一区二区| 成人美女视频在线观看18| 久久99久久精品| 五月婷婷激情综合网| 亚洲成精国产精品女| 亚洲欧美日韩人成在线播放| 国产亚洲成年网址在线观看| 日韩精品一区二区三区四区视频 | 欧洲精品中文字幕| 99久久精品国产麻豆演员表| 国产成人免费av在线| 韩国v欧美v日本v亚洲v| 国产麻豆成人精品| 国产成人啪免费观看软件| 国产精品一区二区三区99| 97久久超碰国产精品| 欧美日韩一二三| 日韩精品一区在线观看| 精品国产伦一区二区三区免费 | 国产欧美综合色| 国产精品污www在线观看| 中文字幕一区二区在线观看| 亚洲美女偷拍久久| 日日嗨av一区二区三区四区| 麻豆91在线播放免费| 国产不卡在线播放| 欧美精品v国产精品v日韩精品 | 极品美女销魂一区二区三区| 国产精品综合网| 91免费看片在线观看| 7777精品久久久大香线蕉| 精品国产成人系列| 综合激情网...| 久久国产视频网| 欧美不卡123| 亚洲最大色网站| 国产福利91精品一区二区三区| 99久久亚洲一区二区三区青草| 欧美日韩视频一区二区| 国产精品家庭影院| 国内久久精品视频| 777久久久精品| 亚洲午夜一区二区三区| a4yy欧美一区二区三区| 久久久精品综合| 国内一区二区在线| 精品久久久久99| 日韩电影一二三区| 欧美色图在线观看| 玉米视频成人免费看| 9色porny自拍视频一区二区| 欧美大胆人体bbbb| 美女国产一区二区三区| 日韩欧美一区在线观看| 日韩高清电影一区| 日韩女同互慰一区二区| 久久国产人妖系列| 久久在线观看免费| jizz一区二区| 亚洲欧美另类久久久精品| 在线亚洲欧美专区二区| 五月激情综合色| 欧美一级专区免费大片| 久久福利资源站| 国产精品伦理一区二区| 色94色欧美sute亚洲13| 日韩高清在线不卡| 亚洲色图都市小说| 日韩视频在线观看一区二区| 国产精品 欧美精品| 亚洲视频精选在线| 精品国内二区三区| 色婷婷久久综合| 国产在线不卡视频| 亚洲第一精品在线| 中文字幕一区二区三区在线播放 | 亚洲国产中文字幕| 久久久99精品久久| 精品视频在线看| 国产福利精品导航| 蜜桃视频在线观看一区二区| 综合精品久久久| 国产精品午夜在线| 欧美一级欧美三级在线观看| 99re亚洲国产精品| 国产精品自拍毛片| 久久国产精品区| 图片区小说区国产精品视频| 综合网在线视频| 日韩毛片在线免费观看| 欧美激情一区二区三区全黄| 欧美成人免费网站| 欧美一区二区三区电影| 欧美妇女性影城| 欧美日韩精品一区二区在线播放| 日本道在线观看一区二区| 色网综合在线观看| 91免费精品国自产拍在线不卡| caoporen国产精品视频| av一区二区三区四区| 91免费观看在线| 欧美日韩午夜在线|