<HTML><BODY>
#!/usr/bin/perl
s>>b>xi&&(${'_'}x=4);   # substitute empty space with b and made 'b' (4 times)
$g.=${\$_};             # saved in $g $_ = 'bbbb' by the reference to itself
$_=ord$_;               # $_= 98 (numeric value of first b) returned by ord function
{($_ -=1);}             # now 97
s@.+(.)$@$1x2@ex;       # got 77 by substitution (@ separator) original with $1(first char) X 2
s%^.*(.)\1%${1}10$1%x;  # got 7107 by substitution  with % separator
$g++for(1..$_);         # got 'block' by 7101 iterations of 'bbbb' with ++ operator
y!$_!x!+print$g;        # this is real obfusc - variables are interpolated within 'eval' only - no transliteration + print first part 'block'
s%.*?%%gx+$_++;         # cleared $_ by substitution all digits by undef (% separator) and get 1 as $_++
$_=++$_.'3'.--$_.++$_;  # concatenation of different '1' modifications and '3' to get 2312
s?^\s*(.+)(.)$?$2$1?gx; # substitution  with ? separator to get 2231
$y=$_+0;                # save in $y current $_ = 2231 for later use
$_=\%_;                 # got hash reference $_ = HASH(0x1b93064)
s*(\w+).+*\L$1
*x;                     # got $_ = 'hash\n' by substitution previous by the first word translated to lovercase and add "\n" at the end of $_ for future obfusc 'chomp'
chomp&&($s.=$_);        # chomped obfusc '\n' and populater $s by 'hash'
$s++for(1..++$y);       #convert 'hash' to 'head' by 2232 iterations
print"$s";              # print 'head'
</BODY></HTML>

In reply to Re: First attempt obfu by Anonymous Monk
in thread First attempt obfu by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.