diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,10 @@
+2009.5.27
+---------
+
+### Fix
+
+* just dump all cgi vars into http
+
 2009.5.19
 ---------
 
diff --git a/hack-handler-kibro.cabal b/hack-handler-kibro.cabal
--- a/hack-handler-kibro.cabal
+++ b/hack-handler-kibro.cabal
@@ -1,5 +1,5 @@
 Name:                 hack-handler-kibro
-Version:              2009.5.19
+Version:              2009.5.27
 Build-type:           Simple
 Synopsis:             Hack Kibro handler
 Description:          Hack Kibro handler
diff --git a/src/Hack/Handler/Kibro.hs b/src/Hack/Handler/Kibro.hs
--- a/src/Hack/Handler/Kibro.hs
+++ b/src/Hack/Handler/Kibro.hs
@@ -25,6 +25,7 @@
       server_name' <- serverName
       server_port' <- serverPort
       hack_input'  <- getBodyFPS
+      http' <- getVars 
 
       def 
         {  Hack.requestMethod = request_method'
@@ -34,6 +35,7 @@
         ,  Hack.serverName    = server_name'
         ,  Hack.serverPort    = server_port'
         ,  Hack.hackInput     = hack_input'
+        ,  Hack.http          = http'
         }
         .return
       where 
