|
@@ -8,6 +8,8 @@
|
|
|
#include <unistd.h>
|
|
|
|
|
|
#include <string>
|
|
|
+#include <sstream>
|
|
|
+
|
|
|
using namespace std;
|
|
|
|
|
|
// #include <signal.h> // handle Ctrl-C/SIGINT
|
|
@@ -110,8 +112,8 @@ The code to get the username and fullname is useless on telnet
|
|
|
connections.
|
|
|
|
|
|
*/
|
|
|
-const char *username = NULL;
|
|
|
-const char *fullname = NULL;
|
|
|
+string username;
|
|
|
+string fullname;
|
|
|
|
|
|
/*
|
|
|
This only works for those few idiots that use the
|
|
@@ -129,9 +131,9 @@ int locate_user(const char *alias) {
|
|
|
// Carry on!
|
|
|
while (fread(buffer, 0x600, 1, user) == 1) {
|
|
|
pcopy(buffer + 0x6d, temp);
|
|
|
- if (strcasecmp(temp, username) == 0) {
|
|
|
+ if (strcasecmp(temp, username.c_str()) == 0) {
|
|
|
pcopy(buffer + 0x8c, temp);
|
|
|
- fullname = strdup(temp);
|
|
|
+ fullname.assign(temp);
|
|
|
break;
|
|
|
}
|
|
|
/*
|
|
@@ -144,7 +146,6 @@ int locate_user(const char *alias) {
|
|
|
return 1;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
/*
|
|
|
|
|
|
This is done. :D My buffering system works with stack'em.
|
|
@@ -226,10 +227,7 @@ int main(int argc, char *argv[]) {
|
|
|
pid_t pid;
|
|
|
int node = -1;
|
|
|
|
|
|
- if (!file_output_open("horrible_harry.log"))
|
|
|
- return 2;
|
|
|
init_harry();
|
|
|
-
|
|
|
srandom(time(NULL));
|
|
|
|
|
|
// ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML1 -SL0 -ST2 -CUnknown
|
|
@@ -255,18 +253,34 @@ int main(int argc, char *argv[]) {
|
|
|
// -U<username>
|
|
|
for (int x = 0; x < argc; x++) {
|
|
|
if (strncmp("-U", argv[x], 2) == 0) {
|
|
|
- username = argv[x] + 2;
|
|
|
- ZF_LOGI("Username: [%s]", username);
|
|
|
- };
|
|
|
+ username.assign( argv[x] + 2);
|
|
|
+ }
|
|
|
if (strncmp("-SL", argv[x], 3) == 0) {
|
|
|
node = atoi(argv[x] + 3) + 1;
|
|
|
- ZF_LOGI("Node: %d", node);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if (username != NULL) {
|
|
|
- locate_user(username);
|
|
|
- ZF_LOGD("Username: [%s] A.K.A. [%s]", username, fullname);
|
|
|
+ if (node == -1) {
|
|
|
+ // likely this is someone trying to run something
|
|
|
+ printf("Try ./mySTIC (whatever it is you're trying)!\n");
|
|
|
+ return 2;
|
|
|
+ }
|
|
|
+
|
|
|
+ string logfile;
|
|
|
+ {
|
|
|
+ ostringstream buffer;
|
|
|
+
|
|
|
+ buffer << "horrible_harry_" << node << ".log";
|
|
|
+ logfile = buffer.str();
|
|
|
+ };
|
|
|
+
|
|
|
+ if (!file_output_open((const char *)logfile.c_str()))
|
|
|
+ return 2;
|
|
|
+
|
|
|
+ ZF_LOGI("Node: %d", node);
|
|
|
+ if (!username.empty() ) {
|
|
|
+ locate_user(username.c_str());
|
|
|
+ ZF_LOGD("Username: [%s] A.K.A. [%s]", (const char *)username.c_str(), (const char *)fullname.c_str());
|
|
|
}
|
|
|
|
|
|
pid = forkpty(&master, NULL, NULL, NULL);
|