An open API service indexing awesome lists of open source software.

https://github.com/edsu/botnet-retweets

Exploring retweets by Twitter bot-nets.
https://github.com/edsu/botnet-retweets

Last synced: 8 months ago
JSON representation

Exploring retweets by Twitter bot-nets.

Awesome Lists containing this project

README

          

This repository contains CSV data files that contain information for Twitter
users who retweeted two tweets:

* https://twitter.com/briankrebs/status/902545914304319491
* https://twitter.com/benimmo/status/902673891792965637

The theory being that briankrebs and benimmo's use of Twitter was being
disrupted by a botnet that was retweeting their account and following them. The
retweets were collected using [this
approach](https://gist.github.com/edsu/94901f4a6454805f04fff6d9c10b0b8a). With
the JSON data in hand it was possible to generate CSVs which you see here.
Twitter's terms of service don't allow the original JSON to be distributed in
bulk to third parties, but they do allow CSVs to be made available, so those are
here in this repository.

[csvkit](https://csvkit.readthedocs.io) is handy for joining the CSVs to see
what users retweeted both briankrebs and benimmo's tweets:

csvsql --query "select briankrebs.* from briankrebs, benimmo where briankrebs.screen_name = benimmo.screen_name" briankrebs.csv bennimo.csv > briankrebs_benimmo.csv