Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

jonaslejon/lolcrawler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LOLCrawler!

lolcrawler 🕷

made-with-python Docker

Lolcrawler is a headless browser crawler created for BugBounty and penetration-testing/RedTeaming. Beware, this code is really slow but should be able to run for several days and find some really interesting urls/paths.

The crawler is using several different methods for trying to find links and urls such as BeautifulSoup, jsbeautifier, urlextract and linkfinder.py.

You need to install docker to run this crawler due to the headless selenium browser.

Demo

Animated GIF running the crawler in verbose mode:

lolcrawler demo

Run the crawler

Option 1

Download and run from Docker Hub:

docker pull jonaslejon/lolcrawler
mkdir output
docker run --rm -v `pwd`/output:/output -it jonaslejon/lolcrawler -u https://tor.triop.se -o /output/crawl.log

Option 2

Download, build and run:

git clone https://github.com/jonaslejon/lolcrawler.git
cd lolcrawler
docker build -t jonaslejon/lolcrawler .
docker run --rm -v `pwd`/output:/output -it jonaslejon/lolcrawler -u https://tor.triop.se -o /output/crawl.log

Build docker image

Run the following command in the folder:

docker rmi jonaslejon/lolcrawler ; docker build -t jonaslejon/lolcrawler .

About

I was looking for a tool similar to the Burp Suite crawler that I can run and forget about. Also parts of this code is powering the backend of WPSec.com.