Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 18.221.70.17
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
server /
panel /
mod /
test /
test_web_conf /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.py
5.7
KB
-rw-r--r--
test_access_restriction.py
3.78
KB
-rw-r--r--
test_config_mgr.py
2.35
KB
-rw-r--r--
test_default_site.py
2.11
KB
-rw-r--r--
test_dir_tool.py
3.49
KB
-rw-r--r--
test_dns_api.py
64
B
-rw-r--r--
test_domain_tool.py
2.32
KB
-rw-r--r--
test_ip_restrict.py
4.33
KB
-rw-r--r--
test_logmanager.py
4.86
KB
-rw-r--r--
test_proxy.py
3.4
KB
-rw-r--r--
test_redirect.py
2.57
KB
-rw-r--r--
test_referer.py
1.94
KB
-rw-r--r--
test_ssl.py
1.78
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : test_config_mgr.py
import sys if "/www/server/panel" not in sys.path: sys.path.insert(0, "/www/server/panel") from mod.test.test_web_conf import WebBaseTestcase, PREFIX, NGINX_CONFIG_CASE, APACHE_CONFIG_CASE from mod.base.web_conf import ConfigMgr class TestConfigMgr(WebBaseTestcase): def test_nginx_config(self): self.assertEqual(self.config_mgr.nginx_config(), NGINX_CONFIG_CASE, "nginx 配置文件读取错误") def test_apache_config(self): self.assertEqual(self.config_mgr.apache_config(), APACHE_CONFIG_CASE, "apache 配置文件读取错误") def test_save_nginx_config(self): self.config_mgr.save_nginx_config(NGINX_CONFIG_CASE + "\n\n") self.assertEqual(self.config_mgr.nginx_config(), NGINX_CONFIG_CASE + "\n\n", "nginx 配置文件保存错误") self.assertIsInstance(self.config_mgr.save_nginx_config("hshdgajdgg"), str, "nginx 配置文件保存错误") def test_save_apache_config(self): self.config_mgr.save_apache_config(APACHE_CONFIG_CASE + "\n\n") self.assertEqual(self.config_mgr.apache_config(), APACHE_CONFIG_CASE + "\n\n", "apache 配置文件保存错误") self.assertIsInstance(self.config_mgr.save_apache_config("hshdgajdgg"), str, "apache 配置文件保存错误") def test_history_list(self): print(self.config_mgr.history_list()) def test_history_conf(self): res = self.config_mgr.history_list() if len(res["nginx"]) > 0: print(self.config_mgr.history_conf(res["nginx"][0])) if len(res["apache"]) > 0: print(self.config_mgr.history_conf(res["apache"][0])) def setUp(self) -> None: self.reset_site_config() self.config_mgr = ConfigMgr(self.site_name, PREFIX) def runTest(self): self.change_env_to_nginx() self.test_nginx_config() self.test_save_nginx_config() self.test_history_list() self.test_history_conf() self.check_web_server_config() self.change_env_to_apache() self.test_apache_config() self.test_save_apache_config() self.test_history_list() self.test_history_conf() self.check_web_server_config() def tearDown(self): self.reset_site_config() if __name__ == '__main__': import unittest s = unittest.TestSuite() s.addTest(TestConfigMgr()) unittest.TextTestRunner().run(s)
Close