arachni 0.4.4 → 0.4.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (148) hide show
  1. checksums.yaml +8 -8
  2. data/CHANGELOG.md +37 -0
  3. data/README.md +18 -3
  4. data/lib/arachni/element/capabilities/auditable.rb +5 -1
  5. data/lib/arachni/element/capabilities/auditable/taint.rb +37 -2
  6. data/lib/arachni/platform/fingerprinter.rb +4 -4
  7. data/lib/arachni/platform/manager.rb +15 -1
  8. data/lib/arachni/platforms.rb +2 -1
  9. data/lib/arachni/rpc/server/framework/distributor.rb +2 -2
  10. data/lib/arachni/spider.rb +1 -1
  11. data/lib/arachni/ui/cli/utilities.rb +1 -1
  12. data/lib/version +1 -1
  13. data/modules/audit/file_inclusion.rb +126 -0
  14. data/modules/audit/os_cmd_injection.rb +11 -9
  15. data/modules/audit/path_traversal.rb +21 -21
  16. data/modules/audit/source_code_disclosure.rb +16 -15
  17. data/modules/audit/sqli.rb +13 -6
  18. data/modules/audit/sqli/patterns/access +3 -0
  19. data/modules/audit/sqli/patterns/coldfusion +1 -0
  20. data/modules/audit/sqli/patterns/db2 +5 -0
  21. data/modules/audit/sqli/patterns/emc +2 -0
  22. data/modules/audit/sqli/patterns/firebird +2 -0
  23. data/modules/audit/sqli/patterns/frontbase +1 -0
  24. data/modules/audit/sqli/patterns/hsqldb +1 -0
  25. data/modules/audit/sqli/patterns/informix +3 -0
  26. data/modules/audit/sqli/patterns/ingres +3 -0
  27. data/modules/audit/sqli/patterns/interbase +2 -0
  28. data/modules/audit/sqli/patterns/maxdb +2 -0
  29. data/modules/audit/sqli/patterns/mssql +24 -0
  30. data/modules/audit/sqli/patterns/mysql +15 -0
  31. data/modules/audit/sqli/patterns/oracle +6 -0
  32. data/modules/audit/sqli/patterns/pgsql +8 -0
  33. data/modules/audit/sqli/patterns/sqlite +5 -0
  34. data/modules/audit/sqli/patterns/sybase +3 -0
  35. data/modules/recon/common_files/filenames.txt +1 -0
  36. data/modules/recon/localstart_asp.rb +67 -0
  37. data/path_extractors/comments.rb +30 -0
  38. data/path_extractors/meta_refresh.rb +8 -4
  39. data/plugins/uncommon_headers.rb +91 -0
  40. data/reports/html/default/issue.erb +1 -1
  41. data/reports/html/default/plugins.erb +3 -3
  42. data/reports/plugin_formatters/html/uncommon_headers.rb +47 -0
  43. data/reports/plugin_formatters/stdout/uncommon_headers.rb +37 -0
  44. data/reports/plugin_formatters/xml/discovery.rb +2 -0
  45. data/reports/plugin_formatters/xml/timing_attacks.rb +2 -0
  46. data/reports/plugin_formatters/xml/uncommon_headers.rb +38 -0
  47. data/reports/plugin_formatters/xml/uniformity.rb +2 -1
  48. data/reports/xml/buffer.rb +9 -5
  49. data/spec/arachni/element/capabilities/auditable/taint_spec.rb +295 -82
  50. data/spec/arachni/framework_spec.rb +48 -35
  51. data/spec/arachni/platform/manager_spec.rb +3 -2
  52. data/spec/modules/audit/file_inclusion_spec.rb +25 -0
  53. data/spec/modules/audit/path_traversal_spec.rb +3 -3
  54. data/spec/modules/audit/sqli_spec.rb +2 -1
  55. data/spec/modules/recon/localstart_asp_spec.rb +19 -0
  56. data/spec/path_extractors/comments_spec.rb +22 -0
  57. data/spec/path_extractors/meta_refresh_spec.rb +3 -3
  58. data/spec/plugins/uncommon_headers_spec.rb +64 -0
  59. data/spec/support/logs/Dispatcher - 1755-58492.log +9 -0
  60. data/spec/support/logs/Dispatcher - 1783-39171.log +21 -0
  61. data/spec/support/logs/Dispatcher - 1920-39032.log +9 -0
  62. data/spec/support/logs/Dispatcher - 1931-5309.log +19 -0
  63. data/spec/support/logs/Dispatcher - 1943-59691.log +17 -0
  64. data/spec/support/logs/Dispatcher - 1953-29898.log +13 -0
  65. data/spec/support/logs/Dispatcher - 1962-41002.log +9 -0
  66. data/spec/support/logs/Dispatcher - 1973-27626.log +9 -0
  67. data/spec/support/logs/Dispatcher - 1983-18043.log +11 -0
  68. data/spec/support/logs/Dispatcher - 1996-23139.log +11 -0
  69. data/spec/support/logs/Dispatcher - 2010-10568.log +35 -0
  70. data/spec/support/logs/Dispatcher - 2072-29284.log +21 -0
  71. data/spec/support/logs/Dispatcher - 2081-3234.log +21 -0
  72. data/spec/support/logs/Dispatcher - 2090-18129.log +23 -0
  73. data/spec/support/logs/Dispatcher - 2132-43806.log +19 -0
  74. data/spec/support/logs/Dispatcher - 2141-1327.log +17 -0
  75. data/spec/support/logs/Dispatcher - 2150-52559.log +15 -0
  76. data/spec/support/logs/Dispatcher - 2163-60400.log +11 -0
  77. data/spec/support/logs/Dispatcher - 2176-6021.log +9 -0
  78. data/spec/support/logs/Dispatcher - 2185-22991.log +9 -0
  79. data/spec/support/logs/Dispatcher - 2194-15317.log +9 -0
  80. data/spec/support/logs/Dispatcher - 2203-51674.log +9 -0
  81. data/spec/support/logs/Dispatcher - 2212-25563.log +11 -0
  82. data/spec/support/logs/Dispatcher - 2225-7249.log +9 -0
  83. data/spec/support/logs/Dispatcher - 2234-36714.log +9 -0
  84. data/spec/support/logs/Dispatcher - 2291-34161.log +63 -0
  85. data/spec/support/logs/Dispatcher - 2300-29645.log +43 -0
  86. data/spec/support/logs/Dispatcher - 2309-26961.log +39 -0
  87. data/spec/support/logs/Dispatcher - 2320-25486.log +34 -0
  88. data/spec/support/logs/Dispatcher - 2394-20678.log +28 -0
  89. data/spec/support/logs/Dispatcher - 2409-35315.log +21 -0
  90. data/spec/support/logs/Dispatcher - 2428-13197.log +13 -0
  91. data/spec/support/logs/Dispatcher - 2444-26232.log +9 -0
  92. data/spec/support/logs/Dispatcher - 2573-19232.log +19 -0
  93. data/spec/support/logs/Dispatcher - 2583-26954.log +21 -0
  94. data/spec/support/logs/Dispatcher - 2592-57040.log +15 -0
  95. data/spec/support/logs/Dispatcher - 2606-55321.log +19 -0
  96. data/spec/support/logs/Dispatcher - 2615-56847.log +21 -0
  97. data/spec/support/logs/Dispatcher - 2624-51835.log +15 -0
  98. data/spec/support/logs/Dispatcher - 2745-54916.log +17 -0
  99. data/spec/support/logs/Dispatcher - 2754-32405.log +21 -0
  100. data/spec/support/logs/Dispatcher - 2763-13372.log +13 -0
  101. data/spec/support/logs/Dispatcher - 2776-6861.log +19 -0
  102. data/spec/support/logs/Dispatcher - 2785-19122.log +21 -0
  103. data/spec/support/logs/Dispatcher - 2794-54279.log +15 -0
  104. data/spec/support/logs/Dispatcher - 2847-13871.log +17 -0
  105. data/spec/support/logs/Dispatcher - 2856-56546.log +21 -0
  106. data/spec/support/logs/Dispatcher - 2865-22921.log +13 -0
  107. data/spec/support/logs/Dispatcher - 2878-27922.log +17 -0
  108. data/spec/support/logs/Dispatcher - 2888-5399.log +21 -0
  109. data/spec/support/logs/Dispatcher - 2897-6079.log +13 -0
  110. data/spec/support/logs/Dispatcher - 3129-24131.log +19 -0
  111. data/spec/support/logs/Dispatcher - 3139-17731.log +21 -0
  112. data/spec/support/logs/Dispatcher - 3148-33704.log +15 -0
  113. data/spec/support/logs/Dispatcher - 3172-16517.log +21 -0
  114. data/spec/support/logs/Dispatcher - 3181-26384.log +25 -0
  115. data/spec/support/logs/Dispatcher - 3190-37513.log +15 -0
  116. data/spec/support/logs/Dispatcher - 3232-40996.log +17 -0
  117. data/spec/support/logs/Dispatcher - 3241-14948.log +21 -0
  118. data/spec/support/logs/Dispatcher - 3250-40285.log +13 -0
  119. data/spec/support/logs/Dispatcher - 3263-26987.log +21 -0
  120. data/spec/support/logs/Dispatcher - 3272-2729.log +25 -0
  121. data/spec/support/logs/Dispatcher - 3297-52308.log +15 -0
  122. data/spec/support/logs/Dispatcher - 3335-17008.log +17 -0
  123. data/spec/support/logs/Dispatcher - 3344-33205.log +21 -0
  124. data/spec/support/logs/Dispatcher - 3353-22917.log +13 -0
  125. data/spec/support/logs/Dispatcher - 3367-34935.log +17 -0
  126. data/spec/support/logs/Dispatcher - 3376-35370.log +21 -0
  127. data/spec/support/logs/Dispatcher - 3385-26487.log +13 -0
  128. data/spec/support/logs/Instance - 2588-19460.error.log +314 -0
  129. data/spec/support/logs/Instance - 2861-5917.error.log +314 -0
  130. data/spec/support/logs/Instance - 2893-61274.error.log +413 -0
  131. data/spec/support/logs/Instance - 2913-11030.error.log +312 -0
  132. data/spec/support/logs/Instance - 2919-17549.error.log +314 -0
  133. data/spec/support/logs/Instance - 3054-17565.error.log +312 -0
  134. data/spec/support/servers/modules/audit/file_inclusion.rb +202 -0
  135. data/spec/support/servers/modules/audit/sqli/access +3 -0
  136. data/spec/support/servers/modules/audit/sqli/firebird +1 -0
  137. data/spec/support/servers/modules/audit/sqli/frontbase +1 -0
  138. data/spec/support/servers/modules/audit/sqli/hsqldb +1 -0
  139. data/spec/support/servers/modules/audit/sqli/ingres +3 -0
  140. data/spec/support/servers/modules/audit/sqli/maxdb +2 -0
  141. data/spec/support/servers/modules/audit/sqli/mssql +0 -5
  142. data/spec/support/servers/modules/audit/sqli/oracle +1 -1
  143. data/spec/support/servers/modules/audit/sqli/sybase +3 -0
  144. data/spec/support/servers/modules/recon/localstart_asp.rb +5 -0
  145. data/spec/support/servers/plugins/uncommon_headers.rb +16 -0
  146. metadata +202 -4
  147. data/modules/audit/sqli/regexp_ids.txt +0 -69
  148. data/plugins/redundant_vectors.rb +0 -34
@@ -908,41 +908,54 @@ describe Arachni::Framework do
908
908
 
909
909
  describe '#list_platforms' do
910
910
  it 'returns information about all valid platforms' do
911
- @f.list_platforms.should == YAML.load( '---
912
- Operating systems:
913
- :unix: Generic Unix family
914
- :linux: Linux
915
- :bsd: Generic BSD family
916
- :solaris: Solaris
917
- :windows: MS Windows
918
- Databases:
919
- :coldfusion: ColdFusion
920
- :db2: DB2
921
- :emc: EMC
922
- :informix: Informix
923
- :interbase: InterBase
924
- :mssql: MSSQL
925
- :mysql: MySQL
926
- :oracle: Oracle
927
- :pgsql: Postgresql
928
- :sqlite: SQLite
929
- Web servers:
930
- :apache: Apache
931
- :iis: IIS
932
- :nginx: Nginx
933
- :tomcat: TomCat
934
- :jetty: Jetty
935
- Programming languages:
936
- :asp: ASP
937
- :aspx: ASP.NET
938
- :jsp: JSP
939
- :perl: Perl
940
- :php: PHP
941
- :python: Python
942
- :ruby: Ruby
943
- Frameworks:
944
- :rack: Rack
945
- ')
911
+ @f.list_platforms.should == {
912
+ 'Operating systems' => {
913
+ unix: 'Generic Unix family',
914
+ linux: 'Linux',
915
+ bsd: 'Generic BSD family',
916
+ solaris: 'Solaris',
917
+ windows: 'MS Windows'
918
+ },
919
+ 'Databases' => {
920
+ access: 'MS Access',
921
+ coldfusion: 'ColdFusion',
922
+ db2: 'DB2',
923
+ emc: 'EMC',
924
+ firebird: 'Firebird',
925
+ frontbase: 'Frontbase',
926
+ hsqldb: 'HSQLDB',
927
+ informix: 'Informix',
928
+ ingres: 'IngresDB',
929
+ interbase: 'InterBase',
930
+ maxdb: 'SaP Max DB',
931
+ mssql: 'MSSQL',
932
+ mysql: 'MySQL',
933
+ oracle: 'Oracle',
934
+ pgsql: 'Postgresql',
935
+ sqlite: 'SQLite',
936
+ sybase: 'Sybase'
937
+ },
938
+ 'Web servers' => {
939
+ apache: 'Apache',
940
+ iis: 'IIS',
941
+ jetty: 'Jetty',
942
+ nginx: 'Nginx',
943
+ tomcat: 'TomCat'
944
+ },
945
+ 'Programming languages' => {
946
+ asp: 'ASP',
947
+ aspx: 'ASP.NET',
948
+ jsp: 'JSP',
949
+ perl: 'Perl',
950
+ php: 'PHP',
951
+ python: 'Python',
952
+ ruby: 'Ruby'
953
+ },
954
+ 'Frameworks' => {
955
+ rack: 'Rack'
956
+ }
957
+ }
958
+
946
959
  end
947
960
  end
948
961
 
@@ -284,8 +284,9 @@ describe Arachni::Platform::Manager do
284
284
  platforms.valid.sort.should ==
285
285
  [:unix, :linux, :bsd, :solaris, :windows,
286
286
  :coldfusion, :db2, :emc, :informix, :interbase, :mssql, :mysql,
287
- :oracle, :pgsql, :sqlite, :apache, :iis, :nginx, :tomcat, :asp,
288
- :aspx, :jsp, :perl, :php, :python, :ruby, :rack, :jetty].sort
287
+ :oracle, :firebird, :maxdb, :pgsql, :sqlite, :apache, :iis, :nginx,
288
+ :tomcat, :asp, :aspx, :jsp, :perl, :php, :python, :ruby, :rack,
289
+ :sybase, :frontbase, :ingres, :hsqldb, :access, :jetty].sort
289
290
  end
290
291
  end
291
292
 
@@ -0,0 +1,25 @@
1
+ require 'spec_helper'
2
+
3
+ describe name_from_filename do
4
+ include_examples 'module'
5
+
6
+ def self.targets
7
+ %w(Unix Windows Tomcat PHP Perl)
8
+ end
9
+
10
+ def self.elements
11
+ [ Element::FORM, Element::LINK, Element::COOKIE, Element::HEADER ]
12
+ end
13
+
14
+ def issue_count_per_target
15
+ {
16
+ unix: 8,
17
+ windows: 24,
18
+ tomcat: 4,
19
+ php: 36,
20
+ perl: 36
21
+ }
22
+ end
23
+
24
+ easy_test
25
+ end
@@ -13,9 +13,9 @@ describe name_from_filename do
13
13
 
14
14
  def issue_count_per_target
15
15
  {
16
- unix: 64,
17
- windows: 96,
18
- tomcat: 12
16
+ unix: 56,
17
+ windows: 84,
18
+ tomcat: 6
19
19
  }
20
20
  end
21
21
 
@@ -4,7 +4,8 @@ describe name_from_filename do
4
4
  include_examples 'module'
5
5
 
6
6
  def self.targets
7
- %w(Oracle ColdFusion InterBase PostgreSQL MySQL MSSQL EMC SQLite DB2 Informix)
7
+ %w(Oracle ColdFusion InterBase PostgreSQL MySQL MSSQL EMC
8
+ SQLite DB2 Informix Firebird MaxDB Sybase Frontbase Ingres HSQLDB)
8
9
  end
9
10
 
10
11
  def self.elements
@@ -0,0 +1,19 @@
1
+ require 'spec_helper'
2
+
3
+ describe name_from_filename do
4
+ include_examples 'module'
5
+
6
+ def self.targets
7
+ %w(Generic)
8
+ end
9
+
10
+ def self.elements
11
+ [ Element::SERVER ]
12
+ end
13
+
14
+ def issue_count
15
+ 1
16
+ end
17
+
18
+ easy_test
19
+ end
@@ -0,0 +1,22 @@
1
+ require 'spec_helper'
2
+
3
+ describe name_from_filename do
4
+ include_examples 'path_extractor'
5
+
6
+ def results
7
+ [
8
+ '/stuff/here.php',
9
+ '/stuff/here'
10
+ ]
11
+ end
12
+
13
+ def text
14
+ <<-HTML
15
+ <!-- Blah blah: /stuff/here.php -->
16
+ Blah blah...
17
+ <!--Pre blah /stuff/here post blah -->
18
+ HTML
19
+ end
20
+
21
+ easy_test
22
+ end
@@ -14,9 +14,9 @@ describe name_from_filename do
14
14
  def text
15
15
  <<-HTML
16
16
  <meta http-equiv="refresh" content="5">
17
- <meta http-equiv="refresh" content="5;URL='test.com'">
18
- <meta http-equiv="refresh" content='0;URL="http://test.com"'>
19
- <meta http-equiv="refresh" content='0;URL=http://test2.com'>
17
+ <meta http-equiv="refreSH" content="5;URL='test.com'">
18
+ <meta http-equiv="Refresh" content='0;URL="http://test.com"'>
19
+ <meta http-equiv="refResh" content='0;URL=http://test2.com'>
20
20
  HTML
21
21
  end
22
22
 
@@ -0,0 +1,64 @@
1
+ require 'spec_helper'
2
+
3
+ describe name_from_filename do
4
+ include_examples 'plugin'
5
+
6
+ before ( :all ) do
7
+ options.url = url
8
+ end
9
+
10
+ def results
11
+ {
12
+ "#{url}" => {
13
+ "X-Xss-Protection" => "1; mode=block",
14
+ "X-Content-Type-Options" => "nosniff",
15
+ "X-Frame-Options" => "SAMEORIGIN"
16
+ },
17
+ "#{url}1" => {
18
+ "Weird" => "Value",
19
+ "X-Xss-Protection" => "1; mode=block",
20
+ "X-Content-Type-Options" => "nosniff",
21
+ "X-Frame-Options" => "SAMEORIGIN"
22
+ },
23
+ "#{url}2" => {
24
+ "Weird2" => "Value2",
25
+ "X-Xss-Protection" => "1; mode=block",
26
+ "X-Content-Type-Options" => "nosniff",
27
+ "X-Frame-Options" => "SAMEORIGIN"
28
+ }
29
+ }
30
+
31
+ end
32
+
33
+ easy_test
34
+
35
+ describe '.merge' do
36
+ it 'merges the results of different instances' do
37
+ results = [
38
+ {
39
+ "#{url}" => {
40
+ 'Name' => 'Value'
41
+ },
42
+ },
43
+ {
44
+ "#{url}" => {
45
+ 'Name2' => 'Value2'
46
+ },
47
+ "#{url}2" => {
48
+ 'Name22' => 'Value22'
49
+ },
50
+ },
51
+ ]
52
+
53
+ framework.plugins[name_from_filename].merge( results ).should == {
54
+ "#{url}" => {
55
+ "Name" => "Value",
56
+ "Name2" => "Value2"
57
+ },
58
+ "#{url}2" => {
59
+ "Name22" => "Value22"
60
+ }
61
+ }
62
+ end
63
+ end
64
+ end
@@ -0,0 +1,9 @@
1
+ [Thu Sep 12 19:37:37 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:37:37 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:37:37 2013] [status] Instance added to pool -- PID: 1760 - Port: 32177 - Owner: dispatcher
4
+ [Thu Sep 12 19:37:37 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:37:37 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:37:37 2013] [status] Node ready.
7
+ [Thu Sep 12 19:37:37 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:37:37 2013] [info] <empty>
9
+ [Thu Sep 12 19:37:37 2013] [status] Starting the server...
@@ -0,0 +1,21 @@
1
+ [Thu Sep 12 19:37:39 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:37:39 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:37:39 2013] [status] Instance added to pool -- PID: 1788 - Port: 14366 - Owner: dispatcher
4
+ [Thu Sep 12 19:37:39 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:37:39 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:37:39 2013] [status] Node ready.
7
+ [Thu Sep 12 19:37:39 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:37:39 2013] [info] <empty>
9
+ [Thu Sep 12 19:37:39 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:37:40 2013] [status] Instance dispatched -- PID: 1788 - Port: 14366 - Owner: unknown
11
+ [Thu Sep 12 19:37:40 2013] [status] Instance added to pool -- PID: 1796 - Port: 50521 - Owner: dispatcher
12
+ [Thu Sep 12 19:37:40 2013] [status] Instance dispatched -- PID: 1796 - Port: 50521 - Owner: unknown
13
+ [Thu Sep 12 19:37:40 2013] [status] Instance added to pool -- PID: 1800 - Port: 46834 - Owner: dispatcher
14
+ [Thu Sep 12 19:37:40 2013] [status] Instance dispatched -- PID: 1800 - Port: 46834 - Owner: unknown
15
+ [Thu Sep 12 19:37:40 2013] [status] Instance added to pool -- PID: 1804 - Port: 15213 - Owner: dispatcher
16
+ [Thu Sep 12 19:37:40 2013] [status] Instance dispatched -- PID: 1804 - Port: 15213 - Owner: unknown
17
+ [Thu Sep 12 19:37:40 2013] [status] Instance added to pool -- PID: 1808 - Port: 41753 - Owner: dispatcher
18
+ [Thu Sep 12 19:37:40 2013] [status] Instance dispatched -- PID: 1808 - Port: 41753 - Owner: unknown
19
+ [Thu Sep 12 19:37:40 2013] [status] Instance added to pool -- PID: 1812 - Port: 1737 - Owner: dispatcher
20
+ [Thu Sep 12 19:37:40 2013] [status] Instance dispatched -- PID: 1812 - Port: 1737 - Owner: unknown
21
+ [Thu Sep 12 19:37:40 2013] [status] Instance added to pool -- PID: 1816 - Port: 10005 - Owner: dispatcher
@@ -0,0 +1,9 @@
1
+ [Thu Sep 12 19:38:36 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:36 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:36 2013] [status] Instance added to pool -- PID: 1926 - Port: 54812 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:36 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:36 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:36 2013] [status] Node ready.
7
+ [Thu Sep 12 19:38:36 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:36 2013] [info] <empty>
9
+ [Thu Sep 12 19:38:36 2013] [status] Starting the server...
@@ -0,0 +1,19 @@
1
+ [Thu Sep 12 19:38:36 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:36 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:36 2013] [status] Instance added to pool -- PID: 1936 - Port: 25685 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:36 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:36 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:36 2013] [status] Node ready.
7
+ [Thu Sep 12 19:38:36 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:36 2013] [info] <empty>
9
+ [Thu Sep 12 19:38:36 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:38:36 2013] [status] Adding neighbour: localhost:59691
11
+ [Thu Sep 12 19:38:36 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:38:36 2013] [info] ---- localhost:59691
13
+ [Thu Sep 12 19:38:36 2013] [status] Advertising: localhost:59691
14
+ [Thu Sep 12 19:38:36 2013] [status] Adding neighbour: localhost:29898
15
+ [Thu Sep 12 19:38:36 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:38:36 2013] [info] ---- localhost:59691
17
+ [Thu Sep 12 19:38:36 2013] [info] ---- localhost:29898
18
+ [Thu Sep 12 19:38:36 2013] [status] Advertising: localhost:29898
19
+ [Thu Sep 12 19:38:36 2013] [info] ---- to: localhost:59691
@@ -0,0 +1,17 @@
1
+ [Thu Sep 12 19:38:36 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:36 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:36 2013] [status] Instance added to pool -- PID: 1949 - Port: 63580 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:36 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:36 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:36 2013] [status] Adding neighbour: localhost:5309
7
+ [Thu Sep 12 19:38:36 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:36 2013] [info] ---- localhost:5309
9
+ [Thu Sep 12 19:38:36 2013] [status] Advertising: localhost:5309
10
+ [Thu Sep 12 19:38:36 2013] [status] Node ready.
11
+ [Thu Sep 12 19:38:36 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:38:36 2013] [info] ---- localhost:5309
13
+ [Thu Sep 12 19:38:36 2013] [status] Starting the server...
14
+ [Thu Sep 12 19:38:36 2013] [status] Adding neighbour: localhost:29898
15
+ [Thu Sep 12 19:38:36 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:38:36 2013] [info] ---- localhost:5309
17
+ [Thu Sep 12 19:38:36 2013] [info] ---- localhost:29898
@@ -0,0 +1,13 @@
1
+ [Thu Sep 12 19:38:36 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:36 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:36 2013] [status] Instance added to pool -- PID: 1958 - Port: 36663 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:36 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:36 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:36 2013] [status] Adding neighbour: localhost:5309
7
+ [Thu Sep 12 19:38:36 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:36 2013] [info] ---- localhost:5309
9
+ [Thu Sep 12 19:38:36 2013] [status] Advertising: localhost:5309
10
+ [Thu Sep 12 19:38:36 2013] [status] Node ready.
11
+ [Thu Sep 12 19:38:36 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:38:36 2013] [info] ---- localhost:5309
13
+ [Thu Sep 12 19:38:36 2013] [status] Starting the server...
@@ -0,0 +1,9 @@
1
+ [Thu Sep 12 19:38:37 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:37 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:37 2013] [status] Instance added to pool -- PID: 1968 - Port: 65192 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:37 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:37 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:37 2013] [status] Node ready.
7
+ [Thu Sep 12 19:38:37 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:37 2013] [info] <empty>
9
+ [Thu Sep 12 19:38:37 2013] [status] Starting the server...
@@ -0,0 +1,9 @@
1
+ [Thu Sep 12 19:38:37 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:37 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:37 2013] [status] Instance added to pool -- PID: 1979 - Port: 38974 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:37 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:37 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:37 2013] [status] Node ready.
7
+ [Thu Sep 12 19:38:37 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:37 2013] [info] <empty>
9
+ [Thu Sep 12 19:38:37 2013] [status] Starting the server...
@@ -0,0 +1,11 @@
1
+ [Thu Sep 12 19:38:38 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:38 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:38 2013] [status] Instance added to pool -- PID: 1988 - Port: 63339 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:38 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:38 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:38 2013] [status] Node ready.
7
+ [Thu Sep 12 19:38:38 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:38 2013] [info] <empty>
9
+ [Thu Sep 12 19:38:38 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:38:38 2013] [status] Instance dispatched -- PID: 1988 - Port: 63339 - Owner: unknown
11
+ [Thu Sep 12 19:38:38 2013] [status] Instance added to pool -- PID: 1992 - Port: 46988 - Owner: dispatcher
@@ -0,0 +1,11 @@
1
+ [Thu Sep 12 19:38:38 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:38 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:38 2013] [status] Instance added to pool -- PID: 2002 - Port: 2473 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:38 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:38 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:38 2013] [status] Node ready.
7
+ [Thu Sep 12 19:38:38 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:38 2013] [info] <empty>
9
+ [Thu Sep 12 19:38:38 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:38:38 2013] [status] Instance dispatched -- PID: 2002 - Port: 2473 - Owner: blah
11
+ [Thu Sep 12 19:38:38 2013] [status] Instance added to pool -- PID: 2006 - Port: 47706 - Owner: dispatcher
@@ -0,0 +1,35 @@
1
+ [Thu Sep 12 19:38:39 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:39 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:39 2013] [status] Instance added to pool -- PID: 2015 - Port: 27109 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:39 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:39 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:39 2013] [status] Node ready.
7
+ [Thu Sep 12 19:38:39 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:39 2013] [info] <empty>
9
+ [Thu Sep 12 19:38:39 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:38:39 2013] [status] Instance dispatched -- PID: 2015 - Port: 27109 - Owner: unknown
11
+ [Thu Sep 12 19:38:39 2013] [status] Instance added to pool -- PID: 2019 - Port: 55919 - Owner: dispatcher
12
+ [Thu Sep 12 19:38:39 2013] [status] Instance dispatched -- PID: 2019 - Port: 55919 - Owner: unknown
13
+ [Thu Sep 12 19:38:39 2013] [status] Instance added to pool -- PID: 2023 - Port: 38933 - Owner: dispatcher
14
+ [Thu Sep 12 19:38:39 2013] [status] Instance dispatched -- PID: 2023 - Port: 38933 - Owner: unknown
15
+ [Thu Sep 12 19:38:39 2013] [status] Instance added to pool -- PID: 2027 - Port: 53935 - Owner: dispatcher
16
+ [Thu Sep 12 19:38:39 2013] [status] Instance dispatched -- PID: 2027 - Port: 53935 - Owner: unknown
17
+ [Thu Sep 12 19:38:39 2013] [status] Instance added to pool -- PID: 2031 - Port: 30511 - Owner: dispatcher
18
+ [Thu Sep 12 19:38:39 2013] [status] Instance dispatched -- PID: 2031 - Port: 30511 - Owner: unknown
19
+ [Thu Sep 12 19:38:39 2013] [status] Instance added to pool -- PID: 2036 - Port: 4452 - Owner: dispatcher
20
+ [Thu Sep 12 19:38:39 2013] [status] Instance dispatched -- PID: 2036 - Port: 4452 - Owner: unknown
21
+ [Thu Sep 12 19:38:39 2013] [status] Instance added to pool -- PID: 2040 - Port: 54235 - Owner: dispatcher
22
+ [Thu Sep 12 19:38:39 2013] [status] Instance dispatched -- PID: 2040 - Port: 54235 - Owner: unknown
23
+ [Thu Sep 12 19:38:39 2013] [status] Instance added to pool -- PID: 2044 - Port: 42218 - Owner: dispatcher
24
+ [Thu Sep 12 19:38:39 2013] [status] Instance dispatched -- PID: 2044 - Port: 42218 - Owner: unknown
25
+ [Thu Sep 12 19:38:39 2013] [status] Instance added to pool -- PID: 2048 - Port: 26352 - Owner: dispatcher
26
+ [Thu Sep 12 19:38:39 2013] [status] Instance dispatched -- PID: 2048 - Port: 26352 - Owner: unknown
27
+ [Thu Sep 12 19:38:39 2013] [status] Instance added to pool -- PID: 2052 - Port: 47012 - Owner: dispatcher
28
+ [Thu Sep 12 19:38:39 2013] [status] Instance dispatched -- PID: 2052 - Port: 47012 - Owner: unknown
29
+ [Thu Sep 12 19:38:39 2013] [status] Instance added to pool -- PID: 2056 - Port: 51209 - Owner: dispatcher
30
+ [Thu Sep 12 19:38:39 2013] [status] Instance dispatched -- PID: 2056 - Port: 51209 - Owner: unknown
31
+ [Thu Sep 12 19:38:39 2013] [status] Instance added to pool -- PID: 2060 - Port: 54649 - Owner: dispatcher
32
+ [Thu Sep 12 19:38:39 2013] [status] Instance dispatched -- PID: 2060 - Port: 54649 - Owner: unknown
33
+ [Thu Sep 12 19:38:39 2013] [status] Instance added to pool -- PID: 2064 - Port: 38146 - Owner: dispatcher
34
+ [Thu Sep 12 19:38:40 2013] [status] Instance dispatched -- PID: 2064 - Port: 38146 - Owner: unknown
35
+ [Thu Sep 12 19:38:40 2013] [status] Instance added to pool -- PID: 2068 - Port: 15179 - Owner: dispatcher