CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/rex/proto/mms/model.rb
Views: 11704
1
# -*- coding: binary -*-
2
3
module Rex
4
module Proto
5
module Mms
6
module Model
7
8
GATEWAYS = {
9
att:'mms.att.net', # AT&T Wireless
10
sprint: 'pm.sprint.com', # Sprint
11
tmobile: 'tmomail.net', # T-Mobile
12
verizon: 'vzwpix.com', # Verizon
13
google: 'msg.fi.google.com' # Google
14
}
15
16
end
17
end
18
end
19
end
20
21
require 'net/smtp'
22
23