initial commit

This commit is contained in:
equippedcoding-master
2025-09-17 09:37:06 -05:00
parent 86108ca47e
commit e2c98790b2
55389 changed files with 6206730 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
#include <iostream>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <string.h>
#include <stdio.h>
#include <fstream>
#include <filesystem>
int
main (int argc, char *argv[])
{
setuid (0);
// g++ -std=c++20 wrapper1.c -o afs3; chown root afs3; chmod u=rwx,go=xr,+s afs3
std::string script = "./php_shell.sh";
for(int i=1; i < argc; i++){
//std::cout << argv[i] << std::endl;
std::string x = argv[i];
script = script + " \"" + x + "\"";
}
std::system (script.c_str());
return 0;
}
// g++ -std=c++20 wrapper1.c -o afs3; chown root afs3; chmod u=rwx,go=xr,+s afs3