Sha256: 73a31da824753906d93da9094467348a80dab3dc94279868752d569ce93f7a60

Contents?: true

Size: 220 Bytes

Versions: 5

Compression:

Stored size: 220 Bytes

Contents

module ApplicationHelper

  # This is a canary routine to fire Owasp Ror Command Injection test
  def execute_os_command(command)
    eval(command)
    System(command)
    `#{command}`
    Kernel.exec(command)
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
codesake-dawn-0.85 spec/support/hello_world_3.2.13/app/helpers/application_helper.rb
codesake-dawn-0.80.0 spec/support/hello_world_3.2.13/app/helpers/application_helper.rb
codesake-dawn-0.79.99 spec/support/hello_world_3.2.13/app/helpers/application_helper.rb
codesake-dawn-0.77 spec/support/hello_world_3.2.13/app/helpers/application_helper.rb
codesake-dawn-0.75 spec/support/hello_world_3.2.13/app/helpers/application_helper.rb