if you have not see it yet there is tracking software installed on most all phones that you buy! Reguardless of carrier (except for maybe verizon). and Reguardless of PHONE OS!more on thathere and here and here or just search for it
chances are if you have an android phone (like i do) you have this rootkit on you phone. you can dl this app from xda to check and remove it (only the "pro" version can remove it) but your phone must be rooted to remove it with the program or manually.read here and here
EDIT :::BE CAREFUL THIS MIGHT HAVE KILLED MY ANDROID KEYBOARD!
i removed it from my phone manually . first i varified it was installed with TrevE's Tool. on my phone the output showed three files
[code=carrier iq files]
/system/bin/iqmsd
/system/lib/libiq_client.so
/system/lib/libiq_service.so
[/code]
so i opened up my terminal and first tried to use rm to remove them (u need to su first) as it turns out the /system dir is mounted as read-only (go figure)
so a quick remount as rw was needed. use
after system is remounted as rw you can simply rm the files like this
that will leave your phone clean (after a reboot to be save check again with trevE's program). you will still have some log data to remove. but it can all be tracked down from the program.
GOOD LUCK and please report your findings back
chances are if you have an android phone (like i do) you have this rootkit on you phone. you can dl this app from xda to check and remove it (only the "pro" version can remove it) but your phone must be rooted to remove it with the program or manually.read here and here
EDIT :::BE CAREFUL THIS MIGHT HAVE KILLED MY ANDROID KEYBOARD!
i removed it from my phone manually . first i varified it was installed with TrevE's Tool. on my phone the output showed three files
[code=carrier iq files]
/system/bin/iqmsd
/system/lib/libiq_client.so
/system/lib/libiq_service.so
[/code]
so i opened up my terminal and first tried to use rm to remove them (u need to su first) as it turns out the /system dir is mounted as read-only (go figure)
so a quick remount as rw was needed. use
Code:
mount (to see what is mounted on system) mount -o rw,remount -t yaffs2 /dev/block/mtdblock1 /system (the block info came from the mount list.)
Code:
rm /system/bin/iqmsd rm /system/lib/libiq_client.so rm /system/lib/libiq_service.so
GOOD LUCK and please report your findings back
Comment