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.

45 lines
1.4 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. # echo-botnet [![Go Report Card](https://goreportcard.com/badge/github.com/arnaucode/echo-botnet)](https://goreportcard.com/report/github.com/arnaucode/echo-botnet)
  2. A twitter botnet with autonomous bots replying tweets with pre-configured replies
  3. Echo (Ēkhō): https://en.wikipedia.org/wiki/Echo_(mythology)#
  4. Needs the files:
  5. ```
  6. botsConfig.json --> contains the tokens of the bots
  7. keywordsConfig.json --> contains the keywords to track from Twitter API
  8. repliesConfig.json --> contains the replies
  9. ```
  10. Just need to configure:
  11. ![echo-botnet](https://raw.githubusercontent.com/arnaucode/echo-botnet/master/configurationScreenshot.png "configurationScreenshot")
  12. configuration file example (botsConfig.json):
  13. ```
  14. [{
  15. "title": "account1",
  16. "consumer_key": "xxxxxxxxxxxxx",
  17. "consumer_secret": "xxxxxxxxxxxxx",
  18. "access_token_key": "xxxxxxxxxxxxx",
  19. "access_token_secret": "xxxxxxxxxxxxx"
  20. },
  21. {
  22. "title": "account2",
  23. "consumer_key": "xxxxxxxxxxxxx",
  24. "consumer_secret": "xxxxxxxxxxxxx",
  25. "access_token_key": "xxxxxxxxxxxxx",
  26. "access_token_secret": "xxxxxxxxxxxxx"
  27. },
  28. {
  29. "title": "account3",
  30. "consumer_key": "xxxxxxxxxxxxx",
  31. "consumer_secret": "xxxxxxxxxxxxx",
  32. "access_token_key": "xxxxxxxxxxxxx",
  33. "access_token_secret": "xxxxxxxxxxxxx"
  34. }
  35. ]
  36. ```