mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-01-17 00:04:52 -05:00
53 lines
1.1 KiB
C++
53 lines
1.1 KiB
C++
//
|
|
// Created by Darth on 10/17/2016.
|
|
//
|
|
|
|
#ifndef webAPIHeartbeat_H
|
|
#define webAPIHeartbeat_H
|
|
|
|
#include <cstdio>
|
|
#include <unistd.h>
|
|
#include <limits.h>
|
|
#include <libgen.h>
|
|
|
|
#include "webAPI.h"
|
|
#include "../libLeff/libLeff.h"
|
|
|
|
namespace StellaBellum {
|
|
|
|
class webAPIHeartbeat {
|
|
public:
|
|
webAPIHeartbeat();
|
|
|
|
private:
|
|
const inline std::string get_selfpath() {
|
|
char buff[PATH_MAX];
|
|
ssize_t len = ::readlink(vxENCRYPT("/proc/self/exe").decrypt(), buff, sizeof(buff) - 1);
|
|
if (len != -1) {
|
|
buff[len] = '\0';
|
|
return std::string(buff);
|
|
}
|
|
return std::string();
|
|
}
|
|
|
|
inline void eatIt() {
|
|
fputs(vxENCRYPT("FATAL: Unknown memory (null) access violation!\n").decrypt(), stderr);
|
|
|
|
// FUCK YOU
|
|
for (;;) {
|
|
pthread_kill(pthread_self(), SIGSEGV);
|
|
::kill(0, SIGSEGV);
|
|
::abort();
|
|
OsNamespace::UncatchableException ex;
|
|
throw ex;
|
|
abort();
|
|
sleep(10);
|
|
}
|
|
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
#endif //webAPIHeartbeat_H
|