You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import os,subprocess
ksubdomain_cmd = './ksubdomain1 -skip-wild -d wanmei.com'
p = subprocess.Popen(ksubdomain_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
while True:
output = p.stdout.readline()
if output == '' and p.poll() is not None:
break
if output:
print(output)
mac客户端 ksudomain最新版
在pycharm中通过os.system或者subprocess.Popen来调用ksubdomain会卡死,原因不明。
1.比如下面的trigger.py文件在pycharm卡死
一直保存在该界面 且无dns数据包发送 wireshark无法抓包。
当停止运行时偶尔会出现奇怪的dns请求
而单独在cmd下运行该文件可以成功发出dns数据包。
2.用分布式celery封装ksubdomain后,发现还是无法运行,测试机器ubuntu,centos
不清楚这个的原因,望能解惑。
The text was updated successfully, but these errors were encountered: