Need all Urls from given site

dolphin1

Newbie
Joined
Sep 27, 2011
Messages
8
Reaction score
1
Is there any method other than google search to get all urls from website
not just the home page urls but all that resides the site.
Thanks
 
a1 website analyzer will give you all the links
 
What you exactly mean with "all the urls".
Every single fucking link on that page or just related servers and sub adresses for the main page?
 
Is there any method other than google search to get all urls from website
not just the home page urls but all that resides the site.
Thanks

If you need app like that please send me PM, i can make one for you ;)
 
If you have access to a linux command line, 'wget' can do what you asked with it's -r (recursive) option.

It does, however, pull down ALL THE CONTENT from the website in question, which may or may not be a bonus for you.

You'll want to use the -r option for recursive, and the -o option to specify a logfile (where you can easily extract the url strings that were downloaded ). And you'll want to make sure you have enough local disk space...
 
I used TeleportPRO back in a days to grab all the site and then used 'grep' unix utility to find all <a></a> tags
 
If you are using Linux or OSX, i can give you a simple tool that I wrote in Python
 
i thought you where asking to strip the links of a site and i was just writing a script for you to do this. Butyou are looking to scrape the links of a whole website. I can write that for you in php but it would be 50$ as its quite a bit of work. ( and hrs)
 
Is there any method other than google search to get all urls from website
not just the home page urls but all that resides the site.
Thanks

yep, any method is based on site scraping. you should use (or write yourself) some kind of web spider which will follow site links (filter external) and save it to database or file.
 
Last edited:
It's a walk in the park to write a bot for that. You just have to scrape the homepage and store all links. For each stored link, download the content and store then available links again. And so on, until there's not link left. It's a simple loop! :)
 
You can use a simple footprint in scrapebox to grab all urls. I used it to grab only certain inner page urls and it worked like a charm. Programming a bot would be useful too.
 
Back
Top