Phase 6: Naming & structure cleanup

- Rename tools/phising_attack.py → phishing_attack.py (fix typo)
- Rename tools/information_gathering_tools.py → information_gathering.py
- Rename tools/wireless_attack_tools.py → wireless_attack.py
- Rename tools/forensic_tools.py → forensics.py
- Rename tools/sql_tools.py → sql_injection.py
- Rename tools/webattack.py → web_attack.py
- Rename class autophisher → Autophisher (PEP-8 CapWords)
- Rename class ddos → DDoSTool (PEP-8 CapWords), TITLE "ddos" → "DDoS"
- Update all imports in hackingtool.py and exploit_frameworks.py
This commit is contained in:
Hardik Zinzuvadiya 2026-03-15 13:55:05 +05:30
parent 2ad5587517
commit 4271cb8ef6
9 changed files with 11 additions and 11 deletions

View file

@ -29,19 +29,19 @@ from config import get_tools_dir
from tools.anonsurf import AnonSurfTools
from tools.ddos import DDOSTools
from tools.exploit_frameworks import ExploitFrameworkTools
from tools.forensic_tools import ForensicTools
from tools.information_gathering_tools import InformationGatheringTools
from tools.forensics import ForensicTools
from tools.information_gathering import InformationGatheringTools
from tools.other_tools import OtherTools
from tools.payload_creator import PayloadCreatorTools
from tools.phising_attack import PhishingAttackTools
from tools.phishing_attack import PhishingAttackTools
from tools.post_exploitation import PostExploitationTools
from tools.remote_administration import RemoteAdministrationTools
from tools.reverse_engineering import ReverseEngineeringTools
from tools.sql_tools import SqlInjectionTools
from tools.sql_injection import SqlInjectionTools
from tools.steganography import SteganographyTools
from tools.tool_manager import ToolManager
from tools.webattack import WebAttackTools
from tools.wireless_attack_tools import WirelessAttackTools
from tools.web_attack import WebAttackTools
from tools.wireless_attack import WirelessAttackTools
from tools.wordlist_generator import WordlistGeneratorTools
from tools.xss_attack import XSSAttackTools

View file

@ -5,8 +5,8 @@ from rich.prompt import Prompt
from core import HackingTool, HackingToolsCollection, console
class ddos(HackingTool):
TITLE = "ddos"
class DDoSTool(HackingTool):
TITLE = "DDoS"
DESCRIPTION = (
"Best DDoS Attack Script With 36 Plus Methods. "
"DDoS attacks for SECURITY TESTING PURPOSES ONLY!"

View file

@ -1,5 +1,5 @@
from core import HackingTool, HackingToolsCollection, console
from tools.webattack import Web2Attack
from tools.web_attack import Web2Attack
from rich.panel import Panel
from rich.text import Text

View file

@ -3,7 +3,7 @@ import os
from core import HackingTool, HackingToolsCollection, console
class autophisher(HackingTool):
class Autophisher(HackingTool):
TITLE = "Autophisher RK"
DESCRIPTION = "Automated Phishing Toolkit"
INSTALL_COMMANDS = [
@ -215,7 +215,7 @@ class Dnstwist(HackingTool):
class PhishingAttackTools(HackingToolsCollection):
TITLE = "Phishing attack tools"
TOOLS = [
autophisher(),
Autophisher(),
Pyphisher(),
AdvPhishing(),
Setoolkit(),