Code Monkey home page Code Monkey logo

loki's Introduction

Loki

Loki is a simple Remote Access Tool.
Loki uses RSA-2048 with AES-256 to keep your communication with infected machines secure.

Version Python Discord Donate

Disclaimer

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Loki, just like all my other repos is stricly for educational purposes.

Requirements

  • Python 3.6.x | 3.7.x | 3.8.x

Server tested on

  • Windows 10
  • Kali Linux

Bot tested on

  • Windows 10

Payload generator tested on

  • Windows 10

Features

  • Upload & Download
  • Chrome Launching
  • Persistence
  • Screenshare
  • Screenshot
  • Keylogger
  • SFTP
  • SSH

Video

https://www.youtube.com/watch?v=UTfZlXGoJ5Y

Installation

$> pip install -r requirements.txt

Server side

  1. Open /lib/const.py & configure your private and public IP's

  2. Start loki.py

  3. Navigate to http://localhost:5000

  4. Login

    Username: loki
    Password: ikol
    
  5. Start the server on the same IP as your private IP

Generate a payload

Navigate to agent directory and run the following command

$> python builder.py -h

It will not compile inside a virtual environment

After connection

  • You can click the id of the bot once it connects

FYI

  • The bot will call the server using the Public IP, not the private IP
  • The bot will call the server using the port specified on the server tab

loki's People

Contributors

bitwise-01 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

loki's Issues

Fatal error detected - Failed to execute script

I am getting the error "failed to execute script stub2"

I followed exactly the directions on this video.

https://www.youtube.com/watch?v=aBEtwJ5gxSw

The file it generates is a bit bigger than the one in the video, I'm assuming as there's been some updates since then. It appears with the error but generates the second file "_stub2.exe" as an empty 0kb file that does nothing essentially. I'm on Windows 10 using python3.6

Also for my server setup I'm using a vpn IP with port forwarded, the server is started in the panel and loki.py is running fine. Just seems to be the builder, instead of 127.0.0.1 in the builder command I put my VPN server public IP and the port that is forwarded.

Thanks for taking the time to read!

Payload binary does not exist; please generate it

Hi,
I tried to connect back from my Windows VM(client) to Linux VM(server) however the server says: Payload binary does not exist; please generate it

I tried to compile the agent/bot/template_payload.py, but it says: NameError: name 'auto_persist' is not defined.

Traceback Issue

likely a missing package, but

Traceback (most recent call last):
File "C:\Users\Plush\Desktop\Stuff\Quaritine Place\Loki-master\loki.py", line 10, in
from lib.server.server import Server
File "C:\Users\Plush\Desktop\Stuff\Quaritine Place\Loki-master\lib\server\server.py", line 11, in
from OpenSSL import crypto
File "C:\Users\Plush\AppData\Local\Programs\Python\Python310\lib\site-packages\OpenSSL_init_.py", line 8, in
from OpenSSL import crypto, SSL
File "C:\Users\Plush\AppData\Local\Programs\Python\Python310\lib\site-packages\OpenSSL\crypto.py", line 3268, in
_lib.OpenSSL_add_all_algorithms()
AttributeError: module 'lib' has no attribute 'OpenSSL_add_all_algorithms'

Pyinstaller not running and exe file not found

#My steps
─[root@parrot]─[/home/user]
└──╼ #ls
cupp Downloads Loki Public trape urllib.request
Desktop EmbedInHTML MITMf SocialFish ufonet Videos
Documents Evil-Droid Music stash.sqlite unicorn xerxes
DoThis EvilURL Pictures Templates urllib.error
┌─[root@parrot]─[/home/user]
└──╼ #cd Loki
┌─[root@parrot]─[/home/user/Loki]
└──╼ #ls
builder LICENSE README.md Screenshots templates
lib loki.py requirements.txt static
┌─[root@parrot]─[/home/user/Loki]
└──╼ #cd builder
┌─[root@parrot]─[/home/user/Loki/builder]
└──╼ #ls
bot builder.py lib
┌─[root@parrot]─[/home/user/Loki/builder]
└──╼ #python3 builder.py
usage: builder.py [-h] -i IP -p PORTS -n NAME [-d DELAY] [-w WAIT] [-t TYPE]
[-ic ICON] [-hd] [-ap]
builder.py: error: the following arguments are required: -i/--ip, -p/--ports, -n/--name
┌─[✗]─[root@parrot]─[/home/user/Loki/builder]
└──╼ #python3 builder.py -h
usage: builder.py [-h] -i IP -p PORTS -n NAME [-d DELAY] [-w WAIT] [-t TYPE]
[-ic ICON] [-hd] [-ap]

optional arguments:
-h, --help show this help message and exit
-i IP, --ip IP the ip of the C&C server. Example: -i 127.0.0.1
-p PORTS, --ports PORTS
the port of the C&C server. Example: -p 8080
-n NAME, --name NAME the name of the output file. Example: -n myvirus
-d DELAY, --delay DELAY
time in seconds before upacking. Example: -d 17
-w WAIT, --wait WAIT time in seconds before calling C&C. Example: -w 17
-t TYPE, --type TYPE the output type. Example: -t python Example: -t exe
-ic ICON, --icon ICON
the output type. Example: -ic FILE.ico Example: -ic
FILE.exe
-hd, --hide hide the executable when executed. Example: --hide
-ap, --autopersist Auto persist when executed. Example: -ap
┌─[root@parrot]─[/home/user/Loki/builder]
└──╼ #python3 builder.py -i 127.0.0.1 -p 8080 -n Virus -t exe
80 INFO: PyInstaller: 3.4
80 INFO: Python: 3.6.7
81 INFO: Platform: Linux-4.18.0-parrot8-amd64-x86_64-with-Parrot-4.4-stable
81 INFO: wrote /home/user/Loki/builder/Virus.spec
156 INFO: UPX is available.
160 INFO: Extending PYTHONPATH with paths
['/home/user/Loki/builder/bot', '/home/user/Loki/builder']
160 INFO: checking Analysis
160 INFO: Building Analysis because Analysis-00.toc is non existent
161 INFO: Initializing module dependency graph...
168 INFO: Initializing module graph hooks...
172 INFO: Analyzing base_library.zip ...
6512 INFO: running Analysis Analysis-00.toc
6568 INFO: Caching module hooks...
6576 INFO: Analyzing /home/user/Loki/builder/bot/Virus.py
7463 INFO: Processing pre-safe import module hook six.moves
14804 INFO: Loading module hooks...
14804 INFO: Loading module hook "hook-xml.py"...
14973 INFO: Loading module hook "hook-pydoc.py"...
14974 INFO: Loading module hook "hook-encodings.py"...
15081 INFO: Loading module hook "hook-cryptography.py"...
15470 INFO: Loading module hook "hook-certifi.py"...
15474 INFO: Loading module hook "hook-Xlib.py"...
15904 INFO: Looking for ctypes DLLs
16482 INFO: Analyzing run-time hooks ...
16507 INFO: Looking for dynamic libraries
17233 INFO: Looking for eggs
17233 INFO: Python library not in binary dependencies. Doing additional searching...
17338 INFO: Using Python library /usr/lib/x86_64-linux-gnu/libpython3.6m.so.1.0
17353 INFO: Warnings written to /home/user/Loki/builder/build/Virus/warn-Virus.txt
17438 INFO: Graph cross-reference written to /home/user/Loki/builder/build/Virus/xref-Virus.html
17470 INFO: checking PYZ
17471 INFO: Building PYZ because PYZ-00.toc is non existent
17471 INFO: Building PYZ (ZlibArchive) /home/user/Loki/builder/build/Virus/PYZ-00.pyz
18532 INFO: Building PYZ (ZlibArchive) /home/user/Loki/builder/build/Virus/PYZ-00.pyz completed successfully.
18547 INFO: checking PKG
18548 INFO: Building PKG because PKG-00.toc is non existent
18548 INFO: Building PKG (CArchive) PKG-00.pkg
24707 INFO: Building PKG (CArchive) PKG-00.pkg completed successfully.
24710 INFO: Bootloader /usr/local/lib/python3.6/dist-packages/PyInstaller/bootloader/Linux-64bit/run
24710 INFO: checking EXE
24711 INFO: Building EXE because EXE-00.toc is non existent
24711 INFO: Building EXE from EXE-00.toc
24711 INFO: Appending archive to ELF section in EXE /home/user/Loki/builder/dist/Virus
25188 INFO: Building EXE from EXE-00.toc completed successfully.
Traceback (most recent call last):
File "builder.py", line 98, in
executor.start()
File "builder.py", line 82, in start
self.compile_bot()
File "builder.py", line 68, in compile_bot
for data in File.read(self.bot_compiled):
File "/home/user/Loki/builder/lib/file.py", line 11, in read
with open(file, 'rb' if _bytes else 'rt') as f:
FileNotFoundError: [Errno 2] No such file or directory: 'dist/Virus.exe'

#then i try running with python2 and it says
─[✗]─[root@parrot]─[/home/user/Loki/builder]
└──╼ #python builder.py -i 127.0.0.1 -p 8080 -n Virus -t exe
Please install Pyinstaller
#good..then did that using
┌─[✗]─[root@parrot]─[/home/user/Loki/builder]
└──╼ #pip install Pyinstaller==2.1
Collecting Pyinstaller==2.1
Downloading https://files.pythonhosted.org/packages/c3/a3/d50648bc99a8d5d6c533fc5c1101cc18014d0782e7ddbe9744ad2d56ad49/PyInstaller-2.1.tar.gz (4.8MB)
100% |████████████████████████████████| 4.8MB 943kB/s
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "", line 1, in
File "/tmp/pip-install-bg8qxytr/Pyinstaller/setup.py", line 18, in
from PyInstaller import get_version
File "/tmp/pip-install-bg8qxytr/Pyinstaller/PyInstaller/init.py", line 32, in
from PyInstaller import compat
File "/tmp/pip-install-bg8qxytr/Pyinstaller/PyInstaller/compat.py", line 129
if sys.maxint > 2L ** 32:
^
SyntaxError: invalid syntax
#Now i read an issue in which you said the exe file should be created in windows environment.
#i just love my Parrot..please make it work in parrot.
#Nice job..real good work.
#suggestions:i think you should add other browsers besides chrome.
#Thanks

Tutorial

Sir, please make tutorial for SSH connection.

CAn not compile builder.py

I use kali linux , when make builder.py show this :
Please install Pyinstaller: pip install pyinstaller

but pyinstaller is already installed:
pyinstaller --version
3.5+498e6ee058

WAN

How to setup over wan ?
I put my IP/dns over wan with portforwarding and i doesn't work

???

652 INFO: PyInstaller: 3.3.1
652 INFO: Python: 3.6.6
654 INFO: Platform: Linux-4.17.0-kali3-686-pae-i686-with-Kali-kali-rolling-kali-rolling
655 INFO: wrote /root/Desktop/Loki/builder/Test1.spec
660 INFO: UPX is available.
662 INFO: Extending PYTHONPATH with paths
['/root/Desktop/Loki/builder/bot', '/root/Desktop/Loki/builder']
662 INFO: checking Analysis
662 INFO: Building Analysis because out00-Analysis.toc is non existent
663 INFO: Initializing module dependency graph...
669 INFO: Initializing module graph hooks...
671 INFO: Analyzing base_library.zip ...
Traceback (most recent call last):
File "", line 41, in
File "", line 13, in walk_packages
File "/usr/lib/python3.6/pkgutil.py", line 127, in iter_modules
for name, ispkg in iter_importer_modules(i, prefix):
File "/usr/lib/python3.6/pkgutil.py", line 146, in _iter_file_finder_modules
import inspect
File "/usr/lib/python3.6/inspect.py", line 41, in
import linecache
File "/usr/lib/python3.6/linecache.py", line 11, in
import tokenize
File "/usr/lib/python3.6/tokenize.py", line 33, in
import re
File "/usr/lib/python3.6/re.py", line 142, in
class RegexFlag(enum.IntFlag):
AttributeError: module 'enum' has no attribute 'IntFlag'
Traceback (most recent call last):
File "", line 41, in
File "", line 13, in walk_packages
File "/usr/lib/python3.6/pkgutil.py", line 127, in iter_modules
for name, ispkg in iter_importer_modules(i, prefix):
File "/usr/lib/python3.6/pkgutil.py", line 146, in _iter_file_finder_modules
import inspect
File "/usr/lib/python3.6/inspect.py", line 41, in
import linecache
File "/usr/lib/python3.6/linecache.py", line 11, in
import tokenize
File "/usr/lib/python3.6/tokenize.py", line 33, in
import re
File "/usr/lib/python3.6/re.py", line 142, in
class RegexFlag(enum.IntFlag):
AttributeError: module 'enum' has no attribute 'IntFlag'
8363 INFO: running Analysis out00-Analysis.toc
8424 INFO: Caching module hooks...
8431 INFO: Analyzing /root/Desktop/Loki/builder/bot/Test1.py
9679 INFO: Processing pre-safe import module hook six.moves
12575 INFO: Processing pre-safe import module hook urllib3.packages.six.moves
Traceback (most recent call last):
File "", line 2, in
File "/usr/local/lib/python3.6/dist-packages/urllib3/init.py", line 8, in
from .connectionpool import (
File "/usr/local/lib/python3.6/dist-packages/urllib3/connectionpool.py", line 3, in
import logging
File "/usr/lib/python3.6/logging/init.py", line 26, in
import sys, os, time, io, traceback, warnings, weakref, collections
File "/usr/lib/python3.6/traceback.py", line 5, in
import linecache
File "/usr/lib/python3.6/linecache.py", line 11, in
import tokenize
File "/usr/lib/python3.6/tokenize.py", line 33, in
import re
File "/usr/lib/python3.6/re.py", line 142, in
class RegexFlag(enum.IntFlag):
AttributeError: module 'enum' has no attribute 'IntFlag'
Traceback (most recent call last):
File "/usr/local/bin/pyinstaller", line 11, in
sys.exit(run())
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/main.py", line 94, in run
run_build(pyi_config, spec_file, **vars(args))
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/main.py", line 46, in run_build
PyInstaller.building.build_main.main(pyi_config, spec_file, **kwargs)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/building/build_main.py", line 791, in main
build(specfile, kw.get('distpath'), kw.get('workpath'), kw.get('clean_build'))
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/building/build_main.py", line 737, in build
exec(text, spec_namespace)
File "", line 16, in
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/building/build_main.py", line 213, in init
self.postinit()
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/building/datastruct.py", line 161, in postinit
self.assemble()
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/building/build_main.py", line 415, in assemble
priority_scripts.append(self.graph.run_script(script))
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/depend/analysis.py", line 201, in run_script
self._top_script_node = super(PyiModuleGraph, self).run_script(pathname)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1351, in run_script
self._scan_code(m, co, co_ast)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2547, in _scan_code
self._process_imports(module)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2746, in _process_imports
target_module = self._safe_import_hook(*import_info, **kwargs)[0]
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2420, in _safe_import_hook
edge_attr=edge_attr)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1441, in import_hook
target_module, target_attr_names):
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1729, in _import_importable_package_submodules
attr_name, submodule_name, package)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/depend/analysis.py", line 271, in _safe_import_module
module_basename, module_name, parent_package)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1993, in _safe_import_module
module_name, file_handle, pathname, metadata)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2085, in _load_module
self._scan_code(m, co, co_ast)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2547, in _scan_code
self._process_imports(module)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2746, in _process_imports
target_module = self._safe_import_hook(*import_info, **kwargs)[0]
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2224, in _safe_import_hook
target_attr_names=None, level=level, edge_attr=edge_attr)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1425, in import_hook
target_module = self._load_tail(target_package, target_module_partname)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1638, in _load_tail
submodule = self._safe_import_module(head, mname, submodule)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/depend/analysis.py", line 271, in _safe_import_module
module_basename, module_name, parent_package)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1993, in _safe_import_module
module_name, file_handle, pathname, metadata)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2085, in _load_module
self._scan_code(m, co, co_ast)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2547, in _scan_code
self._process_imports(module)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2746, in _process_imports
target_module = self._safe_import_hook(*import_info, **kwargs)[0]
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2224, in _safe_import_hook
target_attr_names=None, level=level, edge_attr=edge_attr)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1424, in import_hook
source_package, target_module_partname, level)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1576, in _find_head_package
target_module_headname, target_package_name, source_package)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/depend/analysis.py", line 271, in _safe_import_module
module_basename, module_name, parent_package)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1993, in _safe_import_module
module_name, file_handle, pathname, metadata)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2031, in _load_module
m = self._load_package(fqname, pathname, packagepath)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2816, in _load_package
self._load_module(fqname, fp, buf, stuff)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2085, in _load_module
self._scan_code(m, co, co_ast)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2547, in _scan_code
self._process_imports(module)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2746, in _process_imports
target_module = self._safe_import_hook(*import_info, **kwargs)[0]
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2224, in _safe_import_hook
target_attr_names=None, level=level, edge_attr=edge_attr)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1424, in import_hook
source_package, target_module_partname, level)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1576, in _find_head_package
target_module_headname, target_package_name, source_package)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/depend/analysis.py", line 271, in _safe_import_module
module_basename, module_name, parent_package)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1993, in _safe_import_module
module_name, file_handle, pathname, metadata)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2031, in _load_module
m = self._load_package(fqname, pathname, packagepath)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2816, in _load_package
self._load_module(fqname, fp, buf, stuff)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2085, in _load_module
self._scan_code(m, co, co_ast)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2547, in _scan_code
self._process_imports(module)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2746, in _process_imports
target_module = self._safe_import_hook(*import_info, **kwargs)[0]
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2224, in _safe_import_hook
target_attr_names=None, level=level, edge_attr=edge_attr)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1424, in import_hook
source_package, target_module_partname, level)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1576, in _find_head_package
target_module_headname, target_package_name, source_package)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/depend/analysis.py", line 271, in _safe_import_module
module_basename, module_name, parent_package)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1993, in _safe_import_module
module_name, file_handle, pathname, metadata)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2085, in _load_module
self._scan_code(m, co, co_ast)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2547, in _scan_code
self._process_imports(module)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2746, in _process_imports
target_module = self._safe_import_hook(*import_info, **kwargs)[0]
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2224, in _safe_import_hook
target_attr_names=None, level=level, edge_attr=edge_attr)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1424, in import_hook
source_package, target_module_partname, level)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1576, in _find_head_package
target_module_headname, target_package_name, source_package)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/depend/analysis.py", line 271, in _safe_import_module
module_basename, module_name, parent_package)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1993, in _safe_import_module
module_name, file_handle, pathname, metadata)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2085, in _load_module
self._scan_code(m, co, co_ast)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2547, in _scan_code
self._process_imports(module)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2746, in _process_imports
target_module = self._safe_import_hook(*import_info, **kwargs)[0]
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 2224, in _safe_import_hook
target_attr_names=None, level=level, edge_attr=edge_attr)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1425, in import_hook
target_module = self._load_tail(target_package, target_module_partname)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/lib/modulegraph/modulegraph.py", line 1638, in _load_tail
submodule = self._safe_import_module(head, mname, submodule)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/depend/analysis.py", line 260, in _safe_import_module
hook_module.pre_safe_import_module(hook_api)
File "/usr/local/lib/python3.6/dist-packages/PyInstaller/hooks/pre_safe_import_module/hook-urllib3.packages.six.moves.py", line 31, in pre_safe_import_module
for real_module_name, six_module_name in real_to_six_module_name.items():
AttributeError: 'str' object has no attribute 'items'
Traceback (most recent call last):
File "builder.py", line 98, in
executor.start()
File "builder.py", line 82, in start
self.compile_bot()
File "builder.py", line 68, in compile_bot
for data in File.read(self.bot_compiled):
File "/root/Desktop/Loki/builder/lib/file.py", line 11, in read
with open(file, 'rb' if _bytes else 'rt') as f:
FileNotFoundError: [Errno 2] No such file or directory: 'dist/Test1.exe'

fixit

C:\Users\Entertaiment\Desktop\Loki-master>python loki.py
Traceback (most recent call last):
File "loki.py", line 9, in
from lib.server.server import Server
File "C:\Users\Entertaiment\Desktop\Loki-master\lib\server\server.py", line 8, in
from lib import const
ImportError: cannot import name const

Please install Pyinstaller: pip install pyinstaller

I have tried everything, I have downloaded pyinstaller through all different types of pip and pip3 and all types of variations ocated on pypi.org. I have every single possible path to my environment tables for every single python version, everywhere I can locate any pyinstaller. I have changed the directory where Loki is located. What am I doing wrong?? Why did it work once but not again?? PLEASE HELP!!

Microsoft Windows [Version 10.0.19043.1052]
(c) Microsoft Corporation. All rights reserved.

C:\Users\Patri\Loki\agent>python builder.py
Please install Pyinstaller: pip install pyinstaller

C:\Users\Patri\Loki\agent>python3 builder.py
'python3' is not recognized as an internal or external command,
operable program or batch file.

C:\Users\Patri\Loki\agent>pip install pyinstaller
Requirement already satisfied: pyinstaller in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (4.3)
Requirement already satisfied: altgraph in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from pyinstaller) (0.17)
Requirement already satisfied: pefile>=2017.8.1 in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from pyinstaller) (2021.5.24)
Requirement already satisfied: setuptools in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from pyinstaller) (47.1.0)
Requirement already satisfied: pyinstaller-hooks-contrib>=2020.6 in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from pyinstaller) (2021.2)
Requirement already satisfied: importlib-metadata in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from pyinstaller) (4.6.0)
Requirement already satisfied: pywin32-ctypes>=0.2.0 in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from pyinstaller) (0.2.0)
Requirement already satisfied: future in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from pefile>=2017.8.1->pyinstaller) (0.18.2)
Requirement already satisfied: zipp>=0.5 in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from importlib-metadata->pyinstaller) (3.4.1)
Requirement already satisfied: typing-extensions>=3.6.4 in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from importlib-metadata->pyinstaller) (3.10.0.0)

C:\Users\Patri\Loki\agent>pip3 install pyinstaller
Requirement already satisfied: pyinstaller in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (4.3)
Requirement already satisfied: setuptools in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from pyinstaller) (47.1.0)
Requirement already satisfied: pywin32-ctypes>=0.2.0 in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from pyinstaller) (0.2.0)
Requirement already satisfied: pefile>=2017.8.1 in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from pyinstaller) (2021.5.24)
Requirement already satisfied: importlib-metadata in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from pyinstaller) (4.6.0)
Requirement already satisfied: pyinstaller-hooks-contrib>=2020.6 in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from pyinstaller) (2021.2)
Requirement already satisfied: altgraph in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from pyinstaller) (0.17)
Requirement already satisfied: future in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from pefile>=2017.8.1->pyinstaller) (0.18.2)
Requirement already satisfied: typing-extensions>=3.6.4 in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from importlib-metadata->pyinstaller) (3.10.0.0)
Requirement already satisfied: zipp>=0.5 in c:\users\patri\appdata\local\programs\python\python37\lib\site-packages (from importlib-metadata->pyinstaller) (3.4.1)

serveo

is there a way i can transport with serveo or ngrok or better still set up on AWS

Won't compile on Python3

Traceback (most recent call last):
File "loki.py", line 10, in
from flask import Flask, render_template, request, session, jsonify, redirect, url_for
ModuleNotFoundError: No module named 'flask'

pip install pyinstaller

keeps telling me to install pip install pyinstaller

Ive done it multiple times it does not change.
Ive done sudo update pyinstaller
no updates found

tried again and same thing install pyinstaller

python3.7 newest version

Can not compile agent from builder.py

Can't compile this on windows with python 3.7.6
Log:

  1. MS Word
  2. MS Excel
  3. MS Powerpoint

Select an icon option: 1
1728 INFO: PyInstaller: 3.6
1729 INFO: Python: 3.7.6
1731 INFO: Platform: Windows-10-10.0.19025-SP0
1732 INFO: wrote C:\Users\scarb\AppData\Local\Temp\tmppp84l3xs\Blooperws.spec
1734 INFO: UPX is not available.
1735 INFO: Extending PYTHONPATH with paths
['C:\Users\scarb\Desktop\BNC\agent\bot',
'C:\Users\scarb\AppData\Local\Temp\tmppp84l3xs']
1736 INFO: checking Analysis
1736 INFO: Building Analysis because Analysis-00.toc is non existent
1736 INFO: Initializing module dependency graph...
1739 INFO: Caching module graph hooks...
1745 INFO: Analyzing base_library.zip ...
4437 INFO: Caching module dependency graph...
4524 INFO: running Analysis Analysis-00.toc
Traceback (most recent call last):
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\win32ctypes\pywin32\pywintypes.py", line 35, in pywin32error
yield
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\win32ctypes\pywin32\win32api.py", line 43, in LoadLibraryEx
return _dll._LoadLibraryEx(fileName, 0, flags)
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\win32ctypes\core\cffi_dll.py", line 26, in _LoadLibraryEx
function_name='LoadLibraryEx')
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\win32ctypes\core\cffi_util.py", line 81, in call
self._raise_error(function_name)
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\win32ctypes\core\cffi_util.py", line 92, in _raise_error
raise exception
OSError: [WinError 1920] The file cannot be accessed by the system

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "builder.py", line 173, in
executor.start()
File "builder.py", line 135, in start
self.compile_bot()
File "builder.py", line 93, in compile_bot
self.write_template(self.bot_template, self.bot_py_temp, dict)
File "builder.py", line 83, in write_template
self.compile_file(py_temp)
File "builder.py", line 73, in compile_file
pyi.run()
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\PyInstaller_main
.py", line 114, in run
run_build(pyi_config, spec_file, **vars(args))
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\PyInstaller_main_.py", line 65, in run_build
PyInstaller.building.build_main.main(pyi_config, spec_file, **kwargs)
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\PyInstaller\building\build_main.py", line 734, in main
build(specfile, kw.get('distpath'), kw.get('workpath'), kw.get('clean_build'))
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\PyInstaller\building\build_main.py", line 681, in build
exec(code, spec_namespace)
File "C:\Users\scarb\AppData\Local\Temp\tmppp84l3xs\Blooperws.spec", line 17, in
noarchive=False)
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\PyInstaller\building\build_main.py", line 244, in init
self.postinit()
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\PyInstaller\building\datastruct.py", line 160, in postinit
self.assemble()
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\PyInstaller\building\build_main.py", line 395, in assemble
redirects=self.binding_redirects)[1:])
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\PyInstaller\depend\bindepend.py", line 228, in Dependencies
for ftocnm, fn in getAssemblyFiles(pth, manifest, redirects):
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\PyInstaller\depend\bindepend.py", line 404, in getAssemblyFiles
for assembly in getAssemblies(pth):
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\PyInstaller\depend\bindepend.py", line 355, in getAssemblies
res = GetManifestResources(pth)
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\PyInstaller\utils\win32\winmanifest.py", line 1007, in GetManifestResources
return winresource.GetResources(filename, [RT_MANIFEST], names, languages)
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\PyInstaller\utils\win32\winresource.py", line 170, in GetResources
hsrc = win32api.LoadLibraryEx(filename, 0, LOAD_LIBRARY_AS_DATAFILE)
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\win32ctypes\pywin32\win32api.py", line 43, in LoadLibraryEx
return _dll.LoadLibraryEx(fileName, 0, flags)
File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.7_3.7.1776.0_x64__qbz5n2kfra8p0\lib\contextlib.py", line 130, in exit
self.gen.throw(type, value, traceback)
File "C:\Users\scarb\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\win32ctypes\pywin32\pywintypes.py", line 37, in pywin32error
raise error(exception.winerror, exception.function, exception.strerror)
win32ctypes.pywin32.pywintypes.error: (1920, 'LoadLibraryEx', 'The file cannot be accessed by the system')

can't run builder on linux (python 3.7)

Traceback (most recent call last):
File "/home/kali/miniconda3/envs/botnet/lib/python3.6/shutil.py", line 550, in move
os.rename(src, real_dst)
FileNotFoundError: [Errno 2] No such file or directory: '/tmp/tmpwhs7xbl7/application/.payload.exe' -> '.bin/.payload.exe'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "builder.py", line 159, in
executor.start()
File "builder.py", line 124, in start
self.compile_bot()
File "builder.py", line 108, in compile_bot
self.move_file(self.bot_compiled, payload_output)
File "builder.py", line 121, in move_file
shutil.move(path, output_dir)
File "/home/kali/miniconda3/envs/botnet/lib/python3.6/shutil.py", line 564, in move
copy_function(src, real_dst)
File "/home/kali/miniconda3/envs/botnet/lib/python3.6/shutil.py", line 263, in copy2
copyfile(src, dst, follow_symlinks=follow_symlinks)
File "/home/kali/miniconda3/envs/botnet/lib/python3.6/shutil.py", line 120, in copyfile
with open(src, 'rb') as fsrc:
FileNotFoundError: [Errno 2] No such file or directory: '/tmp/tmpwhs7xbl7/application/.payload.exe'

Screenshare command not working

The screenshare command says that it has started, and responds to the stop command, but the webpage remains blank the whole time. Additionally, the -t modifier for the compiler does not appear to exist for me. Last of all, could someone please tell me where screenshots and files are downloaded?
Thanks!

cannot import name const

im getting this error when I try to execute it

root@kaliRoman:/media/root/46DD-8D02/Windows/programs/botnet/Loki-master# python loki.py
Traceback (most recent call last):
File "loki.py", line 9, in
from lib.server.server import Server
File "/media/root/46DD-8D02/Windows/programs/botnet/Loki-master/lib/server/server.py", line 8, in
from lib import const
ImportError: cannot import name const
root@kaliRoman:/media/root/46DD-8D02/Windows/programs/botnet/Loki-master# python2 loki.py
Traceback (most recent call last):
File "loki.py", line 9, in
from lib.server.server import Server
File "/media/root/46DD-8D02/Windows/programs/botnet/Loki-master/lib/server/server.py", line 8, in
from lib import const
ImportError: cannot import name const
root@kaliRoman:/media/root/46DD-8D02/Windows/programs/botnet/Loki-master# python3 loki.py
Traceback (most recent call last):
File "loki.py", line 10, in
from flask import Flask, render_template, request, session, jsonify, redirect, url_for
ModuleNotFoundError: No module named 'flask'

I've tried python, python2 and python3 didn't work
I've got python 2.7
(I've pasted everything that's written)
thx for helping....

Password Reset

How can someone reset the password without login in the C&C?
The saved password for me is not working I'm using Firefox...

Connecting problems

Hi,
I have installed Loki, everything work great but I have a problem with connecting clients to Loki.
As I want .exe files for Windows, I used to build the client on Windows, cause i'm on Kali.
When I click on the exe file (Generated on Win10 64bits Virtualbox) nothing goes wrong it seems the exe is perfectly executed but I got not clients on Loki.

Configured my private and public IP in const.py correctly.

I was wondering if it was beacause I start Loki using "python3 Loki.py", I've tried to launch loki with "python loki.py" but it throw an error.

What am I doing wrong ?

exe not build

FileNotFoundError: [Errno 2] No such file or directory: '/tmp/tmplfjj_khz/application/.payload.exe'

I did't get this issue

error

python loki.py
Traceback (most recent call last):
File "loki.py", line 9, in
from lib.server.server import Server
File "/root/Desktop/Loki/lib/server/server.py", line 8, in
from lib import const
ImportError: cannot import name const

please help

unable to build agent

I'm trying to build an agent for loki but failed to build

python3.7 -i x.x.x.x -p 443 -n mypayload -t exe

`Traceback (most recent call last):
File "agent/builder.py", line 172, in
executor.start()
File "agent/builder.py", line 134, in start
self.compile_bot()
File "agent/builder.py", line 93, in compile_bot
self.write_template(self.bot_template, self.bot_py_temp, _dict)
File "agent/builder.py", line 77, in write_template
for _data in File.read(template, False):
File "/opt/Loki-master/agent/lib/file.py", line 12, in read
with open(file, 'rb' if _bytes else 'rt') as f:
FileNotFoundError: [Errno 2] No such file or directory: 'bot/template_bot.py'

I'm using Ubuntu 16.04 .

Regards
`

[Solved]server: status off Settings

I'm trying to setup this on my test vps , where Ive only terminal no GUI . I've tried to access it a bit change in loki.py and change ===> app.run() into ===> app.run(host='0.0.0.0.0') . >But the issue is when I logged into panel server status is OFF. when I switch to settings and server tab . I put my WAN IP there and server does not start. IP box turned RED . Any idea what's wrong.

Regards

Issue

XXX@parrot]─[~/Loki]
└──╼ $python loki.py
Traceback (most recent call last):
File "loki.py", line 9, in
from lib.server.server import Server
File "/home/rabb/Loki/lib/server/server.py", line 8, in
from lib import const
ImportError: cannot import name const

Assistance friend.

CPU 30%

Hey,
Someone know how to lower the usage of CPU i can see on the client side that the CPU always more then 30% usage.

Thank you.

Virus doesn't run in windows 7 and linux

I have 2 questions looking forward to your answer:

  1. When I build the virus, it only works on the server itself, running on the virtual machine Windows 7, the error is as shown.
    Capture

Is it when the library is missing library? Is there any way to fix the error?
2. Which python file do I want to run virus on linux?
Thank you

Builder.py throwing error

Traceback (most recent call last):
File "G:\R\RR\Loki-master\builder\builder.py", line 14, in
from lib.aes import CryptoAES
File "G:\R\RR\Loki-master\builder\lib\aes.py", line 5, in
from Crypto.Cipher import AES
ModuleNotFoundError: No module named 'Crypto'

I am getting this error, I've tried to manually do pip install pycrypto to see if that helped and it did not.

An other issue identified

As long as client is idle , it is connected. As you issue any commands such as screenshot it will disconnect the client very strange . @Pure-L0G1C plz have a look into this issue.

Regards

Traceback error

Python version: 3.8.10

the error i have:

Traceback (most recent call last):
File "loki.py", line 10, in
from lib.server.server import Server
File "C:\Users\JakePC\Desktop\Stuff\Quaritine Place\Loki-master\Loki-master\lib\server\server.py", line 11, in
from OpenSSL import crypto
File "C:\Users\JakePC\AppData\Local\Programs\Python\Python38\lib\site-packages\OpenSSL_init_.py", line 8, in
from OpenSSL import crypto, SSL
File "C:\Users\JakePC\AppData\Local\Programs\Python\Python38\lib\site-packages\OpenSSL\crypto.py", line 3268, in
_lib.OpenSSL_add_all_algorithms()
AttributeError: module 'lib' has no attribute 'OpenSSL_add_all_algorithms'

Traceback when creating payload

Traceback (most recent call last):
File "/usr/lib/python3.8/shutil.py", line 791, in move
os.rename(src, real_dst)
FileNotFoundError: [Errno 2] No such file or directory: '/tmp/tmpm0txckab/application/.payload.exe' -> '.bin/.payload.exe'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "builder.py", line 159, in
executor.start()
File "builder.py", line 124, in start
self.compile_bot()
File "builder.py", line 108, in compile_bot
self.move_file(self.bot_compiled, payload_output)
File "builder.py", line 121, in move_file
shutil.move(path, output_dir)
File "/usr/lib/python3.8/shutil.py", line 811, in move
copy_function(src, real_dst)
File "/usr/lib/python3.8/shutil.py", line 435, in copy2
copyfile(src, dst, follow_symlinks=follow_symlinks)
File "/usr/lib/python3.8/shutil.py", line 264, in copyfile
with open(src, 'rb') as fsrc, open(dst, 'wb') as fdst:
FileNotFoundError: [Errno 2] No such file or directory: '/tmp/tmpm0txckab/application/.payload.exe'

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.