├── .gitignore ├── Makefile ├── README.md ├── cred_file ├── getbot.sh ├── header ├── attack.h ├── bot.h ├── config.h ├── header.h ├── irc.h └── scanner.h └── src ├── attack.c ├── bot.c ├── irc.c └── scanner.c /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnywiller/IRC_botnet/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnywiller/IRC_botnet/HEAD/README.md -------------------------------------------------------------------------------- /cred_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnywiller/IRC_botnet/HEAD/cred_file -------------------------------------------------------------------------------- /getbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnywiller/IRC_botnet/HEAD/getbot.sh -------------------------------------------------------------------------------- /header/attack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnywiller/IRC_botnet/HEAD/header/attack.h -------------------------------------------------------------------------------- /header/bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnywiller/IRC_botnet/HEAD/header/bot.h -------------------------------------------------------------------------------- /header/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnywiller/IRC_botnet/HEAD/header/config.h -------------------------------------------------------------------------------- /header/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnywiller/IRC_botnet/HEAD/header/header.h -------------------------------------------------------------------------------- /header/irc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnywiller/IRC_botnet/HEAD/header/irc.h -------------------------------------------------------------------------------- /header/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnywiller/IRC_botnet/HEAD/header/scanner.h -------------------------------------------------------------------------------- /src/attack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnywiller/IRC_botnet/HEAD/src/attack.c -------------------------------------------------------------------------------- /src/bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnywiller/IRC_botnet/HEAD/src/bot.c -------------------------------------------------------------------------------- /src/irc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnywiller/IRC_botnet/HEAD/src/irc.c -------------------------------------------------------------------------------- /src/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnywiller/IRC_botnet/HEAD/src/scanner.c --------------------------------------------------------------------------------