[Disclaimer: I am primarily a Perl programmer who can color my mind. However, Iโm not particularly generic, and I think that on this particular issue my argument is fairly objective.]
Perl was designed to fit seamlessly into the Unix landscape, and so it feels so alien to people with a background of mostly OO (in particular, the Java OOP school). For this reason, however, it is incredibly widely installed on machines with any kind of Unixoid operating system and many vendor system utilities. For the same reason, servers that have neither Python nor Ruby installed are still likely to have Perl, which once again makes you wonder. Therefore, if your CEH activity includes extensive activity on Unix, you will still need to have some familiarity with Perl, and you can also focus on it.
However, this is mainly a matter of preference. There are not many differences between languages; their expressive power is almost identical. Some things are a little lighter in one of the languages, some are a little lighter in another.
In terms of libraries, I don't know how Ruby and Python compare to each other - I know that Perl beat them the difference. Again, sometimes (especially when you are looking for libraries for general needs), the only effect of this is that you get abandoned options. And if you just want to do something in a specific area that is well covered by libraries for Python or Ruby, a ton of other things on CPAN are not necessarily an advantage. However, in niche areas, it matters, and you never know what unanticipated need you will ultimately receive (erroneously, by definition).
For single-line use on the command line, Python is not a starter.
As for the interactive interpreter environment, Perl ... uhm ... well, you can use a debugger that is not so good, or you can install it from CPAN, but Perl does not send the good one itself.
So, I think Perl has a very small advantage for your needs, in particular, but just simple. If you choose Ruby, you probably won't be much worse. Python may cause you some inconvenience, but it is also a bad choice.