Research Article

The Effective Ransomware Prevention Technique Using Process Monitoring on Android Platform

Algorithm 2

The file monitoring module of proposed technique.
Begin
Input: process ids
While
  for all process id do
   Flag isOccuriedEventInPPA();
   if Flag is enabled then
    KillProcess(P);
    Result ProcessNotification();
    if Result is block then
     ProcessRemovalProcedure();
    end
    addProcessDatabase();
   End
  end
End
End