Anybody use PR Storm?

i was about 9% in.. and then my anti virus (nod32) started going wild.. seems like the url it comes with were linked to trojan download sites... lol... idk it was on purpose but yeah id watch out guys
 
OK I use prstorm BUT with care. I build my own url.txt files by scraping the urls from SE results for extremely targeted backlinks. Also only run it about once a week, overuse raises a lot of red flags, and your own isp might not like you either if they start getting heat so use the proxy option! The program runs a little slower, but it's cheap insurance!

If you don't get stupid and run it 24/7 it can do some good, I checked my server logs and 6 - 12 hours after running the program I was getting crawled by every spider in town.

The url.txt that comes with the program is not good to use because many of the urls have been spammed to the point of retaliation. Plus it's too big and makes too large a footprint when used. Build your own targeted list and use common sense to stay under the radar!
cheers:)
 
The point is getting right url list with which your new sites will be indexed in 3 days or less. It works just as great as before! I believe it is still the best tool to index a site.
 
Here a tip for ya, get link whore, I think its link-whore.com or maybe you can find it around somewhere :) , anywho... use the urlfinder.exe program. You can use your keywords to narrow the search - you'll be happy you did.
cheers!
 
From what I know, PRStorm effect (only main action), can be coded like that in Perl:
Code:
#!/usr/local/bin/perl
$|++;
use strict;
use Net::HTTP;
for (1..10000) {
    my $client = Net::HTTP->new(Host => 'hostwithrefererstats.com');
    $client->write_request(GET => '/', 'User-Agent' => "Mozilla/5.0", Referer => 'hxxp://linkwespam.com' );
}
 
Back
Top