Commit 4271cb8e authored by Hardik Zinzuvadiya's avatar Hardik Zinzuvadiya
Browse files

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
parent 2ad55875
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -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

+2 −2
Original line number Diff line number Diff line
@@ -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!"
+1 −1
Original line number Diff line number Diff line
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
+0 −0

File moved.

Loading