Skip to main content

how find files which is compromised

Comments

4 comments

  • Osama Tariq
    Determine which directory most the SPAM is coming from: awk '$3 ~ /^cwd/{print $3}' /var/log/exim_mainlog | sort | uniq -c | sed "s|^ *||g" | sort -nr
    0
  • waqas_websouls
    Use the following command to find the most used mailing script's location from the Exim maillog: grep cwd /var/log/exim_mainlog | grep -v /var/spool | awk -F"cwd=" '{print $2}' | awk '{print $1}' | sort | uniq -c | sort -n
    0
  • Cute_me
    Thanks .I have done through maldet.
    0
  • cPanelMichael
    New Thanks .I have done through maldet.

    Hello :) I'm happy to see you were able to address the issue. Thank you for updating us with the outcome.
    0

Please sign in to leave a comment.