Research Article

The Effective Ransomware Prevention Technique Using Process Monitoring on Android Platform

Algorithm 1

The main procedure of proposed technique.
begin
Input: process id P
 ProcessInfo ProcessDatabase(P);
if ProcessInfo is blacklist then
  KillProcess(P);
  ProcessRemovalProcedure(P);
  return;
else if ProcessInfo is not priority protection member then
  enqueueMonitoringProcessID(P);
end
end