Skip to main content
PPPhishPondPhishing Tradecraft Intelligence

Attack · Detection · Validation

CampaignTradecraftInfrastructureDetectionResearchRadarNewsroomAboutSubscribe
CampaignTradecraftInfrastructureDetectionResearchRadarNewsroomAboutSubscribe

Research Desk

PhishPond

Phishing tradecraft research desk covering campaign analysis, adversary infrastructure, detection engineering, and validation workflows.

High signal for security teams who need tradecraft, not recycled filler.

Navigate

  • Home
  • Newsroom
  • Research
  • Subscribe

Signals

  • editorial@phishpond.dev
  • Research Mission & Ethics
  • Intel Brief
  • RSS Feed
  • Submit Research Tip
© 2026 PhishPond. Authorized security research use only.

GitHub RadarRed team tool

dedsec1121fk/DedSec

Official repository of the DedSec Project. Primary language: Python. 1,013 stars.

Python1,013 stars497 forkspushed Sep 8, 2026MIT

Project links:Open GitHub projectBack to radar

README Preview

Fetched from GitHub

<div align="center"> <img src="https://raw.githubusercontent.com/dedsec1121fk/dedsec1121fk.github.io/47ad8e5cbaaee04af552ae6b90edc49cd75b324b/Assets/Images/Logos/Black%20Purple%20Butterfly%20Logo.jpeg" alt="DedSec Project Logo" width="150"/> <h1>DedSec Project</h1> <p> <a href="https://ded-sec.space/"><strong>Official Website</strong></a> </p> <p> <a href="https://github.com/sponsors/dedsec1121fk"><img src="https://img.shields.io/badge/Sponsor-DedSec-purple?style=for-the-badge&logo=GitHub" alt="Sponsor Project"></a> </p>

<p> <img src="https://img.shields.io/badge/Purpose-Educational-blue.svg" alt="Purpose: Educational"> <img src="https://img.shields.io/badge/Platform-Android%20(Termux)-brightgreen.svg" alt="Platform: Android (Termux)"> <img src="https://img.shields.io/badge/Language-Python%20%7C%20JS%20%7C%20Shell-yellow.svg" alt="Language: Python | JS | Shell"> <img src="https://img.shields.io/badge/Interface-EN%20%7C%20GR-lightgrey.svg" alt="Interface: EN | GR"> </p> </div>

---

<a id="english-readme"></a>

DedSec Project

Για να μεταβείτε στην πλήρη Ελληνική έκδοση, συνεχίστε [Πατώντας Εδώ](#greek-readme).

The DedSec Project is a broad educational toolkit built for Android + Termux, bringing together many scripts, utilities, local web interfaces, and practice environments in one place. Its purpose is to help users learn how tools work, understand defensive awareness, and organize common Termux workflows from a single project.

<a id="table-of-contents"></a>

<h2>Table of Contents</h2>

  • How To Install And Setup The DedSec Project
  • Website Help Paths
  • Settings & Configuration
  • Explore The Toolkit
  • Developer Base
  • Network Tools
  • Personal Information Capture
  • Fake Pages
  • Games
  • Other Tools
  • No Category
  • Sponsors-Only
  • ButSystem.py (Exclusive)
  • Contact Us & Credits
  • Disclaimer & Terms of Use

<a id="how-to-install-and-setup-the-dedsec-project"></a>

<details> <summary><strong>How To Install And Setup The DedSec Project</strong></summary>

Step-by-step instructions to install and set up the DedSec Project on your Android device.

Requirements

| Component | Minimum Specification | | :-------- | :-------------------- | | Device | Android phone or tablet with Termux installed | | Storage | Minimum 6GB free space | | RAM | Minimum 2GB | | Internet | Needed for first installation and updates |

Installation time: The first full installation can take approximately 20–50 minutes, depending on your internet connection and device processor.
Storage warning: The DedSec Project itself requires a minimum of 6GB of free space. Some scripts can create additional output—such as captured photos, videos, audio, screenshots, downloads, logs, reports, backups, or other generated files—so actual storage usage can grow beyond 6GB depending on how you use the project.
Before You Start

F-Droid is an alternative app store for Android that provides free and open-source software. It's the recommended way to install Termux and other security tools.

  • Install Termux from F-Droid for the best compatibility.
  • If you install APK files manually, allow installation from unknown apps in your Android settings.
  • When Termux asks for storage permission, allow it if you want the project to access Downloads and saved files.
  • For long installs, long-press inside Termux, tap More, and enable Keep screen on.
  • You can also customize the terminal appearance by long-pressing inside Termux, tapping More, and selecting Style.
Installation Options
Option 1: First-Time Full Install

Use this path if you are installing the DedSec Project for the first time.

1. Install F-Droid, then install Termux and the recommended add-ons
  • Download and install F-Droid.
  • Open F-Droid.
  • Search for Termux and install it.
  • Recommended extras: Termux:API and Termux:Styling.
2. Open Termux and prepare packages

Important: open the Termux app on your device before copying and pasting the command below.

Run:

pkg update -y && pkg upgrade -y && pkg install git nano -y && termux-setup-storage

What this does:

  • updates package lists
  • upgrades installed packages
  • installs git and nano
  • requests storage access inside Termux
3. Clone the DedSec Project repository

Run:

git clone https://github.com/dedsec1121fk/DedSec

This downloads the full project into a folder named DedSec.

4. Enter the project folder and run setup

Run:

cd DedSec && bash Setup.sh

The script will handle the complete installation. After setup, you must change the prompt, change the menu style (list or numbered menu styles are the best for new users), choose the language, and run the Save DedSec Project option on your first run so your backup package is created immediately. Save DedSec Project may take a while depending on your internet connection, and the terminal may stay blank until it is ready. Run Save DedSec Project again a few times every year to keep your saved DedSec Project package fresh and ready if you ever need it. After that, close Termux from your phone's notification panel using the exit button, then open Termux again. Tip: You can quickly open the menu by typing 'e' (English) or 'g' (Greek) in Termux.

5. Complete the post-setup configuration

After setup finishes, do the following:

  • change the prompt
  • change the menu style
  • for new users, list or numbered menu styles are the best choices
  • choose your language
  • run Save DedSec Project on your first run so your backup package is created immediately
  • run Save DedSec Project again a few times every year to keep your saved package fresh and ready if you need it
  • a manual Save DedSec Project operation may take a while depending on your internet connection, and the terminal may stay blank until it is ready
  • fully close Termux from your phone's notification panel using the exit button
  • open Termux again
6. Quick launch tip after setup

After reopening Termux, you can quickly open the project menu by typing:

  • e for English
  • g for Greek
Option 2: Update an Existing Installation

Use this if the project is already installed and you only want the newest files.

First enter the project folder:

cd ~/DedSec

Then pull the newest changes:

git pull

Run setup again so the consolidated dependency manager checks local files, updates dependencies, and opens the menu:

bash Setup.sh

To update dependencies without opening the menu, use:

bash Setup.sh --update-only

This is useful after major project changes, new dependencies, or menu updates.

Option 3: Open the Project Later Without Reinstalling

If the project is already installed and configured, you usually do not need to reinstall it every time.

You can:

  • open Termux and use the quick-launch command if it is already configured
  • type e for English or g for Greek to open the menu quickly
  • or manually enter the folder again:
cd ~/DedSec

If you need to run setup again manually:

bash Setup.sh
Important Notes
  • Keep an internet connection enabled during the first install.
  • The first installation can take longer than normal because packages and tools may need to download.
  • Run Save DedSec Project on the first run, then run it again a few times every year to keep the saved package fresh. It may take a while depending on your internet connection.
  • If storage access was denied earlier, run termux-setup-storage again.
  • If Git is missing, run pkg install git -y.
  • If you are already inside the DedSec folder, you do not need to clone the repository again.
  • Using the F-Droid version of Termux is strongly recommended because some Play Store versions are outdated.

</details>

<a id="website-help-paths"></a>

<details> <summary><strong>Website Help Paths</strong></summary>

This follows the same starter/help path from the website index.html, but here the website buttons are written as normal linked text. Each link also shows the exact website path.

The best path to start is:

Do not start by opening random scripts. The free Academy gives the project an order: setup first, then lessons, practice, and the next lesson.

  • Guide For Installation — website path: Pages/guide-for-installation.html
  • Learn About The Tools — website path: Pages/learn-about-the-tools.html
  • Assistance — website path: Pages/assistance.html

Then download our free e-book:

  • Master Termux In 7 Days — website path: Assets/Master Termux In 7 Days English.pdf

ButSystem is one of the project’s most distinctive all-in-one systems, built specifically for the DedSec Project ecosystem. Despite that exclusive positioning, the version documented here is available free through the project files and repository, with no separate Store purchase required.:

  • ButSystem.py (Exclusive) — website path: Pages/butsystem-exclusive.html

If Termux or DedSec breaks, open Assistance first. If you need anything custom-made or direct help, check our Store.

  • Store — website path: Pages/store.html
  • New paid ebook: Faith in the Digital Age — 24.99€, with separate English and Greek PDF editions. Buy with Stripe
  • Assistance — website path: Pages/assistance.html

Check the menu (the three lines at the top right) to find more stuff like assistance, frequently asked questions, our vision, contact ways, etc.

</details>

<a id="settings--configuration"></a>

<details> <summary><strong>Settings & Configuration</strong></summary>

The DedSec Project includes Settings.py, the central control panel and launcher for DedSec OS, keeping the toolkit configured, updated, backed up, connected, and usable from either the Termux menus or the browser-native desktop.

Main Settings Menu Options
  • About: shows the latest DedSec Project update date, Termux storage usage, DedSec Project size, hardware details, internal storage, processor, RAM, carrier, kernel version, Android version, device model, manufacturer, uptime, battery status, and current Termux user.
  • DedSec Project Update (Source 1): updates the installed project from the main dedsec1121fk/DedSec repository by fetching the newest files and applying the latest version.
  • DedSec Project Update (Source 2): updates the installed project from the backup sal-scar/DedSec repository, useful when the first source is unavailable or when you want the mirror source.
  • Update Packages & Modules: runs the consolidated Setup.sh --no-run dependency routine, which checks local Termux packages and Python modules first, updates installed items, and downloads anything still missing without opening a second menu process.
  • Access Sponsors-Only Scripts: checks whether GitHub is connected in Termux, asks the user to connect GitHub if needed, verifies sponsor access, and downloads or replaces the local Sponsors-Only folder when access is confirmed. The $3 tier includes the current sponsor scripts, including Login Stealer.py, while the $9 tier includes all $3 scripts plus Widget Maker.py, Kraken Trader.py, and Noob Hacker.py. The $25 Ultimate Supporter tier uses the same full sponsor-script library as $9 and adds the paid ebook benefits described below. If the account does not have access, it returns the u