redcar 0.3.7.1 → 0.3.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (246) hide show
  1. data/CHANGES +16 -0
  2. data/README.md +5 -0
  3. data/ROADMAP.md +7 -9
  4. data/Rakefile +55 -22
  5. data/lib/redcar.rb +12 -6
  6. data/lib/redcar/installer.rb +119 -44
  7. data/plugins/application/features/step_definitions/speedbar_steps.rb +62 -0
  8. data/plugins/application/features/step_definitions/tree_steps.rb +3 -3
  9. data/plugins/application/features/support/env.rb +2 -1
  10. data/plugins/application/lib/application/notebook.rb +53 -7
  11. data/plugins/application/lib/application/speedbar.rb +12 -0
  12. data/plugins/application/lib/application/tab.rb +16 -5
  13. data/plugins/application/lib/application/treebook.rb +21 -1
  14. data/plugins/application_swt/lib/application_swt.rb +12 -2
  15. data/plugins/application_swt/lib/application_swt/html_tab.rb +4 -0
  16. data/plugins/application_swt/lib/application_swt/notebook.rb +5 -3
  17. data/plugins/application_swt/lib/application_swt/speedbar.rb +15 -27
  18. data/plugins/application_swt/lib/application_swt/swt_wrapper.rb +1 -0
  19. data/plugins/application_swt/lib/application_swt/tab.rb +1 -0
  20. data/plugins/application_swt/lib/application_swt/treebook.rb +36 -8
  21. data/plugins/application_swt/lib/application_swt/window.rb +24 -18
  22. data/plugins/auto_completer/lib/auto_completer.rb +5 -20
  23. data/plugins/core/lib/core.rb +7 -4
  24. data/plugins/core/lib/core/observable_struct.rb +2 -2
  25. data/plugins/declarations/lib/declarations.rb +3 -17
  26. data/plugins/document_search/features/search.feature +163 -0
  27. data/plugins/document_search/features/support/env.rb +4 -0
  28. data/plugins/document_search/lib/document_search.rb +121 -0
  29. data/plugins/document_search/plugin.rb +8 -0
  30. data/plugins/edit_view/features/line_delimiter.feature +7 -0
  31. data/plugins/edit_view/features/step_definitions/editing_steps.rb +49 -1
  32. data/plugins/edit_view/features/step_definitions/tab_steps.rb +10 -11
  33. data/plugins/edit_view/features/switch_tabs.feature +61 -10
  34. data/plugins/edit_view/lib/edit_view.rb +4 -0
  35. data/plugins/edit_view/lib/edit_view/document.rb +56 -0
  36. data/plugins/edit_view/lib/edit_view/document/command.rb +1 -1
  37. data/plugins/edit_view/lib/edit_view/edit_tab.rb +0 -8
  38. data/plugins/edit_view_swt/lib/edit_view_swt.rb +4 -0
  39. data/plugins/html_view/lib/html_controller.rb +19 -1
  40. data/plugins/html_view/lib/html_view.rb +28 -1
  41. data/plugins/html_view/lib/html_view/html_tab.rb +10 -1
  42. data/plugins/plugin_manager_ui/lib/plugin_manager_ui.rb +3 -1
  43. data/plugins/project/features/open_directory_tree.feature +3 -3
  44. data/plugins/project/lib/project.rb +4 -6
  45. data/plugins/project/lib/project/commands.rb +17 -0
  46. data/plugins/project/lib/project/dir_controller.rb +2 -1
  47. data/plugins/project/lib/project/dir_mirror.rb +8 -0
  48. data/plugins/project/lib/project/manager.rb +2 -0
  49. data/plugins/project/plugin.rb +2 -1
  50. data/plugins/project/vendor/net-sftp/Manifest +55 -0
  51. data/plugins/project/vendor/net-sftp/Rakefile +30 -0
  52. data/plugins/project/vendor/net-sftp/lib/net/sftp.rb +70 -0
  53. data/plugins/project/vendor/net-sftp/lib/net/sftp/constants.rb +187 -0
  54. data/plugins/project/vendor/net-sftp/lib/net/sftp/errors.rb +39 -0
  55. data/plugins/project/vendor/net-sftp/lib/net/sftp/operations/dir.rb +93 -0
  56. data/plugins/project/vendor/net-sftp/lib/net/sftp/operations/download.rb +364 -0
  57. data/plugins/project/vendor/net-sftp/lib/net/sftp/operations/file.rb +176 -0
  58. data/plugins/project/vendor/net-sftp/lib/net/sftp/operations/file_factory.rb +60 -0
  59. data/plugins/project/vendor/net-sftp/lib/net/sftp/operations/upload.rb +387 -0
  60. data/plugins/project/vendor/net-sftp/lib/net/sftp/packet.rb +21 -0
  61. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol.rb +32 -0
  62. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/01/attributes.rb +315 -0
  63. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/01/base.rb +268 -0
  64. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/01/name.rb +43 -0
  65. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/02/base.rb +31 -0
  66. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/03/base.rb +35 -0
  67. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/04/attributes.rb +152 -0
  68. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/04/base.rb +94 -0
  69. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/04/name.rb +67 -0
  70. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/05/base.rb +66 -0
  71. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/06/attributes.rb +107 -0
  72. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/06/base.rb +63 -0
  73. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/base.rb +50 -0
  74. data/plugins/project/vendor/net-sftp/lib/net/sftp/request.rb +91 -0
  75. data/plugins/project/vendor/net-sftp/lib/net/sftp/response.rb +76 -0
  76. data/plugins/project/vendor/net-sftp/lib/net/sftp/session.rb +951 -0
  77. data/plugins/project/vendor/net-sftp/lib/net/sftp/version.rb +18 -0
  78. data/plugins/project/vendor/net-sftp/setup.rb +1331 -0
  79. data/plugins/project/vendor/net-sftp/test/common.rb +171 -0
  80. data/plugins/project/vendor/net-sftp/test/protocol/01/test_attributes.rb +97 -0
  81. data/plugins/project/vendor/net-sftp/test/protocol/01/test_base.rb +210 -0
  82. data/plugins/project/vendor/net-sftp/test/protocol/01/test_name.rb +27 -0
  83. data/plugins/project/vendor/net-sftp/test/protocol/02/test_base.rb +26 -0
  84. data/plugins/project/vendor/net-sftp/test/protocol/03/test_base.rb +27 -0
  85. data/plugins/project/vendor/net-sftp/test/protocol/04/test_attributes.rb +148 -0
  86. data/plugins/project/vendor/net-sftp/test/protocol/04/test_base.rb +74 -0
  87. data/plugins/project/vendor/net-sftp/test/protocol/04/test_name.rb +53 -0
  88. data/plugins/project/vendor/net-sftp/test/protocol/05/test_base.rb +62 -0
  89. data/plugins/project/vendor/net-sftp/test/protocol/06/test_attributes.rb +124 -0
  90. data/plugins/project/vendor/net-sftp/test/protocol/06/test_base.rb +51 -0
  91. data/plugins/project/vendor/net-sftp/test/protocol/test_base.rb +42 -0
  92. data/plugins/project/vendor/net-sftp/test/test_all.rb +7 -0
  93. data/plugins/project/vendor/net-sftp/test/test_dir.rb +47 -0
  94. data/plugins/project/vendor/net-sftp/test/test_download.rb +252 -0
  95. data/plugins/project/vendor/net-sftp/test/test_file.rb +159 -0
  96. data/plugins/project/vendor/net-sftp/test/test_file_factory.rb +48 -0
  97. data/plugins/project/vendor/net-sftp/test/test_packet.rb +9 -0
  98. data/plugins/project/vendor/net-sftp/test/test_protocol.rb +17 -0
  99. data/plugins/project/vendor/net-sftp/test/test_request.rb +71 -0
  100. data/plugins/project/vendor/net-sftp/test/test_response.rb +53 -0
  101. data/plugins/project/vendor/net-sftp/test/test_session.rb +741 -0
  102. data/plugins/project/vendor/net-sftp/test/test_upload.rb +219 -0
  103. data/plugins/project/vendor/net-ssh/Manifest +110 -0
  104. data/plugins/project/vendor/net-ssh/Rakefile +85 -0
  105. data/plugins/project/vendor/net-ssh/Rudyfile +96 -0
  106. data/plugins/project/vendor/net-ssh/lib/net/ssh.rb +215 -0
  107. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/agent.rb +179 -0
  108. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/constants.rb +18 -0
  109. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/key_manager.rb +193 -0
  110. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/methods/abstract.rb +60 -0
  111. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/methods/hostbased.rb +71 -0
  112. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/methods/keyboard_interactive.rb +66 -0
  113. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/methods/password.rb +39 -0
  114. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/methods/publickey.rb +92 -0
  115. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/pageant.rb +183 -0
  116. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/session.rb +134 -0
  117. data/plugins/project/vendor/net-ssh/lib/net/ssh/buffer.rb +340 -0
  118. data/plugins/project/vendor/net-ssh/lib/net/ssh/buffered_io.rb +198 -0
  119. data/plugins/project/vendor/net-ssh/lib/net/ssh/config.rb +202 -0
  120. data/plugins/project/vendor/net-ssh/lib/net/ssh/connection/channel.rb +630 -0
  121. data/plugins/project/vendor/net-ssh/lib/net/ssh/connection/constants.rb +33 -0
  122. data/plugins/project/vendor/net-ssh/lib/net/ssh/connection/session.rb +597 -0
  123. data/plugins/project/vendor/net-ssh/lib/net/ssh/connection/term.rb +178 -0
  124. data/plugins/project/vendor/net-ssh/lib/net/ssh/errors.rb +85 -0
  125. data/plugins/project/vendor/net-ssh/lib/net/ssh/key_factory.rb +102 -0
  126. data/plugins/project/vendor/net-ssh/lib/net/ssh/known_hosts.rb +129 -0
  127. data/plugins/project/vendor/net-ssh/lib/net/ssh/loggable.rb +61 -0
  128. data/plugins/project/vendor/net-ssh/lib/net/ssh/packet.rb +102 -0
  129. data/plugins/project/vendor/net-ssh/lib/net/ssh/prompt.rb +93 -0
  130. data/plugins/project/vendor/net-ssh/lib/net/ssh/proxy/command.rb +75 -0
  131. data/plugins/project/vendor/net-ssh/lib/net/ssh/proxy/errors.rb +14 -0
  132. data/plugins/project/vendor/net-ssh/lib/net/ssh/proxy/http.rb +94 -0
  133. data/plugins/project/vendor/net-ssh/lib/net/ssh/proxy/socks4.rb +70 -0
  134. data/plugins/project/vendor/net-ssh/lib/net/ssh/proxy/socks5.rb +142 -0
  135. data/plugins/project/vendor/net-ssh/lib/net/ssh/ruby_compat.rb +43 -0
  136. data/plugins/project/vendor/net-ssh/lib/net/ssh/service/forward.rb +288 -0
  137. data/plugins/project/vendor/net-ssh/lib/net/ssh/test.rb +89 -0
  138. data/plugins/project/vendor/net-ssh/lib/net/ssh/test/channel.rb +129 -0
  139. data/plugins/project/vendor/net-ssh/lib/net/ssh/test/extensions.rb +152 -0
  140. data/plugins/project/vendor/net-ssh/lib/net/ssh/test/kex.rb +44 -0
  141. data/plugins/project/vendor/net-ssh/lib/net/ssh/test/local_packet.rb +51 -0
  142. data/plugins/project/vendor/net-ssh/lib/net/ssh/test/packet.rb +81 -0
  143. data/plugins/project/vendor/net-ssh/lib/net/ssh/test/remote_packet.rb +38 -0
  144. data/plugins/project/vendor/net-ssh/lib/net/ssh/test/script.rb +157 -0
  145. data/plugins/project/vendor/net-ssh/lib/net/ssh/test/socket.rb +64 -0
  146. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/algorithms.rb +384 -0
  147. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/cipher_factory.rb +97 -0
  148. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/constants.rb +30 -0
  149. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/hmac.rb +31 -0
  150. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/hmac/abstract.rb +79 -0
  151. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/hmac/md5.rb +12 -0
  152. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/hmac/md5_96.rb +11 -0
  153. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/hmac/none.rb +15 -0
  154. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/hmac/sha1.rb +13 -0
  155. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/hmac/sha1_96.rb +11 -0
  156. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/identity_cipher.rb +55 -0
  157. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/kex.rb +13 -0
  158. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb +208 -0
  159. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb +77 -0
  160. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/openssl.rb +128 -0
  161. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/packet_stream.rb +235 -0
  162. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/server_version.rb +71 -0
  163. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/session.rb +276 -0
  164. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/state.rb +206 -0
  165. data/plugins/project/vendor/net-ssh/lib/net/ssh/verifiers/lenient.rb +30 -0
  166. data/plugins/project/vendor/net-ssh/lib/net/ssh/verifiers/null.rb +12 -0
  167. data/plugins/project/vendor/net-ssh/lib/net/ssh/verifiers/strict.rb +53 -0
  168. data/plugins/project/vendor/net-ssh/lib/net/ssh/version.rb +62 -0
  169. data/plugins/project/vendor/net-ssh/net-ssh.gemspec +138 -0
  170. data/plugins/project/vendor/net-ssh/setup.rb +1585 -0
  171. data/plugins/project/vendor/net-ssh/support/arcfour_check.rb +20 -0
  172. data/plugins/project/vendor/net-ssh/support/ssh_tunnel_bug.rb +65 -0
  173. data/plugins/project/vendor/net-ssh/test/README.txt +42 -0
  174. data/plugins/project/vendor/net-ssh/test/authentication/methods/common.rb +28 -0
  175. data/plugins/project/vendor/net-ssh/test/authentication/methods/test_abstract.rb +51 -0
  176. data/plugins/project/vendor/net-ssh/test/authentication/methods/test_hostbased.rb +114 -0
  177. data/plugins/project/vendor/net-ssh/test/authentication/methods/test_keyboard_interactive.rb +98 -0
  178. data/plugins/project/vendor/net-ssh/test/authentication/methods/test_password.rb +50 -0
  179. data/plugins/project/vendor/net-ssh/test/authentication/methods/test_publickey.rb +127 -0
  180. data/plugins/project/vendor/net-ssh/test/authentication/test_agent.rb +205 -0
  181. data/plugins/project/vendor/net-ssh/test/authentication/test_key_manager.rb +105 -0
  182. data/plugins/project/vendor/net-ssh/test/authentication/test_session.rb +93 -0
  183. data/plugins/project/vendor/net-ssh/test/common.rb +107 -0
  184. data/plugins/project/vendor/net-ssh/test/configs/eqsign +3 -0
  185. data/plugins/project/vendor/net-ssh/test/configs/exact_match +8 -0
  186. data/plugins/project/vendor/net-ssh/test/configs/host_plus +10 -0
  187. data/plugins/project/vendor/net-ssh/test/configs/multihost +4 -0
  188. data/plugins/project/vendor/net-ssh/test/configs/nohost +19 -0
  189. data/plugins/project/vendor/net-ssh/test/configs/numeric_host +4 -0
  190. data/plugins/project/vendor/net-ssh/test/configs/wild_cards +14 -0
  191. data/plugins/project/vendor/net-ssh/test/connection/test_channel.rb +467 -0
  192. data/plugins/project/vendor/net-ssh/test/connection/test_session.rb +488 -0
  193. data/plugins/project/vendor/net-ssh/test/manual/test_forward.rb +185 -0
  194. data/plugins/project/vendor/net-ssh/test/test_all.rb +9 -0
  195. data/plugins/project/vendor/net-ssh/test/test_buffer.rb +336 -0
  196. data/plugins/project/vendor/net-ssh/test/test_buffered_io.rb +63 -0
  197. data/plugins/project/vendor/net-ssh/test/test_config.rb +117 -0
  198. data/plugins/project/vendor/net-ssh/test/test_key_factory.rb +67 -0
  199. data/plugins/project/vendor/net-ssh/test/transport/hmac/test_md5.rb +39 -0
  200. data/plugins/project/vendor/net-ssh/test/transport/hmac/test_md5_96.rb +25 -0
  201. data/plugins/project/vendor/net-ssh/test/transport/hmac/test_none.rb +34 -0
  202. data/plugins/project/vendor/net-ssh/test/transport/hmac/test_sha1.rb +34 -0
  203. data/plugins/project/vendor/net-ssh/test/transport/hmac/test_sha1_96.rb +25 -0
  204. data/plugins/project/vendor/net-ssh/test/transport/kex/test_diffie_hellman_group1_sha1.rb +146 -0
  205. data/plugins/project/vendor/net-ssh/test/transport/kex/test_diffie_hellman_group_exchange_sha1.rb +92 -0
  206. data/plugins/project/vendor/net-ssh/test/transport/test_algorithms.rb +302 -0
  207. data/plugins/project/vendor/net-ssh/test/transport/test_cipher_factory.rb +213 -0
  208. data/plugins/project/vendor/net-ssh/test/transport/test_hmac.rb +34 -0
  209. data/plugins/project/vendor/net-ssh/test/transport/test_identity_cipher.rb +40 -0
  210. data/plugins/project/vendor/net-ssh/test/transport/test_packet_stream.rb +441 -0
  211. data/plugins/project/vendor/net-ssh/test/transport/test_server_version.rb +78 -0
  212. data/plugins/project/vendor/net-ssh/test/transport/test_session.rb +315 -0
  213. data/plugins/project/vendor/net-ssh/test/transport/test_state.rb +173 -0
  214. data/plugins/redcar/plugin.rb +3 -1
  215. data/plugins/redcar/redcar.rb +108 -121
  216. data/plugins/redcar_debug/lib/redcar_debug.rb +2 -0
  217. data/plugins/runnables/lib/runnables.rb +80 -23
  218. data/plugins/runnables/lib/runnables/command_output_controller.rb +102 -0
  219. data/plugins/runnables/lib/runnables/running_process_checker.rb +34 -0
  220. data/plugins/runnables/{plugin_no_load.rb → plugin.rb} +2 -1
  221. data/plugins/runnables/vendor/session-2.4.0/HISTORY +73 -0
  222. data/plugins/runnables/vendor/session-2.4.0/README +89 -0
  223. data/plugins/runnables/vendor/session-2.4.0/TODO +3 -0
  224. data/plugins/runnables/vendor/session-2.4.0/VERSION +1 -0
  225. data/plugins/runnables/vendor/session-2.4.0/gemspec.rb +22 -0
  226. data/plugins/runnables/vendor/session-2.4.0/install.rb +143 -0
  227. data/plugins/runnables/vendor/session-2.4.0/lib/session.rb +757 -0
  228. data/plugins/runnables/vendor/session-2.4.0/sample/bash.rb +60 -0
  229. data/plugins/runnables/vendor/session-2.4.0/sample/driver.rb +47 -0
  230. data/plugins/runnables/vendor/session-2.4.0/sample/session_idl.rb +25 -0
  231. data/plugins/runnables/vendor/session-2.4.0/sample/session_sh.rb +29 -0
  232. data/plugins/runnables/vendor/session-2.4.0/sample/sh0.rb +23 -0
  233. data/plugins/runnables/vendor/session-2.4.0/sample/stdin.rb +17 -0
  234. data/plugins/runnables/vendor/session-2.4.0/sample/threadtest.rb +42 -0
  235. data/plugins/runnables/vendor/session-2.4.0/session-2.4.0.gem +0 -0
  236. data/plugins/runnables/vendor/session-2.4.0/test/session.rb +227 -0
  237. data/plugins/runnables/views/command_output.html.erb +32 -0
  238. data/plugins/task_manager/lib/task_manager.rb +2 -0
  239. data/plugins/textmate/lib/textmate/plist.rb +1 -1
  240. data/plugins/textmate/lib/textmate/snippet.rb +1 -0
  241. data/plugins/tree/lib/tree/mirror.rb +8 -1
  242. data/plugins/tree_view_swt/lib/tree_view_swt.rb +29 -2
  243. metadata +191 -6
  244. data/plugins/declarations/TODO +0 -3
  245. data/plugins/redcar/spec/redcar/redcar_spec.rb +0 -70
  246. data/plugins/redcar/spec/spec_helper.rb +0 -4
@@ -0,0 +1,20 @@
1
+
2
+ require 'net/ssh'
3
+
4
+ # ARCFOUR CHECK
5
+ #
6
+ # Usage:
7
+ # $ ruby support/arcfour_check.rb
8
+ #
9
+ # Expected Output:
10
+ # arcfour128: [16, 8] OpenSSL::Cipher::Cipher
11
+ # arcfour256: [32, 8] OpenSSL::Cipher::Cipher
12
+ # arcfour512: [64, 8] OpenSSL::Cipher::Cipher
13
+
14
+ [['arcfour128', 16], ['arcfour256', 32], ['arcfour512', 64]].each do |cipher|
15
+ print "#{cipher[0]}: "
16
+ a = Net::SSH::Transport::CipherFactory.get_lengths(cipher[0])
17
+ b = Net::SSH::Transport::CipherFactory.get(cipher[0], :key => ([].fill('x', 0, cipher[1]).join))
18
+ puts "#{a} #{b.class}"
19
+ end
20
+
@@ -0,0 +1,65 @@
1
+ #!/usr/bin/ruby
2
+
3
+ # SSH TUNNEL CONNECTION BUG
4
+ # from: http://net-ssh.lighthouseapp.com/projects/36253/tickets/7-an-existing-connection-was-forcibly-closed-by-the-remote-host#ticket-7-3
5
+ #
6
+ # Steps to reproduce:
7
+ #
8
+ # * Start HTTP Proxy
9
+ # * If running debian in EC2:
10
+ # * apt-get install squid
11
+ # * Add the following to /etc/squid/squid.conf:
12
+ # acl localnet src 1.2.3.0/255.255.255.0
13
+ # http_access allow localnet
14
+ # icp_access allow localnet
15
+ # visible_hostname netsshtest
16
+ # * Start squid squid -N -d 1 -D
17
+ # * Run this script
18
+ # * Configure browser proxy to use localhost with LOCAL_PORT.
19
+ # * Load any page, wait for it to load fully. If the page loads
20
+ # correctly, move on. If not, something needs to be corrected.
21
+ # * Refresh the page several times. This should cause this
22
+ # script to failed with the error: "closed stream". You may
23
+ # need to try a few times.
24
+ #
25
+
26
+ require 'highline/import'
27
+ require 'net/ssh'
28
+
29
+ LOCAL_PORT = 8080
30
+ PROXY_PORT = 3128
31
+
32
+ host, user = *ARGV
33
+ abort "Usage: #{$0} host user" unless ARGV.size == 2
34
+
35
+ puts "Connecting to #{user}@#{host}..."
36
+ pass = ask("Password: ") { |q| q.echo = "*" }
37
+ puts "Configure your browser proxy to localhost:#{LOCAL_PORT}"
38
+
39
+ begin
40
+ session = Net::SSH.start(host, user, :password => pass)
41
+ session.forward.local(LOCAL_PORT, host, PROXY_PORT)
42
+ session.loop{true}
43
+ rescue => e
44
+ puts e.message
45
+ puts e.backtrace
46
+ end
47
+
48
+
49
+ __END__
50
+
51
+ $ ruby support/ssh_tunnel.rb host user
52
+ Connecting to user@host...
53
+ Password: ******
54
+ Configure your browser proxy to localhost:8080
55
+ closed stream
56
+ /usr/local/lib/ruby/gems/1.9.1/gems/net-ssh-2.0.15/lib/net/ssh/buffered_io.rb:99:in `send'
57
+ /usr/local/lib/ruby/gems/1.9.1/gems/net-ssh-2.0.15/lib/net/ssh/buffered_io.rb:99:in `send_pending'
58
+ /usr/local/lib/ruby/gems/1.9.1/gems/net-ssh-2.0.15/lib/net/ssh/connection/session.rb:236:in `block in postprocess'
59
+ /usr/local/lib/ruby/gems/1.9.1/gems/net-ssh-2.0.15/lib/net/ssh/connection/session.rb:235:in `each'
60
+ /usr/local/lib/ruby/gems/1.9.1/gems/net-ssh-2.0.15/lib/net/ssh/connection/session.rb:235:in `postprocess'
61
+ /usr/local/lib/ruby/gems/1.9.1/gems/net-ssh-2.0.15/lib/net/ssh/connection/session.rb:203:in `process'
62
+ /usr/local/lib/ruby/gems/1.9.1/gems/net-ssh-2.0.15/lib/net/ssh/connection/session.rb:161:in `block in loop'
63
+ /usr/local/lib/ruby/gems/1.9.1/gems/net-ssh-2.0.15/lib/net/ssh/connection/session.rb:161:in `loop'
64
+ /usr/local/lib/ruby/gems/1.9.1/gems/net-ssh-2.0.15/lib/net/ssh/connection/session.rb:161:in `loop'
65
+
@@ -0,0 +1,42 @@
1
+ 2010-03-16
2
+
3
+ RUNNING TESTS
4
+
5
+ Run the test suite from the net-ssh directory with the following command:
6
+
7
+ ruby -Ilib -Itest -rrubygems test/test_all.rb
8
+
9
+ Run a single test file like this:
10
+
11
+ ruby -Ilib -Itest -rrubygems test/transport/test_server_version.rb
12
+
13
+
14
+ EXPECTED RESULTS
15
+
16
+ * Ruby 1.8: all tests pass
17
+
18
+ * Ruby 1.9: all tests pass
19
+
20
+ * JRuby 1.4: 96% tests pass (242 tests, 554 assertions, 0 failures, 8 errors)
21
+
22
+
23
+ PORT FORWARDING TESTS
24
+
25
+ ruby -Ilib -Itest -rrubygems test/manual/test_forward.rb
26
+
27
+ test_forward.rb must be run separately from the test suite because
28
+ it requires authorizing your public SSH keys on you localhost.
29
+
30
+ If you already have keys you can do this:
31
+
32
+ cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
33
+
34
+ If you don't have keys see:
35
+
36
+ http://kimmo.suominen.com/docs/ssh/#ssh-keygen
37
+
38
+ You should now be able to login to your localhost with out
39
+ bring prompted for a password:
40
+
41
+ ssh localhost
42
+
@@ -0,0 +1,28 @@
1
+ module Authentication; module Methods
2
+
3
+ module Common
4
+ include Net::SSH::Authentication::Constants
5
+
6
+ private
7
+
8
+ def socket(options={})
9
+ @socket ||= stub("socket", :client_name => "me.ssh.test")
10
+ end
11
+
12
+ def transport(options={})
13
+ @transport ||= MockTransport.new(options.merge(:socket => socket))
14
+ end
15
+
16
+ def session(options={})
17
+ @session ||= begin
18
+ sess = stub("auth-session", :logger => nil, :transport => transport(options))
19
+ def sess.next_message
20
+ transport.next_message
21
+ end
22
+ sess
23
+ end
24
+ end
25
+
26
+ end
27
+
28
+ end; end
@@ -0,0 +1,51 @@
1
+ require 'common'
2
+ require 'authentication/methods/common'
3
+ require 'net/ssh/authentication/methods/abstract'
4
+
5
+ module Authentication; module Methods
6
+
7
+ class TestAbstract < Test::Unit::TestCase
8
+ include Common
9
+
10
+ def test_constructor_should_set_defaults
11
+ assert_nil subject.key_manager
12
+ end
13
+
14
+ def test_constructor_should_honor_options
15
+ assert_equal :manager, subject(:key_manager => :manager).key_manager
16
+ end
17
+
18
+ def test_session_id_should_query_session_id_from_key_exchange
19
+ transport.stubs(:algorithms).returns(stub("algorithms", :session_id => "abcxyz123"))
20
+ assert_equal "abcxyz123", subject.session_id
21
+ end
22
+
23
+ def test_send_message_should_delegate_to_transport
24
+ transport.expects(:send_message).with("abcxyz123")
25
+ subject.send_message("abcxyz123")
26
+ end
27
+
28
+ def test_userauth_request_should_build_well_formed_userauth_packet
29
+ packet = subject.userauth_request("jamis", "ssh-connection", "password")
30
+ assert_equal "\062\0\0\0\005jamis\0\0\0\016ssh-connection\0\0\0\010password", packet.to_s
31
+ end
32
+
33
+ def test_userauth_request_should_translate_extra_booleans_onto_end
34
+ packet = subject.userauth_request("jamis", "ssh-connection", "password", true, false)
35
+ assert_equal "\062\0\0\0\005jamis\0\0\0\016ssh-connection\0\0\0\010password\1\0", packet.to_s
36
+ end
37
+
38
+ def test_userauth_request_should_translate_extra_strings_onto_end
39
+ packet = subject.userauth_request("jamis", "ssh-connection", "password", "foo", "bar")
40
+ assert_equal "\062\0\0\0\005jamis\0\0\0\016ssh-connection\0\0\0\010password\0\0\0\3foo\0\0\0\3bar", packet.to_s
41
+ end
42
+
43
+ private
44
+
45
+ def subject(options={})
46
+ @subject ||= Net::SSH::Authentication::Methods::Abstract.new(session(options), options)
47
+ end
48
+
49
+ end
50
+
51
+ end; end
@@ -0,0 +1,114 @@
1
+ require 'common'
2
+ require 'net/ssh/authentication/methods/hostbased'
3
+ require 'authentication/methods/common'
4
+
5
+ module Authentication; module Methods
6
+
7
+ class TestHostbased < Test::Unit::TestCase
8
+ include Common
9
+
10
+ def test_authenticate_should_return_false_when_no_key_manager_has_been_set
11
+ assert_equal false, subject(:key_manager => nil).authenticate("ssh-connection", "jamis")
12
+ end
13
+
14
+ def test_authenticate_should_return_false_when_key_manager_has_no_keys
15
+ assert_equal false, subject(:keys => []).authenticate("ssh-connection", "jamis")
16
+ end
17
+
18
+ def test_authenticate_should_return_false_if_no_keys_can_authenticate
19
+ ENV.stubs(:[]).with('USER').returns(nil)
20
+ key_manager.expects(:sign).with(&signature_parameters(keys.first)).returns("sig-one")
21
+ key_manager.expects(:sign).with(&signature_parameters(keys.last)).returns("sig-two")
22
+
23
+ transport.expect do |t, packet|
24
+ assert_equal USERAUTH_REQUEST, packet.type
25
+ assert verify_userauth_request_packet(packet, keys.first)
26
+ assert_equal "sig-one", packet.read_string
27
+ t.return(USERAUTH_FAILURE, :string, "hostbased,password")
28
+
29
+ t.expect do |t2, packet2|
30
+ assert_equal USERAUTH_REQUEST, packet2.type
31
+ assert verify_userauth_request_packet(packet2, keys.last)
32
+ assert_equal "sig-two", packet2.read_string
33
+ t2.return(USERAUTH_FAILURE, :string, "hostbased,password")
34
+ end
35
+ end
36
+
37
+ assert_equal false, subject.authenticate("ssh-connection", "jamis")
38
+ end
39
+
40
+ def test_authenticate_should_return_true_if_any_key_can_authenticate
41
+ ENV.stubs(:[]).with('USER').returns(nil)
42
+ key_manager.expects(:sign).with(&signature_parameters(keys.first)).returns("sig-one")
43
+
44
+ transport.expect do |t, packet|
45
+ assert_equal USERAUTH_REQUEST, packet.type
46
+ assert verify_userauth_request_packet(packet, keys.first)
47
+ assert_equal "sig-one", packet.read_string
48
+ t.return(USERAUTH_SUCCESS)
49
+ end
50
+
51
+ assert subject.authenticate("ssh-connection", "jamis")
52
+ end
53
+
54
+ private
55
+
56
+ def signature_parameters(key)
57
+ Proc.new do |given_key, data|
58
+ next false unless given_key.to_blob == key.to_blob
59
+ buffer = Net::SSH::Buffer.new(data)
60
+ buffer.read_string == "abcxyz123" && # session-id
61
+ buffer.read_byte == USERAUTH_REQUEST && # type
62
+ verify_userauth_request_packet(buffer, key)
63
+ end
64
+ end
65
+
66
+ def verify_userauth_request_packet(packet, key)
67
+ packet.read_string == "jamis" && # user-name
68
+ packet.read_string == "ssh-connection" && # next service
69
+ packet.read_string == "hostbased" && # auth-method
70
+ packet.read_string == key.ssh_type && # key type
71
+ packet.read_buffer.read_key.to_blob == key.to_blob && # key
72
+ packet.read_string == "me.ssh.test." && # client hostname
73
+ packet.read_string == "jamis" # client username
74
+ end
75
+
76
+ @@keys = nil
77
+ def keys
78
+ @@keys ||= [OpenSSL::PKey::RSA.new(32), OpenSSL::PKey::DSA.new(32)]
79
+ end
80
+
81
+ def key_manager(options={})
82
+ @key_manager ||= begin
83
+ manager = stub("key_manager")
84
+ manager.stubs(:each_identity).multiple_yields(*(options[:keys] || keys))
85
+ manager
86
+ end
87
+ end
88
+
89
+ def subject(options={})
90
+ options[:key_manager] = key_manager(options) unless options.key?(:key_manager)
91
+ @subject ||= Net::SSH::Authentication::Methods::Hostbased.new(session(options), options)
92
+ end
93
+
94
+ def socket(options={})
95
+ @socket ||= stub("socket", :client_name => "me.ssh.test")
96
+ end
97
+
98
+ def transport(options={})
99
+ @transport ||= MockTransport.new(options.merge(:socket => socket))
100
+ end
101
+
102
+ def session(options={})
103
+ @session ||= begin
104
+ sess = stub("auth-session", :logger => nil, :transport => transport(options))
105
+ def sess.next_message
106
+ transport.next_message
107
+ end
108
+ sess
109
+ end
110
+ end
111
+
112
+ end
113
+
114
+ end; end
@@ -0,0 +1,98 @@
1
+ require 'common'
2
+ require 'net/ssh/authentication/methods/keyboard_interactive'
3
+ require 'authentication/methods/common'
4
+
5
+ module Authentication; module Methods
6
+
7
+ class TestKeyboardInteractive < Test::Unit::TestCase
8
+ include Common
9
+
10
+ USERAUTH_INFO_REQUEST = 60
11
+ USERAUTH_INFO_RESPONSE = 61
12
+
13
+ def test_authenticate_should_be_false_when_server_does_not_support_this_method
14
+ transport.expect do |t,packet|
15
+ assert_equal USERAUTH_REQUEST, packet.type
16
+ assert_equal "jamis", packet.read_string
17
+ assert_equal "ssh-connection", packet.read_string
18
+ assert_equal "keyboard-interactive", packet.read_string
19
+ assert_equal "", packet.read_string # language tags
20
+ assert_equal "", packet.read_string # submethods
21
+
22
+ t.return(USERAUTH_FAILURE, :string, "password")
23
+ end
24
+
25
+ assert_equal false, subject.authenticate("ssh-connection", "jamis")
26
+ end
27
+
28
+ def test_authenticate_should_be_false_if_given_password_is_not_accepted
29
+ transport.expect do |t,packet|
30
+ assert_equal USERAUTH_REQUEST, packet.type
31
+ t.return(USERAUTH_INFO_REQUEST, :string, "", :string, "", :string, "", :long, 1, :string, "Password:", :bool, false)
32
+ t.expect do |t2,packet2|
33
+ assert_equal USERAUTH_INFO_RESPONSE, packet2.type
34
+ assert_equal 1, packet2.read_long
35
+ assert_equal "the-password", packet2.read_string
36
+ t2.return(USERAUTH_FAILURE, :string, "publickey")
37
+ end
38
+ end
39
+
40
+ assert_equal false, subject.authenticate("ssh-connection", "jamis", "the-password")
41
+ end
42
+
43
+ def test_authenticate_should_be_true_if_given_password_is_accepted
44
+ transport.expect do |t,packet|
45
+ assert_equal USERAUTH_REQUEST, packet.type
46
+ t.return(USERAUTH_INFO_REQUEST, :string, "", :string, "", :string, "", :long, 1, :string, "Password:", :bool, false)
47
+ t.expect do |t2,packet2|
48
+ assert_equal USERAUTH_INFO_RESPONSE, packet2.type
49
+ t2.return(USERAUTH_SUCCESS)
50
+ end
51
+ end
52
+
53
+ assert subject.authenticate("ssh-connection", "jamis", "the-password")
54
+ end
55
+
56
+ def test_authenticate_should_duplicate_password_as_needed_to_fill_request
57
+ transport.expect do |t,packet|
58
+ assert_equal USERAUTH_REQUEST, packet.type
59
+ t.return(USERAUTH_INFO_REQUEST, :string, "", :string, "", :string, "", :long, 2, :string, "Password:", :bool, false, :string, "Again:", :bool, false)
60
+ t.expect do |t2,packet2|
61
+ assert_equal USERAUTH_INFO_RESPONSE, packet2.type
62
+ assert_equal 2, packet2.read_long
63
+ assert_equal "the-password", packet2.read_string
64
+ assert_equal "the-password", packet2.read_string
65
+ t2.return(USERAUTH_SUCCESS)
66
+ end
67
+ end
68
+
69
+ assert subject.authenticate("ssh-connection", "jamis", "the-password")
70
+ end
71
+
72
+ def test_authenticate_should_prompt_for_input_when_password_is_not_given
73
+ subject.expects(:prompt).with("Name:", true).returns("name")
74
+ subject.expects(:prompt).with("Password:", false).returns("password")
75
+
76
+ transport.expect do |t,packet|
77
+ assert_equal USERAUTH_REQUEST, packet.type
78
+ t.return(USERAUTH_INFO_REQUEST, :string, "", :string, "", :string, "", :long, 2, :string, "Name:", :bool, true, :string, "Password:", :bool, false)
79
+ t.expect do |t2,packet2|
80
+ assert_equal USERAUTH_INFO_RESPONSE, packet2.type
81
+ assert_equal 2, packet2.read_long
82
+ assert_equal "name", packet2.read_string
83
+ assert_equal "password", packet2.read_string
84
+ t2.return(USERAUTH_SUCCESS)
85
+ end
86
+ end
87
+
88
+ assert subject.authenticate("ssh-connection", "jamis", nil)
89
+ end
90
+
91
+ private
92
+
93
+ def subject(options={})
94
+ @subject ||= Net::SSH::Authentication::Methods::KeyboardInteractive.new(session(options), options)
95
+ end
96
+ end
97
+
98
+ end; end
@@ -0,0 +1,50 @@
1
+ require 'common'
2
+ require 'net/ssh/authentication/methods/password'
3
+ require 'authentication/methods/common'
4
+
5
+ module Authentication; module Methods
6
+
7
+ class TestPassword < Test::Unit::TestCase
8
+ include Common
9
+
10
+ def test_authenticate_when_password_is_unacceptible_should_return_false
11
+ transport.expect do |t,packet|
12
+ assert_equal USERAUTH_REQUEST, packet.type
13
+ assert_equal "jamis", packet.read_string
14
+ assert_equal "ssh-connection", packet.read_string
15
+ assert_equal "password", packet.read_string
16
+ assert_equal false, packet.read_bool
17
+ assert_equal "the-password", packet.read_string
18
+
19
+ t.return(USERAUTH_FAILURE, :string, "publickey")
20
+ end
21
+
22
+ assert !subject.authenticate("ssh-connection", "jamis", "the-password")
23
+ end
24
+
25
+ def test_authenticate_when_password_is_acceptible_should_return_true
26
+ transport.expect do |t,packet|
27
+ assert_equal USERAUTH_REQUEST, packet.type
28
+ t.return(USERAUTH_SUCCESS)
29
+ end
30
+
31
+ assert subject.authenticate("ssh-connection", "jamis", "the-password")
32
+ end
33
+
34
+ def test_authenticate_should_return_false_if_password_change_request_is_received
35
+ transport.expect do |t,packet|
36
+ assert_equal USERAUTH_REQUEST, packet.type
37
+ t.return(USERAUTH_PASSWD_CHANGEREQ, :string, "Change your password:", :string, "")
38
+ end
39
+
40
+ assert !subject.authenticate("ssh-connection", "jamis", "the-password")
41
+ end
42
+
43
+ private
44
+
45
+ def subject(options={})
46
+ @subject ||= Net::SSH::Authentication::Methods::Password.new(session(options), options)
47
+ end
48
+ end
49
+
50
+ end; end