Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.216
Cant Read [ /etc/named.conf ]
7.4.32
finalho
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
cmake /
Templates /
[ HOME SHELL ]
Name
Size
Permission
Action
AppleInfo.plist
1.17
KB
-rw-r--r--
CMakeVSMacros1.vsmacros
86
KB
-rw-r--r--
CMakeVSMacros2.vsmacros
62
KB
-rw-r--r--
CMakeVisualStudio6Configuratio...
181
B
-rw-r--r--
CPack.GenericDescription.txt
141
B
-rw-r--r--
CPack.GenericLicense.txt
104
B
-rw-r--r--
CPack.GenericWelcome.txt
96
B
-rw-r--r--
CPackConfig.cmake.in
559
B
-rw-r--r--
CTestScript.cmake.in
1.4
KB
-rw-r--r--
DLLFooter.dsptemplate
116
B
-rw-r--r--
DLLHeader.dsptemplate
7.31
KB
-rw-r--r--
EXEFooter.dsptemplate
116
B
-rw-r--r--
EXEHeader.dsptemplate
6.96
KB
-rw-r--r--
EXEWinHeader.dsptemplate
7.13
KB
-rw-r--r--
TestDriver.cxx.in
3.23
KB
-rw-r--r--
UtilityFooter.dsptemplate
29
B
-rw-r--r--
UtilityHeader.dsptemplate
2.82
KB
-rw-r--r--
cygwin-package.sh.in
2
KB
-rwxr-xr-x
staticLibFooter.dsptemplate
116
B
-rw-r--r--
staticLibHeader.dsptemplate
6.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TestDriver.cxx.in
#include <ctype.h> #include <stdio.h> #include <string.h> #include <stdlib.h> @CMAKE_TESTDRIVER_EXTRA_INCLUDES@ /* Forward declare test functions. */ @CMAKE_FORWARD_DECLARE_TESTS@ /* Create map. */ typedef int (*MainFuncPointer)(int , char*[]); typedef struct { const char* name; MainFuncPointer func; } functionMapEntry; functionMapEntry cmakeGeneratedFunctionMapEntries[] = { @CMAKE_FUNCTION_TABLE_ENTIRES@ {0,0} }; /* Allocate and create a lowercased copy of string (note that it has to be free'd manually) */ char* lowercase(const char *string) { char *new_string, *p; #ifdef __cplusplus new_string = static_cast<char *>(malloc(sizeof(char) * static_cast<size_t>(strlen(string) + 1))); #else new_string = (char *)(malloc(sizeof(char) * (size_t)(strlen(string) + 1))); #endif if (!new_string) { return 0; } strcpy(new_string, string); p = new_string; while (*p != 0) { #ifdef __cplusplus *p = static_cast<char>(tolower(*p)); #else *p = (char)(tolower(*p)); #endif ++p; } return new_string; } int main(int ac, char *av[]) { int i, NumTests, testNum, partial_match; char *arg, *test_name; int count; int testToRun = -1; @CMAKE_TESTDRIVER_ARGVC_FUNCTION@ for(count =0; cmakeGeneratedFunctionMapEntries[count].name != 0; count++) { } NumTests = count; /* If no test name was given */ /* process command line with user function. */ if (ac < 2) { /* Ask for a test. */ printf("Available tests:\n"); for (i =0; i < NumTests; ++i) { printf("%3d. %s\n", i, cmakeGeneratedFunctionMapEntries[i].name); } printf("To run a test, enter the test number: "); fflush(stdout); testNum = 0; if( scanf("%d", &testNum) != 1 ) { printf("Couldn't parse that input as a number\n"); return -1; } if (testNum >= NumTests) { printf("%3d is an invalid test number.\n", testNum); return -1; } testToRun = testNum; ac--; av++; } partial_match = 0; arg = 0; /* If partial match is requested. */ if(testToRun == -1 && ac > 1) { partial_match = (strcmp(av[1], "-R") == 0) ? 1 : 0; } if (partial_match && ac < 3) { printf("-R needs an additional parameter.\n"); return -1; } if(testToRun == -1) { arg = lowercase(av[1 + partial_match]); } for (i =0; i < NumTests && testToRun == -1; ++i) { test_name = lowercase(cmakeGeneratedFunctionMapEntries[i].name); if (partial_match && strstr(test_name, arg) != NULL) { testToRun = i; ac -=2; av += 2; } else if (!partial_match && strcmp(test_name, arg) == 0) { testToRun = i; ac--; av++; } free(test_name); } if(arg) { free(arg); } if(testToRun != -1) { int result; @CMAKE_TESTDRIVER_BEFORE_TESTMAIN@ result = (*cmakeGeneratedFunctionMapEntries[testToRun].func)(ac, av); @CMAKE_TESTDRIVER_AFTER_TESTMAIN@ return result; } /* Nothing was run, display the test names. */ printf("Available tests:\n"); for (i =0; i < NumTests; ++i) { printf("%3d. %s\n", i, cmakeGeneratedFunctionMapEntries[i].name); } printf("Failed: %s is an invalid test name.\n", av[1]); return -1; }
Close