Showing posts with label check. Show all posts
Showing posts with label check. Show all posts

Monday, 26 December 2016

iphone imei check 100 Free

iphone imei check 100 Free


iPhone imei check 100% Free 

iphone imei check 

http://iphoneimei.info/


 All imei check

http://www.imei.info/


Available link for download

Read more »

Monday, 19 December 2016

How to Check Whether Your Samsung Galaxy Phone Is Original or Clone Fake

How to Check Whether Your Samsung Galaxy Phone Is Original or Clone Fake


Many people are trying to make their customer fool by giving them fake and high-class clones of Samsung phones against the price of original one which come out of factory.


To avoid any fraud while visiting the market to buy a handsome cell, of course, you should note some techniques for checking the phone you are buying is original or fake or refurbished. We should also focus on the term ‘refurbished.’ So many people try to cheat by offering ‘refurbished’ or ‘remanufactured’ phones. If you love to save a little money by considering a refurbished phone right for you, that’s not bad. But when you pay full amount and get a refurbished model, it is not fair and of course we should take action against it.

Here, we are sharing some tips you can use to check your Samsung Galaxy phone is original or clone. We cannot save everyone but these tips certainly help.

How to Check Whether Your Samsung Galaxy Phone Is Original or Clone/Fake

Antutu Officer: This is most preferred method to check the phone’s originality for me and I recommend it you too. AnTuTu is a trusty platform for bringing interesting stories of Samsung devices and we love that. Read on how to use AnTuTu for checking whether the phone is real or fake.


Requirements: Your Samsung phone/tablet and a computer or another device connected to an internet connection.


Step 1: Download and install the AnTuTu Officer application from the app store on your Samsung phone.


Step 2: Fire up the installed application.


Step 3: If the app requires any update, install the update, otherwise skip this step. After updating the app, you may get a screen saying you to replace the existing version of app with updated version, agree with it and replace the older version of app.


Step 4: Launch the AnTuTu officer app and hit ‘start’ button. It will launch the camera application along with a QR code scanner.


Step 5: On your computer or another device, go to following page: y.antutu.com


Step 6: Now simply scan the QR code from your phone shown on webpage and wait until it bring result. If your phone is original, the app will make you happy by bringing message saying “Good”. If your Samsung’s device is clone/fake, you will receive message “high copy” or similar to this.


That’s it. It is an easy way to confirm your phone is original or not. I personally trust on this method a lot.


Available link for download

Read more »

Friday, 16 December 2016

icloud lock check 100 Free

icloud lock check 100 Free


icloud lock check 100%-Free 

iphone/ipad icloud lock on-off check

 

https://www.icloud.com/activationlock/

Available link for download

Read more »

Thursday, 13 October 2016

Bypassing OS Xs Code Signature Check

Bypassing OS Xs Code Signature Check


I was trying to patch Mavericks OSInstall framework to allow installation on MBR partition schemes, but all of my attempts failed. I noticed that the installers error log reported that it failed to verify the code signature of OSInstall. This never happened to me before with Mountain Lion, so I decided to look into some of the changed in Mavericks. A post by oldnapalm on InsanleyMacs forums confirmed that the installer wont launch OSInstall unless it has been signed to reflect the modifications.

Unfortunately I needed a way to sign this file from Linux, and there are no Linux alternative for Macs codesign program. I decided to compare a signed and unsigned version of the same program to see exactly what codesign was changing. Ill try to make this more interesting by adding in some pictures. Heres two copies of the same program, which are currently unsigned:


So I signed one of them and verified its signature:

Next I compared their differences using the hex editor Hex Fiend.


So theres about 10 locations that differ. Some of these locations contained several bytes, so there was about 40 bytes that differed between them in total. In addition, the signed versions was extended by 9.2 kilobytes of 0x00 characters. I wanted to see what would happen if I changed any arbitrary byte of the signed program and tried to launch it. As expected, the file failed the verification.


So from there I tried changing each altered byte of the signed program back to that of its unsigned versions. Very quickly it stumbled upon the byte that would make the OS think the file wasnt signed.


However, running this file with the 21st byte changed from 0x38 to 0x28 would result in a malformed Mach-o format error when I tried to run the program. Lets exaime these hex values a little bit closer.
 0x28 = 00101000 
0x38 = 00111000
The 5th bit is the only thing that changed between these two values, so this bit must correspond to the flag that tells the OS that this application is signed.

So I tried changing a few more bytes, and managed to find the other byte that needed to be changed.


So finally, after changing the 21st byte from 0x38 to 0x28 and the 17th byte from 0x12 to 0x11, I was able to run a modded program which was signed. Lets look at those last hex values:
 0x11 = 00010001 
0x12 = 00010010
So the bit that is set in 0x12 but not in 0x11 is the 2nd bit. This must also be related to the the signature check.

After discovering this, I tried applying those same changes to Mavericks OSInstall which had previously failed to launch after being modified. Sure enough, it launched without any problems, and I was able to install Mavericks on my MBR disk. Heres the final pseudo code for how to patch modded, signed applications so that they can run:
 // Clear code signature bits 
Byte 17 &= 0xFD
Byte 21 &= 0xEF
This works because the OS checks to see if these bits are set in order to determine if the application is signed. So theres no need for it to verify the application before launching it because the OS doesnt think its signed.

Update: I was working with OSInstall again today, March 5th, 2014, and I was able to get the OS to run a modded version of it after only changing byte 17. So changing byte 21 might not be necessary.

Update: Ended up having some problems with developing an MBR patch for OS X 10.10 Yosemite because of the code signature protection. Ended up running a bunch of tests to find a pattern with how bytes 17 and 21 changed when being signed. Things are working much better now :) Heres the final code. Also value is the offset for the start of the current architecture. So it would change for 32bit/64bit/Compatible.
if(buffer[value + 0x10] == 0x24) {
buffer[value + 0x10] -= 0x01;
buffer[value + 0x14] >= 0x10 ? buffer[value + 0x14] -= 0x10 : buffer[value + 0x14] += 0xF0;
}
else if(
buffer[value + 0x10] > 0x24) {
buffer[value + 0x10] -= 0x02;
buffer[value + 0x14] >= 0x20 ? buffer[value + 0x14] -= 0x20 : buffer[value + 0x14] += 0xE0;
}
Theres probably some binary arithmetic that can simplify this algorithm even further, but Im not very interested in creating one right now.

Update: Someone who did more research than I did left a good comment that explain the flaws in my process. Based on his comment, I guess we can conclude that bits 17 and 21 are not being used as bit field flags to enable the code signature check, however modify them like Ive done will circumvent the security.

Available link for download

Read more »

Monday, 3 October 2016

All imei check Free

All imei check Free


All imei check 

iphone imei check 

http://iphoneimei.info/


 All imei check

http://www.imei.info/


Available link for download

Read more »

Thursday, 29 September 2016

How to Check or Know if your Windows 8 7 Xp is activated permanently or not

How to Check or Know if your Windows 8 7 Xp is activated permanently or not


How to Check or Know if your Windows 8/7/Xp is activated permanently or not?

  • Go to start menu and type cmd and hit enter or press Win+R button and then type cmd.
  • After opening command prompt type following command.
    slmgr/xpr
  • After typing above command you will get a dialog box withing 5 seconds, saying "The machine is permanently activated".
How+to+Check+or+Know+if+your+Windows+8/7/Xp+is+activated+permanently+or+not 

Available link for download

Read more »