AccessibilityService:是否可以用鼠标在远程智能手机屏幕上绘制密码?
AccessibilityService: Is possible draw password on remote smartphone screen with mouse?
我正在做一个类似于 Team View QuickSupport and i want know if AccessibilityService
的项目,允许在远程屏幕上执行滑动,可以绘制保护设备的密码?
我来尝试以下代码,但没有成功。到目前为止,所有发生的事情都是 android 代码的异常:
java.lang.IllegalStateException: Attempting to add too many strokes to a gesture
此处:
gestureBuilder.addStroke(new GestureDescription.StrokeDescription(path, 0, time));
当前的Java代码是这样的:
if (xline.contains("mouseswipescreen")) {
String coords = xline.replace("mouseswipescreen", "");
String[] tokens = coords.split(Pattern.quote("<|>"));
float x = parseFloat(tokens[0]);
float y = parseFloat(tokens[1]);
String cmd = tokens[2];
MyAccessibility.instance.Swipte((int) x, (int) y, 50, cmd);
}
GestureDescription.Builder gestureBuilder;
Path path;
public void Swipte(int x, int y, int time, String command) {
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N) {
System.out.println(" ======= Swipte =======");
if (command.equalsIgnoreCase("start")) {
gestureBuilder = new GestureDescription.Builder();
path = new Path();
path.moveTo(x, y);
} else if (command.equalsIgnoreCase("move")) {
path.lineTo(x, y);
gestureBuilder.addStroke(new GestureDescription.StrokeDescription(path, 0, time));
} else if (command.equalsIgnoreCase("dispatch")) {
dispatchGesture(gestureBuilder.build(), new GestureResultCallback() {
@Override
public void onCompleted(GestureDescription gestureDescription) {
System.out.println("SWIPTE Gesture Completed :D");
super.onCompleted(gestureDescription);
}
}, null);
}
}
}
现在更改此代码以执行保持这种方式的滑动屏幕:
public void Swipte(int x1, int y1, int x2, int y2, int time){
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N) {
System.out.println(" ======= Swipte =======");
GestureDescription.Builder gestureBuilder = new GestureDescription.Builder();
Path path = new Path();
path.moveTo(x1,y1); // "mousedown"
path.lineTo(x2,y2); // until last position found in "mousemove"
gestureBuilder.addStroke(new GestureDescription.StrokeDescription(path, 0, time));
dispatchGesture(gestureBuilder.build(), new GestureResultCallback() {
@Override
public void onCompleted(GestureDescription gestureDescription) {
System.out.println("SWIPTE Gesture Completed :D");
super.onCompleted(gestureDescription);
}
}, null);
}
}
结果是这样的:
看到是抽错密码了
最后是发送坐标 (reference) 的代码 (Delphi),该代码基于上面第一个 Java 代码:
private
{ Private declarations }
fDown: Boolean;
fPO: TPoint;
public
{ Public declarations }
end;
...
procedure TForm2.Image1MouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
var
Index, XTouch, YTouch, RXCoord, RYCoord: Integer;
List: TStrings;
RScreen, Start: String;
begin
Index := Form1.ListView1.ItemIndex;
if Index = -1 then
Exit;
List := TStringList.Create;
RScreen := Form1.ListView1.Selected.SubItems[6]; // Remote screen resolution
try
ExtractStrings(['x'], [], PChar(RScreen), List); // Ex: my smartphone is 1920x1080
RYCoord := StrToInt(List[0]); // 1920 (height)
RXCoord := StrToInt(List[1]); // 1080 (width)
finally
List.Free;
end;
XTouch := Round((X / Image1.Width) * RXCoord);
YTouch := Round((Y / Image1.Height) * RYCoord);
fPO := Point(XTouch, YTouch);
Start := 'start';
fDown := true;
Form1.ServerSocket1.Socket.Connections[Index].SendText(format('mouseswipescreen%d<|>%d<|>%s'#13#10, [fPO.X, fPO.Y, Start]));
end;
end;
procedure TForm2.Image1MouseMove(Sender: TObject; Shift: TShiftState;
X, Y: Integer);
var
Index, XTouch, YTouch, RXCoord, RYCoord: Integer;
List: TStrings;
RScreen, Move: String;
begin
Index := Form1.ListView1.ItemIndex;
if Index = -1 then
Exit;
List := TStringList.Create;
RScreen := Form1.ListView1.Selected.SubItems[6]; // Remote screen resolution
try
ExtractStrings(['x'], [], PChar(RScreen), List); // Ex: my smartphone is 1920x1080
RYCoord := StrToInt(List[0]); // 1920 (height)
RXCoord := StrToInt(List[1]); // 1080 (width)
finally
List.Free;
end;
XTouch := Round((X / Image1.Width) * RXCoord);
YTouch := Round((Y / Image1.Height) * RYCoord);
if fDown then
begin
Move := 'move';
Form1.ServerSocket1.Socket.Connections[Index].SendText(format('mouseswipescreen%d<|>%d<|>%s'#13#10, [fPO.X, fPO.Y, Move]));
fPO := Point(XTouch, YTouch);
end;
end;
procedure TForm2.Image1MouseUp(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
begin
if fDown then
fDown := false;
end;
好吧,我回答我自己的问题,AccessibilityService
的专家已经认为我正在构建恶意软件而不喜欢帮助这类人。
答案:
我上面的方法是正确的,不幸的是直到这一刻才看到,使用 AccessibilityService
不可能实现这个目标,因为存在 limitation on storage of gestures, here 是官方参考:
addStroke(new GestureDescription.StrokeDescription(path, 0, time));
而且,直到现在(在这种情况下)AccessibilityService
无法在某些时候执行触摸手势“仅按下而不松开”(组成密码屏幕的 9 个点)当执行并发送 2 次快速鼠标点击时:
procedure TForm2.Image1MouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
开始前和绘制密码(拖动鼠标)时,只有在绘制完密码后才释放并且:
procedure TForm2.Image1MouseUp(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
发送到远程设备。
编辑:
注:Team View QuickSupport is able to this because use code of root gave to he by several vendors.
我正在做一个类似于 Team View QuickSupport and i want know if AccessibilityService
的项目,允许在远程屏幕上执行滑动,可以绘制保护设备的密码?
我来尝试以下代码,但没有成功。到目前为止,所有发生的事情都是 android 代码的异常:
java.lang.IllegalStateException: Attempting to add too many strokes to a gesture
此处:
gestureBuilder.addStroke(new GestureDescription.StrokeDescription(path, 0, time));
当前的Java代码是这样的:
if (xline.contains("mouseswipescreen")) {
String coords = xline.replace("mouseswipescreen", "");
String[] tokens = coords.split(Pattern.quote("<|>"));
float x = parseFloat(tokens[0]);
float y = parseFloat(tokens[1]);
String cmd = tokens[2];
MyAccessibility.instance.Swipte((int) x, (int) y, 50, cmd);
}
GestureDescription.Builder gestureBuilder;
Path path;
public void Swipte(int x, int y, int time, String command) {
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N) {
System.out.println(" ======= Swipte =======");
if (command.equalsIgnoreCase("start")) {
gestureBuilder = new GestureDescription.Builder();
path = new Path();
path.moveTo(x, y);
} else if (command.equalsIgnoreCase("move")) {
path.lineTo(x, y);
gestureBuilder.addStroke(new GestureDescription.StrokeDescription(path, 0, time));
} else if (command.equalsIgnoreCase("dispatch")) {
dispatchGesture(gestureBuilder.build(), new GestureResultCallback() {
@Override
public void onCompleted(GestureDescription gestureDescription) {
System.out.println("SWIPTE Gesture Completed :D");
super.onCompleted(gestureDescription);
}
}, null);
}
}
}
现在更改此代码以执行保持这种方式的滑动屏幕:
public void Swipte(int x1, int y1, int x2, int y2, int time){
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N) {
System.out.println(" ======= Swipte =======");
GestureDescription.Builder gestureBuilder = new GestureDescription.Builder();
Path path = new Path();
path.moveTo(x1,y1); // "mousedown"
path.lineTo(x2,y2); // until last position found in "mousemove"
gestureBuilder.addStroke(new GestureDescription.StrokeDescription(path, 0, time));
dispatchGesture(gestureBuilder.build(), new GestureResultCallback() {
@Override
public void onCompleted(GestureDescription gestureDescription) {
System.out.println("SWIPTE Gesture Completed :D");
super.onCompleted(gestureDescription);
}
}, null);
}
}
结果是这样的:
看到是抽错密码了
最后是发送坐标 (reference) 的代码 (Delphi),该代码基于上面第一个 Java 代码:
private
{ Private declarations }
fDown: Boolean;
fPO: TPoint;
public
{ Public declarations }
end;
...
procedure TForm2.Image1MouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
var
Index, XTouch, YTouch, RXCoord, RYCoord: Integer;
List: TStrings;
RScreen, Start: String;
begin
Index := Form1.ListView1.ItemIndex;
if Index = -1 then
Exit;
List := TStringList.Create;
RScreen := Form1.ListView1.Selected.SubItems[6]; // Remote screen resolution
try
ExtractStrings(['x'], [], PChar(RScreen), List); // Ex: my smartphone is 1920x1080
RYCoord := StrToInt(List[0]); // 1920 (height)
RXCoord := StrToInt(List[1]); // 1080 (width)
finally
List.Free;
end;
XTouch := Round((X / Image1.Width) * RXCoord);
YTouch := Round((Y / Image1.Height) * RYCoord);
fPO := Point(XTouch, YTouch);
Start := 'start';
fDown := true;
Form1.ServerSocket1.Socket.Connections[Index].SendText(format('mouseswipescreen%d<|>%d<|>%s'#13#10, [fPO.X, fPO.Y, Start]));
end;
end;
procedure TForm2.Image1MouseMove(Sender: TObject; Shift: TShiftState;
X, Y: Integer);
var
Index, XTouch, YTouch, RXCoord, RYCoord: Integer;
List: TStrings;
RScreen, Move: String;
begin
Index := Form1.ListView1.ItemIndex;
if Index = -1 then
Exit;
List := TStringList.Create;
RScreen := Form1.ListView1.Selected.SubItems[6]; // Remote screen resolution
try
ExtractStrings(['x'], [], PChar(RScreen), List); // Ex: my smartphone is 1920x1080
RYCoord := StrToInt(List[0]); // 1920 (height)
RXCoord := StrToInt(List[1]); // 1080 (width)
finally
List.Free;
end;
XTouch := Round((X / Image1.Width) * RXCoord);
YTouch := Round((Y / Image1.Height) * RYCoord);
if fDown then
begin
Move := 'move';
Form1.ServerSocket1.Socket.Connections[Index].SendText(format('mouseswipescreen%d<|>%d<|>%s'#13#10, [fPO.X, fPO.Y, Move]));
fPO := Point(XTouch, YTouch);
end;
end;
procedure TForm2.Image1MouseUp(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
begin
if fDown then
fDown := false;
end;
好吧,我回答我自己的问题,AccessibilityService
的专家已经认为我正在构建恶意软件而不喜欢帮助这类人。
答案:
我上面的方法是正确的,不幸的是直到这一刻才看到,使用 AccessibilityService
不可能实现这个目标,因为存在 limitation on storage of gestures, here 是官方参考:
addStroke(new GestureDescription.StrokeDescription(path, 0, time));
而且,直到现在(在这种情况下)AccessibilityService
无法在某些时候执行触摸手势“仅按下而不松开”(组成密码屏幕的 9 个点)当执行并发送 2 次快速鼠标点击时:
procedure TForm2.Image1MouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
开始前和绘制密码(拖动鼠标)时,只有在绘制完密码后才释放并且:
procedure TForm2.Image1MouseUp(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
发送到远程设备。
编辑:
注:Team View QuickSupport is able to this because use code of root gave to he by several vendors.