lookyloo/README.md

165 lines
5.5 KiB
Markdown
Raw Normal View History

2019-04-19 14:44:38 +02:00
![Lookyloo icon](website/web/static/lookyloo.jpeg)
2017-07-23 19:56:51 +02:00
*Lookyloo* is a web interface allowing to scrape a website and then displays a
tree of domains calling each other.
2019-05-27 15:36:49 +02:00
Thank you very much [Tech Blog @ willshouse.com](https://techblog.willshouse.com/2012/01/03/most-common-user-agents/)
for the up-to-date list of UserAgents.
2017-08-12 17:45:33 +02:00
# What is that name?!
2017-07-23 19:56:51 +02:00
```
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](https://www.urbandictionary.com/define.php?term=lookyloo)
2017-07-23 19:56:51 +02:00
2018-01-05 17:09:42 +01:00
# Screenshot
![Screenshot of Lookyloo](doc/example.png)
2017-07-23 19:56:51 +02:00
2017-08-12 17:45:33 +02:00
# Implementation details
2017-07-23 19:56:51 +02:00
This code is very heavily inspired by [webplugin](https://github.com/etetoolkit/webplugin) and adapted to use flask as backend.
2017-07-23 19:56:51 +02:00
2019-01-23 15:13:29 +01:00
The two core dependencies of this project are the following:
2017-07-23 19:56:51 +02:00
2019-01-23 15:13:29 +01:00
* [ETE Toolkit](http://etetoolkit.org/): A Python framework for the analysis and visualization of trees.
* [Splash](https://splash.readthedocs.io/en/stable/): Lightweight, scriptable browser as a service with an HTTP API
2017-07-23 19:56:51 +02:00
2020-01-23 15:03:36 +01:00
# Cookies
If you want to scrape a website as if you were loggged in, you need to pass your sessions cookies.
You can do it the the folloing way:
1. Install [Cookie Quick Manager](https://addons.mozilla.org/en-US/firefox/addon/cookie-quick-manager/)
2. Click onthe icon in the top right of your browser > Manage all cookies
3. Search for a domain, tick the Sub-domain box if needed
4. Right clock on the domain you want to export > save to file > $LOOKYLOO_HOME/cookies.json
Then, you need to restart the webserver and from now on, every cookies you have in that file will be available for the browser used by Splash
2019-06-26 17:38:07 +02:00
# Python client
2020-03-16 17:20:46 +01:00
You can use `pylookyloo` as a standalone script, or as a library, [more details here](https://github.com/CIRCL/lookyloo/tree/master/client)
2017-08-12 19:11:02 +02:00
2019-01-23 15:13:29 +01:00
# Installation
**IMPORTANT**: Use [pipenv](https://pipenv.readthedocs.io/en/latest/)
**NOTE**: Yes, it requires python3.6+. No, it will never support anything older.
2019-07-05 16:59:23 +02:00
**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.
2019-01-23 15:13:29 +01:00
## Installation of Splash
2017-08-12 17:45:33 +02:00
You need a running splash instance, preferably on [docker](https://splash.readthedocs.io/en/stable/install.html)
2017-08-12 17:45:33 +02:00
```bash
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
2017-08-12 17:45:33 +02:00
```
2019-02-05 14:41:32 +01:00
## Install redis
```bash
git clone https://github.com/antirez/redis.git
cd redis
git checkout 5.0
make
cd ..
```
2019-01-23 15:13:29 +01:00
## Installation of Lookyloo
2017-08-12 17:45:33 +02:00
```bash
2019-02-05 14:41:32 +01:00
git clone https://github.com/CIRCL/lookyloo.git
2019-01-23 15:13:29 +01:00
cd lookyloo
pipenv install
echo LOOKYLOO_HOME="'`pwd`'" > .env
2017-07-23 19:56:51 +02:00
```
2019-01-23 15:13:29 +01:00
# Run the app
```bash
2019-02-05 14:41:32 +01:00
pipenv run start.py
```
2019-01-23 15:13:29 +01:00
# Run the app in production
## With a reverse proxy (Nginx)
```bash
pip install uwsgi
```
2019-01-23 15:13:29 +01:00
## Config files
You have to configure the two following files:
* `etc/nginx/sites-available/lookyloo`
* `etc/systemd/system/lookyloo.service`
2019-04-05 14:07:08 +02:00
Copy them to the appropriate directories, and run the following command:
2017-08-12 20:40:08 +02:00
```bash
sudo ln -s /etc/nginx/sites-available/lookyloo /etc/nginx/sites-enabled
```
If needed, remove the default site
```bash
sudo rm /etc/nginx/sites-enabled/default
```
Make sure everything is working:
```bash
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>/```
2017-08-12 20:40:08 +02:00
Now, you should configure [TLS (let's encrypt and so on)](https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-16-04)
2017-08-12 20:40:08 +02:00
2019-06-06 15:35:24 +02:00
# Use aquarium for a reliable multi-users app
2018-04-08 18:11:48 +02:00
2019-06-06 15:35:24 +02:00
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](https://github.com/TeamHG-Memex/aquarium) but
we have a [dedicated repository](https://github.com/circl/aquarium) that fits our needs better.
Follow [the documentation](https://github.com/CIRCL/aquarium/blob/master/README.rst) if you want to use it.
# Run the app with a simple docker setup
2018-04-08 18:11:48 +02:00
2018-04-08 18:19:05 +02:00
## Dockerfile
The repository includes a [Dockerfile](Dockerfile) for building a containerized instance of the app.
2018-04-08 18:11:48 +02:00
2018-04-08 18:19:05 +02:00
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
2018-04-08 18:11:48 +02:00
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](docker-compose.yml) by running
```
docker-compose up
```
2019-01-23 15:13:29 +01:00
After building and startup is complete lookyloo should be available at [http://localhost:5000/](http://localhost:5000/)
2018-04-08 18:11:48 +02:00
2019-01-23 15:13:29 +01:00
If you want to persist the data between different runs uncomment the "volumes" definition in the last two lines of
[docker-compose.yml](docker-compose.yml) and define a data storage directory in your Docker host system there.