Module: Ronin::Web::UserAgents::OS::Windows Private

Defined in:
lib/ronin/web/user_agents/os/windows.rb

Overview

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Defines information about the Windows Operating System (OS).

Constant Summary collapse

VERSIONS =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Common Windows versions.

{
  xp:    '5.2',
  vista: '6.0',
  7   => '6.1',
  8   => '6.2',
  8.1 => '6.3',
  10  => '10.0'
}
ARCHES =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Architectures supported by Windows.

{
  wow64:  'WOW64',
  win64:  'Win64; x64',
  x86_64: 'Win64; x64',

  nil => nil
}