The Burp Suite User Forum was discontinued on the 1st November 2024.

Burp Suite User Forum

For support requests, go to the Support Center. To discuss with other Burp users, head to our Discord page.

SUPPORT CENTER DISCORD

Getting Table Data from jTable

sourav | Last updated: Mar 29, 2022 07:53PM UTC

I am creating an extension and found some similar functionalities in other Extention as well but only in java not for Jython. I am creating a table with the custom model which changes the views based on the row selected to show the HTTP request same as the logger or proxy tab. I have a table with the last column as editable, I want to retrieve the data/value after any row is edited for the last column and also update the new value in the array/list. I am not able to find any ways to get the edited value data with the event listener in Jython. There are no similar examples available from google or any other extensions for Jython.

Hannah, PortSwigger Agent | Last updated: Mar 30, 2022 09:37AM UTC

Hi We have some example extensions in Java, Python and Ruby here: https://portswigger.net/burp/extender These include a "Logger" extension that displays requests and responses that have passed through Burp. Could you provide some more information about your editable column? Would this be like a "Comment" column, that you allow the user to supply input to?

sourav | Last updated: Mar 30, 2022 10:38AM UTC

Hi, I have implemented the similar function as logger example with same data table code. Issue is i have a column which is like comment column with default value is None I want to get the value of that comment column based on row selected if user has entered anything

Hannah, PortSwigger Agent | Last updated: Mar 31, 2022 06:54AM UTC