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.

40 lines
1.2 KiB

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. configuration file example (botsConfig.json):
  11. ```
  12. [{
  13. "title": "account1",
  14. "consumer_key": "xxxxxxxxxxxxx",
  15. "consumer_secret": "xxxxxxxxxxxxx",
  16. "access_token_key": "xxxxxxxxxxxxx",
  17. "access_token_secret": "xxxxxxxxxxxxx"
  18. },
  19. {
  20. "title": "account2",
  21. "consumer_key": "xxxxxxxxxxxxx",
  22. "consumer_secret": "xxxxxxxxxxxxx",
  23. "access_token_key": "xxxxxxxxxxxxx",
  24. "access_token_secret": "xxxxxxxxxxxxx"
  25. },
  26. {
  27. "title": "account3",
  28. "consumer_key": "xxxxxxxxxxxxx",
  29. "consumer_secret": "xxxxxxxxxxxxx",
  30. "access_token_key": "xxxxxxxxxxxxx",
  31. "access_token_secret": "xxxxxxxxxxxxx"
  32. }
  33. ]
  34. ```