[Scrapebox]Finding Auto-Approved Drupal Blogs Which Doesn't Require Registration

Yet another amazing use of good footprints. I have used similar foot prints for different uses. I will share it someday :)

Thanks

Regards
 
do you use SB proxies or do you have your own?

I'm about to use this method and see if it works...

SB internal proxies is no more working for me. I use my own list of proxy source. For this method, you don't really need proxies as you are gonna harvest probably 1000 or more page only once so it won't ban your IP.

Yet another amazing use of good footprints. I have used similar foot prints for different uses. I will share it someday :)

Thanks

Regards

I will wait for that;)
 
Do you think by sharing this method on this forum you gonna get "Thanks" then you are wrong buddy.

You will get REP+3
 
Great guide! "Thanks" are given!
What tools are you guide using for commenting afterwards?
Sry for the noob question, but i am still learning :)
thanks in advance
 
What tools are you guide using for commenting afterwards?

I scrape all the high PR pages and comment on them manually.
 
This is a great method.I tested it and found that some of them are not Autoapproved.So I think when you scrape the list,it's better to comment on them manually
 
This is a great method.I tested it and found that some of them are not Autoapproved.So I think when you scrape the list,it's better to comment on them manually

Yes, as I said in my OP, You have to manually post a comment to check comment moderation.
 
Thanks for a nice share you have given to us with such an large collection of information.:D
 
Thanks for this thread!
As I am learning Python at the moment, I thought that it would be pretty nice to have a script that generates all the footprints for every day of the last week to harvest even more blogs.

Was quite useful for me, if you need this, here you go:
Code:
from datetime import *
import os

##by MadMX for BHW
def write():
    print("Working...Wait a few seconds...")
    
    f = open("footprintlist.txt","w")
    for i in range (7):
        #vars#
        date = now - timedelta(days=i)
        dayname = date.strftime("%A")
        daynameshort = dayname[:3]
        day = date.strftime("%d")
        month = date.strftime("%m")
        monthname = date.strftime("%B")
        year = "20" + date.strftime("%y")

        
        
        f.write("Submitted by Anonymous (not verified) on " + daynameshort + ", " + month + "/" + day + "/" + year + "\n")
        f.write("Submitted by Anonymous (not verified) on " + daynameshort + ", " + year + "/" + month + "/" + day + "\n")
        f.write("Submitted by Anonymous (not verified) on " + daynameshort + ", " + year + "/" + day + "/" + month + "\n")
        f.write("Submitted by Anonymous (not verified) on " + daynameshort + ", " + month + "-" + day + "-" + year + "\n")
        f.write("Submitted by Anonymous (not verified) on " + daynameshort + ", " + year + "-" + month + "-" + day + "\n")
        f.write("Submitted by Anonymous (not verified) on " + daynameshort + ", " + year + "-" + day + "-" + month + "\n")
        f.write("Submitted by Anonymous (not verified) on " + daynameshort + ", " + month + "." + day + "." + year + "\n")
        f.write("Submitted by Anonymous (not verified) on " + daynameshort + ", " + year + "." + month + "." + day + "\n")
        f.write("Submitted by Anonymous (not verified) on " + daynameshort + ", " + year + "." + day + "." + month + "\n")
        f.write("Submitted by Anonymous (not verified) on " + monthname + " " + day + ", " + year + "\n")
        f.write("Submitted by Anonymous (not verified) on " + day + " " + monthname + ", " + year + "\n")
    f.close()
    

#Main
now = datetime.today()
write()
print("Done! File saved: " + os.getcwd() + "\\footprintlist.txt")
 
Harvested a load of URLs now, but when I check some of 'em many seem not to be using Drupal. Do you have any sort of better footprint which I could use to check with LinkChecker whether they are using Drupal? Would be awesome!

Thanks in Advance!
 
Dunno what I missed as I put those foots (adjusted the date to todays first of course) in the right box and selected one week timeline, Google only. Scrape gave me a thousand (where others say only half a dozen?) but the results don't seem to be the drupal type of commentable blogs I'm after?

Also, what would be the foot for the drupals that you DO have to register to comment, I have some of those and it's a pita but less spam and worth it for the high pr ********s.

Thanks
 
Use quotes for footprints for better results!
 
Dunno what I missed as I put those foots (adjusted the date to todays first of course) in the right box and selected one week timeline, Google only. Scrape gave me a thousand (where others say only half a dozen?) but the results don't seem to be the drupal type of commentable blogs I'm after?

Yes, this footprint is very limited but highly targeted. As far as I know, Drupal is the only blog use those terms for unregistered users. Adjust your date to any date in the past week apart from todays date. Try Yahoo too for scraping as you may get additional blogs for commenting.


Also, what would be the foot for the drupals that you DO have to register to comment, I have some of those and it's a pita but less spam and worth it for the high pr ********s.

Just do a search for "Drupal Footprints" You will find many:)
 
Back
Top