It seems guys who play linux should create their own tools. 
Here is my one little trick about referrer backlink spaming:
First, get my list of referrer services or create you own list:
pastebin*com/raw.php?i=2np6ejeU
then execute the command given below
the main purpose of this command is just to replace {0} in list.txt with your website.
Note:your website don't want to start with "http://www."
Now huge_backlinks.txt will store thousands of links.
Then upload huge_backlinks.txt to your linux vps or play in your linux box.
Create a folder named "temp" where huge_backlinks.txt will sit.
The log file will store in the parent category of temp while html files the wget downloaded will store in temp category.
If you're going to use this in your linux vps, it is wise to write the command above in an executable file. For example, backlinks.sh. Then execute nohup ./backlinks.sh and exit.
For me, my 256 RAM xen vps spent almost 15 hours to finish this task with 20,000+ backlinks.
Hoping to hear your linux tricks when playing black hat seo.
Here is my one little trick about referrer backlink spaming:
First, get my list of referrer services or create you own list:
pastebin*com/raw.php?i=2np6ejeU
then execute the command given below
Code:
for f in $(cat my_websites.txt);do sed "s@{0}@$f@g" list.txt;done | tr ' ' "\n" >huge_backlinks.txt
the main purpose of this command is just to replace {0} in list.txt with your website.
Note:your website don't want to start with "http://www."
Now huge_backlinks.txt will store thousands of links.
Then upload huge_backlinks.txt to your linux vps or play in your linux box.
Create a folder named "temp" where huge_backlinks.txt will sit.
Code:
cat temp/huge_backlinks.txt | xargs wget --tries=1 --user-agent="Googlebot/2.1 (+http://www.google.com/bot.html)" -o log
The log file will store in the parent category of temp while html files the wget downloaded will store in temp category.
If you're going to use this in your linux vps, it is wise to write the command above in an executable file. For example, backlinks.sh. Then execute nohup ./backlinks.sh and exit.
For me, my 256 RAM xen vps spent almost 15 hours to finish this task with 20,000+ backlinks.
Hoping to hear your linux tricks when playing black hat seo.