我试图隐蔽运行时和 进程以将 shell 命令发送到有根电话我不明白为什么我有分段错误。在互联网上,我发现 java 代码如下:
Runtime.getRuntime().exec(new String[]{"/system/bin/su","-c","reboot now"});` for reboot of the phone or `Runtime.getRuntime().exec("su");
用于 linux root 权限。
我只尝试在转换后发送带有函数的“su”命令,但我认为我错了……我认为一个可能的问题可能是从 java 类型转换的 Jstring 数组。
unit Androidapi.JNI.Root;
interface
procedure AskRoot;
implementation
uses System.SysUtils,
Androidapi.JNIBridge,
Androidapi.JNI.GraphicsContentViewText,
Androidapi.JNI.JavaTypes,
FMX.Helpers.Android;
type
JProcess = interface;
JRuntime = interface;
//----------------------------------JProcess----------------------
JProcessClass = interface(JObjectClass)
['{7BFD2CCB-89B6-4382-A00B-A7B5BB0BC7C9}']
end;
[JavaSignature('java/lang/Process')]
JProcess = interface(JObject)
['{476414FD-570F-4EDF-B678-A2FE459EA6EB}']
{Methods}
procedure destroy; cdecl;
function exitValue:integer;cdecl;
function getErrorStream:JInputStream; cdecl;
function getInputStream:JOutputStream; cdecl;
function waitFor:integer;cdecl;
end;
TJProcess = class(TJavaGenericImport<JProcessClass, JProcess>) end;
//----------------------------------Jruntime----------------------
JRuntimeClass = interface(JObjectClass)
['{3F2E949D-E97C-4AD8-B5B9-19CB0A6A29F3}']
{costant}
end;
[JavaSignature('java/lang/Runtime')]
JRuntime = interface(JObject)
['{C097A7EC-677B-4BCB-A4BD-7227160750A5}']
{Methods}
procedure addShutdownHook(hook:JThread);cdecl;
function availableProcessors:integer; cdecl;
function exec(progArray,envp:array of JString):Jprocess; overload;
function exec(progArray:Jstring; envp:array of JString;directory:JFile):Jprocess; overload;
function exec(progArray,envp:array of JString;directory:JFile):Jprocess; overload;
function exec(prog:JString;envp:array of JString):Jprocess; cdecl; overload;
function exec(progArray:array of JString):Jprocess; overload;
function exec(prog:JString):Jprocess; cdecl; overload;
procedure Exit(code:Integer);cdecl;
function freeMemory:LongInt;cdecl;
procedure gc; cdecl;
function getLocalizedInputStream(stream:JInputStream):JInputStream; cdecl;
function getLocalizedOutputStream(stream:JOutputStream):JOutputStream; cdecl;
function getRuntime:JRuntime;cdecl;
procedure halt(code:Integer);cdecl;
procedure load(pathName:JString);cdecl;
procedure loadLibrary(libName:JString); cdecl;
function maxMemory:LongInt;cdecl;
function RemoveShutdownHook(hook:JThread):Boolean;cdecl;
procedure runFinalization;cdecl;
procedure runFinalizersOnExit(run:Boolean);cdecl;
function totalMemory:LongInt;cdecl;
procedure traceInstructions(enable:Boolean);cdecl;
procedure traceMethodCalls(enable:Boolean); cdecl;
end;
TJRuntime = class(TJavaGenericImport<JRuntimeClass, JRuntime>) end;
procedure AskRoot;
var root:JRuntime;
begin
root.getRuntime.exec(StringToJString('su'));
end;
end.