예제 #1
0
        /// <summary>
        /// 修改定位
        /// </summary>
        /// <param name="location"></param>
        public void UpdateLocation(Location location)
        {
            if (Devices.Count == 0)
            {
                PrintMessage($"修改失败! 未发现任何设备.");
                return;
            }

            iDevice.idevice_set_debug_level(1);

            PrintMessage($"发起位置修改.");
            PrintMessage($"经纬度: {location.Longitude},{location.Latitude}");

            //location = bd09_To_Gcj02(location.Latitude, location.Longitude);
            //PrintMessage($"gcj02经度: {location.Longitude}");
            //PrintMessage($"gcj02纬度: {location.Latitude}");

            //location = gcj_To_Gps84(location.Latitude, location.Longitude);
            //PrintMessage($"gps84经度: {location.Longitude}");
            //PrintMessage($"gps84纬度: {location.Latitude}");

            var Longitude = location.Longitude.ToString();
            var Latitude  = location.Latitude.ToString();

            var size = BitConverter.GetBytes(0u);

            Array.Reverse(size);
            Devices.ForEach(itm =>
            {
                PrintMessage($"开始修改设备 {itm.Name} {itm.Version}");

                var num = 0u;
                iDevice.idevice_new(out var device, itm.UDID);
                lockdown.lockdownd_client_new_with_handshake(device, out var client, "com.alpha.jailout").ThrowOnError();   //com.alpha.jailout
                lockdown.lockdownd_start_service(client, "com.apple.dt.simulatelocation", out var service2).ThrowOnError(); //com.apple.dt.simulatelocation
                var se = service.service_client_new(device, service2, out var client2);
                // 先置空
                se = service.service_send(client2, size, 4u, ref num);

                num = 0u;
                var bytesLocation = Encoding.ASCII.GetBytes(Latitude);
                size = BitConverter.GetBytes((uint)Latitude.Length);
                Array.Reverse(size);
                se = service.service_send(client2, size, 4u, ref num);
                se = service.service_send(client2, bytesLocation, (uint)bytesLocation.Length, ref num);


                bytesLocation = Encoding.ASCII.GetBytes(Longitude);
                size          = BitConverter.GetBytes((uint)Longitude.Length);
                Array.Reverse(size);
                se = service.service_send(client2, size, 4u, ref num);
                se = service.service_send(client2, bytesLocation, (uint)bytesLocation.Length, ref num);

                //device.Dispose();
                //client.Dispose();
                PrintMessage($"设备 {itm.Name} {itm.Version} 修改完成.");
            });
        }
예제 #2
0
        public void EnableDeveloperMode(string deviceImagePath, string deviceImageSignaturePath)
        {
            if (!File.Exists(deviceImagePath) || !File.Exists(deviceImageSignaturePath))
            {
                throw new FileNotFoundException("The specified device image files do not exist.");
            }
            iDeviceHandle                   device     = null;
            LockdownClientHandle            client     = null;
            LockdownServiceDescriptorHandle service    = null;
            MobileImageMounterClientHandle  client2    = null;
            AfcClientHandle                 client3    = null;
            PlistHandle            result              = null;
            FileStream             fileStream          = null;
            DiskImageUploadMode    diskImageUploadMode = (int.Parse(((string)Properties["ProductVersion"]).Split('.')[0]) >= 7) ? DiskImageUploadMode.UploadImage : DiskImageUploadMode.AFC;
            IiDeviceApi            iDevice             = LibiMobileDevice.Instance.iDevice;
            ILockdownApi           lockdown            = LibiMobileDevice.Instance.Lockdown;
            IServiceApi            service2            = LibiMobileDevice.Instance.Service;
            IMobileImageMounterApi mobileImageMounter  = LibiMobileDevice.Instance.MobileImageMounter;
            IAfcApi afc = LibiMobileDevice.Instance.Afc;

            try
            {
                if (iDevice.idevice_new(out device, UDID) != 0)
                {
                    throw new Exception("Unable to open device, is it connected?");
                }
                if (lockdown.lockdownd_client_new_with_handshake(device, out client, "iFakeLocation") != 0)
                {
                    throw new Exception("Unable to connect to lockdownd.");
                }
                if (lockdown.lockdownd_start_service(client, "com.apple.mobile.mobile_image_mounter", out service) != 0)
                {
                    throw new Exception("Unable to start the mobile image mounter service.");
                }
                if (mobileImageMounter.mobile_image_mounter_new(device, service, out client2) != 0)
                {
                    throw new Exception("Unable to create mobile image mounter instance.");
                }
                service.Close();
                service = null;
                if (diskImageUploadMode == DiskImageUploadMode.AFC)
                {
                    if (lockdown.lockdownd_start_service(client, "com.apple.afc", out service) != 0)
                    {
                        throw new Exception("Unable to start AFC service.");
                    }
                    if (afc.afc_client_new(device, service, out client3) != 0)
                    {
                        throw new Exception("Unable to connect to AFC service.");
                    }
                    service.Close();
                    service = null;
                }
                client.Close();
                client = null;
                if (mobileImageMounter.mobile_image_mounter_lookup_image(client2, "Developer", out result) != 0)
                {
                    goto IL_01c7;
                }
                Dictionary <string, object> dictionary = PlistReader.ReadPlistDictFromNode(result, new string[2]
                {
                    "ImagePresent",
                    "ImageSignature"
                });
                if ((!dictionary.ContainsKey("ImagePresent") || !(dictionary["ImagePresent"] is bool) || !(bool)dictionary["ImagePresent"]) && !dictionary.ContainsKey("ImageSignature"))
                {
                    goto IL_01c7;
                }
                goto end_IL_0094;
IL_01c7:
                result.Close();
                result = null;
                string text      = "PublicStaging/staging.dimage";
                string imagePath = "/private/var/mobile/Media/" + text;
                fileStream = new FileStream(deviceImagePath, FileMode.Open, FileAccess.Read, FileShare.Read);
                byte[] array = File.ReadAllBytes(deviceImageSignaturePath);
                switch (diskImageUploadMode)
                {
                case DiskImageUploadMode.UploadImage:
                {
                    GCHandle value = GCHandle.Alloc(fileStream);
                    mobileImageMounter.mobile_image_mounter_upload_image(client2, "Developer", uint.Parse(fileStream.Length.ToString()), array, ushort.Parse(array.Length.ToString()), MounterUploadCallback, GCHandle.ToIntPtr(value));
                    value.Free();
                    break;
                }

                case DiskImageUploadMode.AFC:
                {
                    ReadOnlyCollection <string> fileInformation;
                    if (afc.afc_get_file_info(client3, "PublicStaging", out fileInformation) != 0 || afc.afc_make_directory(client3, "PublicStaging") != 0)
                    {
                        throw new Exception("Unable to create directory 'PublicStaging' on the device.");
                    }
                    ulong handle = 0uL;
                    if (afc.afc_file_open(client3, text, AfcFileMode.FopenWronly, ref handle) != 0)
                    {
                        throw new Exception("Unable to create file '" + text + "'.");
                    }
                    uint   num    = 0u;
                    byte[] array2 = new byte[8192];
                    do
                    {
                        num = (uint)fileStream.Read(array2, 0, array2.Length);
                        if (num != 0)
                        {
                            uint bytesWritten = 0u;
                            uint num2;
                            for (num2 = 0u; num2 < num; num2 += bytesWritten)
                            {
                                if (afc.afc_file_write(client3, handle, array2, num, ref bytesWritten) != 0)
                                {
                                    afc.afc_file_close(client3, handle);
                                    throw new Exception("An AFC write error occurred.");
                                }
                            }
                            if (num2 != num)
                            {
                                afc.afc_file_close(client3, handle);
                                throw new Exception("The developer image was not written completely.");
                            }
                        }
                    }while (num != 0);
                    afc.afc_file_close(client3, handle);
                    break;
                }
                }
                if (mobileImageMounter.mobile_image_mounter_mount_image(client2, imagePath, array, ushort.Parse(array.Length.ToString()), "Developer", out result) != 0)
                {
                    throw new Exception("Unable to mount developer image.");
                }
                Dictionary <string, object> dictionary2 = PlistReader.ReadPlistDictFromNode(result);
                if (!dictionary2.ContainsKey("Status") || dictionary2["Status"] as string != "Complete")
                {
                    object obj  = dictionary2.ContainsKey("Status") ? dictionary2["Status"] : "N/A";
                    string str  = (obj != null) ? obj.ToString() : null;
                    object obj2 = dictionary2.ContainsKey("Error") ? dictionary2["Error"] : "N/A";
                    throw new Exception("Mount failed with status: " + str + " and error: " + ((obj2 != null) ? obj2.ToString() : null));
                }
                end_IL_0094 :;
            }
            finally
            {
                if (fileStream != null)
                {
                    fileStream.Close();
                }
                if (result != null)
                {
                    result.Close();
                }
                if (client3 != null)
                {
                    client3.Close();
                }
                if (client2 != null)
                {
                    client2.Close();
                }
                if (service != null)
                {
                    service.Close();
                }
                if (client != null)
                {
                    client.Close();
                }
                if (device != null)
                {
                    device.Close();
                }
            }
        }
예제 #3
0
        private void UpdateLocation(string Longitude, string Latitude, string Altitude, DeviceModel itm)
        {
            var size = BitConverter.GetBytes(0u);

            Array.Reverse(size);

            var num = 0u;

            iDevice.idevice_new(out var device, itm.UDID);

            var ret_handshake = lockdown.lockdownd_client_new_with_handshake(device, out var client,
                                                                             "devicelocation");

            if (ret_handshake != 0)
            {
                return;
            }

            if (!itm.isDevMode)
            {
                return;
            }

            var ret_start_service = lockdown.lockdownd_start_service(client,
                                                                     "com.apple.dt.simulatelocation", out var service2);

            if (ret_start_service != 0)
            {
                return;
            }

            var se = service.service_client_new(device, service2, out var client2);

            if (se != 0)
            {
                return;
            }

            se = service.service_send(client2, size, 4u, ref num);
            if (se != 0)
            {
                return;
            }

            num = 0u;
            var bytesLocation = Encoding.ASCII.GetBytes(Latitude);

            size = BitConverter.GetBytes((uint)Latitude.Length);
            Array.Reverse(size);
            se = service.service_send(client2, size, 4u, ref num);
            se = service.service_send(client2, bytesLocation,
                                      (uint)bytesLocation.Length, ref num);

            bytesLocation = Encoding.ASCII.GetBytes(Longitude);
            size          = BitConverter.GetBytes((uint)Longitude.Length);
            Array.Reverse(size);
            se = service.service_send(client2, size, 4u, ref num);
            se = service.service_send(client2, bytesLocation,
                                      (uint)bytesLocation.Length, ref num);

            bytesLocation = Encoding.ASCII.GetBytes(Altitude);
            size          = BitConverter.GetBytes((uint)Altitude.Length);
            Array.Reverse(size);
            se = service.service_send(client2, size, 4u, ref num);
            se = service.service_send(client2, bytesLocation,
                                      (uint)bytesLocation.Length, ref num);

            device.Close();
            device.Dispose();
            client.Dispose();
            client2.Dispose();

            service2.Dispose();
        }
예제 #4
0
        private static void SetLocation(DeviceInformation deviceInfo, PointLatLng?target)
        {
            iDeviceHandle                   device  = null;
            LockdownClientHandle            client  = null;
            LockdownServiceDescriptorHandle service = null;
            ServiceClientHandle             client2 = null;
            IiDeviceApi  iDevice  = LibiMobileDevice.Instance.iDevice;
            ILockdownApi lockdown = LibiMobileDevice.Instance.Lockdown;
            IServiceApi  service2 = LibiMobileDevice.Instance.Service;

            try
            {
                if (iDevice.idevice_new(out device, deviceInfo.UDID) != 0)
                {
                    throw new Exception("Unable to connect to the device. Make sure it is connected.");
                }
                if (lockdown.lockdownd_client_new_with_handshake(device, out client, "iFakeLocation") != 0)
                {
                    throw new Exception("Unable to connect to lockdownd.");
                }
                if (lockdown.lockdownd_start_service(client, "com.apple.dt.simulatelocation", out service) != 0 || service.IsInvalid)
                {
                    throw new Exception("Unable to start simulatelocation service.");
                }
                if (service2.service_client_new(device, service, out client2) != 0)
                {
                    throw new Exception("Unable to create simulatelocation service client.");
                }
                if (!target.HasValue)
                {
                    byte[] array = ToBytesBE(1);
                    uint   sent  = 0u;
                    if (service2.service_send(client2, array, (uint)array.Length, ref sent) != 0)
                    {
                        throw new Exception("Unable to send stop message to device.");
                    }
                }
                else
                {
                    byte[] array2 = ToBytesBE(0);
                    byte[] bytes  = Encoding.ASCII.GetBytes(target.Value.Lat.ToString(CultureInfo.InvariantCulture));
                    byte[] bytes2 = Encoding.ASCII.GetBytes(target.Value.Lng.ToString(CultureInfo.InvariantCulture));
                    byte[] array3 = ToBytesBE(bytes.Length);
                    byte[] array4 = ToBytesBE(bytes2.Length);
                    uint   sent2  = 0u;
                    if (service2.service_send(client2, array2, (uint)array2.Length, ref sent2) != 0 || service2.service_send(client2, array3, (uint)array3.Length, ref sent2) != 0 || service2.service_send(client2, bytes, (uint)bytes.Length, ref sent2) != 0 || service2.service_send(client2, array4, (uint)array4.Length, ref sent2) != 0 || service2.service_send(client2, bytes2, (uint)bytes2.Length, ref sent2) != 0)
                    {
                        throw new Exception("Unable to send co-ordinates to device.");
                    }
                }
            }
            finally
            {
                if (client2 != null)
                {
                    client2.Close();
                }
                if (service != null)
                {
                    service.Close();
                }
                if (client != null)
                {
                    client.Close();
                }
                if (device != null)
                {
                    device.Close();
                }
            }
        }