gitextract_umcxirla/ ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── agent/ │ ├── bot/ │ │ ├── lib/ │ │ │ ├── __init__.py │ │ │ ├── file.py │ │ │ ├── info.py │ │ │ ├── keylogger.py │ │ │ ├── pathfinder.py │ │ │ ├── screen.py │ │ │ ├── session.py │ │ │ ├── sftp.py │ │ │ ├── shell.py │ │ │ ├── sscreenshare.py │ │ │ └── ssh.py │ │ ├── template_payload.py │ │ └── template_stager.py │ ├── builder.py │ ├── const.py │ └── lib/ │ ├── __init__.py │ ├── args.py │ └── file.py ├── lib/ │ ├── __init__.py │ ├── const.py │ ├── database.py │ └── server/ │ ├── __init__.py │ ├── lib/ │ │ ├── __init__.py │ │ ├── file.py │ │ ├── interface.py │ │ ├── session.py │ │ ├── sftp.py │ │ ├── shell.py │ │ ├── sscreenshare.py │ │ └── ssh.py │ └── server.py ├── linter.sh ├── loki.py ├── requirements.txt ├── static/ │ ├── css/ │ │ ├── control.css │ │ ├── home.css │ │ ├── index.css │ │ ├── intel.css │ │ ├── main.css │ │ └── settings.css │ ├── js/ │ │ ├── command.js │ │ ├── console.js │ │ ├── exception.js │ │ ├── home.js │ │ ├── index.js │ │ ├── settings.js │ │ ├── ssh.js │ │ └── terminal.js │ └── vendor/ │ └── bootstrap-4.4.1-dist/ │ ├── css/ │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-reboot.css │ │ └── bootstrap.css │ └── js/ │ ├── bootstrap.bundle.js │ └── bootstrap.js └── templates/ ├── base.html ├── home.html ├── index.html └── settings.html