How to get region lock status? - Galaxy A3, A5, A7, A8, A9 Q&A, Help & Troubleshoot

Hello. I want to get region lock status on Galaxy A5. I tried to edit customer.xml unfortunately I don't know how to get lock status. Maybe some AT command, or shell command, or internal api... Thanks very much.

BTW, code *#7465625# does not executing.

Related

Wizard SIM Unlock Code location?

It's a known fact that lokiwiz can output Wizard's SIM unlock code by using itsme's typhoonciedit.pl perl script.
I've been studying that script for a while now but can't figure how to locate/extract that unlock code . I know where the lockflag is and also where are 5 lock values but nothing of the unlock code.
Anyone knows how/where to get it?
tx

Lock / Unlock device by Code

Hello
Does any body know how to lock unlock device from managed (or unmanaged) code? How S2U2 (for example) works?
C.

Set a pin lock, tried to unlock phone and it says incorrect pin

So, I just set a pin lock screen on my Sprint GS5, and I immediately locked it, and went to unlock it (to see what the lock screen looked like), and I entered the pin that I just set on the phone, and it said that it was incorrect. I know what I entered, and the lock screen is not taking it. I have tried multiple combinations involving numbers near the numbers I put in, and nothing has worked. I'd really like to remove the pin lock without erasing anything, as I have things I have not backed up that are not on my SD card. I did not have the device set up with Android Device Manager, nor my Samsung Account. The phone was rooted with Towel Root.
Is there anything I can do other than a factory reset? This is really aggravating me.
Now you know why you should always make a backup first.
You should be able to remove the PIN using Paulyhofman's method.
This requires ADB debugging on or in the alternative, installing a custom recovery.
If the Sprint bootloader is locked and hence you can't do a proper custom recovery, then do a forum search as there are several other PIN bypass methods in existing threads. Actually doing a search should always be the first step before posting any question.
adb shell
# sqlite3 /data/data/com.android.providers.settings/databases/settings.db
sqlite> update secure set value=65536 where name='lockscreen.password_type';
sqlite> .exit
# exit
adb reboot
.
fffft said:
Now you know why you should always make a backup first.
You should be able to remove the PIN using Paulyhofman's method.
This requires ADB debugging on or in the alternative, installing a custom recovery.
If the Sprint bootloader is locked and hence you can't do a proper custom recovery, then do a forum search as there are several other PIN bypass methods in existing threads. Actually doing a search should always be the first step before posting any question.
adb shell
# sqlite3 /data/data/com.android.providers.settings/databases/settings.db
sqlite> update secure set value=65536 where name='lockscreen.password_type';
sqlite> .exit
# exit
adb reboot
.
Click to expand...
Click to collapse
I must not have had usb debugging enabled on my phone because ADB says device not found. I was able to copy the settings.db file to my SD card using aroma, but I try to open it in SQLite reader, and it says it is encrypted. Do you know how to decrypt this file? Or anyone?
Okay, I found a solution. Instead of modifying settings.db, I deleted /data/system/locksettings.db, and the lock screen was removed.
I did this from within the aroma file manager. I finally have my phone back! I will be setting up remote controls, usb debugging, and backing some stuff up now.

[help] I see my IMEI but...

Hi all, i've purchased an SM-G900F but there is a problem, it has rooted.
I've noticed those :
- I can see IMEI number (if i do #*06#) but my EFS folder is empty
- When turn on WiFi , the device will reboot automatically and appear " Factory Mode is On"
- i can make first call with sim , after i'm unable to call , but the 3G network works
- Whit ES File Explorer i've see that my efs folder is empty (But i can see my IMEI with secret code)
- In Device Info i see one time "Official Status" and another time "Personalized Status"
I'm tinking that old owner is a very st......d guy. Howewer these are all information :
Model : SM-G900F
Version : 4.4.2
BASEBAND : NE2
BUILD : NE2
What do you think? How i can solve the problems?
EDIT 1 : i've formatted from recovery , now it ask me to insert the samsung account of old owner...
- Use Phone INFO ★Samsung★ app to obtain more detailed information about your device, including Model, Baseband, Bootloader, CSC, IMEI, S/N, etc...
- May be the Reactivation lock has been enabled. You should ask the ex-owner for the account.
qwertyup88 said:
Hi all, i've purchased an SM-G900F but there is a problem, it has rooted.
I've noticed those :
- I can see IMEI number (if i do #*06#) but my EFS folder is empty
- When turn on WiFi , the device will reboot automatically and appear " Factory Mode is On"
- i can make first call with sim , after i'm unable to call , but the 3G network works
- Whit ES File Explorer i've see that my efs folder is empty (But i can see my IMEI with secret code)
- In Device Info i see one time "Official Status" and another time "Personalized Status"
I'm tinking that old owner is a very st......d guy. Howewer these are all information :
Model : SM-G900F
Version : 4.4.2
BASEBAND : NE2
BUILD : NE2
What do you think? How i can solve the problems?
EDIT 1 : i've formatted from recovery , now it ask me to insert the samsung account of old owner...
Click to expand...
Click to collapse
reactivation lock is on. you will need to contact old owner. There is also a way to "fix" that but not sure if it is appropriate for XDA.
kabloomz said:
reactivation lock is on. you will need to contact old owner. There is also a way to "fix" that but not sure if it is appropriate for XDA.
Click to expand...
Click to collapse
Can you send me an email ? i really need hepl
vndnguyen said:
- Use Phone INFO ★Samsung★ app to obtain more detailed information about your device, including Model, Baseband, Bootloader, CSC, IMEI, S/N, etc...
- May be the Reactivation lock has been enabled. You should ask the ex-owner for the account.
Click to expand...
Click to collapse
The guy was not traceable now. He's vanished ....
You are kinda between a rock and a hard place if reactivation lock is enabled and you don't have the login to toggle that. In most cases that means that the phone is stolen and this is an explicit anti theft feature. You need that login from the original owner. Or if you have the original receipt, you might be able to convince a Samsung repair center to disable the reactivation lock for you.
In any event, as to your original question the most likely cause of the problem is a corrupt configuration file, namely a text file named "factorymode". You can try this repair from the command line or a root aware text editor.
Code:
echo -n ON > /efs/FactoryApp/factorymode
.
fffft said:
You are kinda between a rock and a hard place if reactivation lock is enabled and you don't have the login to toggle that. In most cases that means that the phone is stolen and this is an explicit anti theft feature. You need that login from the original owner. Or if you have the original receipt, you might be able to convince a Samsung repair center to disable the reactivation lock for you.
In any event, as to your original question the most likely cause of the problem is a corrupt configuration file, namely a text file named "factorymode". You can try this repair from the command line or a root aware text editor.
Code:
echo -n ON > /efs/FactoryApp/factorymode
.
Click to expand...
Click to collapse
Just now the guy told me account and password . Now i'm able to use my phone !!!!! But now i see that the efs folder is empty...
qwertyup88 said:
Just now the guy told me account and password . Now i'm able to use my phone
Click to expand...
Click to collapse
Great. But you neglected to tell us if you tried (or even noticed) the suggestion to check your factory mode configuration file. The contents should show "ON" (yes, "ON") and the permissions 0644. Your efs folder may appear empty to you when it really isn't. It depends on whether you have your file browser (or command line options) set to display hidden and system files or not.
.
fffft said:
Great. But you neglected to tell us if you tried (or even noticed) the suggestion to check your factory mode configuration file. The contents should show "ON" (yes, "ON") and the permissions 0644. Your efs folder may appear empty to you when it really isn't. It depends on whether you have your file browser (or command line options) set to display hidden and system files or not.
.
Click to expand...
Click to collapse
y factory mode is on , because i can't acces my wifi, and it appear that factory mode is on. I've set to see hidden files , but now i haven't root on my device
Edit: terminal emulator say : no such file or directory
Edit 2 : Solved with terminal emulator and busy box Thanks to @leoaudio13 for his dump
These are the command for mount efs :
su
mke2fs /dev/block/mmcblk0p12
mount -w -t ext4 /dev/block/mmcblk0p12
reboot
After then , with text editor i've disabled FactoryApp in efs folder tanks to all
.
For the benefit of anyone else reading this thread, do not repeat the steps in the post above until
you understand what they do. A typo in those steps could easily cause you endless grief.
Glad you go it working.
If those steps fixed your issue, then you mislead us with erroneous information earlier. You said that you had an empty efs folder earlier. But those steps would not have been necessary or effective if that was accurate. You must have had a missing efs partition. There is a considerable difference between an empty and nonexistent item and that datum would have led us to a solution.
On a normal phone, there would be an extant efs folder and it would be automatically mounted at boot. A missing folder strongly suggests that the wrong firmware or a flash error took place. Presumably by the previous owner.
Anyone using the make filesystem command mke2fs /dev/block/mmcblk0p12 should be very careful with typos as an incorrect address could cause major corruption that would be difficult to recover from.
.
Originally Posted by qwertyup88 View Post
Hi all, i've purchased an SM-G900F but there is a problem, it has rooted.
I've noticed those :
- I can see IMEI number (if i do #*06#) but my EFS folder is empty
- When turn on WiFi , the device will reboot automatically and appear " Factory Mode is On"
- i can make first call with sim , after i'm unable to call , but the 3G network works
- Whit ES File Explorer i've see that my efs folder is empty (But i can see my IMEI with secret code)
- In Device Info i see one time "Official Status" and another time "Personalized Status"
I'm tinking that old owner is a very st......d guy. Howewer these are all information :
Model : SM-G900F
Version : 4.4.2
BASEBAND : NE2
BUILD : NE2
What do you think? How i can solve the problems?
EDIT 1 : i've formatted from recovery , now it ask me to insert the samsung account of old owner...
Click to expand...
Click to collapse
Ive got almost the same problem, i bought my s5 to a friend who visited Philippines from Korea, He acquired the Phone in a Pawnshop in korea, i restore the phone and now it asked me for a password which i dont know, send it to the Technician, Force to delete the account (dont know how) but the problem is that, Phone has NO SIGNAL from then on, it has a NO signal above instead of a bar signal, EFS folder is empty, IMEI was null 000000000000000.
Anybody has the same experience? how can i fix this? please help.
Not perfectly solved .... After first call it don't connect to the network. Only after reboot it connect.
Any suggestions ?
qwertyup88 said:
Not perfectly solved .... After first call it don't connect to the network. Only after reboot it connect.
Any suggestions ?
Click to expand...
Click to collapse
could be a block imei by the operator? if it is POSSIBLE to solve? or it could be due however to the efs folder, or the firmware, modem?
edreab86 said:
Ive got almost the same problem, i bought my s5 to a friend who visited Philippines from Korea, He acquired the Phone in a Pawnshop in korea, i restore the phone and now it asked me for a password which i dont know, send it to the Technician, Force to delete the account (dont know how) but the problem is that, Phone has NO SIGNAL from then on, it has a NO signal above instead of a bar signal, EFS folder is empty, IMEI was null 000000000000000.
Anybody has the same experience? how can i fix this? please help.
Click to expand...
Click to collapse
it's a different problem , you have a null imei , in your case it's more difficult to resolve.
Originally Posted by qwertyup88
it's a different problem , you have a null imei , in your case it's more difficult to resolve.
Click to expand...
Click to collapse
As you can read i said, Ive got almost the same problem, i don't say we have the same problem. in a sense that previous owner account or the reactivation lock is present. sorry if i made a statement that bothers you, just looking for a solution.
hello guys, always about the efs folder I was reading this post: http://forum.xda-developers.com/showthread.php?t=2705524.
according to you through this tool is possiblile restore the backup I had done with samsung tool? I would like to try this because the efs folder on my sm-g900f is 23kb, but the backup I had done with samsung tool is 14mb !! what do you think?

I need a little help regarding a g950f - to find files to remove Google FRP

I've been trying to find the correct files to sort my device out, but I am having a hard time with it... I can't get the codes to work to find the CSC code for my device and I am unsure if I am downloading the right files, so I would like it if any of you who know a little more about all of this stuff can help me with this.
On the recovery menu this is listed:
Code:
8.0.0 / R16NW / G950FXXU4CRL3
I don't know for sure, but I think the network is on 02. I am unsure if it's open but an 02 sim gets signal bars when placed in the device.
I can't find a way to get a code to work to find the CSC code for the device though, I have tried a few combinations of the number on the dial pad to get the information so I don't download the wrong file.
Code:
*#1234#
*#*#1234#*#*
Both of thee are not working. I am going to be following this guide to achieve removing the google FRP over at - hardreset.info/devices/samsung/samsung-g950f-galaxy-s8/faq/bypass-google-verification/frp-samsung-android-8
(sorry I just seen I cannot post links yet)
Any help would be much appreciated!!

Categories

Resources