Update ns.py
This commit is contained in:
parent
e3f12ec9f5
commit
d41786672b
1 changed files with 4 additions and 4 deletions
|
@ -1,9 +1,9 @@
|
|||
from zzcore import StdAns
|
||||
import os
|
||||
from subprocess import Popen
|
||||
|
||||
class Ans(StdAns):
|
||||
def GETMSG(self):
|
||||
domain = 'www.qq.com'
|
||||
p = os.popen("nslookup " + domain)
|
||||
domain = self.raw_msg['message'][4:]
|
||||
p = Popen(["nslookup ",domain])
|
||||
msg = p.read()
|
||||
return msg
|
||||
return msg
|
||||
|
|
Loading…
Reference in a new issue