Actually, it's a lot easier than that. Yes, you can use URL rewriting, like with mod_rewrite in apache, or define alternate executable paths, like you would do for mod_perl, but there's actually a concept in CGI called PATH_INFO. It allows you to pass arguments without needing the question mark to deliniate a QUERY_STRING:

http://server:port/path/script/PATH_INFO

Of course, the problem is that most web server administrators go with the default CGI script location of 'cgi-bin', or 'cgi' or something similar, which would be a giveaway. The only real requirement is that you have access to define which files get executed. This control may have been delegated to .nsconfig or .htaccess files, depending on the setup.

And of course, there's also the use of other dynamicly generated pages, other than CGI, such as by using SSI, ColdFusion, PHP, ASP, or any other text-preprocessor. Of course, once again, you will need to have that parsing configured on the webserver, but it's possible to either use only index pages, and refer to them as directories, so that the browser never sees the file extension, or to configure something like the old execute hack in Netscape web server. (if the file is marked as being executable, no matter its extension, it gets parsed or executed, or whatever you want).


In reply to Re^2: perl hide by html.... by jhourcle
in thread perl hide by html.... 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.