Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.
The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.
Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).
The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Remediation background
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defenses:
Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised.
User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc).
In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.
The value of the refcode request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload b295e"%3balert(1)//b7f69ae6950 was submitted in the refcode parameter. This input was echoed as b295e";alert(1)//b7f69ae6950 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /?refcode=ORDb295e"%3balert(1)//b7f69ae6950&RefPage=pfc_PRODUCT-30050119 HTTP/1.1 Host: www.floristexpress.net Proxy-Connection: keep-alive Referer: http://products.proflowers.com/flowers/18-Red-Roses-30050119?viewpos=2&trackingpgroup=HIC&ref=fgvprtlsmsn_hp021111_Unknown_DODControl_1Dznastchoc18rrefbdf\%22%3balert(document.cookie)//5e820bfb5e Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.94 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
The value of the ref_code cookie is copied into a JavaScript string which is encapsulated in double quotation marks. The payload e8173"%3balert(1)//95ac6cbaf33c38076 was submitted in the ref_code cookie. This input was echoed as e8173";alert(1)//95ac6cbaf33c38076 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
The original request used the POST method, however it was possible to convert the request to use the GET method, to enable easier demonstration and delivery of the attack.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
The highlighted cookies appear to contain session tokens, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Issue background
If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.
Issue remediation
There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive.
You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.
Request
GET /?refcode=ORD&RefPage=pfc_PRODUCT-30050119 HTTP/1.1 Host: www.floristexpress.net Proxy-Connection: keep-alive Referer: http://products.proflowers.com/flowers/18-Red-Roses-30050119?viewpos=2&trackingpgroup=HIC&ref=fgvprtlsmsn_hp021111_Unknown_DODControl_1Dznastchoc18rrefbdf\%22%3balert(document.cookie)//5e820bfb5e Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.94 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Same Day Flower Delivery by Florist E ...[SNIP]...
The application's responses appear to depend systematically on the presence or absence of the Referer header in requests. This behaviour does not necessarily constitute a security vulnerability, and you should investigate the nature of and reason for the differential responses to determine whether a vulnerability is present.
Common explanations for Referer-dependent responses include:
Referer-based access controls, where the application assumes that if you have arrived from one privileged location then you are authorised to access another privileged location. These controls can be trivially defeated by supplying an accepted Referer header in requests for the vulnerable function.
Attempts to prevent cross-site request forgery attacks by verifying that requests to perform privileged actions originated from within the application itself and not from some external location. Such defenses are not robust - methods have existed through which an attacker can forge or mask the Referer header contained within a target user's requests, by leveraging client-side technologies such as Flash and other techniques.
Delivery of Referer-tailored content, such as welcome messages to visitors from specific domains, search-engine optimisation (SEO) techniques, and other ways of tailoring the user's experience. Such behaviours often have no security impact; however, unsafe processing of the Referer header may introduce vulnerabilities such as SQL injection and cross-site scripting. If parts of the document (such as META keywords) are updated based on search engine queries contained in the Referer header, then the application may be vulnerable to persistent code injection attacks, in which search terms are manipulated to cause malicious content to appear in responses served to other application users.
Issue remediation
The Referer header is not a robust foundation on which to build any security measures, such as access controls or defenses against cross-site request forgery. Any such measures should be replaced with more secure alternatives that are not vulnerable to Referer spoofing.
If the contents of responses is updated based on Referer data, then the same defenses against malicious input should be employed here as for any other kinds of user-supplied data.
Request 1
GET /?refcode=ORD&RefPage=pfc_PRODUCT-30050119 HTTP/1.1 Host: www.floristexpress.net Proxy-Connection: keep-alive Referer: http://products.proflowers.com/flowers/18-Red-Roses-30050119?viewpos=2&trackingpgroup=HIC&ref=fgvprtlsmsn_hp021111_Unknown_DODControl_1Dznastchoc18rrefbdf\%22%3balert(document.cookie)//5e820bfb5e Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.94 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
When a web browser makes a request for a resource, it typically adds an HTTP header, called the "Referer" header, indicating the URL of the resource from which the request originated. This occurs in numerous situations, for example when a web page loads an image or script, or when a user clicks on a link or submits a form.
If the resource being requested resides on a different domain, then the Referer header is still generally included in the cross-domain request. If the originating URL contains any sensitive information within its query string, such as a session token, then this information will be transmitted to the other domain. If the other domain is not fully trusted by the application, then this may lead to a security compromise.
You should review the contents of the information being transmitted to other domains, and also determine whether those domains are fully trusted by the originating application.
Today's browsers may withhold the Referer header in some situations (for example, when loading a non-HTTPS resource from a page that was loaded over HTTPS, or when a Refresh directive is issued), but this behaviour should not be relied upon to protect the originating URL from disclosure.
Note also that if users can author content within the application then an attacker may be able to inject links referring to a domain they control in order to capture data from URLs used within the application.
Issue remediation
The application should never transmit any sensitive information within the URL query string. In addition to being leaked in the Referer header, such information may be logged in various locations and may be visible on-screen to untrusted parties.
Request
GET /?refcode=ORD&RefPage=pfc_PRODUCT-30050119 HTTP/1.1 Host: www.floristexpress.net Proxy-Connection: keep-alive Referer: http://products.proflowers.com/flowers/18-Red-Roses-30050119?viewpos=2&trackingpgroup=HIC&ref=fgvprtlsmsn_hp021111_Unknown_DODControl_1Dznastchoc18rrefbdf\%22%3balert(document.cookie)//5e820bfb5e Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.94 Safari/534.13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Same Day Flower Delivery by Florist E ...[SNIP]... <!-- Same Day Flower Delivery --> <link href="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/css/style.css" rel="styleSheet" type="text/css"> <link href="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/css/style_pro.css" rel="styleSheet" type="text/css"> </head> ...[SNIP]... <map name="header_map"> <area shape="rect" coords="10,12,208,50" href="http://www.proflowers.com/?ref=FloristExpressLinkback" /> <area shape="rect" coords="828,8,980,50" href="http://www.proflowers.com/?ref=FloristExpressLinkback" /> </map> ...[SNIP]... <td><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/header/pro.jpg" border="0" usemap="#header_map"></td> ...[SNIP]... <div id="navPad"> <script language="javascript" type="text/javascript" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/js/topNav.js"></script> ...[SNIP]... <li><a href="http://www.proflowers.com/?ref=FloristExpressLinkBackBarTest" class="navLinkExt">Back To ProFlowers</a> ...[SNIP]... <td class="mainCell" style="padding: 3px 10px 5px 10px;"> <script language="javascript" type="text/javascript" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/js/products.js"></script> ...[SNIP]... <td rowspan="2" id="featLeft" style="text-align: left;"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/hero/same_vday.jpg" border="0" /></td> ...[SNIP]... <a href="/products/your_day_bouquet.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN1187A.jpg" border="0" /></a> ...[SNIP]... <a href="/products/your_day_bouquet.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0" /></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/florist_designed_bouquet_2.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/FYF-VDA.jpg" border="0" alt="Not quite sure what to send? Let our top notch florists design a bouquet wi..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/florist_designed_bouquet_2.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/love_bouquet_2.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/FYF-DAISCARN.jpg" border="0" alt="These gorgeous pink and red carnations and white daisies arrive delicately..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/love_bouquet_2.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/tulip_rainbow.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/FYF-MIXTUL.jpg" border="0" alt="What a symphony of color and truly a sight to behold! A cheery and colorful..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/tulip_rainbow.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/rose_elegance_premium_dozen_roses-red.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN1120RDA.jpg" border="0" alt="Long-stem red roses are just the gift for the one you can trust, the one yo..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/rose_elegance_premium_dozen_roses-red.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/radiant_peruvian_lilies.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/FYF-MIXALST.jpg" border="0" alt="Give them a gift to remember with this radiant array of mixed colored peruv..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/radiant_peruvian_lilies.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/cheery_gerbera_daisies.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/FYF-GERB.jpg" border="0" alt="Like a ray of sunshine on a warm spring day, this glorious bouquet of brigh..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/cheery_gerbera_daisies.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/with_many_thanks.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN29-31J.jpg" border="0" alt="A beautiful way to express your gratitude, this stunning arrangement featur..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/with_many_thanks.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/radiant_red_tulips.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/FYF-REDTUL.jpg" border="0" alt="Reminiscent of a hillside in Holland, this dazzling display of velvety red..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/radiant_red_tulips.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/springtime_surprise.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN14-11J.jpg" border="0" alt="This rainbow of color will brighten anyone's day! Filled with gorgeous purp..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/springtime_surprise.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/sunny_get_well_wishes.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN621G.jpg" border="0" alt="Bring a little sunshine into the day of someone who is not feeling their be..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/sunny_get_well_wishes.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/its_your_birthday.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN23-11J.jpg" border="0" alt="A fabulous way to celebrate someone's birthday in an extraordinary way! Del..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/its_your_birthday.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/snappy_happy_birthday.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN23-21J.jpg" border="0" alt="Make them smile with this delightful collection of carnations, pink snapdra..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/snappy_happy_birthday.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/dish_garden_with_fresh_cuts.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN1870.jpg" border="0" alt="Send your warmest regards with an elegant dish garden that combines the fra..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/dish_garden_with_fresh_cuts.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/roses_n_rapture.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN71-21J.jpg" border="0" alt="Make a dramatic statement with a gorgeous array of red spray roses. Hand ar..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/roses_n_rapture.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/its_your_happy_birthday_cake.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN571G.jpg" border="0" alt="A truly outstanding gift for anyone special, this one-of-a-kind cake-shaped..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/its_your_happy_birthday_cake.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/bouquet_for_your_valentine.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN90971A.jpg" border="0" alt="For her. From you. A bountiful bouquet of romantic red roses, exotic alstro..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/bouquet_for_your_valentine.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/classic_peace_lily.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN781G.jpg" border="0" alt="Make a beautiful statement by sending this fresh peace lily to someone spec..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/classic_peace_lily.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/12_dozen_premium_red_roses.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/FYF-SIX.jpg" border="0" alt="Send a simply elegant arrangement of 6 classic red roses beautifully arrang..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/12_dozen_premium_red_roses.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/birthday_brilliance.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN541G.jpg" border="0" alt="A fabulous way to celebrate someone's birthday in an extraordinary way! Our..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/birthday_brilliance.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/a_sprinkling_of_springtime_-_gerbera_daisy.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN57-13J.jpg" border="0" alt="Sprinkle some sunshine on someone's day with a cheerful gerbera daisy plant..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/a_sprinkling_of_springtime_-_gerbera_daisy.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/lily_la_rose_3.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN73-13J.jpg" border="0" alt="A splendid display of color! Hand selected by floral artisans are fiery ora..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/lily_la_rose_3.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/sheer_pink_delight.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN76-11J.jpg" border="0" alt="A delicate and feminine choice is our rose 4" cube vase with one dozen rose..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/sheer_pink_delight.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/amazing_azalea.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN55-21J.jpg" border="0" alt="Fabulous and fragrant, our gorgeous fresh azalea plant is a wonderful way t..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/amazing_azalea.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/joyful_bloom.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN301G.jpg" border="0" alt="Mark her special day with a brilliant assortment of flowers and greens. Stu..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/joyful_bloom.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/rhapsody_in_red.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN40-11J.jpg" border="0" alt="Any day becomes a special one with this brilliant presentation of pink and..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/rhapsody_in_red.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/fresh_fruit_and_candy_gift_basket.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN93558.jpg" border="0" alt="Send this Fresh Fruit & Candy Gift Basket and you're sending sunshine - and..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/fresh_fruit_and_candy_gift_basket.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/classic_dish_garden.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN1890.jpg" border="0" alt="Stunning varieties of fresh green plants are used to create our classic di..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/classic_dish_garden.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/spring_lilies.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/FYF-108.jpg" border="0" alt="Send a summery burst of sunshine with this gorgeous lily bouquet. Lilies ha..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/spring_lilies.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/blushing_beauty_2.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN31-21J.jpg" border="0" alt="Any day becomes a special one with this brilliant presentation of pink and..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/blushing_beauty_2.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/designers_choice.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/FYF-DC.jpg" border="0" alt="Not quite sure what to send? Let our top notch designers create a gift bask..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/designers_choice.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/youre_the_best.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN231G.jpg" border="0" alt="A simple, yet elegant way of showing you care. Deep pink gerbera daisies ar..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/youre_the_best.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/sweet_delights.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN38-21J.jpg" border="0" alt="Make any day an unforgettable one with this exceptional display of beauty a..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/sweet_delights.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/bouquet_for_baby_boy_with_keepsake_frame.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN17162.jpg" border="0" alt="Boy, oh boy, it's a boy! Here's a gift for the new parents that welcomes th..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/bouquet_for_baby_boy_with_keepsake_frame.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/three_dozen_red_roses.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/FYF-3DZ.jpg" border="0" alt="Roses are the definitive expression of lasting love! Send three-dozen long-..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/three_dozen_red_roses.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/a_beary_happy_birthday.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN562G.jpg" border="0" alt="Say "Happy Birthday" in a big way when you send someone special this unique..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/a_beary_happy_birthday.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/white_daisy_basket.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN90917.jpg" border="0" alt="Daisies in a basket are a wonderful way gift for any occasion. Our fresh, w..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/white_daisy_basket.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/fruit_sweets_and_treats_basket.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN5382.jpg" border="0" alt="Treat someone special with an overflowing array of gourmet gifts. Delivered..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/fruit_sweets_and_treats_basket.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/premium_long_stem_red_roses_18_stems.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/BN1121RDA.jpg" border="0" alt="To make an ordinary day simply unforgettable, eighteen long-stem assorted r..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/premium_long_stem_red_roses_18_stems.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/buynow.gif" border="0"></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/florist_designed_anniversary_bouquet.htm"><img width="170" height="198" src="http://a121.g.akamai.net/f/121/21164/1d/content.floristexpress.net/images/products/small/FYF-ANN.jpg" border="0" alt="Can't decide what to send for an anniversary? Why not leave it to the profe..."></a> ...[SNIP]... <a href="http://www.floristexpress.net/products/florist_designed_anniversary_bouquet.htm"><img src="http://a121.g.akamai.net/f/121/21164/1d