This tool is intended to be a modularized set of scripts to perform network functions in Python3. I found myself having to repeatedly look up how to perform certain Python functions related to networking so I put them in one place as a reference and functional tool
Note: Tools inside of the scripts folder are stand alone scripts
python3 -m pip install -r requirements.txt
docker build -t pnt3
Build Docker image (locally)
docker run -it -v ${PWD}/targets.txt:/targets/targets.txt pnt3 --dnsresolve --target /targets/targets.txt
Run Docker container with target file
docker run -it --entrypoint sh pnt3
Run Docker container and drop into bash shell to use scripts
docker run -it -v ${PWD}/targets.txt:/targets/targets.txt ghcr.io/sneakerhax/pnt3:latest --dnsresolve --target /targets/targets.txt
Run Docker container with target file
docker run -it --entrypoint sh ghcr.io/sneakerhax/pnt3:latest
Run Docker container and drop into bash shell to use scripts
docker run -it -v ${PWD}/targets.txt:/targets/targets.txt sneakerhax/pnt3:latest --dnsresolve --target /targets/targets.txt
Run Docker container with target file
docker run -it --entrypoint sh sneakerhax/pnt3:latest
Run Docker container and drop into bash shell to use scripts