Powered by Blogger.

Tuesday, 26 August 2014

How to Verify Root Access with Root Checker [AMANAHAD]

We have countless guides and tutorials on how to root Android phones and tablets with 90% success rates and most users never have any issues with the clear steps given and easily root their Android devices. However, we totally agree that there should be a way to verify that you have correctly followed the root method and your Android devices is now with root access.
Root Checker solves that problem. It is a very small Android app that will check whether your Android phone or tablet has root access or now – thus verifying if you followed all the steps correctly or not. It will also give you a quick check Superuser or SuperSU app is working without any problems on your Android device.


How to Verify Root Access with Root Checker

It is very easy to use this app with no complicated UI and buttons. We have explained a in a few simple steps how to use and verify root access on your phone or tablet with Root Checker.
Step 1 - Download Root Checker from Google Play Store and install on your phone/tablet.
Step 2 - Open Root Checker app.

Step 3 - Tap the “Verify Root Access” button.

Step 4 - Wait while the app checks for root access. If prompted with the following screen, tap the ‘Grant’ button.





Step 5 - That’s it. The results will be shown on your screen now.

If you get a message similar to the above screenshot, that means your Android phone or tablet has been rooted successfully and now you can install and use any Android app that requires root access

By
AmanAhad
Triple A
Just Say All To Triple A
for more information contact me
Publisher: Unknown - 14:22

Monday, 25 August 2014

How to Hack Wi Fi Using Android [Rooted Require] by AMANAHAD

Root a compatible device. Not every Android phone or tablet will be able to crack a WPS PIN. The device must have a Broadcom bcm4329 or bcm4330 wireless chipset, and must be rooted. The Cyanogen ROM will provide the best chance of success. Some of the known supported devices include:
  • Nexus 7
  • Galaxy S1/S2/S3/S4/S5
  • Galaxy y
  • Nexus One
  • Desire HD
  • Micromax A67
 Download and install bcmon. This tool enables Monitor Mode on your Broadcom chipset, which is essential for being able to crack the PIN. The bcmon APK file is available for free from the bcmon page on the Google Code website. To install an APK file, you will need to allow installation from unknown sources in your Security menu. Step 2 of this article goes into more detail.

Run bcmon. After installing the APK file, run the app. If prompted, install the firmware and tools. Tap the "Enable Monitor Mode" option. If the app crashes, open it and try again. If it fails for a third time, your device is most likely not supported.
  • Your device must be rooted in order to run bcmon.
Tap "Run bcmon terminal". This will launch a terminal similar to most Linux terminals.Type airodump-ng and tap the Enter button. AIrdump will load, and you will be taken to the command prompt again. Type airodump-ng wlan0 and tap the Enter button.

Note the MAC address that appears. This is the MAC address for the router. Make sure that you have the right one if there are multiple routers listed. Jot this MAC address down.
  • Also note the Channel that the access point is broadcasting on.

Start scanning the channel. You will need to collect information from the access point for several hours before you can attempt to crack the password. Type airodump-ng -c channel# --bssid MAC address -w output ath0 and tap Enter. Airodump will begin scanning. You can leave the device for a while as it scans for information. Be sure to plug it in if you are running low on battery.
  • Keep scanning until you reach at least 20,000-30,000 packets.
Crack the password. Once you have a suitable number of packets, you can start attempting to crack the password . Return to the terminal and type aircrack-ng output*.cap and tap Enter.


Note the hexadecimal password when finished. After the cracking process is complete (which could take several hours), the message KEY FOUND! will appear, followed by the key in hexadecimal form. Make sure that "Probability" is 100% or the key will not work.
  • When you enter the key, enter it without the ":". For example, if the key was 12:34:56:78:90, you would enter 1234567890.
And Just Say All To Triple A




A-@-A
Publisher: Unknown - 23:03

Change a Dynamic Disk Back to a Basic Disk


Applies To: Windows 7, Windows Server 2008 R2
Basic disks support only primary partitions, extended partitions, and logical drives. Basic disks have been supported in operating systems since MS-DOS, while dynamic disks have been supported in operating systems since Windows 2000.
Backup Operators or Administrator is the minimum membership required.
noteNote
The decision to convert a dynamic disk to a basic disk has implications that should be considered carefully. For more information about basic and dynamic disks and how to choose which type to use, see how-to-convert-simple-volume-to-primary.html.

noteNote
Before you convert disks, close any programs that are running on those disks.

Changing a dynamic disk back to a basic disk


To change a dynamic disk back to a basic disk using the Windows interface
  1. Back up all volumes on the disk you want to convert from dynamic to basic.
  2. In Disk Management, right-click each volume on the dynamic disk you want to convert to a basic disk, and then click Delete Volume for each volume on the disk.
  3. When all volumes on the disk have been deleted, right-click the disk, and then click Convert to Basic Disk.

Additional considerations

  • The disk must not have any volumes nor contain any data before you can change it back to a basic disk. If you want to keep your data, back it up or move it to another volume before you convert the disk to a basic disk.
  • Once you change a dynamic disk back to a basic disk, you can create only partitions and logical drives on that disk.

To change a dynamic disk back to a basic disk using a command line
  1. Back up all volumes on the disk you want to convert from dynamic to basic.
  2. Open a command prompt and type diskpart.
  3. At the DISKPART prompt, type list disk. Make note of the disk number you want to convert to basic.
  4. At the DISKPART prompt, type select disk <disknumber>.
  5. At the DISKPART prompt, type detail disk <disknumber>.
  6. For each volume on the disk, at the DISKPART prompt, type select volume= <volumenumber> and then type delete volume.
  7. At the DISKPART prompt, type select disk <disknumber>. Specify the disk number of the disk that you want to convert to a basic disk.
  8. At the DISKPART prompt, type convert basic.

 

Value Description
list disk Displays a list of disks and information about them, such as their size, amount of available free space, whether the disk is a basic or dynamic disk, and whether the disk uses the master boot record (MBR) or GUID partition table (GPT) partition style. The disk marked with an asterisk (*) has focus.
select disk disknumber Selects the specified disk, where disknumber is the disk number, and gives it focus.
detail disk disknumber Displays the properties of the selected disk and the volumes on that disk.
select volume disknumber Selects the specified volume, where disknumber is the volume number, and gives it focus. If no volume is specified, the select command lists the current volume with focus. You can specify the volume by number, drive letter, or mount point path. On a basic disk, selecting a volume also gives the corresponding partition focus.
delete volume Deletes the selected volume. You cannot delete the system volume, boot volume, or any volume that contains the active paging file or crash dump (memory dump).
convert basic Converts an empty dynamic disk into a basic disk.

Additional considerations

  • The disk must not have any volumes or contain any data before you can change it back to a basic disk. If you want to keep your data, back it up or move it to another volume before you convert the disk to a basic disk.
  • Once you change a dynamic disk back to a basic disk, you can create only partitions and logical drives on that disk.


A-@-A
Publisher: Unknown - 22:34

How to Convert Simple Volume to Primary Partition?

Dynamic disk volumes can be divided into simple volume, spanned volume, striped volume, mirrored volume and RAID-5 volume. The simple volume can be created on a single dynamic disk as with partition of Basic Disk, but its space can be inconsecutive. Many people may make the system partition becomes mirrored volume to another disk, but have to break the mirrored volume to be simple volume because of some other needs. The simple volume exists on a dynamic disk but if we can convert it to the primary partition?
Once, you could have converted or changed basic disk to dynamic disk, after doing so, all partitions on basic disk will become simple volume and not primary partition though your windows is working correctly, but you cannot create a primary partition or logical partition on the dynamic disk, so you could need a way to convert simple volume to primary partition.
Windows built-in Disk Manager provides the feature of reverting dynamic disk to basic disk, but it requires you to delete all volumes on the dynamic disk, otherwise, the "Convert to basic disk" is grayed out as following.

Convert to Basic Disk unavailable
In the above case, The third party software, AOMEI Dynamic Disk Converter can assist you to convert or change simple volume to primary partition without any data loss.

Securely convert/change simple volume to primary partition.

AOMEI Dynamic Disk Converter directly and safely convert/change dynamic disk to basic and simple volume to basic primary partition with all data protected, and also it can sector by sector clone spanned, striped, mirrored and RAID5 volume on dynamic disk to basic disk partition (supports both Windows 7/8/Vista/XP and Server 2003/2008/2011/2012). At the same time, the simple volume can be fleetly cloned to primary partition through it. Here will step-by-step guide you to convert/change simple volume to primary partition through the conversion software.
1. Launch AOMEI Dynamic Disk Converter. After skipping the welcome page you will see its main interface below, and choose Method 1 (Convert a dynamic disk back to basic disk), and then click the Next button.

AOMEI Dynamic Disk Converter
2. Now, all dynamic disks will be shown in the following list box, please choose the dynamic disks which you want to convert. For a instance, here choose the Disk 1 and Disk 2 (all simple volumes), and click the Next button to continue.

Choose Dynamic Disks
3. And then, the program prompts you confirm the conversion from dynamic disk into basic disk. By ticking the option "I have decided to execute this operation..." and clicking "Proceed" button to start work. The process of the conversion will take 3 to 10 seconds only.

Confirm
After the conversion process being complete and restarting computer, the simple volumes have been changed to primary partitions by AOMEI Dynamic Disk Converter. Work well!


A-@-A
Publisher: Unknown - 22:29

Regarding Basic Disk convert to Dynamic Disk


Dynamic Disk is first introduced in Windows 2000 by Microsoft. This new type of disk can maximize all your servers' performance, especially on maximizing use of disk space. Convert basic disk to dynamic is recommended when you are running more than one hard disk. Because the dynamic disk allows you manage several hard disk at the same time.

How to convert basic disk to dynamic disk

With the new disk type introduced in Windows OS, new function is also be added in Windows built-in Disk Management. Only a few button click the conversion from basic disk to dynamic could be completed.
  1. Log on Windows as Administrator Privilege, and click Start Menu ->Run, and then type "diskmgmt.msc" to open Windows Disk Management. (you could also right->click “my computer”->“management”->“disk management”)
  2. Right-click the basic disk which you want to convert to dynamic, and click "Convert to Dynamic Disk" menu item (You must right-click the gray area that contains the disk title on the left side of the Details pane. For example, right-click Disk 1). The graph is below:

  3. Select the check box that is next to the disk that you want to convert (if it is not already selected), and then click OK as follows:



    And then click OK button to open the following dialog, you can view about details:



    So, click Convert button to work this conversion
  4. Click “Yes” when you are prompted to convert, and then start this conversion, in addition your computer could be restarted during the process.

    After converting to dynamic disk, then you could manage it free. To manage dynamic disk, although the built-in Disk Management could do some basic job, such as create volume/delete volume/format volume, however, for more advanced task, it could not be handled enough. Therefore, we need a better dynamic disk tool to assist us managing dynamic disk well. AOMEI Dynamic Disk Manager is the one that special designed for dynamic disk management. It could not only provide you the basic function as before but also several advanced features such as: ,resize volume (include operation on system volume), move volume slice, and convert disk between basic disk and dynamic disk, convert GPT disk to MBR. Here you could view its fresh interface:


Notice before convert basic disk to Dynamic


  1. Disk Space Issues while converting Basic Disk to Dynamic Disk. The disk space issues means is about the 1MB space at the disk end. Dynamic Disk uses the 1MB free space which is intended to track all information about dynamic volumes on the system. The basic disk must contain the 1MB space that is not partitioned at its end. This space is required to record the information for dynamic disk. If the 1MB space does not is found by Windows, the system generates errors related to insufficient disk space for this conversion. To solve the problem, we suggest you shrink the last partition by using like Partition Assistant, in order to empty the 1MB free space for upgrading a basic disk to a dynamic disk
  2. For a clustered server platform, a basic disk can't be converted into a dynamic disk. For example, If Windows 2003 Enterprise Edition or Windows 2008 Datacenter Edition is configured as a cluster, and then the shared storage system can't be upgraded as a dynamic disk.
  3. To the people who had added the ghost point on there hard disk, dynamic disk could not be supported by ghost; it could only work on basic disk.
  4. For a removable external disk, can't be converted to dynamic disk. A simple reason is that set up a spanned volume or striped volume on the removable disk, if the disk was removed from the system, the spanned or striped volume would be broken.
  5. 5. For the laptop, or the people who has only one hard disk, even if the disk can be converted to dynamic disk, we still do not recommend doing so. The main reason for the two, first, the laptop really should not be running on a server platform anyway; second, most laptops only have one hard disk, and dynamic disk could gain a few benefits on the single disk environment.
As you see there are some situations that we do not suggest you convert disk to dynamic, do not worry about this, you could also manage your disk under basic disk, by using AOMEI Partition Assistant which is regarded as the latest “Partition Magic” by most computer users.

A-@-A
Publisher: Unknown - 22:28

Saturday, 23 August 2014

,

Download Widnows 7 10000 % Orignal No Servay and Add Direct Link by AMANAHAD

Download Windows 7 SP1 ISO ( x86 / x64 ) Image

 

Note : Since most of these files are above 2GB in size , we advise you to use a Download manager like Free Download Manager to download these Windows 7 ISO images. After downloading these images you can burn these Windows 7 ISO images on a DVD or create a bootable Windows 7 USB flash drive to install Windows 7 on your PC.

There are two options to choose from during the Windows 7 installation process:

  • Upgrade. This option replaces your current version of Windows with Windows 7, and keeps your files, settings, and programs in place on your computer.
  • Custom. This option replaces your current version of Windows with Windows 7, but doesn’t preserve your files, settings, and programs. It’s sometimes referred to as a clean installation for that reason.
Thanks and JUST SAY ALL TO TRIPLE A
Publisher: Unknown - 23:18
,

iPhone No Service After Factory Unlock Troubleshooting Guide by AMANAHAD



Now a days many people facing No Service problem on their iPhone, especially 3GS owners with iPad Baseband or after using Ultrasn0w unlock. Also there can be on iPhone No Service after restore or update, activation or deactivation with Redsn0w or SAM tool, even after jailbreak.

The problem is not in unlocking. In other words it is better that your iPhone shows No Service than Invalid Sim card or Sim card is not supported.
fix iphone no service unlocked
If iPhone is still locked to AT&T it will never accept other Sim. If you see No Service that means that iPhone accepted the Sim and there are can be tons of other reasons but not in unlocking and here I’ll try to describe most of them.

Most Common iPhone No Service Errors and How To Fix Them

1. The easiest method, and I can confirm that it works in most cases, to reset network settings:
  • Insert unsupported Sim card, open Settings on iPhone, go to General -> Reset -> Reset Network Settings.
  • Also some say you can try to Erase All Content and Settings but before it do a backup and I heard that it could harm your device.
reset network settings iphone
2. In Setting you will see AirPlane mode which you can also use to fix No Service on iPhone as well:
  • Insert Sim card and turn on/off Airplane mode several time while it will pick the signal.
3. Also while your iPhone is on, pop the Sim card out and turn off the power. Insert Sim card and turn iPhone On. Or, turn iPhone on, pop up the Sim card, turn iPhone on and insert Sim card. It worked for many.
4. Go to Settings – General – Cellular/Network and turn on Cellular Data, Enable 3G, Data Roaming and wait for the signal. If they already on – turn it off and wait for the signal.
Note: Some say that you need just reboot iPhone holding two buttons and you will get service.
5. No Service iPhone problem can be after activating and deactivating iPhone using just app as SAMPrefs (SAM unlock tool) or Redsn0w. In this case follow steps in method 6.
6. If methods above don’t work to fix No Service on iPhone, you can try the third method which is the best because it works in 90% cases:
1). Insert non-AT&T Sim card in iPhone and connect it to iTunes using USB.
2). When iTunes detects your device perform a backup and after backup just click Restore.
Note: First try just Restore, without holding Shift/Option. Also you can try to restore putting iPhone first into DFU mode.
3). Wait till the program finish restore and you will see two options in iTunes:
  • Restore from a backup;
  • Set up iPhone as a new phone.
unlock at&t iphone
so choose Set up as a new.
4). After installing iPhone as a new you will need to pass activation steps, so do it with non-AT&T Sim card inserted and wait for the Signal.
If nothing, read and perform methods (1,2,3,4) described above.
7. iPad baseband. There are many iPhones 3GS still running iPad baseband (06.15.00) which you or previous user installed on iPhone for Ultrasn0w unlock. That could be the reason of No Service as well.
First check the baseband of your iPhone: Settings – General – About- Modem Firmware and if you see 06.15.00 – this is iPad baseband and you need to downgrade it. You need redsn0w tool for this. Do steps below:
  1. Download Redsn0w (blog.iphone-dev.org) and run it as Administrator if on Windows.
  2. Use Redsn0w to enter DFU mode: in redsn0w go to Extras – Just Boot and follow on screen instructions to put the device into DFU mode.
  3. When your device will successfully enter DFU launch iTunes and restore iPhone in iTunes.
  4. Enter DFU again.
  5. Now download the latest iOS version (getios.com).
  6. In redsn0w go to Extras – Select IPSW and choose the iOS file you downloaded.
  7. Go back to the main window of redsn0w and click Jailbreak.
  8. Choose Downgrade from iPad baseband and uncheck Install Cydia and click Next.
That’s it. After the process you will have service and can make calls.
8. Very often when you try to cut the Sim card yourself many do it wrong and iPhone can’t detect the Sim. You better order the Sim of the carrier you want to use on iPhone.
9. Sometimes there is really no service of the carrier you want to use in the area you are. There can be just no coverage. Or the Sim you try to use is not active anymore. In these case you need to contact the carrier.
10. Other reason of No Service on factory unlocked iPhone is the antenna of your device. Yes, it could also be a hardware issue and your iPhone has a bad antenna and it can’t catch the signal. In this case just contact or go to the Apple Store and ask them to check it for you. If it would be antenna they would give you the new iPhone.
That’s it. All this info was found on different forums, blogs and from the own experience of our clients. Just try every of them and read every no service fix very carefully. Also you can always contact Apple care or the carrier of the Sim card you need to use.
And remember, if iPhone got No Service issue it doesn’t mean that it is not unlocked. If device would still be locked it never accept and activate iPhone with other Sim card.



A-@-A
Publisher: Unknown - 01:23