1.- Open iPhone Browser. Go to
/private/var/root/Library/Caches/locationd/
and copy the file consolidated.db
2.- Copy to a place you can find quickly. Set the path in
the XCode Source.
[self tryLoadLocationDB: @"/Users/juaxix/consolidated.db" forDevice:@"Juaxix iPhone"];
3.- Compile and run the code.
That's the magic!
thanks Pete Warden
:-)
--------------
En español:
1.- Abrir el software libre iPhoneBrowser e ir a
/private/var/root/Library/Caches/locationd/
donde podemos encontrar:
consolidated.db
2.- La copiamos al Mac, en un sitio fácil como /Users/juaxix/
y luego cambiamos el código de lectura comentando todo el for hasta el final de la función y justo antes poner la línea:
----[objective c]
[self tryLoadLocationDB: @"/Users/juaxix/consolidated.db" forDevice:@"Juaxix iPhone"];
3.- Compilar y ejecutar
Eso es todo, gracias a Pete Warden por el programa!
:-)
Más en www.programadorphp.org
Freesource at:
petewarden.github.com/iPhoneTracker
----------------
Apple señaló en un comunicado el 27 de abril que el archivo es un registro de las torres de telefonía móvil y redes Wi-Fi que el teléfono ha "visto" con el fin de ayudarle a calcular su posición con mayor rapidez y precisión que si utilizara el sistema de localización por satélite GPS
How do you open iphone browser?
alancampbell6 10 months ago
@alancampbell6
That's a program for jailbreaked iDevices
code.google.com/p/iphonebrowser
You can use XCode project without changing anything if you synchronize with iTunes
juaxix 10 months ago
Thanks! I was going to try to do it, but XCode complains that method is not found, but compiles anyways. However the maps is stuck on "loading screen". Should I use any other libraries or something?
falthas 10 months ago
@falthas hehe, just replace the line
_______
[self loadLocationDB];
_______
with
____________
[self tryToLoadLocationDB: @"/Users/juaxix/consolidated.db" forDevice:@"Juaxix iPhone"];
____________
using your values and done :) thanks for watching ;)
juaxix 10 months ago