-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathundefined_attribute.py
More file actions
263 lines (167 loc) · 4.29 KB
/
undefined_attribute.py
File metadata and controls
263 lines (167 loc) · 4.29 KB
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
#Non existent class attribute
class Attributes(object):
exists1 = 1
def __init__(self):
self.exists2 = 2
def method(self):
self.may_exist = 3
def ok1(self):
print (self.exists1)
def ok2(self):
print (self.exists2)
def ok3(self):
self.local_exists = 4
print (self.local_exists)
def neca1(self):
print (self.not_exists)
def neca2(self):
print (self.may_exist)
#This is OK
class SetViaDict(object):
def __init__(self, x):
self.__dict__['x'] = x
def use_x(self):
return self.x
#This is also OK
class SetLocally(object):
def use_x(self):
self.x = 1
return self.x
class UsesSetattr(object):
def __init__(self, vals):
for k, v in vals.items():
setattr(self, k, v)
def use_values(self):
return self.x, self.y, self.z
#OK
class GuardedByHasAttr(object):
def ok4(self):
if hasattr(self, "x"):
return self.x
else:
return None
class HasGetAttr(object):
def __getattr__(self, name):
return name
def use_values(self):
return self.x, self.y, self.z
class HasGetAttribute(object):
def __getattribute__(self, name):
return name
def use_values(self):
return self.x, self.y, self.z
class DecoratedInit(object):
@decorator
def __init__(self):
self.x = x
def use(self):
return self.x
#This is not OK
class NoInit(object):
def use_y(self):
return self.y
#This is also OK
class SetLocally2(object):
def __init__(self):
pass
def use_y(self):
self.x = 0
self.y = 1
if cond:
print(self.y)
else:
return False
return self.y
#Guarded
class Guarded(object):
def __init__(self):
self.guard = False
def set_x(self):
self.guard = True
self.x = 1
def use_x(self):
if self.guard:
return self.x
else:
return 0
#ODASA-2034
class ODASA2034A(object):
def __init__(self, data):
d = self.__dict__
d['data'] = data
def use_data(self):
return self.data
class ODASA2034B(object):
def __init__(self, key, value):
d = self.__dict__
d[key] = value
def use_data(self):
return self.data
class Test5(object):
def readFromStream(stream):
word = stream.read(4)
if word == "true":
return BooleanObject(True)
elif word == "fals":
stream.read(1)
return BooleanObject(False)
assert False
readFromStream = staticmethod(readFromStream)
class Test1(object):
def __init__(self, application):
self.rabbitmq_channel = None
def queue_declared(frame): # called in callback
self.return_queue = frame.method.queue
def use_it(self):
return self.return_queue
#Check for FPs when overriding builtin methods
class PrintingDict(dict):
def pop(self):
print ("pop")
return dict.pop(self)
def __setitem__(self, key, value):
print("__setitem__")
return dict.__setitem__(self, key, value)
#Locally set by Call
#ODASA-4612
class WSGIContext(object):
def _app_call(self, env):
self._response_headers = None
class Odasa4612(WSGIContext):
def meth1(self, arg):
val = self._app_call(arg)
if self._response_headers is None:
self._response_headers = []
class OK9(object):
cls_attr = 0
def __init__(self):
self.attr = self.cls_attr
class Foo1(object):
pass
foo = Foo1()
setattr(foo, 'a', 1)
assert foo.a == 1
class Foo2(object):
pass
setattr(Foo2, 'a', 1)
assert Foo2.a == 1
# False positive observed at customer
class Customer1(object):
def x(self):
if not hasattr(self, "attr"):
return None
else:
return self.attr
#ODASA-4619
class Odasa4619a(object):
def call(self):
host = self.glance_host
port = self.glance_port
class Odasa4619b(object):
def call(self):
host = self.glance_host
port = self.glance_port
@decorator
def foo(self):
(x, self.glance_host,
self.glance_port, y) = bar()