Here is simple auto-obfuscator that translates perl code to /^[a-z ]+$/ equivalent.
#! /usr/bin/perl undef $/; $_ = reverse <>; s/./"s vv chr length q q" . ("a" x ord $&) . "q ve x\n"/egs; print $_ . "eval";
It uses half of alphabet for now: "aceghlnqrstvx". Is there some ways how to make it better?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: No more $$$
by ccn (Vicar) on Jul 17, 2004 at 20:01 UTC |