epsylon / xsser

Cross Site "Scripter" (aka XSSer) is an automatic -framework- to detect, exploit and report XSS vulnerabilities in web-based applications.
https://xsser.03c8.net
1.17k stars 238 forks source link

self.instance.success_connection is int type, using len will throw exception #35

Closed buckxu closed 5 years ago

buckxu commented 5 years ago

https://github.com/epsylon/xsser/blob/9f196b7485cd79ffcd9fe4ac6e0a25420a381c5f/xsser/core/post/xml_exporter.py#L88

epsylon commented 5 years ago

Do you have a specific error report or is it a logical assumption knowing how it works in an abstract way?. If so, then we should change this; (str(((len(self.instance.success_connection) For this other: (str(((len(int((self.instance.success_connection)) And it would work. It is right?.