Text Find Tool

turbohacker

Regular Member
Joined
Jul 27, 2010
Messages
479
Reaction score
127
Is there a tool out there where I can paste a list of urls and it will find specific text within those links.

I then need the tool to output those links with text found.

Thanks
 
Not that I'm aware of, sounds like it should be easy enough. Give me a bit more context and I might be able to put something together fast and dirty. I'd post it here for everybody.
 
Basically I need a tool that I can load a list of URLs into. It will then view each website/url and search for certain text or phrases that I specify. Once completed it will then highlight/output a list of URLs where that specific text or phrase was found :)
 
Little different that what I understood, I thought you were looking for specified text in the list of urls. Bit beyond my abilities at the moment.... :(
 
Not heard of any such tool. But you can get this done though some of the experts at BHW who can make almost any bot....you can go to Hire a freelancer section ...to get this done.
 
No worries, I made one myself with sick submitter :)

For anyone who needs it, here is the code...

Just use profile tab and use custom one to find keyword/text :)

Code:
SITE("[URL]",[PR])

REGISTER

Open("[URL]")
Wait()
Sleep(2)

$bodytext=getbodytext()

IF($bodytext~="$CUSTOM1")(ECHO('Your Keyword "$CUSTOM1" Was Found'))
IF($bodytext~="$CUSTOM1")(Exit())
IF($bodytext~!"$CUSTOM1")(ECHO('Your Keyword "$CUSTOM1" Was NOT Found'))
IF($bodytext~!"$CUSTOM1")(Exit())

Close()

ENDREGISTER

DO
ECHO("Not Needed")
ENDDO


CUSTOM1
ECHO("Not Needed")
ENDCUSTOM1

CUSTOM2
ECHO("Not Needed")
Endcustom2
ENDSITE
 
Back
Top