CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/byakugan/handlerJutsu.cpp
Views: 11766
1
#include <stdio.h>
2
#include <winsock2.h>
3
#include <ws2tcpip.h>
4
#include "byakugan.h"
5
#include "jutsu.h"
6
#include "msfpattern.h"
7
8
void executeJutsu(struct request *execReq) {
9
g_ExtControl->Execute(DEBUG_OUTCTL_THIS_CLIENT, (PCSTR) execReq->data,
10
DEBUG_EXECUTE_ECHO | DEBUG_EXECUTE_NO_REPEAT);
11
12
g_ExtClient->FlushCallbacks();
13
}
14
15
void goJutsu(struct request *) {
16
}
17
18
void breakJutsu(struct request *) {
19
}
20
21
void addbufJutsu(struct request *) {
22
}
23
24
void restartJutsu(struct request *) {
25
}
26
27
28