|
@@ -76,115 +76,13 @@ static void file_output_open(const char *const log_path) {
|
|
|
|
|
|
struct console_details console;
|
|
struct console_details console;
|
|
|
|
|
|
-/**
|
|
|
|
- * Display a repr of the given string.
|
|
|
|
- *
|
|
|
|
- * This converts most \n\r\v\f\t codes,
|
|
|
|
- * defaults to \xHH (hex value).
|
|
|
|
- */
|
|
|
|
-const char *repr(const char *data) {
|
|
|
|
- static char buffer[4096];
|
|
|
|
- char *cp;
|
|
|
|
-
|
|
|
|
- strcpy(buffer, data);
|
|
|
|
- cp = buffer;
|
|
|
|
- while (*cp != 0) {
|
|
|
|
- char c = *cp;
|
|
|
|
-
|
|
|
|
- if (isspace(c)) {
|
|
|
|
- if (c == ' ') {
|
|
|
|
- cp++;
|
|
|
|
- continue;
|
|
|
|
- };
|
|
|
|
- /* Ok, it's form-feed ('\f'), newline ('\n'), carriage return ('\r'),
|
|
|
|
- * horizontal tab ('\t'), and vertical tab ('\v') */
|
|
|
|
- memmove(cp + 1, cp, strlen(cp) + 1);
|
|
|
|
- *cp = '\\';
|
|
|
|
- cp++;
|
|
|
|
- switch (c) {
|
|
|
|
- case '\f':
|
|
|
|
- *cp = 'f';
|
|
|
|
- cp++;
|
|
|
|
- break;
|
|
|
|
- case '\n':
|
|
|
|
- *cp = 'n';
|
|
|
|
- cp++;
|
|
|
|
- break;
|
|
|
|
- case '\r':
|
|
|
|
- *cp = 'r';
|
|
|
|
- cp++;
|
|
|
|
- break;
|
|
|
|
- case '\t':
|
|
|
|
- *cp = 't';
|
|
|
|
- cp++;
|
|
|
|
- break;
|
|
|
|
- case '\v':
|
|
|
|
- *cp = 'v';
|
|
|
|
- cp++;
|
|
|
|
- break;
|
|
|
|
- default:
|
|
|
|
- *cp = '?';
|
|
|
|
- cp++;
|
|
|
|
- break;
|
|
|
|
- }
|
|
|
|
- continue;
|
|
|
|
- }
|
|
|
|
|
|
+#include "utils.h"
|
|
|
|
|
|
- if (isprint(c)) {
|
|
|
|
- cp++;
|
|
|
|
- continue;
|
|
|
|
- };
|
|
|
|
-
|
|
|
|
- // Ok, default to \xHH output.
|
|
|
|
- memmove(cp + 3, cp, strlen(cp) + 1);
|
|
|
|
- *cp = '\\';
|
|
|
|
- cp++;
|
|
|
|
- *cp = 'x';
|
|
|
|
- cp++;
|
|
|
|
- char buffer[3];
|
|
|
|
- sprintf(buffer, "%02x", (int)c & 0xff);
|
|
|
|
- *cp = buffer[0];
|
|
|
|
- cp++;
|
|
|
|
- *cp = buffer[1];
|
|
|
|
- cp++;
|
|
|
|
- continue;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- return buffer;
|
|
|
|
-}
|
|
|
|
|
|
|
|
// END LOGGING
|
|
// END LOGGING
|
|
|
|
|
|
#include "lastseen.h"
|
|
#include "lastseen.h"
|
|
|
|
|
|
-// http://c-faq.com/lib/randrange.html
|
|
|
|
-int randint(int N) { return rand() / (RAND_MAX / N + 1); }
|
|
|
|
-
|
|
|
|
-// http://c-faq.com/lib/randrange.html
|
|
|
|
-// numbers in the range [M, N] could be generated with something like
|
|
|
|
-
|
|
|
|
-int randrange(int M, int N) {
|
|
|
|
- return M + rand() / (RAND_MAX / (N - M + 1) + 1);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-/*
|
|
|
|
- * strnstr()
|
|
|
|
- *
|
|
|
|
- * buffer safe version that looks for a string.
|
|
|
|
- */
|
|
|
|
-const char *strnstr(const char *source, int len, const char *needle) {
|
|
|
|
- int pos;
|
|
|
|
-
|
|
|
|
- for (pos = 0; pos < len; pos++) {
|
|
|
|
- if (source[pos] == needle[0]) {
|
|
|
|
- if (strncmp(source + pos, needle, strlen(needle)) == 0) {
|
|
|
|
- return source + pos;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- return NULL;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
/*
|
|
/*
|
|
What is the name of the actual, real Mystic executable
|
|
What is the name of the actual, real Mystic executable
|
|
that we'll be executing and mangling?
|
|
that we'll be executing and mangling?
|
|
@@ -612,6 +510,11 @@ int mangle(int fd, const char *buffer, int len) {
|
|
process.
|
|
process.
|
|
*/
|
|
*/
|
|
|
|
|
|
|
|
+ /*
|
|
|
|
+ Is there a way to track -- what I've inserted, and make it exempt from
|
|
|
|
+ other modifications / mangler, wrangler?
|
|
|
|
+ */
|
|
|
|
+
|
|
/*
|
|
/*
|
|
(random) Look for ANSI CLS and:
|
|
(random) Look for ANSI CLS and:
|
|
|
|
|
|
@@ -714,6 +617,11 @@ int mangle(int fd, const char *buffer, int len) {
|
|
if (random_activate(4)) {
|
|
if (random_activate(4)) {
|
|
int r;
|
|
int r;
|
|
char display[100] = "";
|
|
char display[100] = "";
|
|
|
|
+ /*
|
|
|
|
+ Interesting note here:
|
|
|
|
+ "Anyone there" qualifies as a valid WORDS regex match.
|
|
|
|
+ It is possible that it can get mangled/wrangled!
|
|
|
|
+ */
|
|
const char *phrasing[] = {"^R1Haha^P1ha^P1ha", "Poof!", "Got U",
|
|
const char *phrasing[] = {"^R1Haha^P1ha^P1ha", "Poof!", "Got U",
|
|
"Anyone there?", "^R1Knock, ^P1Knock",
|
|
"Anyone there?", "^R1Knock, ^P1Knock",
|
|
"^G0101^C07^S6Segmentation Fault ^P1^S9(core ^C12^C24dumped^C07)^P2"};
|
|
"^G0101^C07^S6Segmentation Fault ^P1^S9(core ^C12^C24dumped^C07)^P2"};
|
|
@@ -792,6 +700,9 @@ int mangle(int fd, const char *buffer, int len) {
|
|
|
|
|
|
// strcpy(work, buffer); // sure.
|
|
// strcpy(work, buffer); // sure.
|
|
|
|
|
|
|
|
+ // NOTE: This is NOT aware of my ^TRIGGERS, so they will show up
|
|
|
|
+ // as valid things to mangle in work. (Keep this in mind).
|
|
|
|
+
|
|
const char replace_with = ' ';
|
|
const char replace_with = ' ';
|
|
for (x = 0; x < len; x++) {
|
|
for (x = 0; x < len; x++) {
|
|
int ansi = console_char(&console, play[x]);
|
|
int ansi = console_char(&console, play[x]);
|
|
@@ -898,6 +809,8 @@ int harry_happens(time_t *last_event, int wakeup) {
|
|
|
|
|
|
/*
|
|
/*
|
|
|
|
|
|
|
|
+This is done. :D My buffering system works with stack'em.
|
|
|
|
+
|
|
TO FIX: Stop using c strings, must use char * buffer + int length.
|
|
TO FIX: Stop using c strings, must use char * buffer + int length.
|
|
MAY CONTAIN NULL VALUES.
|
|
MAY CONTAIN NULL VALUES.
|
|
|
|
|
|
@@ -945,6 +858,8 @@ This allows for cleaner process of "lines" of buffer. We shouldn't break
|
|
in the midDLE OF A WORD. Downside is that we sit on buffer contents a little
|
|
in the midDLE OF A WORD. Downside is that we sit on buffer contents a little
|
|
while / some amount of time -- which will add some lag to prompts showing up.
|
|
while / some amount of time -- which will add some lag to prompts showing up.
|
|
|
|
|
|
|
|
+(LAG? Are you kidding?)
|
|
|
|
+
|
|
|
|
|
|
ZModem:
|
|
ZModem:
|
|
|
|
|
|
@@ -966,32 +881,6 @@ ZModem:
|
|
|
|
|
|
*/
|
|
*/
|
|
|
|
|
|
-/*
|
|
|
|
- * rstrnstr() Reverse string find in a string
|
|
|
|
- *
|
|
|
|
- * This obeys the len, and handles nulls in buffer.
|
|
|
|
- * find is a c-string (null terminated)
|
|
|
|
- */
|
|
|
|
-int rstrnstr(const char *buffer, int len, const char *find) {
|
|
|
|
- int flen = strlen(find);
|
|
|
|
-
|
|
|
|
- if (len < flen) {
|
|
|
|
- // I can't find a string in a buffer smaller then it is!
|
|
|
|
- return -1;
|
|
|
|
- }
|
|
|
|
- int pos = len - flen;
|
|
|
|
- while (pos > 0) {
|
|
|
|
- if (buffer[pos] == find[0]) {
|
|
|
|
- // First chars match, check them all.
|
|
|
|
- if (strncmp(buffer + pos, find, flen) == 0) {
|
|
|
|
- return pos;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- pos--;
|
|
|
|
- }
|
|
|
|
- return -1;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
int main(int argc, char *argv[]) {
|
|
int main(int argc, char *argv[]) {
|
|
int master;
|
|
int master;
|
|
pid_t pid;
|
|
pid_t pid;
|