diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 9802102..f184c75 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -268,7 +268,7 @@ ## version 2.7.8 ----------------- -> 部分调整,ofx.py仅作为入口文件使用 +> 部分调整,Blen.py仅作为入口文件使用 ## version 2.7.9 diff --git a/docs/CODING.md b/docs/CODING.md index c995485..0ec8f25 100644 --- a/docs/CODING.md +++ b/docs/CODING.md @@ -1,4 +1,4 @@ -# oFx - POC编写规范及要求说明 +# Blen - POC编写规范及要求说明 ## 概述 @@ -54,7 +54,7 @@ _info = { """, # POC描述,写更新描述,没有就不写 "name" : "Demo", # 漏洞名称 - "VulnID" : "oFx-2021-0001", # 漏洞编号,以CVE为主,若无CVE,使用CNVD,若无CNVD,留空即可 + "VulnID" : "Blen-2021-0001", # 漏洞编号,以CVE为主,若无CVE,使用CNVD,若无CNVD,留空即可 "AppName" : "", # 漏洞应用名称 "AppVersion" : "", # 漏洞应用版本 "VulnDate" : "2021-06-09", # 漏洞公开的时间,不知道就写今天,格式:xxxx-xx-xx @@ -186,7 +186,7 @@ __________POC提交文件夹必须包含以下文件__________ 考虑到每写一个POC都要手动的创建如上目录有点麻烦,因此笔者提供了一个POC目录结构生成器,食用方式如下: ```sh -➜ oFx git:(main) ✗ python3 ofx.py --gen-poc +➜ Blen git:(main) ✗ python3 Blen.py --gen-poc _ ______ ___ | ___|_ __ @@ -194,7 +194,7 @@ __________POC提交文件夹必须包含以下文件__________ | (_) | _| > <__ _Author : jijue \___/|_| __/_/\_\__ __ __Version : 2.9.1 - #*#*# https://github.com/bigblackhat/oFx #*#*# + #*#*# https://github.com/openx-org/BLEN.git #*#*# _-___________________________________-_ @@ -212,7 +212,7 @@ ___________生成POC目录结构如下____________ |__ test_num_1w.txt |__ success_30.txt _________________________________________ -POC路径为/Users/jijue/Documents/GitHub/oFx/poc/Apache_Example/RCE/ +POC路径为/Users/jijue/Documents/GitHub/Blen/poc/Apache_Example/RCE/ ``` diff --git a/lib/__init__.pyc b/lib/__init__.pyc index b91f64f..efa223c 100644 Binary files a/lib/__init__.pyc and b/lib/__init__.pyc differ diff --git a/lib/core/__init__.py b/lib/core/__init__.py index a43e11e..176a18f 100644 --- a/lib/core/__init__.py +++ b/lib/core/__init__.py @@ -5,7 +5,7 @@ try: os.path.dirname(os.path.realpath(__file__)) except Exception: err_msg = "your system does not properly handdle non-Ascii path" - err_msg += "please move this ofx's directory to other location" + err_msg += "please move this Blen's directory to other location" exit(err_msg) from lib.core.data import root_path @@ -13,7 +13,7 @@ from lib.core.data import root_path def check_environment(): from lib.core.data import PYVERSION if PYVERSION.split(".")[0] == "2": - err_msg = "oFx does not support python2" + err_msg = "Blen does not support python2" exit(err_msg) check_environment() @@ -21,7 +21,7 @@ check_environment() def oFx_Refuse_Win(): from lib.core.data import IS_WIN if IS_WIN: - err_msg = "oFx does not support windows system, Kali Linux is recommended" + err_msg = "Blen does not support windows system, Kali Linux is recommended" exit(err_msg) # oFx_Refuse_Win() diff --git a/lib/core/__init__.pyc b/lib/core/__init__.pyc index 8c85422..55d82e8 100644 Binary files a/lib/core/__init__.pyc and b/lib/core/__init__.pyc differ diff --git a/lib/core/center.py b/lib/core/center.py index 6dfc1fd..7142efa 100644 --- a/lib/core/center.py +++ b/lib/core/center.py @@ -56,7 +56,7 @@ class oFxCenter(): def setproxy(self): """ - set the proxy for oFx running + set the proxy for Blen running return:None """ diff --git a/lib/core/common.py b/lib/core/common.py index 7907250..36650bf 100644 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -155,7 +155,7 @@ def get_latest_revision(): lv = None cp = configparser.ConfigParser() try: - req = requests.get("https://raw.githubusercontent.com/bigblackhat/oFx/master/info.ini",timeout = 15) + req = requests.get("https://raw.githubusercontent.com/openx-org/BLEN/master/info.ini",timeout = 15) cp.read_string(req.text) lv = cp["info"]["version"] @@ -247,9 +247,9 @@ def run(POC_Class,target,proxy=False,output=True,PocRemain="",Alive_mode = False pass def GetCommand(): - parser = argparse.ArgumentParser(description="oFx framewark of POC test", - usage="python3 ofx.py -f [target_path] / -u [url] -s [poc_path] --thread 50\n\ - python3 ofx.py --fofa-search") + parser = argparse.ArgumentParser(description="Blen framewark of POC test", + usage="python3 Blen.py -f [target_path] / -u [url] -s [poc_path] --thread 50\n\ + python3 Blen.py --fofa-search") searchengine = parser.add_argument_group("SearchEngine") searchengine.add_argument("--fofa-search",action="store_true",help="Fofa Search模式,该参数不需要跟值") diff --git a/lib/core/common.pyc b/lib/core/common.pyc index 2b39869..c992643 100644 Binary files a/lib/core/common.pyc and b/lib/core/common.pyc differ diff --git a/lib/core/htmloutput.py b/lib/core/htmloutput.py index b01b78c..26a99a2 100644 --- a/lib/core/htmloutput.py +++ b/lib/core/htmloutput.py @@ -25,7 +25,7 @@ html=""" -
oFx Report
+Blen Report
vuln list
@@ -86,7 +86,7 @@ html="""powered by oFx
+powered by Blen