Skip to content

Commit

Permalink
Add parser
Browse files Browse the repository at this point in the history
  • Loading branch information
DEMON1A authored Sep 23, 2022
1 parent d9163d7 commit 80ce6aa
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions settings.example.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from os import path
from urllib.parse import urlparse

BASE_PATH = path.abspath(path.join(__file__, "../"))
DISCORD_TOKEN = "1234567890ABCD"
Expand All @@ -8,18 +9,19 @@
RECON_PATH = "/home/user/recon"
DEBUG = False
ADMIN_CHANNEL = 812515205082906641
ADMIN_CHANNEL = int(urlparse(str(ADMIN_CHANNEL)).path.split('/')[-1:][0])
DISABLE_NUCLEI_INFO = True
NUCLEI_WEBHOOK = "https://discord.com/api/webhooks/xyz"
COMMANDS_PREFIX = "."

TOOLS = {
"dirsearch":f"/{USER}/tools/dirsearch/",
"arjun":f"/{USER}/tools/Arjun/",
"gitgraber":f"/{USER}/tools/gitGraber/",
"findomain":f"/{USER}/tools/Finddomain/findomain-linux",
"nuclei-templates":f"/{USER}/nuclei-templates/",
"paramspider":f"{USER}/tools/ParamSpider/",
"smuggler":f"{USER}/tools/smuggler/"
"dirsearch":f"{BASE_PATH}/tools/dirsearch/",
"arjun":f"{BASE_PATH}/tools/Arjun/",
"gitgraber":f"{BASE_PATH}/tools/gitGraber/",
"findomain":f"{BASE_PATH}/tools/Finddomain/findomain-linux",
"nuclei-templates":f"{BASE_PATH}/nuclei-templates/",
"paramspider":f"{BASE_PATH}/tools/ParamSpider/",
"smuggler":f"{BASE_PATH}/tools/smuggler/"
}

RCE = [';' , '`' , '$' , '(' , ')' , '|' , '&' , '%', '\n', '<', '>']

0 comments on commit 80ce6aa

Please sign in to comment.