Research Article

The Effective Ransomware Prevention Technique Using Process Monitoring on Android Platform

Algorithm 3

The process monitoring module of proposed technique.
begin
Input: process ids , Threshold T
while
  for all process id do
   ProcessInfo getProcessInformation();
   if ProcessInfo has occupied resources then T then
    KillProcess(P);
    Result ProcessNotification();
    if Result is block then
     ProcessRemovalProcedure();
    end
    addProcessDatabase();
   end
  end
end
end