mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-07 13:56:01 +01:00
61 lines
1.4 KiB
Python
61 lines
1.4 KiB
Python
import sys
|
|
import subprocess
|
|
import shutil
|
|
import CyberCPLogFileWriter as logging
|
|
import argparse
|
|
import os
|
|
import shlex
|
|
import socket
|
|
|
|
|
|
|
|
class FirewallUtilities:
|
|
|
|
@staticmethod
|
|
def addRule(proto,port):
|
|
try:
|
|
command = 'firewall-cmd --add-port=' + port +'/' + proto +' --permanent'
|
|
|
|
cmd = shlex.split(command)
|
|
|
|
res = subprocess.call(cmd)
|
|
|
|
command = 'firewall-cmd --reload'
|
|
|
|
cmd = shlex.split(command)
|
|
|
|
res = subprocess.call(cmd)
|
|
|
|
except OSError, msg:
|
|
logging.CyberCPLogFileWriter.writeToFile(str(msg) + " [addRule]")
|
|
return 0
|
|
except ValueError, msg:
|
|
logging.CyberCPLogFileWriter.writeToFile(str(msg) + " [addRule]")
|
|
return 0
|
|
|
|
return 1
|
|
|
|
@staticmethod
|
|
def deleteRule(proto, port):
|
|
try:
|
|
command = 'firewall-cmd --remove-port=' + port + '/' + proto +' --permanent'
|
|
|
|
cmd = shlex.split(command)
|
|
|
|
res = subprocess.call(cmd)
|
|
|
|
command = 'firewall-cmd --reload'
|
|
|
|
cmd = shlex.split(command)
|
|
|
|
res = subprocess.call(cmd)
|
|
|
|
except OSError, msg:
|
|
logging.CyberCPLogFileWriter.writeToFile(str(msg) + " [deleteRule]")
|
|
return 0
|
|
except ValueError, msg:
|
|
logging.CyberCPLogFileWriter.writeToFile(str(msg) + " [deleteRule]")
|
|
return 0
|
|
|
|
return 1
|