{"id":23416089,"url":"https://github.com/tory1103/cibertoolkit","last_synced_at":"2025-09-11T21:07:07.551Z","repository":{"id":187882943,"uuid":"458649573","full_name":"tory1103/cibertoolkit","owner":"tory1103","description":"Automated pentesting framework build in python","archived":false,"fork":false,"pushed_at":"2022-03-01T16:26:02.000Z","size":64,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-15T01:17:26.038Z","etag":null,"topics":["docker","framework","pentesting","python-penetration-testing","python-pentesting","python3"],"latest_commit_sha":null,"homepage":"","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/tory1103.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2022-02-12T22:00:55.000Z","updated_at":"2022-07-11T12:18:48.000Z","dependencies_parsed_at":"2023-08-12T16:00:58.335Z","dependency_job_id":null,"html_url":"https://github.com/tory1103/cibertoolkit","commit_stats":null,"previous_names":["tory1103/cibertoolkit"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tory1103%2Fcibertoolkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tory1103%2Fcibertoolkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tory1103%2Fcibertoolkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tory1103%2Fcibertoolkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tory1103","download_url":"https://codeload.github.com/tory1103/cibertoolkit/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247994069,"owners_count":21030048,"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":["docker","framework","pentesting","python-penetration-testing","python-pentesting","python3"],"created_at":"2024-12-22T22:12:29.124Z","updated_at":"2025-04-09T06:43:32.446Z","avatar_url":"https://github.com/tory1103.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/tory1103/cibertoolkit\" rel=\"noopener\"\u003e\n  \u003cimg src=\"docs/images/logo.png\" alt=\"logo\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003ch3 align=\"center\"\u003eAutomated pentesting framework\u003c/h3\u003e\n\n\u003cdiv align=\"center\"\u003e\n\n  ![GitHub status](https://img.shields.io/badge/status-active-brightgreen)\n  ![GitHub issues](https://img.shields.io/github/issues/tory1103/cibertoolkit?color=yellow)\n  ![GitHub pull requests](https://img.shields.io/github/issues-pr/tory1103/cibertoolkit?color=purple)\n  ![GitHub license](https://img.shields.io/github/license/tory1103/cibertoolkit?color=blue)\n  ![GitHub last commit](https://img.shields.io/github/last-commit/tory1103/cibertoolkit?color=red)\n  ![Python version](https://img.shields.io/badge/Python-3.8+-orange?logo=python\")\n  ![Version](https://img.shields.io/badge/version-Alpha-cyan?logo=python\")\n\n\u003c/div\u003e\n\n---\n\n\n**Ciber-Toolkit** is a framework designed to automate the process of downloading and installing different penetration testing tools . It's based in [ToolKit Framework](https://github.com/AdrMXR/KitHack).\nIt just support linux for the moment, it is considered that it will be developed in the future for windows, for the moment use Docker alternative.\n\n\n## 📝 Table of Contents\n- [About](#about)\n- [Getting Started](#getting_started)\n- [Usage](#usage)\n- [Built Using](#built_using)\n- [TODO](./TODO.md)\n- [Contributing](./CONTRIBUTING.md)\n- [Authors](#authors)\n- [Acknowledgments](#acknowledgement)\n- [Useful Links](#links)\n\n## 🧐 About \u003ca name = \"about\"\u003e\u003c/a\u003e\nCiber-Toolkit is an improved version of [ToolKit Framework](https://github.com/AdrMXR/KitHack). Most important differences are:\n  - Tested tools - Download and installation is completed on every OS\n  - Modular tools - The download and install script is not needed to be modified, just .json file\n  - Docker support - Docker image alternatives\n\n## 🏁 Getting Started \u003ca name = \"getting_started\"\u003e\u003c/a\u003e\n\n### Prerequisites\n```\n- Python3 or higher\n- Linux OS (Tested on Kali)\n- Sudo access\n- Windows isn't supported yet\n```\n\n```requirements.txt\noh-my-pickledb==0.4\ntermcolor==1.1.0\n```\n\n### Installing\n```bash\n# Installing using github\n$ git clone https://github.com/tory1103/cibertoolkit\n$ cd cibertoolkit\n$ sudo bash install.sh -y # For automated installation, remove 'y' parameter if wanted\n\n# Installing using docker\n$ docker pull adriantoral/cibertoolkit\n$ docker run -it --name toolkit adriantoral/cibertoolkit\n\n# If port forwarding is needed, use this one instead\n$ docker run -it --name toolkit -p \u003chost_port\u003e:\u003cdocker_port\u003e adriantoral/cibertoolkit\n\n```\n\n## 🎈 Usage \u003ca name=\"usage\"\u003e\u003c/a\u003e\n\n### First steps\n```bash\n# Once installed, if shortcut created, run:\n$ sudo toolkit\n\n# Else, run:\n$ cd src/ciber-toolkit \u0026\u0026 sudo python3 toolkit.py\n\n# If you want to build docker image, run:\n$ docker build -t cibertoolkit .\n$ docker run -it --name toolkit cibertoolkit\n\n# Or download it from docker hub, run:\n$ docker pull adriantoral/cibertoolkit\n$ docker run -it --name toolkit adriantoral/cibertoolkit\n```\n\n### Introducing to the power of the Terminal\nOur goal is to make a fully functional pentesting environment, to achieve that, we need some powerful tools, like a Terminal\nIt's not perfect yet, but we're trying.\n\nSome things it can do for the moment are:\n```\n- You can use all bash commands (an status will be returned). Some commands : bash, pwd, echo, apt, ...\n- Use installed tools shortcuts : tk-{lowercase tool name} \n- Installation arguments : When installing a tool, you can use some arguments such :\n  - y || yes (for automatic run)\n  - More in a future...\n- Name instead of index for tool selection\n- Clear terminal : Typing clear, clean or \u003center\u003e will clean terminall interface\n```\n\n## ⛏️ Built Using \u003ca name = \"built_using\"\u003e\u003c/a\u003e\n- Python3.8\n- Json\n- Bash (sh)\n- Docker\n\n## ✍️ Authors \u003ca name = \"authors\"\u003e\u003c/a\u003e\n- [@tory1103](https://github.com/tory1103) - Idea, Concept \u0026 Initial work\n\nSee also the list of [contributors](https://github.com/tory1103/cibertoolkit/contributors) who participated in this project.\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/tory1103/cibertoolkit/graphs/contributors\"\u003e\n    \u003cimg src=\"https://contributors-img.web.app/image?repo=tory1103/cibertoolkit\"  alt=\"\"/\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n## 🎉 Acknowledgements \u003ca name = \"acknowledgement\"\u003e\u003c/a\u003e\n- [json](https://www.json.org/json-en.html) \n- [bash](https://es.wikipedia.org/wiki/Bash)\n- [docker](https://www.docker.com/)\n\n\n## ✨ Useful links \u003ca name = \"links\"\u003e\u003c/a\u003e\n- [Docker Hub](https://hub.docker.com/repository/docker/adriantoral/cibertoolkit)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftory1103%2Fcibertoolkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftory1103%2Fcibertoolkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftory1103%2Fcibertoolkit/lists"}