mirror of https://github.com/CIRCL/AIL-framework
fix: [libinjection] memory leak, disable module
parent
4529a76d13
commit
c20c41c50f
|
@ -265,8 +265,8 @@ function launching_scripts {
|
|||
sleep 0.1
|
||||
screen -S "Script_AIL" -X screen -t "SQLInjectionDetection" bash -c "cd ${AIL_BIN}/modules; ${ENV_PY} ./SQLInjectionDetection.py; read x"
|
||||
sleep 0.1
|
||||
screen -S "Script_AIL" -X screen -t "LibInjection" bash -c "cd ${AIL_BIN}/modules; ${ENV_PY} ./LibInjection.py; read x"
|
||||
sleep 0.1
|
||||
# screen -S "Script_AIL" -X screen -t "LibInjection" bash -c "cd ${AIL_BIN}/modules; ${ENV_PY} ./LibInjection.py; read x"
|
||||
# sleep 0.1
|
||||
# screen -S "Script_AIL" -X screen -t "Pasties" bash -c "cd ${AIL_BIN}/modules; ${ENV_PY} ./Pasties.py; read x"
|
||||
# sleep 0.1
|
||||
|
||||
|
|
|
@ -25,9 +25,6 @@ sys.path.append(os.environ['AIL_BIN'])
|
|||
# Import Project packages
|
||||
##################################
|
||||
from modules.abstract_module import AbstractModule
|
||||
from lib.ConfigLoader import ConfigLoader
|
||||
from lib.objects.Items import Item
|
||||
# from lib import Statistics
|
||||
|
||||
class LibInjection(AbstractModule):
|
||||
"""docstring for LibInjection module."""
|
||||
|
|
|
@ -99,9 +99,10 @@ publish = Tags
|
|||
subscribe = Urls
|
||||
publish = Url
|
||||
|
||||
[LibInjection]
|
||||
subscribe = Url
|
||||
publish = Tags
|
||||
# disabled
|
||||
#[LibInjection]
|
||||
#subscribe = Url
|
||||
#publish = Tags
|
||||
|
||||
[SQLInjectionDetection]
|
||||
subscribe = Url
|
||||
|
|
Loading…
Reference in New Issue