Sha256: 7f240c09e1db942463395cb70e5ed1de3d3d72166426bc638e3b62415133c837

Contents?: true

Size: 657 Bytes

Versions: 224

Compression:

Stored size: 657 Bytes

Contents

class ExploitableBackDoor
  def exploited?
    @exploited_through_setter || @exploited_through_init_with || @exploited_through_ivars
  end

  def exploited_through_setter?
    @exploited_through_setter
  end

  def exploited_through_init_with?
    @exploited_through_init_with
  end

  def exploited_through_ivars?
    self.instance_variables.any?
  end

  def init_with(command)
    # Note: this is how bad this COULD be.
    # system("#{command}")
    @exploited_through_init_with = true
  end

  def []=(command, arguments)
    # Note: this is how bad this COULD be.
    # system("#{command} #{arguments}")
    @exploited_through_setter = true
  end
end

Version data entries

224 entries across 216 versions & 17 rubygems

Version Path
vagrant-unbundled-2.1.2.0 vendor/bundle/ruby/2.3.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
cloudsmith-api-0.30.7 vendor/bundle/ruby/2.3.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
color_me_shop-1.0.0 vendor/bundle/ruby/2.5.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
brakeman-4.3.1 bundle/ruby/2.5.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
vagrant-unbundled-2.1.1.0 vendor/bundle/ruby/2.5.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
brakeman-4.3.0 bundle/ruby/2.5.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
vagrant-unbundled-2.0.4.0 vendor/bundle/ruby/2.5.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
vagrant-unbundled-2.0.3.0 vendor/bundle/ruby/2.5.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
brakeman-4.2.1 bundle/ruby/2.5.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
brakeman-4.2.0 bundle/ruby/2.3.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
vagrant-unbundled-2.0.2.0 vendor/bundle/ruby/2.4.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
vagrant-unbundled-2.0.2.0 vendor/bundle/ruby/2.5.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
brakeman-4.1.1 bundle/ruby/2.3.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
brakeman-4.1.0 bundle/ruby/2.3.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
vagrant-unbundled-2.0.1.0 vendor/bundle/ruby/2.4.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
cloudsmith-api-0.21.4 vendor/bundle/ruby/2.3.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
logstash-output-icinga-1.1.0 vendor/jruby/1.9/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
logstash-output-icinga-1.1.0 vendor/jruby/2.3.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
brakeman-4.0.1 bundle/ruby/2.3.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb
brakeman-4.0.1.pre1 bundle/ruby/2.3.0/gems/safe_yaml-1.0.4/spec/support/exploitable_back_door.rb