Lookyloo is a web interface allowing to scrape a website and then displays a tree of domains calling each other. https://lookyloo.circl.lu/
Go to file
Raphaël Vinot 200565f366
Create dockerimage.yml
2019-11-15 16:51:37 +01:00
.github/workflows Create dockerimage.yml 2019-11-15 16:51:37 +01:00
bin fix: docker-compose should now work. 2019-11-01 21:05:08 -07:00
cache fix: Systemd service, add proper stop script 2019-04-05 14:01:36 +02:00
client chg: Start the whole thing 2019-01-30 16:01:55 +01:00
doc chg: move to bootstrap4, toggle legend 2019-04-18 17:34:36 +02:00
etc chg: Bump configs to be in-line with prod 2019-04-05 14:13:07 +02:00
lookyloo fix: Avoid bypass with "http://user:pwd@host.tld" 2019-07-05 18:42:18 +02:00
user_agents/2019/05 fix: Get most common user agents from willshouse.com behind cloudflare 2019-05-27 15:34:26 +02:00
website fix: docker-compose should now work. 2019-11-01 21:05:08 -07:00
.gitignore new: Initial commit for client and async scraping 2019-01-29 18:37:13 +01:00
Dockerfile fix: docker-compose should now work. 2019-11-01 21:05:08 -07:00
LICENSE Update LICENSE 2019-04-06 10:33:22 +02:00
Pipfile chg: Bump dependencies 2019-11-14 13:40:02 +01:00
Pipfile.lock chg: Bump dependencies 2019-11-14 13:40:02 +01:00
README.md chg: Update documentation 2019-07-05 16:59:23 +02:00
docker-compose.yml fix: docker-compose should now work. 2019-11-01 21:05:08 -07:00
setup.py fix: Systemd service, add proper stop script 2019-04-05 14:01:36 +02:00

README.md

Lookyloo icon

Lookyloo is a web interface allowing to scrape a website and then displays a tree of domains calling each other.

Thank you very much Tech Blog @ willshouse.com for the up-to-date list of UserAgents.

What is that name?!

1. People who just come to look.
2. People who go out of their way to look at people or something often causing crowds and more disruption.
3. People who enjoy staring at watching other peoples misfortune. Oftentimes car onlookers to car accidents.
Same as Looky Lou; often spelled as Looky-loo (hyphen) or lookylou
In L.A. usually the lookyloo's cause more accidents by not paying full attention to what is ahead of them.

Source: Urban Dictionary

Screenshot

Screenshot of Lookyloo

Implementation details

This code is very heavily inspired by webplugin and adapted to use flask as backend.

The two core dependencies of this project are the following:

  • ETE Toolkit: A Python framework for the analysis and visualization of trees.
  • Splash: Lightweight, scriptable browser as a service with an HTTP API

Python client

$ pip install git+https://github.com/CIRCL/lookyloo.git/#egg=pylookyloo\&subdirectory=client
$ lookyloo --help
usage: lookyloo [-h] [--url URL] --query QUERY

Enqueue a URL on Lookyloo

optional arguments:
  -h, --help     show this help message and exit
  --url URL      URL of the instance.
  --query QUERY  URL to unqueue

Installation

IMPORTANT: Use pipenv

NOTE: Yes, it requires python3.6+. No, it will never support anything older.

NOTE: If you want to run a public instance, you should set only_global_lookups=True in website/web/__init__.py and bin/async_scrape.py to disallow scraping of private IPs.

Installation of Splash

You need a running splash instance, preferably on docker

sudo apt install docker.io
sudo docker pull scrapinghub/splash
sudo docker run -p 8050:8050 -p 5023:5023 scrapinghub/splash --disable-ui --disable-lua --disable-browser-caches
# On a server with a decent abount of RAM, you may want to run it this way:
# sudo docker run -p 8050:8050 -p 5023:5023 scrapinghub/splash --disable-ui -s 100 --disable-lua -m 50000 --disable-browser-caches

Install redis

git clone https://github.com/antirez/redis.git
cd redis
git checkout 5.0
make
cd ..

Installation of Lookyloo

git clone https://github.com/CIRCL/lookyloo.git
cd lookyloo
pipenv install
echo LOOKYLOO_HOME="'`pwd`'" > .env

Run the app

pipenv run start.py

Run the app in production

With a reverse proxy (Nginx)

pip install uwsgi

Config files

You have to configure the two following files:

  • etc/nginx/sites-available/lookyloo
  • etc/systemd/system/lookyloo.service

Copy them to the appropriate directories, and run the following command:

sudo ln -s /etc/nginx/sites-available/lookyloo /etc/nginx/sites-enabled

If needed, remove the default site

sudo rm /etc/nginx/sites-enabled/default

Make sure everything is working:

sudo systemctl start lookyloo
sudo systemctl enable lookyloo
sudo nginx -t
# If it is cool:
sudo service nginx restart

And you can open http://<IP-or-domain>/

Now, you should configure TLS (let's encrypt and so on)

Use aquarium for a reliable multi-users app

Aquarium is a haproxy + splash bundle that will allow lookyloo to be used by more than one user at once.

The initial version of the project was created by TeamHG-Memex but we have a dedicated repository that fits our needs better.

Follow the documentation if you want to use it.

Run the app with a simple docker setup

Dockerfile

The repository includes a Dockerfile for building a containerized instance of the app.

Lookyloo stores the scraped data in /lookyloo/scraped. If you want to persist the scraped data between runs it is sufficient to define a volume for this directory.

Running a complete setup with Docker Compose

Additionally you can start a complete setup, including the necessary Docker instance of splashy, by using Docker Compose and the included service definition in docker-compose.yml by running

docker-compose up

After building and startup is complete lookyloo should be available at http://localhost:5000/

If you want to persist the data between different runs uncomment the "volumes" definition in the last two lines of docker-compose.yml and define a data storage directory in your Docker host system there.