Skip to content

Commit

Permalink
Implement maddaddy task
Browse files Browse the repository at this point in the history
  • Loading branch information
rafael-santiago committed Sep 22, 2023
1 parent 9b05a8a commit 697daec
Show file tree
Hide file tree
Showing 5 changed files with 433 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ red teams. *Once it stated, when using this tool you are assuming that any damag
law infringements that some wrong action taken by you could cause is of your entire responsibility*.

**Sponsoring**: I have not been running this project for profit. It is only a thing that I do at my spare time. It is a
weekend project. I try to evolve it according to necessities I have been facing up during my information security
professional career. If you liked it or it is being useful to you somehow and you really want to contribute
weekend project. A pet project. I try to evolve it according to necessities I have been facing up during my information
security professional career. If you liked it or it is being useful to you somehow and you really want to contribute
with money, try to redirect it to a local charity institution, an ONG of your choice or even your own community.
You can also do [pull requests](https://github.com/rafael-santiago/macgonuts/pulls) proposing improvements.
Do some [bug report](https://github.com/rafael-santiago/macgonuts/issues) if a bug is annoying you. Maybe you should
Expand Down
30 changes: 24 additions & 6 deletions src/cmd/macgonuts_banners.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,30 @@ static const struct gradients {
int floor;
int ceil;
} g_GradientRanges[] = {
{ 52, 58 }, { 88, 94 }, { 124, 130 }, { 160, 166 }, { 196, 202 },
{ 22, 28 }, { 58, 64 }, { 94, 100 }, { 130, 136 }, { 166, 172 }, { 202, 208 },
{ 28, 34 }, { 64, 70 }, { 100, 106 }, { 136, 142 }, { 172, 178 }, { 208, 214 },
{ 34, 40 }, { 70, 76 }, { 106, 112 }, { 142, 148 }, { 178, 184 }, { 214, 220 },
{ 40, 46 }, { 76, 82 }, { 112, 118 }, { 148, 154 }, { 184, 190 }, { 220, 226 },
{ 46, 52 }, { 82, 88 }, { 118, 124 }, { 154, 160 }, { 190, 196 },
{ 124, 130 },
{ 160, 166 },
{ 196, 202 },
{ 130, 136 },
{ 166, 172 },
{ 202, 208 },
{ 172, 178 },
{ 208, 214 },
{ 34, 40 },
{ 70, 76 },
{ 142, 148 },
{ 178, 184 },
{ 214, 220 },
{ 40, 46 },
{ 76, 82 },
{ 112, 118 },
{ 148, 154 },
{ 184, 190 },
{ 220, 226 },
{ 46, 52 },
{ 82, 88 },
{ 118, 124 },
{ 154, 160 },
{ 190, 196 },
{ 232, 244 },
};

Expand Down
2 changes: 2 additions & 0 deletions src/cmd/macgonuts_exec.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include <cmd/macgonuts_dnsspoof_task.h>
#include <cmd/macgonuts_xablau_task.h>
#include <cmd/macgonuts_caleaboqui_task.h>
#include <cmd/macgonuts_maddaddy_task.h>
#include <cmd/macgonuts_version_task.h>
#include <cmd/macgonuts_banners.h>
#include <macgonuts_status_info.h>
Expand Down Expand Up @@ -49,6 +50,7 @@ struct macgonuts_task_ctx {
MACGONUTS_CMD_REGISTER_TASK(dnsspoof),
MACGONUTS_CMD_REGISTER_TASK(xablau),
MACGONUTS_CMD_REGISTER_TASK(caleaboqui),
MACGONUTS_CMD_REGISTER_TASK(maddaddy),
MACGONUTS_CMD_REGISTER_TASK_ALIAS(xablau, neighscan),
MACGONUTS_CMD_REGISTER_TASK_ALIAS(caleaboqui, shh),
MACGONUTS_CMD_REGISTER_TASK(version),
Expand Down
Loading

0 comments on commit 697daec

Please sign in to comment.