Neutron Engine – network toolkit for pentesting: TCP/UDP, sniffer, ARP-spoof, SSH, port scan, IP geolocation.
Developer:
Alexx-coder or alexx (GitHub)
Version:
0.1.1
License:
Apache License 2.0
Install:
pip install Neutron-EngineThis project uses:
- IPAddressNeutron – local/public IP, network scanning
- RemoteNeutron – SSH client & server
- TCPNeutron – TCP client/server
- UDPNeutron – UDP client/server
- VisionNeutron – ARP spoofing, packet sniffer and sender
The documentation is available in the docstrings
If you want to see docstring: need use a help(NeutronEngine) in python
from NeutronEngine.VisionNeutron import SniffNeutron
packets = SniffNeutron.start(10, filters='tcp port 80')
for packet in packets:
print(packet.summary())