Sort methods
parent
47c0a3b4a7
commit
208420d741
|
@ -107,17 +107,17 @@ module Exploit::Remote::Udp
|
||||||
##
|
##
|
||||||
|
|
||||||
#
|
#
|
||||||
# Returns the target host
|
# Returns the local host for outgoing connections
|
||||||
#
|
#
|
||||||
def rhost
|
def chost
|
||||||
datastore['RHOST']
|
datastore['CHOST']
|
||||||
end
|
end
|
||||||
|
|
||||||
#
|
#
|
||||||
# Returns the remote port
|
# Returns the local port for outgoing connections
|
||||||
#
|
#
|
||||||
def rport
|
def cport
|
||||||
datastore['RPORT']
|
datastore['CPORT']
|
||||||
end
|
end
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -135,20 +135,19 @@ module Exploit::Remote::Udp
|
||||||
end
|
end
|
||||||
|
|
||||||
#
|
#
|
||||||
# Returns the local host for outgoing connections
|
# Returns the target host
|
||||||
#
|
#
|
||||||
def chost
|
def rhost
|
||||||
datastore['CHOST']
|
datastore['RHOST']
|
||||||
end
|
end
|
||||||
|
|
||||||
#
|
#
|
||||||
# Returns the local port for outgoing connections
|
# Returns the remote port
|
||||||
#
|
#
|
||||||
def cport
|
def rport
|
||||||
datastore['CPORT']
|
datastore['RPORT']
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
protected
|
protected
|
||||||
|
|
||||||
attr_accessor :udp_sock
|
attr_accessor :udp_sock
|
||||||
|
|
Loading…
Reference in New Issue