How to install birdwatcher in kali linux

ยท

How to install birdwatcher in kali linux

Birdwatcher is an OSINT data analysis and data gathering tool for twitter.
Birdwatcher has been designed to feel like metasploit or recon-ng, so should be familiar for anyone who has used those tools.

Install birdwatcher in kali linux:

Kali has ruby 2.2.x. by default. Birdwatcher requires ruby > 1.9.3, so there is nothing special to install for this step. The install instructions for birdwatcher recommend to update your ruby gems, in my experience this breaks kali, so I didnt do this step. If you are feeling brave, you can “gem update –system” if not, you can skip onto creating a database.

You need to start postgres and add a database user. In kali you need to sudo to the postgres user to create databases and users.

โ€ฉโ€ฉsudo -u postgres createuser -s birdwatcher --pwpromptโ€ฉsudo -u postgres createdb -O birdwatcher birdwatcherโ€ฉโ€ฉ

Next, we install graphviz for some of the cool output graphics:

โ€ฉโ€ฉapt-get install graphvizโ€ฉโ€ฉ

We will also need an imagemagick dev package (and its dependencies) along with some postgesql server development libraries. If we don’t have these installed the gem step will fail:

โ€ฉโ€ฉapt-get install libmagickwand-devโ€ฉapt-get install postgresql-server-dev-9.6โ€ฉโ€ฉ

and finally, we can install birdwatcher using gem:

โ€ฉโ€ฉgem install birdwatcherโ€ฉโ€ฉ

This takes a while (not as long as compiling X from source on a 586, but still – you might want to go for a coffee)

install birdwatcher in kali linux

You’ll now be able to follow the tutorial here and grab some data and play with it :)


Leave a Reply