ThoughtCrime sslstrip installation tar
By Daniel Rodriguez •
matt@matt-macbook:$ sudo tar zxvf sslstrip-0.9.tar.gz tar (child): sslstrip-0.9.tar.gz: Cannot open: No such file or directory tar (child): error is not recoverable: exiting now tar: child returned status 2 tar: Error is not recoverable: exiting now
How can I install this software?
11 Answer
This error was caused mainly because of you forget to add the full pathname of that file you are trying to extract.
cd /path/to/the/directory/where/
sudo tar -zxvf sslstrip-0.9.tar.gzThis will extract the tar.gz file to the same directory where tar.gz file is located.
OR
sudo tar -xzvf /full/path/to/sslstrip-0.9.tar.gzThis will extract tar.gz file to the /home/$USER directory.