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
safe_yaml-1.0.0rc2 spec/support/exploitable_back_door.rb
puppet-3.4.0.rc2 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
safe_yaml-1.0.0rc1 spec/support/exploitable_back_door.rb
puppet-3.4.0.rc1 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.3.2 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.3.1 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.3.1.rc3 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.3.1.rc2 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.3.1.rc1 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
safe_yaml-0.9.7 spec/support/exploitable_back_door.rb
safe_yaml-0.9.6 spec/support/exploitable_back_door.rb
puppet-3.3.0 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.3.0.rc3 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.3.0.rc2 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.2.4 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-2.7.23 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
safe_yaml-0.9.5 spec/support/exploitable_back_door.rb
puppet-3.2.3 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
safe_yaml-0.9.4 spec/support/exploitable_back_door.rb
puppet-3.2.3.rc1 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb