Rabu, 24 Januari 2018

All about Android app permissions

0 komentar

In the face of malware, Android has a very good defense mechanism â€" the app permissions system. This system defines a set of actions an app is allowed (or not allowed) to perform. By default, all Android apps work in a sandbox â€" an isolated environment. If they want to access, edit, or delete data outside the sandbox, they need the system’s permission to do so.





Permissions are divided into several categories, but we are going to discuss only two of them: normal and dangerous. Normal permissions cover such actions as accessing the Internet, icon creation, Bluetooth connection, and so forth. These permissions are granted by default and do not require a user’s approval.
If an app needs one of the “dangerous” permissions, user confirmation is required. So, why are some permissions deemed dangerous? Are they inherently, actually dangerous? And in which cases should you grant them?

Dangerous permissions

The “dangerous” category includes nine permission groups where apps are somehow connected with the user’s privacy or security. In turn, each group contains several permissions an app can request.
If a user approves one of the permissions, the app gets all of the permissions from the same group automatically, without additional confirmation. For example, if an app gets permission to read SMS messages, then it will be also able to send SMS messages, read MMS messages, and perform other operations from this group.

Calendar

What it permits:
  • Read events stored in the calendar (READ_CALENDAR).
  • Edit old events and create new ones (WRITE_CALENDAR).
Why it’s dangerous: If you actively use your digital day planner, the app will know everything about your daily rou tine and might share it with criminals. In addition, a buggy app could accidentally wipe important meetings from the calendar.

Camera

What it permits:
  • Camera access (CAMERA) lets the app use your phone to take photos and record videos.
  • Why it’s dangerous: An app can secretly record video or take photos at any moment.

    Contacts

    What it permits:
    • Read contacts (READ_CONTACTS).
    • Edit contacts or add new ones (WRITE_CONTACTS).
    • Access account list (GET_ACCOUNTS).
    Why it’s dangerous: An app can snag your whole address book. This data is very attractive to spammers and fraudsters. This permission also grants access to the list of all of the accounts you use in the apps on this device â€" Google, Facebook, Instagram, and others like them.

    Location

    What it permits:
    • Access to your approximate location (ACCESS_COARSE_LOCATION), provided based on data from cellular base stations and Wi-Fi hotsp ots.
    • Access to your exact location (ACCESS_FINE_LOCATION), provided based on GPS data.
    Why it’s dangerous: The app knows where you are at all times. It might, for example, let burglars know when you are far away from home.

    Microphone

    What it permits:
    • Record audio from the microphone (RECORD_AUDIO).
    Why it’s dangerous: The app can record everything that’s going on near your phone. All of your conversations. Not only when you’re speaking on the phone, but all day long.

    Phone

    < span style="color: #444444; font-family: "arial" , "helvetica" , sans-serif;">What it permits:
    • Reading phone state (READ_PHONE_STATE) lets the app know your phone number, current cellular network information, the status of any ongoing calls and so on.
    • Make calls (CALL_PHONE).
    • Read the list of calls (READ_CALL_LOG).
    • Change the call list (WRITE_CALL_LOG).
    • Add voicemail (ADD_VOICEMAIL).
    • Use VoIP (USE_SIP).
    • Process outgoing calls permission (PROCESS_OUTGOING_CALLS) lets the app see who†™s calling, hang up the phone, or redirect it to another number.
    Why it’s dangerous: When you grant phone permissions, you allow the app to take almost any action associated with voice communications. The app will know when and whom you call â€" and it can call anywhere, including paid numbers, at your charge.

    Body Sensors

    What it permits:
    • (BODY_SENSORS) â€" this permission provides access to your health data from certain sensors, such as a heart-rate monitor.
    Why it’s dangerous: If you use accessories with body sensors (not the phone’s built-in movement sensors), the app receives data about what is going on with your body.

    SMS

    What it permits:
    • Send SMS messages (SEND_SMS).
    • Read saved SMS messages (READ_SMS).
    • Receive SMS messages (RECEIVE_SMS).
    • Receive WAP push messages (RECEIVE_WAP_PUSH).
    • Receive incoming MMS messages (RECEIVE_MMS).
    Why it’s dangerous: It lets the app receive and read your incoming SMS messages as well as send them (charged to you, of course). For example, criminals can use this permission to subscribe victims to unwanted paid services.

    Storage

    What it permits:
    • Read SD card or other storage (READ_EXTERNAL_STORAGE).
    • Save records to storage or SD card (WRITE_EXTERNAL_STORAGE).
    Why it’s dangerous: The app can read, change, or remove any files stored on your phone.




    How to set up app permissions

    If an app’s permission request is suspicious, you should not install it at all â€" or at least deny those permissions.
    You should carefully consider each permission you grant. For example, if a game or photo-editing tool wants access to your current location, that’s strange. At the same time, maps and navigators really need GPS data â€" but not access to contact lists or SMS messages.
    In Android 6 and later, apps ask users for approval any time they need one of the dangerous permissions. If you don’t want to grant them, you can always decline the request. Of course, if the app really needs those permissions, it will show error messages and won’t work properly.< /div>
    An app requests permission to make and manage phone calls
    An app requests permission to make and manage phone calls
    You can also check the permission list and change any app’s permissions. Start by choosing Settings â†' Apps (these and following menu items may have slightly different names in your version of Android).
    You can also check the permission list and change any apps permissions
    Now you can go one of two ways. First, you can check all permissions assigned to a certain app. To do that, click on the app’s name and choose Permissions.
    You can look through the full list of apps that have already requested or can request one of the dangerous permissions
    Second, you can look through the full list of apps that have already requested or can request one of the dangerous permissions. For example, it’s a good idea to check which apps want access to your contact list and prohibit suspicious ones from getting it. For this choose Configure Apps (the gear icon in the upper right corner) and then click App Permissions.
    Its a good idea to check which apps want access to your contact list and prohibit suspicious ones from getting it< /span>

    Special access rights

    Apart from dangerous permissions, an app can also request special access rights. When that happens, you should be wary: Trojans often request such rights.

    Accessibility

    This permission simplifies work with apps and devices for people with sight or hearing difficulties. Malware can abuse these features.
    Having obtained such access rights, Trojans can interce pt data from apps (including input text â€" passwords are the main goal here). In addition, malware gets the ability to purchase apps in the Google Play Store.

    Default messaging app

    Banking Trojans aim to become the default SMS app; that lets them read SMS messages and hide them â€" even in later versions of Android. For example, Trojans can use this feature to intercept banking passwords from SMS messages and confirm malicious transactions without a user’s knowledge (remember, they can hide SMS messages).

    Always on top

    The permission to overlay windows of other apps lets Trojans show phishing windows on top of legitimate applications (mobile banks or social network apps mostly). Victims think they’re entering their passwords into the forms of real applications, but in fact everything happens in the fake window displayed by the Trojan, and sensitive data goes to criminals.

    Device administrator privileges

    These rights let the user change the password, lock the camera or wipe all data from the device. Malicious apps often try to get such permissions; apps with administrator privileges are hard to uninstall.
    An app requests administrator privileges

    Root privileges

    These are the most dangerous permissions. By default, Android never grants these rights to apps, but some Trojans can exploit system vulnerabilities to get them. Once that happens, all other defenses become useless â€" the malware can use root privileges to do whatever it wants no matter which permissions the victim assigns or denies.
    It’s noteworthy that even the new permission system (released in Android 6) does not fully protect from malware. For example, the Gugi Trojan repeatedly bugs victims with window overlay permission requests until the permission is granted. After that, the malware overlays all other apps until it receives other permissions it wants.

    Conclusions

    Apps should not be allowed to do whatever they want on your phone â€" especially if they want dangerous permissions for no reason.
    Some apps really do need a lot of rights, however. For example, antivirus programs need a lot of permissions to scan a system and proactively protect it from threats.
    The conclusion here is simple: Before granting certain rights, think about if the app really needs them. If you’re not sure, do some investigating online.




    Last but not least: Even the most vigilant users are not safe from malware exploiting system vulnerabilities. That’s why it’s important to manage your apps’ permissions properly, which helps you protect your privacy from apps spying on you, and to install a reliable securi ty solution that will defend your device against even more dangerous Trojans and viruses.

    Source: Kaspersky Lab
    Read more ►

    Selasa, 23 Januari 2018

    LG Nexus 5X LG H791 32GB Unlocked GSM Smartphone Ice

    0 komentar
    "
    LG Nexus 5X LG-H791 32GB Unlocked GSM Smartphone - Ice discount

    • #495842 in Cell Phone Accessories
    • Color: Ice Green
    • Brand: LG
    • Model: 759776406935
    • Dimensions: 1.40" h x 6.50" w x 5.80" l, .95 pounds

    Features

    • Unlocked, multi-mode and will work on all US carriers including AT&T, Verizon, T-Mobile and Sprint, as well as MVNOs (Mobile Virtual Network Operators) and most international carriers
    • 5.2-inch with 1080 x 192 0 Resolution Display, Qualcomm Snapdragon 808 1.8 GHz,Quad-core + Dual-core, 32GB ROM, 2GB RAM; Does Not Supports Micro-SD card, Main Camera: 12.3 MP, laser autofocus, dual-LED (dual tone) flash; Front Camera: 5 MP, Nano SIM.
    • Please check if your GSM cellular carrier supports the bands for this model before purchasing, LTE may not be available in the US as this is the international model: GSM850, GSM900, GSM1800, GSM1900, UMTS850 (B5), UMTS900 (B8), UMTS1900 (B2), UMTS2100 (B1), LTE2100 (B1), LTE850 (B5), LTE1700/2100 (B4), LTE1800 (B3), LTE2600 (B7), LTE1900 (B2), LTE800 (B20), LTE700 (B28).
    • Fingerprint sensor for enhanced and simplified security - turn on your screen and unlock instantly with just your fingertip
    • Battery: 2700 mAh Battery USB Type-C for fast charging
    " "

    Keyword : lg nexus 5x case, lg nexus 5x charger, lg nexus 5 case, lg nexus 5x screen protector, lg nexus 5x, lg nexus 5 battery, lg nexus 5, lg nexus 5 screen replacemen t, lg nexus 4 case, lg nexus 5 charger,

    " "
    LG Nexus 5X LG-H791 32GB Unlocked GSM Smartphone - Ice cheap price
    " "New listing New LG Google Nexus 5x H791 4G LTE Quartz 32GB Android GSM Unlocked SmartphoneThe Nexus 5X offers top-line performance in a compact, lightweight design with the new Nexus Camera that takes great photos in all light conditions. Beneath the 5.2 brand new lg nexus 32gb sim free unlocked android smartphone carbon bl" "
    LG Nexus 5X LG-H791 32GB Unlocked GSM Smartphone - Ice Green - International Version reviews

    LG Nexus 5X LG-H791 32GB Unlocked GSM Smartphone - Ice Green - International Version

    " "
    Android Authority (blog)Deal: 32GB international Nexus 5X for just $239.99Android Authority (blog)For a mid-range smartphone, the Nexus 5X packs in some pretty decent hardware. The international Nexus 5X (LG-H791) model comes carr ier unlocked, and will work with GSM carriers (so not Sprint or Verizon) that support the following bands in the US.????Google Nexus 5X review:CNETStriking a nice balance between compact form factor and full features, the Nexus 5X remains a compelling, lighter-weight alternative to bigger Android Marshmallow smartphones like the Nexus 6P and Moto X. Having helped partners make the hardware for [Exclusive] Leaked Images Of The New Nexus Phone Retail Boxes Confirm Nexus 5X And Nexus 6P Model NamesAndroid PoliceHuaweis Nexus Phone Will Be The First Nexus Device To Offer Up To 128GB Of Storage - Android PoliceAndroid Police[Exclusive] Here Is The Nexus 6P In All Its Glory, Front And Back - Android PoliceAndroid PoliceDroid Lifeall 416 news articles????
    TrustedReviewsNexus 5X reviewTrustedReviewsSmartphones battery lives always gradually deter iorate, but since an early software update at the end of 2015 the Nexus 5Xs has outright bombed. Overnight the LG has clearly taken what people liked about the Nexus 5 and refined it, which is great ????
    Android Headlines - Android NewsPhone Comparisons: LG Nexus 5X vs Samsung Galaxy S7Android Headlines - Android NewsThe available colors are Carbon, Quartz and Ice and the Nexus 5X will cost $379 for the 16GB model (currently available for $349) and $429 for the 32GB variant (currently available for $399). It measures 147 x 72.6 x 7.9mm and weighs in at 136 grams.SM-A9100 - OET List Exhibits Report - Federal Communications CommissionOET List Exhibits Reportall 62 news articles????
    Gazette Revie wXiaomi Mi 4c Vs. Alphabet Inc (NASDAQ:GOOGL) Nexus 5XGazette ReviewThe Nexus 5X is finally here. It is an upgraded edition of the Nexus 5 model released two years ago. The Xiaomi 4c, which is only being sold in China, comes with similar specs. The Xiaomi Mi 4c is an upgraded version of the Xiaomi Mi 4i, which is only Canada Nexus 5X Receives $50 Drop to $389 CADAndroid Headlines - Android NewsThe LG Nexus 5X has been in the news this January ???????? for all of the right reasons ???????? as Google has just given the Canadians another $50 discount, making the new price for the 16GB model at only $389 CAD and the 32GB model at $449 CAD. This is just after??Romantic Tech Gift Ideas for Him & Her - Google StoreGoogle Storeall 114 news articles????Nexus 5X: an????lisisCNET en Espa????olCon el Nexus 5X, Google regresa al camino que hizo popular a la marca Nexus, ofreciendo buenas especificaciones a un bajo precio. Al igual que el Nexus 5 de 2013, el nuevo tel????fono de Google es fabrica do por LG y llega con una nueva versi????n del??[Exclusive] Leaked Images Of The New Nexus Phone Retail Boxes Confirm Nexus 5X And Nexus 6P Model NamesAndroid Police[Exclusive] Here Is The Nexus 6P In All Its Glory, Front And Back - Android PoliceAndroid PoliceAndroid 6.0 Marshmallow rollout to begin October 5, according to Telus [Update]MobileSyrupall 156 news articles????"
    Read more ►
     

    Copyright © Randomize Design by O Pregador | Blogger Theme by Blogger Template de luxo | Powered by Blogger