arnaucode e5e9af033e | 7 years ago | |
---|---|---|
build | 7 years ago | |
.gitignore | 7 years ago | |
LICENSE | 7 years ago | |
README.md | 7 years ago | |
color.go | 7 years ago | |
configurationScreenshot.png | 7 years ago | |
echo-botnet | 7 years ago | |
main.go | 7 years ago | |
readConfigTokensAndConnect.go | 7 years ago | |
readKeywordsConfig.go | 7 years ago | |
readRepliesConfig.go | 7 years ago | |
streamTweets.go | 7 years ago | |
waitTime.go | 7 years ago |
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
Just need to configure:
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"
}
]