--- /home/Kevin/Tools/w3af.orig/core/controllers/miscSettings.py	2008-09-14 20:16:05.000000000 +0200
+++ miscSettings.py	2008-12-09 16:18:40.000000000 +0100
@@ -50,6 +50,7 @@
             cf.cf.save('demo', False )
             cf.cf.save('showProgressBar', True )
             cf.cf.save('nonTargets', [] )
+            cf.cf.save('exportFuzzableRequests', '')
     
     def getOptions( self ):
         '''
@@ -105,6 +106,9 @@
         h14 = 'Sometimes it\'s a good idea to ignore some URLs and test them manually'
         o14 = option('nonTargets', cf.cf.getData('nonTargets'), d14, 'list', tabid='Misc settings')
         
+        d15 = 'Export all fuzzable requests to the given file, for the use with other tools'
+        o15 = option('exportFuzzableRequests', cf.cf.getData('exportFuzzableRequests'), d15, 'string', tabid='Export fuzzable Requests')
+        
         ol = optionList()
         ol.add(o1)
         ol.add(o2)
@@ -120,6 +124,7 @@
         ol.add(o12)
         ol.add(o13)
         ol.add(o14)
+        ol.add(o15)
         return ol
     
     def getDesc( self ):
@@ -147,6 +152,7 @@
         cf.cf.save('demo', optionsMap['demo'].getValue()  )
         cf.cf.save('showProgressBar', optionsMap['showProgressBar'].getValue()  )
         cf.cf.save('nonTargets', optionsMap['nonTargets'].getValue() )
+        cf.cf.save('exportFuzzableRequests', optionsMap['exportFuzzableRequests'].getValue() )
         
 # This is an undercover call to __init__ :) , so I can set all default parameters.
 miscSettings()
