From b76f4fae9961b6f622de4fd5d0c2d70a070b4fbd Mon Sep 17 00:00:00 2001 From: arnaucode Date: Sun, 23 Apr 2017 20:34:57 +0200 Subject: [PATCH] renamed --- README.md | 24 ++++++++++++++++-------- main.go | 6 +++--- 2 files changed, 19 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index ac269cb..e07c7d2 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,30 @@ -# projectFlock +# flock-botnet -a twitter botnet with bots replying tweets with text generated by Markov chains +A twitter flock botnet with bots replying tweets with text generated by Markov chains + +#### generating text with Markov chains +Markov chain: https://en.wikipedia.org/wiki/Markov_chain -##### generating text with Markov chains The algorithm calculates the probabilities of Markov chains, analyzing a considerable amount of text, for the examples, I've done it with the book "The Critique of Pure Reason", by Immanuel Kant (http://www.gutenberg.org/cache/epub/4280/pg4280.txt). -#### Replying tweets with Markov chains +### Replying tweets with Markov chains When the botnet is up working, the bots start streaming all the twitter new tweets containing the configured keywords. Each bot takes a tweet, analyzes the containing words, and generates a reply using the Markov chains previously calculated, and posts the tweet as reply. In the following examples, the bots ("andreimarkov", "dodecahedron", "projectNSA") are replying some people. -![Argos](https://raw.githubusercontent.com/arnaucode/projectFlock/master/screenshots/01.png "01") +![flock-botnet](https://raw.githubusercontent.com/arnaucode/flock-botnet/master/screenshots/01.png "01") + +- + +![flock-botnet](https://raw.githubusercontent.com/arnaucode/flock-botnet/master/screenshots/02.jpeg "02") + +- -![Argos](https://raw.githubusercontent.com/arnaucode/projectFlock/master/screenshots/02.jpeg "02") +![flock-botnet](https://raw.githubusercontent.com/arnaucode/flock-botnet/master/screenshots/03.jpeg "03") -![Argos](https://raw.githubusercontent.com/arnaucode/projectFlock/master/screenshots/03.jpeg "03") +- -![Argos](https://raw.githubusercontent.com/arnaucode/projectFlock/master/screenshots/04.jpeg "04") +![flock-botnet](https://raw.githubusercontent.com/arnaucode/flock-botnet/master/screenshots/04.jpeg "04") configuration file example (flockConfig.json): diff --git a/main.go b/main.go index d684cf8..20d011e 100644 --- a/main.go +++ b/main.go @@ -10,10 +10,10 @@ import ( const version = "0.1-dev" func main() { - c.Yellow("projectFlock") + c.Yellow("flock-botnet") fmt.Println("---------------") - c.Cyan("projectFlock initialized") - c.Purple("https://github.com/arnaucode/projectFlock") + c.Cyan("flock-botnet initialized") + c.Purple("https://github.com/arnaucode/flock-botnet") fmt.Println("version " + version) fmt.Println("Reading flockConfig.json file") flock := readConfigTokensAndConnect()