How I unhide mutiple folders after a cleints Win32./Vobfus.NN infection

Here is a link to more info on the Malware Vobfus.NN

I created the following batch file.

for /F "tokens=*" %%a in ('dir /ad/b') do attrib -h -s -r "%%a"
attrib *.doc -s -h
attrib *.pdf -s -h
attrib *.avi -s -h
attrib *.jpg -s -h
attrib *.png -s -h
attrib *.txt -s -h
attrib *.dwg -s -h
attrib *.dgn -s -h
attrib *.psd -s -h
attrib *.in -s -h
attrib *.docx -s -h
attrib *.xlsx -s -h
attrib *.ppt -s -h
attrib *.pptx -s -h

2 thoughts on “How I unhide mutiple folders after a cleints Win32./Vobfus.NN infection

  1. Thanks for putting it on the net. It’s no fun when the share is missing all it’s directories. I ran rougekiller and your batch file (from the command line) afterwards. It was a joyous moment when the explorer window I also had open cascaded full of hidden dirs! Best wishes and thanks again.

Comments are closed.