Technical Articles
F5 SMEs share good practice.
cancel
Showing results for 
Search instead for 
Did you mean: 
Custom Alert Banner
JRahm
Community Manager
Community Manager

I got a request yesterday morning to asking if there was a way to drop HTTP requests if a certain number was referenced in the Accept-Language header.  The user referenced this post on Exploring Binary.  The number, 2.2250738585072012e-308, causes the Java runtime and compiler to go into an infinite loop when converting it to 0151T000003d54gQAA.pngdouble-precision binary floating-point.  Not good.  Twitter is ablaze on the issue, and there is a good discussion thread on Hacker News as well.  So how do you stop it?  At first, this appeared to be a no-brainer, just copy that string and drop if found in that header, right?  Well, there’s a catch.  A few actually.  This number can be represented in many ways:

  • Decimal point placement => 0.00022250738585072012e-304
  • Leading Zeroes => 00000000002.2250738585072012e-308
  • Trailing Zeroes => 2.225073858507201200000e-308
  • Leading Zeroes in the Exponent => 2.2250738585072012e-00308
  • Superfluous Digits past digit 17 => 2.2250738585072012997800001e-308

String match seemed the perfect fit for this as I need a few wildcards to sort this out.  I started in the Tcl shell just to make sure all the use cases matched:

Comments
JRahm
Community Manager
Community Manager
@Balbus ... good catch. I'll work on an update.
JRahm
Community Manager
Community Manager
This should take care of it:

 

 

[string match "*22250738585072012*" [string map {. ""} [HTTP::request]]]

 

 

Updated the solution section to reflect this change. Thanks again!
JRahm
Community Manager
Community Manager
No, this iRule only looks at the headers. However, you could look for a POST and do an HTTP::collect, then perform the match on the payload in the HTTP_REQUEST_DATA event. Depending on how large the POST is, that could slow things down considerable. Not as considerable as crashing java though, I suppose 🙂
JRahm
Community Manager
Community Manager
@Balbus - thanks again for that, I've updated the string match.

 

 

@Aaron - that's great news!
Version history
Last update:
‎03-Feb-2011 07:28
Updated by:
Contributors