Hello,
I wrote an extension that fails for one of my user throwing an exception:
---
Traceback (most recent call last):
File "E:\BurpSuite Settings and Extensions\Extenders\OurExtensions\Radar\main.py", line 220, in registerExtenderCallbacks
self.includeUI = BtnList("includes", self._callbacks, self)
File "E:\BurpSuite Settings and Extensions\Extenders\OurExtensions\Radar\main.py", line 85, in __init__
self._list = JList(self._data_list)
TypeError: javax.swing.JList(): 1st arg can't be coerced to java.lang.Object[], javax.swing.ListModel, java.util.Vector
---
self._data_list is initialized as a Python list with the [] constructor like so:
---
self._data_list = []
---
We used the diagnostic tool of Burp to check the difference in our configurations and they are the same. I double checked the Jython jar which is also the same.
He tried to restart Burp as well as unload/reload the extension but without success.
Do you have any ideas what I should look at or consider to solve this ?
Thank you,
↧