{"id":25804797,"url":"https://github.com/yogsec/secure-communication-tool","last_synced_at":"2025-10-14T03:24:07.516Z","repository":{"id":275784730,"uuid":"927186043","full_name":"yogsec/Secure-Communication-Tool","owner":"yogsec","description":"A Bash-based encryption \u0026 decryption tool using AES-256-CBC, allowing secure message exchange with a single password. Easy-to-use CLI for bug bounty hunters, security researchers, and privacy enthusiasts.","archived":false,"fork":false,"pushed_at":"2025-02-14T13:15:04.000Z","size":52,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-28T01:24:42.153Z","etag":null,"topics":["communication","communication-tool","cryptography","cybersecurity-tool","hackers","hacking","hacking-tool","secure-communication"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/yogsec.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-04T14:49:29.000Z","updated_at":"2025-02-16T07:46:38.000Z","dependencies_parsed_at":"2025-02-04T15:43:51.776Z","dependency_job_id":"804c4838-9f02-49ad-8fd4-707ffc3d90aa","html_url":"https://github.com/yogsec/Secure-Communication-Tool","commit_stats":null,"previous_names":["yogsec/secure-communication-tool"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yogsec/Secure-Communication-Tool","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yogsec%2FSecure-Communication-Tool","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yogsec%2FSecure-Communication-Tool/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yogsec%2FSecure-Communication-Tool/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yogsec%2FSecure-Communication-Tool/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yogsec","download_url":"https://codeload.github.com/yogsec/Secure-Communication-Tool/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yogsec%2FSecure-Communication-Tool/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279017786,"owners_count":26086144,"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","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["communication","communication-tool","cryptography","cybersecurity-tool","hackers","hacking","hacking-tool","secure-communication"],"created_at":"2025-02-27T18:53:52.740Z","updated_at":"2025-10-14T03:24:07.498Z","avatar_url":"https://github.com/yogsec.png","language":"Shell","funding_links":["https://buymeacoffee.com/yogsec"],"categories":[],"sub_categories":[],"readme":"## 🛡️ Secure Communication Tool  \n**Designed by YogSec**  \n\nA **Bash-based secure message encryption and decryption tool** using **AES-256-CBC** encryption. It allows users to securely communicate by encrypting messages with a **single shared password**.  \n\n![screenshot](https://github.com/yogsec/Secure-Communication-Tool/blob/main/screenshot.jpeg)\n---\n\n### 📌 **Features**\n✅ **AES-256-CBC Encryption** (Advanced security)  \n✅ **Single Password System** (Easy for sender \u0026 receiver)  \n✅ **No Need to Remember Salt or IV**  \n✅ **Quick \u0026 Simple CLI Interface**  \n✅ **Designed by YogSec**  \n\n---\n\n### 🚀 **Installation \u0026 Usage**\n#### **1️⃣ Clone the Repository**\n```bash\ngit clone https://github.com/YogSec/Secure-Communication-Tool.git\ncd Secure-Communication-Tool\n```\n\n#### **2️⃣ Give Execution Permission**\n```bash\nchmod +x secure_chat.sh\n```\n\n#### **3️⃣ Run the Tool**\n```bash\n./secure_chat.sh\n```\n\n---\n\n### 🔹 **How to Use**\n#### **🔐 Encrypt a Message**\n1️⃣ Select **Option 1 (Encrypt Message)**  \n2️⃣ Enter a **password** (Share with the receiver)  \n3️⃣ Enter the **message**  \n4️⃣ Copy the **encrypted message**  \n\n📌 **Example Output:**  \n```\n🔐 Encrypted Message: U2FsdGVkX1+8h23kC...\n```\n✅ **Send this encrypted text \u0026 password to the receiver.**\n\n---\n\n#### **🔏 Decrypt a Message**\n1️⃣ Select **Option 2 (Decrypt Message)**  \n2️⃣ Enter the **password**  \n3️⃣ Paste the **encrypted message**  \n4️⃣ The tool will display the **original message**  \n\n📌 **Example Output:**  \n```\n✅ Decrypted Message: Hello, this is a secure message!\n```\n\n---\n\n### 🛠 **Dependencies**\nEnsure **OpenSSL** is installed:\n```bash\nsudo apt install openssl  # For Debian-based systems\nsudo yum install openssl  # For RHEL-based systems\n```\n\n---\n\n## 🌟 Let's Connect!\n\nHello, Hacker! 👋 We'd love to stay connected with you. Reach out to us on any of these platforms and let's build something amazing together:\n\n🌐 **Website:** [https://yogsec.github.io/yogsec/](https://yogsec.github.io/yogsec/)  \n📜 **Linktree:** [https://linktr.ee/yogsec](https://linktr.ee/yogsec)  \n🔗 **GitHub:** [https://github.com/yogsec](https://github.com/yogsec)  \n💼 **LinkedIn (Company):** [https://www.linkedin.com/company/yogsec/](https://www.linkedin.com/company/yogsec/)  \n📷 **Instagram:** [https://www.instagram.com/yogsec.io/](https://www.instagram.com/yogsec.io/)  \n🐦 **Twitter (X):** [https://x.com/yogsec](https://x.com/yogsec)  \n👨‍💼 **Personal LinkedIn:** [https://www.linkedin.com/in/bug-bounty-hunter/](https://www.linkedin.com/in/bug-bounty-hunter/)  \n📧 **Email:** abhinavsingwal@gmail.com\n\n---\n\n## ☕ Buy Me a Coffee\n\nIf you find our work helpful and would like to support us, consider buying us a coffee. Your support keeps us motivated and helps us create more awesome content. ❤️\n\n☕ **Support Us Here:** [https://buymeacoffee.com/yogsec](https://buymeacoffee.com/yogsec)\n\n---\n\n### 🛡️ **Designed by YogSec**  \n💡 **Bug Bounty | Cybersecurity | Ethical Hacking**  \n📩 Contact: **abhinavsingwal@gmail.com**  \n🔗 LinkedIn: **https://www.linkedin.com/in/abhinavsingwal**  \n🔗 YogSec: **[LinkTree](https://linktr.ee/yogsec)**  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyogsec%2Fsecure-communication-tool","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyogsec%2Fsecure-communication-tool","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyogsec%2Fsecure-communication-tool/lists"}