mr-m0nst3r / Burpy

A plugin that allows you execute python and get return to BurpSuite.
MIT License
392 stars 51 forks source link

无法kill服务 #37

Open 1998-zhang opened 5 months ago

1998-zhang commented 5 months ago

请教一个问题,服务可以正常启动,但是不能关闭,这是为什么 image

1998-zhang commented 5 months ago

自己写的脚本,怎么调试,print 怎么输出呢?

Judong0x0 commented 5 months ago

你JRE版本太高了 换成17就可以。

qianxiao996 commented 5 months ago

thred.stop()方法高版本jdk已弃用。更换变量+ thread.interrupt()的形式中断线程。

mr-m0nst3r commented 5 months ago

thred.stop()方法高版本jdk已弃用。更换变量+ thread.interrupt()的形式中断线程。

大佬是否方便提个PR?

mr-m0nst3r commented 5 months ago

自己写的脚本,怎么调试,print 怎么输出呢?

python怎么写就怎么写。 print的东西会在下方console那里打印出来的

Zhou-Sk commented 5 months ago

thred.stop()方法高版本jdk已弃用。更换变量+thread.interrupt()的形式中断线程。

大佬是否方便提个PR?

我自己打了包,这种写可以修复 image

Zhou-Sk commented 5 months ago

thred.stop()方法高版本jdk已弃用。更换变量+thread.interrupt()的形式中断线程。

大佬是否方便提个PR?

我自己打了包,这种写可以修复 image

image