Is it possible for an Android app to kill its own process? Say, as an anti-tampering feature, the app detects that its integrity has been breached, say by checking the app signer cert. It then exits the app, but the app process still lingers in memory. If an attacker had changed AndroidManifest.xml to set android:debuggable="true", he could still view it in Android Device Monitor and debug/analyze the app if the process still exists.
Is it possible for an Android app to kill its own process
515 Views Asked by user1118764 At
1
There are 1 best solutions below
Related Questions in ANDROID
- Creating global Class holder
- Flutter + Dart: Editing name of a tab shows up a black screen
- android-pdf-viewer Received status code 401 from server: Unauthorized
- Sdk 34 WRITE_EXTERNAL_STORAGE not working
- ussd reader in Recket Native module
- Incorrect display of LinearGradientBrush in IOS
- The Binary Version Of its metadata is 1.8.0, expected Version is 1.6.0 build error
- I can't make TextInput to auto expand properly in Android
- Creating multiple instances of a class with different initializing values in Flutter
- How to create a lottie animation
- making android analyze with coverity sast tool
- Flutter plugin development android src not opening after opening example
- I initialize my ViewModel in the Activity with several fragments as tabs, but the fragments(tabs) return null for the updated livedata
- Node.js Server + Socket.IO + Android Mobile Applicatoin XHR Polling Error...?
- How I can use the shared preferences class?
Related Questions in PROCESS
- How to get Java running parameters from Spring Boot running inside container in pod where no ps exist
- Module not found: Error: Can't resolve 'child_process' in 'react-cerbos-demo/node_modules/cerbos'
- Launch URL from C# and detect when browser is closed
- Communicating Java and Python processes freeze after a while when using readline() but not input()
- Can someone tell me what's wrong with mi Task.await?
- Initial Fastapi request is not being processed and stays on hold
- running the ld command through rust only works 50% of the time
- Dropping duplicated rows
- Which child will execute first when you call fork() and wait() multiple times?
- How to kill number of processes in cpanel
- How is Unix signal propagated to PGID in namespaces and what is the impact of NSpgid on process signal handling?
- Why does sudo kill -15 on sh and docker-compose PIDs not stop Docker containers?
- Can Process.Exited event get fired but the process hang in the system?
- Powershell script can not run when invoke in .NET process
- How to quickly terminate child processes in Go and proceed only when killed
Related Questions in DDMS
- drift diffusion model with flanker conflict
- how can I make more than 1 max?
- DDMS Can't start up on Mac OS
- Is .dex file also used when we run android app in physical mobile?
- How to pull file from my Android device to a local folder on my PC
- DDMS Event Log: runLogService got "com.android.ddmlib.AdbCommandRejectedException: closed"
- Configure Port for Plugin Debugger, Android studio
- android studio 3.1 DDMS is deprecated - how to send sms and mock locations etc to emulator now?
- Could not open Selected vm debug port
- Is it possible for an Android app to kill its own process
- Cannot remotely debug java project by using DDMS or Monitor in Sdk on android >=5 (API Level >= 21)
- Could not open Selected VM debug port (8700). Make sure you do not have another instance of DDM
- DDMS multi-user debugging
- Android DDMS is blank
- Device Monitor is not showing in Android Studio 3.1
Related Questions in KILL-PROCESS
- Getting an Android app to start and stop a third party app
- Android DownloadManager counterpart for uploads
- C# - Kill process doesn't work properly
- How to Open and Close Internet Explorer from batch file?
- How to kill the application that is using a TCP port in C#?
- Handle if a process killed externally
- How to kill script.py in Python on Windows?
- Response signal of killing a process in linux with 'kill' command
- Does an Elixir process die when there are no more references to its PID?
- Kill started Internet Explorer process without closing all IE browsers
- Pkill -f doesn't work for process killing
- Inno- Check if a process is running and show a message box if its running and... do some other things
- Enumerate all windows which are "always on top"
- Kill multiple processes running from a given path on remote machine
- Bash script dd and fsck not killed
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
you can kill process by using this code
This will kill the process, but it won't necessarily kill the task in memory. So when the app is restarted, the activity stack (task) will just get re-created from last time Please use this code in Main Activity (Please don't use in every activities or sub Activities):