forked from RUB-NDS/PRET
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcapabilities.py
279 lines (224 loc) · 11.6 KB
/
capabilities.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
# -*- coding: utf-8 -*-
# python standard library
import re, os, sys, urllib2, httplib, ssl
# local pret classes
from helper import output, item
# third party modules
try:
from pysnmp.entity.rfc3413.oneliner import cmdgen
except ImportError:
pass
def HTTPResponsePatch(func):
def inner(*args):
try:
return func(*args)
except httplib.IncompleteRead, e:
return e.partial
return inner
httplib.HTTPResponse.read = HTTPResponsePatch(httplib.HTTPResponse.read)
class printerModelDatabase():
#- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# get the path to the correct database of supported devices
def get_database_path(self, mode):
return os.path.join(os.path.join(os.path.dirname(os.path.realpath(__file__)), "db"), (mode + ".dat"))
#- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# open database of supported devices
def get_models(self, mode):
try:
with open(printerModelDatabase().get_database_path(mode), 'r') as f:
models = filter(None, (line.strip() for line in f))
return models
except IOError as e:
output().errmsg_("Cannot open file", e)
return []
return []
#- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# get models matching the supplied model, from the database of supported devices
def get_matching_models(self, mode, model):
#matches = filter(None, [re.findall(re.escape(m), model, re.I) for m in printerModelDatabase().get_models(mode)])
#print("Mode: "+mode)
#print("Model: "+model)
#print(matches)
#return matches
return filter(None, [re.findall(re.escape(m), model, re.I) for m in printerModelDatabase().get_models(mode)])
#- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# add model to database of supported devices
def add_model(self, mode, model):
if model and len(printerModelDatabase().get_matching_models(mode, model)) == 0 and len(model.strip()) > 0:
try:
with open(printerModelDatabase().get_database_path(mode), 'a') as f:
f.write("%s\n" % str(model))
return True
except IOError as e:
output().errmsg_("Cannot open file", e)
return False
else:
return False
class capabilities():
# Hold the supplied mode:
mode = ""
# Create an array for supported models
support = []
# Let's not be quick - printers be slow.
timeout = 5
# set pret.py directory
rundir = os.path.dirname(os.path.realpath(__file__)) + os.path.sep
'''
┌──────────────────────────────────────────────────────────┐
│ how to get printer's capabilities? │
├──────┬───────────────────────┬───────────────────────────┤
│ │ model (for db lookup) │ lang (ps/pjl/pcl support) │
├──────┼───────────────────────┼───────────────────────────┤
│ IPP │ printer-description │ printer-description │
│ SNMP │ hrDeviceDescr │ prtInterpreterDescription │
│ HTTP │ html-title │ - │
└──────┴───────────────────────┴───────────────────────────┘
'''
def __init__(self, args):
# skip this in unsafe mode
if not args.safe: return
# Save off the mode argument.
self.mode = args.mode
# set printer language
if self.mode == 'ps': lang = ["PS", "PostScript", "BR-Script", "KPDL"]
if self.mode == 'pjl': lang = ["PJL"]
if self.mode == 'pcl': lang = ["PCL"]
# get list of PostScript/PJL/PCL capable printers
self.models = self.get_models(self.mode + ".dat")
# try to get printer capabilities via IPP/SNMP/HTTP
self.ipp(args.target, lang)
self.http(args.target)
self.snmp(args.target, lang)
# feedback on PostScript/PJL/PCL support
self.feedback(self.support, lang[0])
# in safe mode, exit if unsupported
if args.safe and len(self.support) == 0:
print(os.linesep + "Quitting as we are in safe mode.")
sys.exit()
print("")
#- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# get capabilities via IPP
def ipp(self, host, lang):
# Define model and langs, from the start, as empty strings.
model = ""
langs = ""
sys.stdout.write("Checking for IPP support: ")
try:
# poor man's way to get printer info via IPP
body = ("\x01\x01\x00\x0b\x00\x01\xab\x10\x01G\x00\x12attributes-charset\x00\x05utf-8H"
+ "\x00\x1battributes-natural-language\x00\x02enE\x00\x0bprinter-uri\x00\x14ipp:"
+ "//localhost/ipp/D\x00\x14requested-attributes\x00\x13printer-description\x03")
request = urllib2.Request("http://" + host + ":631/", data=body, headers={'Content-type': 'application/ipp'})
# Manually doubling the timeout because this seems to take a while for the printers that it works on.
# Added SSL context that should avoid validating any printer certificates, just in case connection upgrading happens.
response = urllib2.urlopen(request, timeout=(self.timeout * 2), context=ssl._create_unverified_context()).read()
# get name of device using regex. Now checking if the regex is successful before assuming it was.
modelRegexResults = item(re.findall("MDL:(.+?);", response)) # e.g. MDL:hp LaserJet 4250
if modelRegexResults and modelRegexResults != "":
model = modelRegexResults
# get language support. Now checking if the regex is successful before assuming it was.
languageRegexResults = item(re.findall("CMD:(.+?);", response)) # e.g. CMD:PCL,PJL,POSTSCRIPT
if languageRegexResults and languageRegexResults != "":
langs = languageRegexResults
# Not really sure what the point of this line is - the data set doesn't really get used, making langs and lang pointless.
# It's only there to maintain the fact that some variant of PS was found, but it probably shouldn't mix with the other data.
languageCheck = filter(None, [re.findall(re.escape(pdl), langs, re.I) for pdl in lang])
if len(languageCheck) > 0:
self.support += languageCheck
if self.set_support(model):
output().green_("found [%s]" % (model))
else:
output().errmsg_("not found", "check successful but no data")
except Exception as e:
output().errmsg_("not found", e)
#- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# get capabilities via HTTP
def http(self, host):
sys.stdout.write("Checking for HTTP support: ")
try:
# Get the first 5k bytes of the printer config page and hope that the title is in it.
# Urllib was failing to get all of some config pages and would return a random section of content from the specified page...
# Added SSL context that should avoid validating any printer certificates, just in case connection upgrading happens.
html = urllib2.urlopen("http://" + host, timeout=self.timeout, context=ssl._create_unverified_context()).read(5000)
# I'm not entirely sure what this original comment meant, but Regex is the way to go.
titleMatchObj = re.search("<title.*?>\s*(?P<TitleGroup>[a-zA-Z0-9 \.-_/]+).*?</title>", html, re.I|re.M|re.S)
# Also more validation and better discovery.
if titleMatchObj:
# get name of device and check for language support
self.set_support(titleMatchObj.group("TitleGroup"))
output().green_("found [%s]" % (titleMatchObj.group("TitleGroup")))
else:
output().errmsg_("not found", "check successful but no data")
except Exception as e:
output().errmsg_("not found", e)
#- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# get capabilities via SNMP
def snmp(self, host, lang):
sys.stdout.write("Checking for SNMP support: ")
try:
# query device description and supported languages
desc, desc_oid = [], '1.3.6.1.2.1.25.3.2.1.3' # HOST-RESOURCES-MIB → hrDeviceDescr
pdls, pdls_oid = [], '1.3.6.1.2.1.43.15.1.1.5.1' # Printer-MIB → prtInterpreterDescription
error, error_status, idx, binds = cmdgen.CommandGenerator().nextCmd(
cmdgen.CommunityData('public', mpModel=0), cmdgen.UdpTransportTarget(
(host, 161), timeout=self.timeout, retries=0), desc_oid, pdls_oid)
# exit on error
if error: raise Exception(error)
if error_status: raise Exception(error_status.prettyPrint())
# parse response
for row in binds:
for key, val in row:
if desc_oid in str(key): desc.append(str(val))
if pdls_oid in str(key): pdls.append(str(val))
# get name of device
model = item(desc)
# get language support
langs = ','.join(pdls)
languageCheck = filter(None, [re.findall(re.escape(pdl), langs, re.I) for pdl in lang])
if len(languageCheck) > 0:
self.support += languageCheck
if self.set_support(model):
output().green_("found [%s]" % (model))
else:
output().errmsg_("not found", "check successful but no data")
except NameError:
output().errmsg_("not found", "pysnmp module not installed")
except Exception as e:
output().errmsg_("not found", e)
#- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# feedback on language support
def feedback(self, support, lang):
sys.stdout.write("Checking for %-21s" % (lang + " support: "))
if support: output().green_("found")
else: output().warning_("not found")
#- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# set language support
def set_support(self, model):
### model_stripped = re.sub(r'(\d|\s|-)[a-zA-Z]+$', '', model)
'''
┌───────────────────────────────────────────────────────┐
│ Experimental -- This might introduce false positives! │
├───────────────────────────────────────────────────────┤
│ The stripped down version of the model string removes │
│ endings like '-series', ' printer' (maybe localized), │
│ 'd' (duplex), 't' (tray), 'c' (color), 'n' (network). │
└───────────────────────────────────────────────────────┘
'''
if model and model != "":
returnValues = printerModelDatabase().get_matching_models(self.mode, model)
if len(returnValues) > 0:
self.support += returnValues
#print(self.support)
return True
return False
#- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# open database of supported devices
def get_models(self, file):
try:
with open(self.rundir + "db" + os.path.sep + file, 'r') as f:
models = filter(None, (line.strip() for line in f))
f.close()
return models
except IOError as e:
output().errmsg_("Cannot open file", e)
return []