dockerfile-msf
dockerfile-msf copied to clipboard
added tmux, wget, etc
I pulled the image down from docker hub and noticed that not all of the packages listed in the instructions were present. I went ahead and added those (with a minor clean-up for readability) and a few apt
command changes for bionic.
Some things like ping
aren't present but the purpose is for availability of msfconsole
, msfvenom
and others.
Let me know what you think. Appreciate feedback.
First, thanks, it is very nice and exciting to receive contributions :-)
I once put them in the Dockerfile, but I removed them to get a smaller image size. Then, it is easily possible to base another image from it with more tools.
The installed tools (like nmap) are necessary, at some point, for the installation process or using some Metasploit features.
Could you tell me more about your use of this image?
You're welcome!
I was looking for any existing images with metasploit to utilize rather than starting from scratch. My usage is to have a working and containerized msf with Karmasploit capabilities for wifi things. I haven't gotten that far yet in my fork.
Having tmux keeps the quality of life, but now that I think of it there's docker exec
as an alternative.
Keeping the image size small is ideal and keeps the quick runtimes; feel free to reject.
I finally did it, at least for tmux. Thanks !