IMPACKET
Impacket is a collection of Python classes for working with network protocols. Impacket is focused on providing low-level programmatic access to the packets and for some protocols (e.g. SMB1-3 and MSRPC) the protocol implementation itself. Packets can be constructed from scratch, as well as parsed from raw data, and the object oriented API makes it simple to work with deep hierarchies of protocols. The library provides a set of tools as examples of what can be done within the context of this library.
TOOLS
PSExec.py
MSSqlClient.py
INSTALLATION
#
root@oco:~$ git clone https://github.com/SecureAuthCorp/impacket.git
root@oco:~$ cd impacket
root@oco:~$ pip3 install .
# OR:
root@oco:~$ sudo python3 setup.py install
# In case you are missing some modules:
root@oco:~$ pip3 install -r requirements.txt
* sudo apt install python3 python3-pip
Last updated