Slashdot Mirror


User: padyer

padyer's activity in the archive.

Stories
0
Comments
2
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2

  1. Re:Just off the top of my head on How Do You Evaluate a Data Center? · · Score: 1

    +1

  2. Re:mkdir 1 on Mystery Malware Affecting Linux/Apache Web Servers · · Score: 3, Informative
    That regex is b0rken. It matches any file of at LEAST 5 chars that ends in .js. The story at cPanel says that it is exactly 5 random chars and then the .js. Should be changed to

    tcpdump -nAs 2048 src port 80 | grep "/[a-zA-Z]\{5\}\.js'"

    Note the / at the beginning of the grep regex.