Skip to content

Commit

Permalink
Checking for 'value' != None before creating IWbemClass properties (#…
Browse files Browse the repository at this point in the history
…1854)

* Checking for 'value' != None before creating IWbemClass properties

* wmiquery - printing exception stack trace only if error is not 'S_FALSE'
  • Loading branch information
gabrielg5 authored Dec 5, 2024
1 parent af51dfd commit ec32e73
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions examples/wmiquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@ def printReply(self, iEnum):
print('%s |' % record[key]['value'], end=' ')
print()
except Exception as e:
if logging.getLogger().level == logging.DEBUG:
import traceback
traceback.print_exc()
if str(e).find('S_FALSE') < 0:
if logging.getLogger().level == logging.DEBUG:
import traceback
traceback.print_exc()
raise
else:
break
Expand Down
2 changes: 1 addition & 1 deletion impacket/dcerpc/v5/dcom/wmi.py
Original file line number Diff line number Diff line change
Expand Up @@ -2613,7 +2613,7 @@ def SpawnInstance(self):
def createProperties(self, properties):
for property in properties:
# Do we have an object property?
if properties[property]['type'] == CIM_TYPE_ENUM.CIM_TYPE_OBJECT.value:
if properties[property]['type'] == CIM_TYPE_ENUM.CIM_TYPE_OBJECT.value and properties[property]['value'] != None:
# Yes.. let's create an Object for it too
objRef = OBJREF_CUSTOM()
objRef['iid'] = self._iid
Expand Down

0 comments on commit ec32e73

Please sign in to comment.