Use nmap in linux or cygwin/mingw
nmap –script ssl-enum-ciphers [hostname]
Bruce Ng's software development blog
An archive of solutions of programming problems I have faced in my career
Use nmap in linux or cygwin/mingw
nmap –script ssl-enum-ciphers [hostname]
I was trying to install qark, an android security program, through pip.
After installation, the readme say to run qark –help. However the system cannot find this command.
After trying python -m quark.py, python quark.py, etc with no result. I managed to solve by finding out that the Script folder of the Python installation contains the .exe file for qark, qark.exe.
Adding this folder to my PATH environment variable allows running this command in the command prompt.
This should be something to be mentioned in the readme at least.