/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/metasploit/framework/api/version.rb
16 строк
486 B
h00die
spelling fixes for lib folder
06 янв 2024, 23:54
06 янв 2024, 23:54
6a85185
Код
Авторство
О чём код?
module Metasploit module Framework module API # @note This is a lie. The API version is not semantically version and it's version has actually never changed # even though API changes have occurred. DO NOT base compatibility on this version. module Version MAJOR = 1 MINOR = 0 PATCH = 0 end VERSION = "#{Version::MAJOR}.#{Version::MINOR}.#{Version::PATCH}" GEM_VERSION = Rex::Version.new(VERSION) end end end