{ "info": { "author": "Philippe BIONDI", "author_email": "guillaume@valadon.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "Intended Audience :: System Administrators", "Intended Audience :: Telecommunications Industry", "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Security", "Topic :: System :: Networking", "Topic :: System :: Networking :: Monitoring" ], "description": "# Scapy\n\n[![Travis Build Status](https://travis-ci.com/secdev/scapy.svg?branch=master)](https://travis-ci.com/secdev/scapy)\n[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/secdev/scapy?svg=true)](https://ci.appveyor.com/project/secdev/scapy)\n[![Codecov Status](https://codecov.io/gh/secdev/scapy/branch/master/graph/badge.svg)](https://codecov.io/gh/secdev/scapy)\n[![Codacy Badge](https://api.codacy.com/project/badge/Grade/30ee6772bb264a689a2604f5cdb0437b)](https://www.codacy.com/app/secdev/scapy)\n[![PyPI Version](https://img.shields.io/pypi/v/scapy.svg)](https://pypi.python.org/pypi/scapy/)\n[![Python Versions](https://img.shields.io/pypi/pyversions/scapy.svg)](https://pypi.python.org/pypi/scapy/)\n[![License: GPL v2](https://img.shields.io/badge/License-GPL%20v2-blue.svg)](LICENSE)\n[![Join the chat at https://gitter.im/secdev/scapy](https://badges.gitter.im/secdev/scapy.svg)](https://gitter.im/secdev/scapy)\n\nScapy is a powerful Python-based interactive packet manipulation program and\nlibrary.\n\nIt is able to forge or decode packets of a wide number of protocols, send them\non the wire, capture them, store or read them using pcap files, match requests\nand replies, and much more. It is designed to allow fast packet prototyping by\nusing default values that work.\n\nIt can easily handle most classical tasks like scanning, tracerouting, probing,\nunit tests, attacks or network discovery (it can replace `hping`, 85% of `nmap`,\n`arpspoof`, `arp-sk`, `arping`, `tcpdump`, `wireshark`, `p0f`, etc.). It also\nperforms very well at a lot of other specific tasks that most other tools can't\nhandle, like sending invalid frames, injecting your own 802.11 frames, combining\ntechniques (VLAN hopping+ARP cache poisoning, VoIP decoding on WEP protected\nchannel, ...), etc.\n\nScapy supports Python 2.7 and Python 3 (3.4 to 3.7). It's intended to\nbe cross platform, and runs on many different platforms (Linux, OSX,\n\\*BSD, and Windows).\n\n## Getting started\n\nScapy is usable either as a **shell** or as a **library**.\nFor further details, please head over to [Getting started with Scapy](https://scapy.readthedocs.io/en/latest/introduction.html), which is part of the documentation.\n\n### Shell demo\n\n![Scapy install demo](https://secdev.github.io/img/animation-scapy-install.svg)\n\nScapy can easily be used as an interactive shell to interact with the network.\nThe following example shows how to send an ICMP Echo Request message to\n`github.com`, then display the reply source IP address:\n\n```python\nsudo ./run_scapy\nWelcome to Scapy\n>>> p = IP(dst=\"github.com\")/ICMP()\n>>> r = sr1(p)\nBegin emission:\n.Finished to send 1 packets.\n*\nReceived 2 packets, got 1 answers, remaining 0 packets\n>>> r[IP].src\n'192.30.253.113'\n```\n\n### Resources\n\nThe [documentation](https://scapy.readthedocs.io/en/latest/) contains more\nadvanced use cases, and examples.\n\nOther useful resources:\n\n- [Scapy in 20 minutes](https://github.com/secdev/scapy/blob/master/doc/notebooks/Scapy%20in%2015%20minutes.ipynb)\n- [Interactive tutorial](https://scapy.readthedocs.io/en/latest/usage.html#interactive-tutorial) (part of the documentation)\n- [The quick demo: an interactive session](https://scapy.readthedocs.io/en/latest/introduction.html#quick-demo)\n(some examples may be outdated)\n- [HTTP/2 notebook](https://github.com/secdev/scapy/blob/master/doc/notebooks/HTTP_2_Tuto.ipynb)\n- [TLS notebooks](https://github.com/secdev/scapy/blob/master/doc/notebooks/tls)\n\n## [Installation](https://scapy.readthedocs.io/en/latest/installation.html)\n\nScapy works without any external Python modules on Linux and BSD like operating\nsystems. On Windows, you need to install some mandatory dependencies as\ndescribed in [the\ndocumentation](http://scapy.readthedocs.io/en/latest/installation.html#windows).\n\nOn most systems, using Scapy is as simple as running the following commands:\n\n```bash\ngit clone https://github.com/secdev/scapy\ncd scapy\n./run_scapy\n```\n\nTo benefit from all Scapy features, such as plotting, you might want to install\nPython modules, such as `matplotlib` or `cryptography`. See the\n[documentation](http://scapy.readthedocs.io/en/latest/installation.html) and\nfollow the instructions to install them.", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/secdev/scapy/tarball/master", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://scapy.net", "keywords": "network", "license": "GPLv2", "maintainer": "Pierre LALET, Gabriel POTTER, Guillaume VALADON", "maintainer_email": "", "name": "scapy", "package_url": "https://pypi.org/project/scapy/", "platform": "", "project_url": "https://pypi.org/project/scapy/", "project_urls": { "Documentation": "https://scapy.readthedocs.io", "Download": "https://github.com/secdev/scapy/tarball/master", "Homepage": "https://scapy.net", "Source Code": "https://github.com/secdev/scapy/" }, "release_url": "https://pypi.org/project/scapy/2.4.3/", "requires_dist": null, "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "summary": "Scapy: interactive packet manipulation tool", "version": "2.4.3" }, "last_serial": 5642250, "releases": { "2.2.0-dev": [ { "comment_text": "built for Linux-3.8.0-22-generic-x86_64-with-glibc2.7", "digests": { "md5": "84e62f8c244d6e68daa5f7d1de645191", "sha256": "21d868519269059230c800840eb786007b7a85fd886d7911d174719e7aafba5e" }, "downloads": -1, "filename": "scapy-2.2.0-dev.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "84e62f8c244d6e68daa5f7d1de645191", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 815072, "upload_time": "2013-10-12T22:06:18", "url": "https://files.pythonhosted.org/packages/72/0b/5381f2a376035d06937064fb4ecfaf2c69fd94327000e13615a4f5d4cc13/scapy-2.2.0-dev.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "1a5115d1f33548501d01d735bd689f13", "sha256": "22a11787273110fb19cec6215c73e0a90a0d049a77142c34252bb96e70198692" }, "downloads": -1, "filename": "scapy-2.2.0-dev.tar.gz", "has_sig": false, "md5_digest": "1a5115d1f33548501d01d735bd689f13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2097543, "upload_time": "2013-10-12T22:05:44", "url": "https://files.pythonhosted.org/packages/f3/29/48d6ed3c95571b5ff3ee91b1c987c820e7c5265dfd2c46b566573d87c662/scapy-2.2.0-dev.tar.gz" }, { "comment_text": "", "digests": { "md5": "185d5cd91ce36c449c2f02ff8cb1f2a0", "sha256": "e869985a337204171cd0447eea67083a9bf8ef4bfed3300856c53021ff3c17b9" }, "downloads": -1, "filename": "scapy-2.2.0-dev.zip", "has_sig": false, "md5_digest": "185d5cd91ce36c449c2f02ff8cb1f2a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2182980, "upload_time": "2013-10-12T22:22:34", "url": "https://files.pythonhosted.org/packages/4e/f7/700afef531954770c6199f073edc7f599f6cfd6b61c4f69dac99f51f967b/scapy-2.2.0-dev.zip" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "1527f09562d9c1bafa5e619c7782d5a0", "sha256": "c3089764ad4cdd96d56816ac8bed4cea3738ce49d18a1a7ef2906a11927ba28b" }, "downloads": -1, "filename": "scapy-2.3.1.zip", "has_sig": false, "md5_digest": "1527f09562d9c1bafa5e619c7782d5a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1134797, "upload_time": "2014-12-30T20:38:14", "url": "https://files.pythonhosted.org/packages/ee/cd/d20c1e121b09697bf4d7b1b9edde6573fc7d54eefc56860f457a7edfc0de/scapy-2.3.1.zip" } ], "2.3.2": [ { "comment_text": "", "digests": { "md5": "b8ca06ca3b475bd01ba6cf5cdc5619af", "sha256": "a9059ced6e1ded0565527c212f6ae4c735f4245d0f5f2d7313c4a6049b005cd8" }, "downloads": -1, "filename": "scapy-2.3.2.tar.gz", "has_sig": false, "md5_digest": "b8ca06ca3b475bd01ba6cf5cdc5619af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1130191, "upload_time": "2016-01-29T08:51:53", "url": "https://files.pythonhosted.org/packages/6d/72/c055abd32bcd4ee6b36ef8e9ceccc2e242dea9b6c58fdcf2e8fd005f7650/scapy-2.3.2.tar.gz" } ], "2.3.3": [ { "comment_text": "", "digests": { "md5": "65939356f08760ebef836796d3320b3b", "sha256": "9d3b0293dcdc2cc42eedacbc9003038109558c4b5c5e4a3fa01b8ef5762f1eb0" }, "downloads": -1, "filename": "scapy-2.3.3.tgz", "has_sig": false, "md5_digest": "65939356f08760ebef836796d3320b3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1413102, "upload_time": "2016-10-18T13:25:01", "url": "https://files.pythonhosted.org/packages/ac/14/c792a14b9f8bc4bb9c74c0594c167a2da36e31964098d9e27202142cbd7d/scapy-2.3.3.tgz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "d7d3c4294f5a718e234775d38dbeb7ec", "sha256": "452f714f5c2eac6fd0a6146b1dbddfc24dd5f4103f3ed76227995a488cfb2b73" }, "downloads": -1, "filename": "scapy-2.4.0.tar.gz", "has_sig": false, "md5_digest": "d7d3c4294f5a718e234775d38dbeb7ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3097974, "upload_time": "2018-03-27T09:28:26", "url": "https://files.pythonhosted.org/packages/68/01/b9943984447e7ea6f8948e90c1729b78161c2bb3eef908430638ec3f7296/scapy-2.4.0.tar.gz" } ], "2.4.0rc3": [ { "comment_text": "", "digests": { "md5": "112be841e61893d9e3b75c1905da5cdf", "sha256": "27026b0935cd922a1989876cf4c9e5524e0b80084677d9e919b4ad36c6b35312" }, "downloads": -1, "filename": "scapy-2.4.0rc3.tar.gz", "has_sig": false, "md5_digest": "112be841e61893d9e3b75c1905da5cdf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2396304, "upload_time": "2018-01-17T13:00:36", "url": "https://files.pythonhosted.org/packages/de/7b/9685625313a0e4a785c08b9f5548b510c1efb744e226f42cf29003f52308/scapy-2.4.0rc3.tar.gz" } ], "2.4.0rc4": [ { "comment_text": "", "digests": { "md5": "6e0ee1f19c9c6754e3744d12a333b2df", "sha256": "2f967bac849eb19e8920ab8ebaef90fa093b8a3a3d542e23cd0f04c3acde2851" }, "downloads": -1, "filename": "scapy-2.4.0rc4.tar.gz", "has_sig": false, "md5_digest": "6e0ee1f19c9c6754e3744d12a333b2df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2400483, "upload_time": "2018-01-28T16:13:29", "url": "https://files.pythonhosted.org/packages/59/55/392c68f2a8bad3a51d24de415645c042621937726b06d431ea40bf5922dd/scapy-2.4.0rc4.tar.gz" } ], "2.4.0rc5": [ { "comment_text": "", "digests": { "md5": "8f50e04a0c53c5d0389aacdcb76751f8", "sha256": "8faef1d5ffe84a6655959d50a46763e5d96ed7b630536956cf71451a8a2b5178" }, "downloads": -1, "filename": "scapy-2.4.0rc5.tar.gz", "has_sig": false, "md5_digest": "8f50e04a0c53c5d0389aacdcb76751f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3089352, "upload_time": "2018-03-01T09:46:20", "url": "https://files.pythonhosted.org/packages/08/ac/0b00f81dfec78db461d092a7fa7df6c0daf78ac8da6f4c61ac80187f10c1/scapy-2.4.0rc5.tar.gz" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "79a110506243981c446abea84f7a096d", "sha256": "71b8608a756f5df91387932e2b341557f2c66d2c2cebdfd07b2b0c07059ca065" }, "downloads": -1, "filename": "scapy-2.4.1.tar.gz", "has_sig": false, "md5_digest": "79a110506243981c446abea84f7a096d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3213065, "upload_time": "2019-01-10T08:10:28", "url": "https://files.pythonhosted.org/packages/61/46/3de229d48d5c5465f0ab6e13ff445a8cd1a7f7eef381d033b7f8087f273e/scapy-2.4.1.tar.gz" } ], "2.4.2": [ { "comment_text": "", "digests": { "md5": "e6a03d8c924a6bbde1e86fc58bd2b9d6", "sha256": "1baa048936207ceb1a4281a0e1e3b4317667c754872a0bb4734c5213c468e86a" }, "downloads": -1, "filename": "scapy-2.4.2.tar.gz", "has_sig": false, "md5_digest": "e6a03d8c924a6bbde1e86fc58bd2b9d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 795548, "upload_time": "2019-01-10T19:02:19", "url": "https://files.pythonhosted.org/packages/d0/04/b8512e5126a1816581767bf95cbf525e0681a22c055bcd45f47ecff60170/scapy-2.4.2.tar.gz" } ], "2.4.3": [ { "comment_text": "", "digests": { "md5": "469ae6f5615799a5de3f3b4eb217b18d", "sha256": "e2f8d11f6a941c14a789ae8b236b27bd634681f1b29b5e893861e284d234f6b0" }, "downloads": -1, "filename": "scapy-2.4.3.tar.gz", "has_sig": false, "md5_digest": "469ae6f5615799a5de3f3b4eb217b18d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 905334, "upload_time": "2019-08-06T23:44:48", "url": "https://files.pythonhosted.org/packages/52/e7/464079606a9cf97ad04936c52a5324d14dae36215f9319bf3faa46a7907d/scapy-2.4.3.tar.gz" } ], "2.4.3rc1": [ { "comment_text": "", "digests": { "md5": "81c6ae1a8260f723d100c05c19cdc078", "sha256": "1d6a1a6578fe5e7e52f239908b3906799ed970feeea34097fcae2db84019d695" }, "downloads": -1, "filename": "scapy-2.4.3rc1.tar.gz", "has_sig": false, "md5_digest": "81c6ae1a8260f723d100c05c19cdc078", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 833140, "upload_time": "2019-03-05T21:10:32", "url": "https://files.pythonhosted.org/packages/73/79/98e9eaa970c15f87e1617f9a9e70f3aa2115695fa017d5dd2dd2163e1ace/scapy-2.4.3rc1.tar.gz" } ], "2.4.3rc2": [ { "comment_text": "", "digests": { "md5": "0ff794f3ab41d9e6570eb6295184e8c7", "sha256": "193da281a73d368b9f4b9b6b712bd3fee7ee40e07d69dfbe2763ecd409a064e6" }, "downloads": -1, "filename": "scapy-2.4.3rc2.tar.gz", "has_sig": false, "md5_digest": "0ff794f3ab41d9e6570eb6295184e8c7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 886324, "upload_time": "2019-07-01T20:42:22", "url": "https://files.pythonhosted.org/packages/ff/05/824b418ab9beabefcd41081f0d6c3f1b64182928260f870f2a363995b164/scapy-2.4.3rc2.tar.gz" } ], "2.4.3rc3": [ { "comment_text": "", "digests": { "md5": "e13356751d856342bf9e007582ae77bb", "sha256": "f056be75340e0d190d0ee0da377f8202a9b29288419f5ae19db4f278c94bbfa3" }, "downloads": -1, "filename": "scapy-2.4.3rc3.tar.gz", "has_sig": false, "md5_digest": "e13356751d856342bf9e007582ae77bb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 901972, "upload_time": "2019-07-09T16:04:11", "url": "https://files.pythonhosted.org/packages/b6/c5/2f49c366fc2871a34d4760c135f5640b797180348961748f0c6f8c92d5e3/scapy-2.4.3rc3.tar.gz" } ], "2.4.3rc4": [ { "comment_text": "", "digests": { "md5": "fd6e7e41795be5f45192e44cdd2bc93c", "sha256": "e76e453b77c906ab8ce76a98472ac12db4b62b8d069f9502a8bf6903bf329f93" }, "downloads": -1, "filename": "scapy-2.4.3rc4.tar.gz", "has_sig": false, "md5_digest": "fd6e7e41795be5f45192e44cdd2bc93c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 904380, "upload_time": "2019-07-29T19:13:14", "url": "https://files.pythonhosted.org/packages/4f/00/d4d12afbe08d448931dd3346ba6c8756ddcda66a3670a81b107d74adc2e0/scapy-2.4.3rc4.tar.gz" } ], "2.4rc2": [ { "comment_text": "", "digests": { "md5": "9c337cb045459c9e52a3f21c3557006d", "sha256": "143e9444dddd8c0bd98db27ad2157309219b8f076bee810511309bcfb35ab123" }, "downloads": -1, "filename": "scapy-2.4.0rc2.tar.gz", "has_sig": false, "md5_digest": "9c337cb045459c9e52a3f21c3557006d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2176492, "upload_time": "2018-01-10T22:23:08", "url": "https://files.pythonhosted.org/packages/4f/93/48affce95938507947d42137171927787521c961848827034d0246b07740/scapy-2.4.0rc2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "469ae6f5615799a5de3f3b4eb217b18d", "sha256": "e2f8d11f6a941c14a789ae8b236b27bd634681f1b29b5e893861e284d234f6b0" }, "downloads": -1, "filename": "scapy-2.4.3.tar.gz", "has_sig": false, "md5_digest": "469ae6f5615799a5de3f3b4eb217b18d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 905334, "upload_time": "2019-08-06T23:44:48", "url": "https://files.pythonhosted.org/packages/52/e7/464079606a9cf97ad04936c52a5324d14dae36215f9319bf3faa46a7907d/scapy-2.4.3.tar.gz" } ] }