Chibrax Linux Proof of concept

This commit is contained in:
Marc
2021-11-25 14:03:31 +01:00
commit 9f935042db
16 changed files with 5333 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
init
+2
View File
@@ -0,0 +1,2 @@
#!/bin/bash
gcc chibraxLoader.c -O3 -o init
+9
View File
@@ -0,0 +1,9 @@
#include <unistd.h>
#define ERR 1
#define node "/bin/node"
#define chibrax "/chibrax/index.js"
int main() {
return execl(node, node, chibrax);
}