25 lines
516 B
Ruby
25 lines
516 B
Ruby
# -*- coding: binary -*-
|
|
|
|
module Rex
|
|
module Proto
|
|
module Mms
|
|
module Model
|
|
|
|
GATEWAYS = {
|
|
att:'mms.att.net', # AT&T Wireless
|
|
sprint: 'pm.sprint.com', # Sprint
|
|
tmobile: 'tmomail.net', # T-Mobile
|
|
verizon: 'vzwpix.com', # Verizon
|
|
google: 'msg.fi.google.com' # Google
|
|
}
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
require 'net/smtp'
|
|
require 'rex/proto/mms/model/smtp'
|
|
require 'rex/proto/mms/model/message'
|
|
require 'rex/proto/mms/client'
|