added __init__.py and modificate transfer.py and agents.py
This commit is contained in:
parent
1892756102
commit
1aa2453528
|
@ -0,0 +1,6 @@
|
|||
from .agents import *
|
||||
from .modules import *
|
||||
from .transfer import *
|
||||
from .discovery import *
|
||||
from .http import *
|
||||
from .general import *
|
|
@ -2,6 +2,7 @@ from datetime import datetime
|
|||
from subprocess import *
|
||||
import hashlib
|
||||
import sys
|
||||
from .modules import print_module,print_log_module
|
||||
|
||||
global_variables = {
|
||||
'temporal' : '/tmp',
|
||||
|
@ -104,4 +105,3 @@ def init_agent() :
|
|||
"agent_mode" : "1",
|
||||
}
|
||||
return agent
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@ import shutil
|
|||
import subprocess
|
||||
import os
|
||||
import sys
|
||||
from .agents import print_agent
|
||||
|
||||
global_variables = {
|
||||
'transfer_mode' : 'tentacle',
|
||||
|
|
Loading…
Reference in New Issue