Well, you got the source code:

http://www.hillscapital.com/antispam/spamvampiresource.htm

You have to edit the last part to enter your targets and then store it as an html file. Then open the file as you would open any other webpage.


You have to replace the dummy targets and replace those by your targets. E.g. I wanted to attack the sites www.onlinereplicastore.com which has an image stored at www.onlinereplicastore.com/p/rolex/RX321-NP0-small.JPG and the site www.moreupto.com which has an image stored at www.moreupto.com/happy.jpg

The last few lines of the code in my case looks like:


// Try to keep the number of images low, go after larger but fewer images.

["www.onlinereplicastore.com","/p/rolex/RX321-NP0-small.JPG"], ["www.moreupto.com","/happy.jpg"],

0];

--aImageList.length; // Remove the dummy entry
main(aImageList.length, aImageList);
delete aImageList;


The first line is the last line of the instruction telling you what to do and after that you enter the targets in the form ["target1", "image1"], ["target2", "image2"],...,0]

The last element of the list is the zero (don't forget the comma's!).