Skip to content

Latest commit

 

History

History
57 lines (33 loc) · 1.39 KB

File metadata and controls

57 lines (33 loc) · 1.39 KB

Neutron Engine

Apache License 2.0

Neutron Enginenetwork 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

Neutron Engine on GitHub

Install:

pip install Neutron-Engine

Acknowledgements

This project uses:


Modules

  • 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

Example

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())