Thread: [W3af-svn-notify] SF.net SVN: w3af:[5175] branches/threading2
Status: Beta
Brought to you by:
andresriancho
From: <and...@us...> - 2012-06-22 00:02:47
|
Revision: 5175 http://w3af.svn.sourceforge.net/w3af/?rev=5175&view=rev Author: andresriancho Date: 2012-06-22 00:02:40 +0000 (Fri, 22 Jun 2012) Log Message: ----------- Done: * Now I have a basic setup for the new threadpool that works with script-sqli.py * sed s/printUniq/print_uniq/ TODO: * Perform more basic tests * Error handling and status Modified Paths: -------------- branches/threading2/core/controllers/basePlugin/baseAuditPlugin.py branches/threading2/core/controllers/basePlugin/baseBruteforcePlugin.py branches/threading2/core/controllers/basePlugin/basePlugin.py branches/threading2/core/controllers/coreHelpers/consumers/audit.py branches/threading2/core/controllers/coreHelpers/consumers/auth.py branches/threading2/core/controllers/coreHelpers/fingerprint_404.py branches/threading2/core/controllers/coreHelpers/strategy.py branches/threading2/core/controllers/daemons/proxy.py branches/threading2/core/controllers/miscSettings.py branches/threading2/core/controllers/payloadTransfer/reverseFTP.py branches/threading2/core/controllers/threads/threadManager.py branches/threading2/core/controllers/threads/threadpool.py branches/threading2/core/controllers/threads/w3afThread.py branches/threading2/core/controllers/w3afCore.py branches/threading2/core/data/url/xUrllib.py branches/threading2/plugins/attack/db/dbDriverFunctions.py branches/threading2/plugins/attack/payloads/payloads/list_processes.py branches/threading2/plugins/attack/payloads/payloads/rootkit_hunter.py branches/threading2/plugins/attack/rfiProxy.py branches/threading2/plugins/attack/sqlmap.py branches/threading2/plugins/audit/LDAPi.py branches/threading2/plugins/audit/buffOverflow.py branches/threading2/plugins/audit/dav.py branches/threading2/plugins/audit/eval.py branches/threading2/plugins/audit/fileUpload.py branches/threading2/plugins/audit/formatString.py branches/threading2/plugins/audit/generic.py branches/threading2/plugins/audit/globalRedirect.py branches/threading2/plugins/audit/localFileInclude.py branches/threading2/plugins/audit/mxInjection.py branches/threading2/plugins/audit/osCommanding.py branches/threading2/plugins/audit/phishingVector.py branches/threading2/plugins/audit/preg_replace.py branches/threading2/plugins/audit/redos.py branches/threading2/plugins/audit/remoteFileInclude.py branches/threading2/plugins/audit/responseSplitting.py branches/threading2/plugins/audit/sqli.py branches/threading2/plugins/audit/ssi.py branches/threading2/plugins/audit/xpath.py branches/threading2/plugins/audit/xss.py branches/threading2/plugins/discovery/fingerBing.py branches/threading2/plugins/discovery/fingerGoogle.py branches/threading2/plugins/discovery/webSpider.py branches/threading2/plugins/grep/ajax.py branches/threading2/plugins/grep/blankBody.py branches/threading2/plugins/grep/clickJacking.py branches/threading2/plugins/grep/codeDisclosure.py branches/threading2/plugins/grep/creditCards.py branches/threading2/plugins/grep/directoryIndexing.py branches/threading2/plugins/grep/domXss.py branches/threading2/plugins/grep/dotNetEventValidation.py branches/threading2/plugins/grep/error500.py branches/threading2/plugins/grep/errorPages.py branches/threading2/plugins/grep/feeds.py branches/threading2/plugins/grep/fileUpload.py branches/threading2/plugins/grep/getMails.py branches/threading2/plugins/grep/hashFind.py branches/threading2/plugins/grep/metaTags.py branches/threading2/plugins/grep/objects.py branches/threading2/plugins/grep/oracle.py branches/threading2/plugins/grep/privateIP.py branches/threading2/plugins/grep/ssn.py branches/threading2/plugins/grep/strangeHTTPCode.py branches/threading2/plugins/grep/strangeParameters.py branches/threading2/plugins/grep/strangeReason.py branches/threading2/plugins/grep/svnUsers.py branches/threading2/plugins/grep/symfony.py branches/threading2/plugins/grep/user_defined_regex.py branches/threading2/plugins/grep/wsdlGreper.py Added Paths: ----------- branches/threading2/scripts/script-sqli.w3af This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-22 12:56:23
|
Revision: 5178 http://w3af.svn.sourceforge.net/w3af/?rev=5178&view=rev Author: andresriancho Date: 2012-06-22 12:56:12 +0000 (Fri, 22 Jun 2012) Log Message: ----------- (w00t!) This is going really well... now we have audit running in a threadpool, with proper error handling. Just need to complete the status and progress and then I'll move into unittesting. Also, need to change all audit plugins and the way they perform the "run_async" Modified Paths: -------------- branches/threading2/core/controllers/coreHelpers/consumers/audit.py branches/threading2/core/controllers/coreHelpers/consumers/grep.py branches/threading2/core/controllers/coreHelpers/strategy.py branches/threading2/core/controllers/threads/threadpool.py branches/threading2/plugins/audit/sqli.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-22 13:46:49
|
Revision: 5179 http://w3af.svn.sourceforge.net/w3af/?rev=5179&view=rev Author: andresriancho Date: 2012-06-22 13:46:43 +0000 (Fri, 22 Jun 2012) Log Message: ----------- * Removed the need of implementing an empty getOptions/setOptions * Changed all audit plugins to the new threadpool method * Need to run unittests. Modified Paths: -------------- branches/threading2/core/controllers/basePlugin/baseAuditPlugin.py branches/threading2/core/controllers/basePlugin/basePlugin.py branches/threading2/plugins/audit/LDAPi.py branches/threading2/plugins/audit/blindSqli.py branches/threading2/plugins/audit/buffOverflow.py branches/threading2/plugins/audit/dav.py branches/threading2/plugins/audit/eval.py branches/threading2/plugins/audit/fileUpload.py branches/threading2/plugins/audit/formatString.py branches/threading2/plugins/audit/frontpage.py branches/threading2/plugins/audit/generic.py branches/threading2/plugins/audit/globalRedirect.py branches/threading2/plugins/audit/htaccessMethods.py branches/threading2/plugins/audit/localFileInclude.py branches/threading2/plugins/audit/mxInjection.py branches/threading2/plugins/audit/osCommanding.py branches/threading2/plugins/audit/phishingVector.py branches/threading2/plugins/audit/preg_replace.py branches/threading2/plugins/audit/redos.py branches/threading2/plugins/audit/remoteFileInclude.py branches/threading2/plugins/audit/responseSplitting.py branches/threading2/plugins/audit/sqli.py branches/threading2/plugins/audit/ssi.py branches/threading2/plugins/audit/sslCertificate.py branches/threading2/plugins/audit/unSSL.py branches/threading2/plugins/audit/xpath.py branches/threading2/plugins/audit/xsrf.py branches/threading2/plugins/audit/xss.py branches/threading2/plugins/audit/xst.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-22 15:46:55
|
Revision: 5180 http://w3af.svn.sourceforge.net/w3af/?rev=5180&view=rev Author: andresriancho Date: 2012-06-22 15:46:46 +0000 (Fri, 22 Jun 2012) Log Message: ----------- Basic unittests are passing, need more fixes though. Modified Paths: -------------- branches/threading2/core/controllers/coreHelpers/consumers/audit.py branches/threading2/core/controllers/coreHelpers/consumers/auth.py branches/threading2/core/controllers/coreHelpers/consumers/grep.py branches/threading2/core/controllers/coreHelpers/fingerprint_404.py branches/threading2/core/controllers/coreHelpers/strategy.py branches/threading2/core/controllers/threads/threadManager.py branches/threading2/core/controllers/threads/threadpool.py branches/threading2/core/controllers/w3afCore.py branches/threading2/plugins/tests/helper.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-22 17:27:47
|
Revision: 5182 http://w3af.svn.sourceforge.net/w3af/?rev=5182&view=rev Author: andresriancho Date: 2012-06-22 17:27:41 +0000 (Fri, 22 Jun 2012) Log Message: ----------- Good progress towards having the threadpool working as expected: * Most unittests pass, BUT there are still one or more threads that remain unjoined and the process doesn't exit TODO: * Fix issue described above * Run/run all remaining unittests * Define what to do with progress! * Search and replace all time.sleep() which show bad coding in thread * Add more unittests: - basicAuthBrute - ... Modified Paths: -------------- branches/threading2/core/controllers/coreHelpers/consumers/audit.py branches/threading2/core/controllers/coreHelpers/consumers/grep.py branches/threading2/core/controllers/coreHelpers/strategy.py branches/threading2/core/controllers/threads/threadManager.py branches/threading2/plugins/bruteforce/formAuthBrute.py branches/threading2/plugins/discovery/webSpider.py branches/threading2/plugins/tests/audit/test_all_false_positive.py branches/threading2/plugins/tests/helper.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-22 17:42:58
|
Revision: 5183 http://w3af.svn.sourceforge.net/w3af/?rev=5183&view=rev Author: andresriancho Date: 2012-06-22 17:42:51 +0000 (Fri, 22 Jun 2012) Log Message: ----------- Added unittest for basic authentication. Modified Paths: -------------- branches/threading2/core/controllers/basePlugin/baseBruteforcePlugin.py branches/threading2/plugins/bruteforce/basicAuthBrute.py Added Paths: ----------- branches/threading2/plugins/tests/bruteforce/test_basic_auth.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-22 20:22:54
|
Revision: 5197 http://w3af.svn.sourceforge.net/w3af/?rev=5197&view=rev Author: andresriancho Date: 2012-06-22 20:22:48 +0000 (Fri, 22 Jun 2012) Log Message: ----------- * Migrated userDir to new threadpool model * Added unittest * Removed test script Modified Paths: -------------- branches/threading2/plugins/discovery/userDir.py Added Paths: ----------- branches/threading2/plugins/tests/discovery/test_user_dir.py Removed Paths: ------------- branches/threading2/scripts/script-user_dir.w3af This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-25 14:47:20
|
Revision: 5219 http://w3af.svn.sourceforge.net/w3af/?rev=5219&view=rev Author: andresriancho Date: 2012-06-25 14:47:13 +0000 (Mon, 25 Jun 2012) Log Message: ----------- Changed name because it wasn't really async from the plugin's point of view. Please note that the _send_mutants_in_threads method blocks from the caller's point of view but performs all the work in different threads. Modified Paths: -------------- branches/threading2/core/controllers/basePlugin/basePlugin.py branches/threading2/plugins/audit/LDAPi.py branches/threading2/plugins/audit/eval.py branches/threading2/plugins/audit/fileUpload.py branches/threading2/plugins/audit/formatString.py branches/threading2/plugins/audit/globalRedirect.py branches/threading2/plugins/audit/localFileInclude.py branches/threading2/plugins/audit/mxInjection.py branches/threading2/plugins/audit/osCommanding.py branches/threading2/plugins/audit/phishingVector.py branches/threading2/plugins/audit/preg_replace.py branches/threading2/plugins/audit/redos.py branches/threading2/plugins/audit/remoteFileInclude.py branches/threading2/plugins/audit/responseSplitting.py branches/threading2/plugins/audit/sqli.py branches/threading2/plugins/audit/ssi.py branches/threading2/plugins/audit/xpath.py branches/threading2/plugins/audit/xss.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-25 15:42:11
|
Revision: 5220 http://w3af.svn.sourceforge.net/w3af/?rev=5220&view=rev Author: andresriancho Date: 2012-06-25 15:42:00 +0000 (Mon, 25 Jun 2012) Log Message: ----------- Moved the utility function one_to_many to the threadpool. Modified Paths: -------------- branches/threading2/core/controllers/threads/threadManager.py branches/threading2/core/controllers/threads/threadpool.py branches/threading2/plugins/discovery/userDir.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-26 00:44:05
|
Revision: 5234 http://w3af.svn.sourceforge.net/w3af/?rev=5234&view=rev Author: andresriancho Date: 2012-06-26 00:43:59 +0000 (Tue, 26 Jun 2012) Log Message: ----------- * Migrated afd to new threadpool * Added unittest * Removed script Modified Paths: -------------- branches/threading2/plugins/discovery/afd.py Added Paths: ----------- branches/threading2/plugins/tests/discovery/test_afd.py Removed Paths: ------------- branches/threading2/scripts/script-afd.w3af This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-26 14:49:31
|
Revision: 5239 http://w3af.svn.sourceforge.net/w3af/?rev=5239&view=rev Author: andresriancho Date: 2012-06-26 14:49:21 +0000 (Tue, 26 Jun 2012) Log Message: ----------- Merge from trunk. Modified Paths: -------------- branches/threading2/core/data/options/option.py branches/threading2/plugins/tests/helper.py Added Paths: ----------- branches/threading2/plugins/auth/detailed.py branches/threading2/plugins/tests/auth/ branches/threading2/plugins/tests/discovery/test_finger_bing.py branches/threading2/plugins/tests/discovery/test_finger_google.py Property Changed: ---------------- branches/threading2/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-26 15:37:59
|
Revision: 5243 http://w3af.svn.sourceforge.net/w3af/?rev=5243&view=rev Author: andresriancho Date: 2012-06-26 15:37:48 +0000 (Tue, 26 Jun 2012) Log Message: ----------- Removed script, added unittest, updated unSSL plugin to catch more vulns. Modified Paths: -------------- branches/threading2/plugins/audit/unSSL.py Added Paths: ----------- branches/threading2/plugins/tests/audit/test_unssl.py Removed Paths: ------------- branches/threading2/scripts/script-un_ssl.w3af This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-26 16:13:23
|
Revision: 5245 http://w3af.svn.sourceforge.net/w3af/?rev=5245&view=rev Author: andresriancho Date: 2012-06-26 16:13:17 +0000 (Tue, 26 Jun 2012) Log Message: ----------- Removed phpinfo script, added unittest, migrated phpinfo.py to the new threadpool model. Modified Paths: -------------- branches/threading2/plugins/discovery/phpinfo.py Added Paths: ----------- branches/threading2/plugins/tests/discovery/test_phpinfo.py Removed Paths: ------------- branches/threading2/scripts/script-phpinfo.w3af This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-26 18:31:22
|
Revision: 5247 http://w3af.svn.sourceforge.net/w3af/?rev=5247&view=rev Author: andresriancho Date: 2012-06-26 18:31:16 +0000 (Tue, 26 Jun 2012) Log Message: ----------- Removed test script, wrote unittest, migrated code to new threadpool model and refactored it all. Modified Paths: -------------- branches/threading2/plugins/discovery/dir_bruter.py Added Paths: ----------- branches/threading2/plugins/tests/discovery/test_dirbruter.py Removed Paths: ------------- branches/threading2/scripts/script-dir_bruter.w3af This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-26 18:55:39
|
Revision: 5252 http://w3af.svn.sourceforge.net/w3af/?rev=5252&view=rev Author: andresriancho Date: 2012-06-26 18:55:33 +0000 (Tue, 26 Jun 2012) Log Message: ----------- Removed test script, added unittest, migrated plugin to new threadpool model. Modified Paths: -------------- branches/threading2/plugins/discovery/urllist_txt.py Added Paths: ----------- branches/threading2/plugins/tests/discovery/test_urllist_txt.py Removed Paths: ------------- branches/threading2/scripts/script-urllist_txt.w3af This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-26 23:42:22
|
Revision: 5254 http://w3af.svn.sourceforge.net/w3af/?rev=5254&view=rev Author: andresriancho Date: 2012-06-26 23:42:15 +0000 (Tue, 26 Jun 2012) Log Message: ----------- * Add unittest * Remove test script * Rewrite pykto: Old version run in 3.5 minutes, new version in 2m. w00t! Modified Paths: -------------- branches/threading2/plugins/discovery/pykto.py Added Paths: ----------- branches/threading2/plugins/tests/discovery/test_pykto.py Removed Paths: ------------- branches/threading2/scripts/script-pykto.w3af This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-27 14:17:59
|
Revision: 5261 http://w3af.svn.sourceforge.net/w3af/?rev=5261&view=rev Author: andresriancho Date: 2012-06-27 14:17:50 +0000 (Wed, 27 Jun 2012) Log Message: ----------- Moving towards a consumer model for output manager. Modified Paths: -------------- branches/threading2/core/__init__.py branches/threading2/core/controllers/basePlugin/baseOutputPlugin.py branches/threading2/core/controllers/coreHelpers/consumers/grep.py branches/threading2/core/controllers/coreHelpers/plugins.py branches/threading2/core/controllers/coreHelpers/profiles.py branches/threading2/core/controllers/coreHelpers/tests/test_plugins.py branches/threading2/core/controllers/outputManager.py branches/threading2/core/controllers/w3afCore.py branches/threading2/core/data/profile/profile.py branches/threading2/core/ui/consoleUi/config.py branches/threading2/core/ui/gtkUi/confpanel.py branches/threading2/core/ui/gtkUi/main.py branches/threading2/plugins/output/console.py branches/threading2/plugins/output/csv_file.py branches/threading2/plugins/output/emailReport.py branches/threading2/plugins/output/export_requests.py branches/threading2/plugins/output/gtkOutput.py branches/threading2/plugins/output/htmlFile.py branches/threading2/plugins/output/textFile.py branches/threading2/plugins/output/xmlFile.py branches/threading2/plugins/tests/helper.py branches/threading2/w3af_console branches/threading2/w3af_gui This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-27 17:58:11
|
Revision: 5263 http://w3af.svn.sourceforge.net/w3af/?rev=5263&view=rev Author: andresriancho Date: 2012-06-27 17:58:02 +0000 (Wed, 27 Jun 2012) Log Message: ----------- * Output manager is now a consumer, core and all plugins act as message producers. The messages are stored in a Queue and consumed in a thread. This should be beneficial for cases where we're waiting for network io and the output manager thread can write to disk/console * Added unittests for the output manager * Added error handling for output plugins in output manager. * Had to remove the Queue sizes for all queues because a test scan wasn't finishing. Should understand the memory consumption implications of there before merging to trunk. * Rewrote console output plugin * Refactoring of baseOutputPlugin: - Now there are functions that are not mandatory to be implemented - Cosmetic changes * Better logging in fuzzer.py Modified Paths: -------------- branches/threading2/core/controllers/basePlugin/baseOutputPlugin.py branches/threading2/core/controllers/coreHelpers/consumers/audit.py branches/threading2/core/controllers/coreHelpers/consumers/auth.py branches/threading2/core/controllers/coreHelpers/consumers/grep.py branches/threading2/core/controllers/coreHelpers/exception_handler.py branches/threading2/core/controllers/coreHelpers/status.py branches/threading2/core/controllers/coreHelpers/strategy.py branches/threading2/core/controllers/outputManager.py branches/threading2/core/controllers/tests/test_outputmanager.py branches/threading2/core/data/fuzzer/fuzzer.py branches/threading2/core/ui/consoleUi/help.py branches/threading2/core/ui/consoleUi/io/console.py branches/threading2/plugins/output/console.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-27 18:41:19
|
Revision: 5266 http://w3af.svn.sourceforge.net/w3af/?rev=5266&view=rev Author: andresriancho Date: 2012-06-27 18:41:13 +0000 (Wed, 27 Jun 2012) Log Message: ----------- * Need to init the output manager before starting the tests. * Make sure we only start one output manager consumer. Modified Paths: -------------- branches/threading2/core/controllers/outputManager.py branches/threading2/plugins/tests/helper.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-27 19:58:46
|
Revision: 5267 http://w3af.svn.sourceforge.net/w3af/?rev=5267&view=rev Author: andresriancho Date: 2012-06-27 19:58:40 +0000 (Wed, 27 Jun 2012) Log Message: ----------- Starting the output manager thread on demand instead of an explicit way. Modified Paths: -------------- branches/threading2/core/controllers/outputManager.py branches/threading2/core/controllers/tests/test_outputmanager.py branches/threading2/plugins/tests/helper.py branches/threading2/w3af_console This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-28 20:43:46
|
Revision: 5283 http://w3af.svn.sourceforge.net/w3af/?rev=5283&view=rev Author: andresriancho Date: 2012-06-28 20:43:40 +0000 (Thu, 28 Jun 2012) Log Message: ----------- * Migrated to new threadpool model * Added unittest * Removed script Modified Paths: -------------- branches/threading2/plugins/discovery/findBackdoor.py Added Paths: ----------- branches/threading2/plugins/tests/discovery/test_find_backdoor.py Removed Paths: ------------- branches/threading2/scripts/script-find_backdoor.w3af This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-29 15:56:12
|
Revision: 5287 http://w3af.svn.sourceforge.net/w3af/?rev=5287&view=rev Author: andresriancho Date: 2012-06-29 15:56:03 +0000 (Fri, 29 Jun 2012) Log Message: ----------- Improved webspider plugin and moved wivet tests to a unittest. Modified Paths: -------------- branches/threading2/plugins/discovery/webSpider.py branches/threading2/plugins/tests/discovery/test_webspider.py Removed Paths: ------------- branches/threading2/scripts/script-wivet.w3af This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-30 01:37:43
|
Revision: 5296 http://w3af.svn.sourceforge.net/w3af/?rev=5296&view=rev Author: andresriancho Date: 2012-06-30 01:37:38 +0000 (Sat, 30 Jun 2012) Log Message: ----------- * Fixed w3af_gui to reflect the new outputmanager (doesn't require the start_* call) * Cosmetic Modified Paths: -------------- branches/threading2/w3af_console branches/threading2/w3af_gui This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-30 02:51:51
|
Revision: 5297 http://w3af.svn.sourceforge.net/w3af/?rev=5297&view=rev Author: andresriancho Date: 2012-06-30 02:51:45 +0000 (Sat, 30 Jun 2012) Log Message: ----------- Removing some (Deprecation|Future)Warnings Modified Paths: -------------- branches/threading2/core/controllers/coreHelpers/exception_handler.py branches/threading2/core/data/url/httpResponse.py branches/threading2/core/ui/gtkUi/common/searchable.py branches/threading2/core/ui/gtkUi/confpanel.py branches/threading2/core/ui/gtkUi/encdec.py branches/threading2/core/ui/gtkUi/entries.py branches/threading2/core/ui/gtkUi/httpLogTab.py branches/threading2/extlib/pyPdf/pyPdf/pdf.py branches/threading2/plugins/discovery/favicon_identification.py branches/threading2/plugins/discovery/findCaptchas.py branches/threading2/plugins/discovery/phpEggs.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-06-30 20:09:46
|
Revision: 5306 http://w3af.svn.sourceforge.net/w3af/?rev=5306&view=rev Author: andresriancho Date: 2012-06-30 20:09:40 +0000 (Sat, 30 Jun 2012) Log Message: ----------- Migrated to new thread model Removed test script Added unittest Cosmetic change in test_googleSearchEngine.py Modified Paths: -------------- branches/threading2/core/data/searchEngines/tests/test_googleSearchEngine.py branches/threading2/plugins/discovery/googleSpider.py Added Paths: ----------- branches/threading2/plugins/tests/discovery/test_google_spider.py Removed Paths: ------------- branches/threading2/scripts/script-googleSpider.w3af This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |