Hello, im trying to secure windows with port knocking in a python script.
I already done this in Linux with Michael Stahn / pyknock · GitLab, and it work very well.
But it use python-iptables wich is only for Unix.
Do you know if there is any project like that for windows ? Or do you have any modules that i can use in my code ?
I try to launch the script(i know it won’t work as it is made for Unix, but i trought it would get past the ‘’ from pypacker.layer4 import tcp, udp ‘’ but :
from pypacker.layer3 import ip,icmp
ModuleNotFoundError: No module named 'pypacker'
Even if install pypacker trought pip.
Thank you