23Feb/106
What’s spamming?
This is simple, fully automated and entirely legal approach of finding enormous number of pages which can be spammed.
Implementation tips
1. Create similar structure.
2. Add some domains (processed = 0).
1|johnchow.com|0
2|yourblogname.com|0
…
N|weightlossspamblog.com|0
3. Get domains' links; extract domains from links, (filter), save domains and links.
$domains = select id, title from domains where processed = 0; foreach ($domains as $d) { $links = get links; foreach ($links as $link) { $domain = extract from $link['url']; if ($domain in [.com .net .org …] && not in [.cn …] && no [viagra cialis …]) { insert into domains (title, processed) values ($domain, 0); insert into links (url, title, domain_id) values ($link['url'], $link['title'] $d['id']); } } update domains set processed = 1 where id = $d['id']; }
4. Loop/cron 3 without hitting the limit.
What next?
Time and multiple IPs are your friends. After a week or two do something like
$links = select url, title from links where url like '%keyword%'
or
$links = select url, title from links where title like '%keyword%'
or
$links = select url, title from links where title like '%keyword%' and url like '%keyword%'
You got the idea. Then
foreach ($links as $link) { if ($link from wordpress) { spam $link; } }
or
foreach ($links as $link) { if ($link from wordpress && pingback allowed) { PingCrawl $link; } }
Next time some tips on collecting domains.

March 6th, 2010 - 13:18
That’s quite fascinating, lol. Never seen before how it actually works.
Till then,
Jean
March 17th, 2010 - 03:38
So I can use this on any wordpress link?
March 19th, 2010 - 22:39
I have a feeling that this post just went over most people’s heads. While it could be helpful to develop a list of domains to spam, I think most people wouldn’t know how to properly setup such code.
September 2nd, 2010 - 18:47
I think you are right about that. You have to be careful when spamming you could just get knocked if you don’t know what your doing.
April 3rd, 2010 - 15:56
I’m only just getting my feet wet with some very basic programming. Wish I’d started learning it sooner.
Till then,
Jean
August 17th, 2010 - 10:57
I seen static keyword stuffing as a spamming but first time ever seen spamming with programming. Nice one