Recent content by S0ld13r Fr0m H311

  1. S

    How to filter out unwanted characters in PERL strings?

    I am creating a web page for a small job, they want a one page web site, I chose PERL because they were running IIS and had PERL installed, I have the function set up to show the pages, but to prevent hackers to get into the site and look at confidential files, I want to know how to filter out...
  2. S

    How to filter out unwanted characters in PERL strings?

    I am creating a web page for a small job, they want a one page web site, I chose PERL because they were running IIS and had PERL installed, I have the function set up to show the pages, but to prevent hackers to get into the site and look at confidential files, I want to know how to filter out...
  3. S

    PERL code does not execute?

    !/usr/bin/perl $start = time(); $x = 1; $f = 3647; $g = 5428; $h = 7825; while ($x > 0) { if ($f % $x == 0) { print "$f % $x = 0"; } if ($g % $x == 0) { print "$g % $x = 0"; } if ($h % $x == 0) { print "$h % $x = 0"; } $x += 1; $x...
  4. S

    how to log ip addresses with php?

    I used the code to log it in my sql database called IP_LOG and my table is IP_COLLECT, but the input I keep on getting is ::1, is this because this is localhost or is there a step I am forgetting, here is my code: <?php $ip = $_SERVER['REMOTE_ADDR']; mysql_connect('localhost','root','****')...
  5. S

    do I put jsp pages in the cgi-bin or in the main directory?

    the question is self explanatory
  6. S

    do I put jsp pages in the cgi-bin or in the main directory?

    the question is self explanatory
Back
Top