add znccreate.py
continuous-integration/drone/push Build is passing Details

This commit is contained in:
deepend 2023-07-16 14:53:59 +00:00
parent 97dc4cd90c
commit b307b67f8a
1 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,41 @@
#!/usr/bin/python3.9
# Script created/contributed by ~jmjl
import socket, ssl, json, time, sys
# Takes the first argument as a username and the second as the password.
def loadconf(cfgfile):
with open(cfgfile, 'r') as f:
cfg = json.load(f)
return cfg
def send(msg):
s.send(f"{msg}\n".encode('utf-8'))
cfg = loadconf("/root/.znc-conf/znc-config.json")
readbuffer=""
s = socket.socket()
if cfg['tls'] == 'yes':
ctx = ssl.create_default_context(purpose=ssl.Purpose.CLIENT_AUTH)
s = ctx.wrap_socket(s)
s.connect((cfg['srv'], int(cfg['port'])))
send("NICK bot")
send("USER bot 0 * :A bot to make users")
while True:
readbuffer = readbuffer + s.recv(2048).decode('utf-8')
temp = str.split(readbuffer, "\n")
readbuffer = temp.pop()
for line in temp:
line = str.rstrip(line)
line = str.split(line)
#print(' '.join(line))
if line[1] == '464':
send(f"PASS {cfg['user']}:{cfg['password']}")
if line[0][1:] == 'irc.znc.in' and line[1] == '001':
user = sys.argv[1]
pswd = sys.argv[2]
send(f"PRIVMSG *controlpanel :AddUser {user} {pswd}")
print(f"Maken znc user {user}")
sys.exit(0)