Thread: [W3af-svn-notify] SF.net SVN: w3af:[5836] branches/threading2/core/controllers/core_helpers/ consum
Status: Beta
Brought to you by:
andresriancho
From: <and...@us...> - 2012-10-05 18:38:52
|
Revision: 5836 http://w3af.svn.sourceforge.net/w3af/?rev=5836&view=rev Author: andresriancho Date: 2012-10-05 18:38:45 +0000 (Fri, 05 Oct 2012) Log Message: ----------- Working add_task / task_done with assertion for >= 0 pending tasks. Modified Paths: -------------- branches/threading2/core/controllers/core_helpers/consumers/base_consumer.py branches/threading2/core/controllers/core_helpers/consumers/crawl_infrastructure.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-10-05 22:42:57
|
Revision: 5842 http://w3af.svn.sourceforge.net/w3af/?rev=5842&view=rev Author: andresriancho Date: 2012-10-05 22:42:50 +0000 (Fri, 05 Oct 2012) Log Message: ----------- Using add_task and task_done the right way. Modified Paths: -------------- branches/threading2/core/controllers/core_helpers/consumers/audit.py branches/threading2/core/controllers/core_helpers/consumers/auth.py branches/threading2/core/controllers/core_helpers/consumers/base_consumer.py branches/threading2/core/controllers/core_helpers/consumers/bruteforce.py branches/threading2/core/controllers/core_helpers/consumers/crawl_infrastructure.py branches/threading2/core/controllers/core_helpers/consumers/grep.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-10-26 18:17:16
|
Revision: 6028 http://w3af.svn.sourceforge.net/w3af/?rev=6028&view=rev Author: andresriancho Date: 2012-10-26 18:17:10 +0000 (Fri, 26 Oct 2012) Log Message: ----------- * Adding unittest for base consumer error handling * Adding comments Modified Paths: -------------- branches/threading2/core/controllers/core_helpers/consumers/audit.py branches/threading2/core/controllers/core_helpers/consumers/bruteforce.py branches/threading2/core/controllers/core_helpers/consumers/crawl_infrastructure.py branches/threading2/core/controllers/core_helpers/consumers/grep.py Added Paths: ----------- branches/threading2/core/controllers/core_helpers/consumers/tests/ branches/threading2/core/controllers/core_helpers/consumers/tests/test_base_consumer.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-12-17 14:25:23
|
Revision: 6390 http://w3af.svn.sourceforge.net/w3af/?rev=6390&view=rev Author: andresriancho Date: 2012-12-17 14:25:14 +0000 (Mon, 17 Dec 2012) Log Message: ----------- Do not create a thread pool you won't use. Modified Paths: -------------- branches/threading2/core/controllers/core_helpers/consumers/base_consumer.py branches/threading2/core/controllers/core_helpers/consumers/grep.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-12-17 21:16:54
|
Revision: 6403 http://w3af.svn.sourceforge.net/w3af/?rev=6403&view=rev Author: andresriancho Date: 2012-12-17 21:16:47 +0000 (Mon, 17 Dec 2012) Log Message: ----------- * Fixed max crawling time * Unittested Modified Paths: -------------- branches/threading2/core/controllers/core_helpers/consumers/crawl_infrastructure.py Added Paths: ----------- branches/threading2/core/controllers/core_helpers/consumers/tests/test_crawl_infrastructure.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-12-21 13:19:50
|
Revision: 6452 http://w3af.svn.sourceforge.net/w3af/?rev=6452&view=rev Author: andresriancho Date: 2012-12-21 13:19:40 +0000 (Fri, 21 Dec 2012) Log Message: ----------- Those terminate() where removing all items from the work queue and not allowing us to find the vulnerabilities. I need to separate the poison pill into two different types, one for terminate and one for close: User quit() will run terminate() and all other will run close() Modified Paths: -------------- branches/threading2/core/controllers/core_helpers/consumers/base_consumer.py branches/threading2/core/controllers/core_helpers/consumers/crawl_infrastructure.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |