You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
arnaucode ae20ff5e71 works 7 years ago
build works 7 years ago
.gitignore works 7 years ago
LICENSE Initial commit 7 years ago
README.md works 7 years ago
color.go works 7 years ago
echo-botnet works 7 years ago
main.go works 7 years ago
readConfigTokensAndConnect.go works 7 years ago
readKeywordsConfig.go works 7 years ago
readRepliesConfig.go works 7 years ago
streamTweets.go works 7 years ago
waitTime.go works 7 years ago

README.md

echo-botnet Go Report Card

A twitter botnet with autonomous bots replying tweets with pre-configured replies

Echo (Ēkhō): https://en.wikipedia.org/wiki/Echo_(mythology)#

Needs the files:

botsConfig.json     --> contains the tokens of the bots
keywordsConfig.json --> contains the keywords to track from Twitter API
repliesConfig.json  --> contains the replies

configuration file example (botsConfig.json):

[{
        "title": "account1",
        "consumer_key": "xxxxxxxxxxxxx",
        "consumer_secret": "xxxxxxxxxxxxx",
        "access_token_key": "xxxxxxxxxxxxx",
        "access_token_secret": "xxxxxxxxxxxxx"
    },
    {
        "title": "account2",
        "consumer_key": "xxxxxxxxxxxxx",
        "consumer_secret": "xxxxxxxxxxxxx",
        "access_token_key": "xxxxxxxxxxxxx",
        "access_token_secret": "xxxxxxxxxxxxx"
    },
    {
        "title": "account3",
        "consumer_key": "xxxxxxxxxxxxx",
        "consumer_secret": "xxxxxxxxxxxxx",
        "access_token_key": "xxxxxxxxxxxxx",
        "access_token_secret": "xxxxxxxxxxxxx"
    }
]