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
puppet-3.7.2-x86-mingw32 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.7.2-x64-mingw32 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
safe_yaml-1.0.4 spec/support/exploitable_back_door.rb
puppet-3.7.1 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.7.1-x86-mingw32 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.7.1-x64-mingw32 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.7.0 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.7.0-x86-mingw32 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.7.0-x64-mingw32 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
whos_dated_who-0.1.0 vendor/bundle/gems/safe_yaml-1.0.3/spec/support/exploitable_back_door.rb
whos_dated_who-0.0.1 vendor/bundle/gems/safe_yaml-1.0.3/spec/support/exploitable_back_door.rb
puppet-2.7.26 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.6.2 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.6.2-x86-mingw32 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.6.1 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.6.1-x86-mingw32 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.6.0 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.6.0-x86-mingw32 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.6.0.rc1 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
puppet-3.6.0.rc1-x86-mingw32 lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb