#!/usr/bin/perl
# URL that generated this code:
# http://txt2re.com/index.php3?s=42%2043&2&8
$txt='42 43';
$re1='(\\d)'; # Any Single Digit 1
$re2='.*?'; # Non-greedy match on filler
$re3='\\d+'; # Uninteresting: int
$re4='.*?'; # Non-greedy match on filler
$re5='(\\d+)'; # Integer Number 1
$re=$re1.$re2.$re3.$re4.$re5;
if ($txt =~ m/$re/is)
{
$d1=$1;
$int1=$2;
print "($d1) ($int1) \n";
}
#-----
# Paste the code into a new perl file. Then in Unix:
# $ perl x.pl
#-----
Feedback
Yois::
Pretty good!!!
Thu, 24 Jul 2014 08:35AM
FAILURES::
Lol at all the failed attempts at SQL injection. Do you think this guy is a retard?
Thu, 24 Jul 2014 01:14PM
::
good!
Thu, 24 Jul 2014 07:32PM
mvrk::
Wow.. everyone should try this once. TIMTODI
Fri, 25 Jul 2014 08:18AM
jrich::
lmfao. check out all those dropped tables
Fri, 25 Jul 2014 05:31PM
::
LoL at the person who tried to inject sql here
Sat, 26 Jul 2014 04:53PM
::
Meka Patta Ooy. Maara Lesiy. Ela Kollek aaa...
Sun, 27 Jul 2014 12:57AM
::
cool
Sun, 27 Jul 2014 01:27AM
Da Vinci::
Really artistic talent
Mon, 28 Jul 2014 10:49AM
Boss::
Nice!
Mon, 28 Jul 2014 08:05PM
::
it chokes on some html tags, such as "", it actually formats the output of the answer instead of showing up as part of the regular expression