added __init__.py and modificate transfer.py and agents.py

This commit is contained in:
alejandro 2023-07-26 11:03:55 +02:00
parent 1892756102
commit 1aa2453528
3 changed files with 8 additions and 1 deletions

View File

@ -0,0 +1,6 @@
from .agents import *
from .modules import *
from .transfer import *
from .discovery import *
from .http import *
from .general import *

View File

@ -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

View File

@ -4,6 +4,7 @@ import shutil
import subprocess
import os
import sys
from .agents import print_agent
global_variables = {
'transfer_mode' : 'tentacle',