├── .gitignore ├── README.md ├── captures ├── help.png └── interface.png ├── metamorphCore ├── .gitignore ├── __init__.py ├── command.py ├── message.py ├── module.py ├── moduleConfig │ ├── lfi.json │ ├── netscan.json │ ├── netscanPy.json │ ├── rfi.json │ ├── sitemap.json │ ├── test.json │ ├── whois.json │ └── xss.json ├── moduleSources │ ├── fuzzing.c │ └── netscan.c ├── modules │ ├── LFI.py │ ├── RFI.py │ ├── XSS.py │ ├── fuzzing │ ├── netScan.py │ ├── netscan │ ├── sitemap.py │ └── whois.py ├── profiles │ ├── demo.json │ ├── fast1.json │ ├── pro1.json.json │ └── profile1.json └── requirements.txt └── metamorphGraphics ├── metamorphGraphics.sln └── metamorphGraphics ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── bin └── Debug │ ├── metamorphGraphics.exe │ ├── metamorphGraphics.exe.config │ └── metamorphGraphics.pdb ├── metamorphGraphics.csproj └── obj └── Debug ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs ├── metamorphGraphics.Form1.resources ├── metamorphGraphics.Properties.Resources.resources ├── metamorphGraphics.csproj.CoreCompileInputs.cache ├── metamorphGraphics.csproj.FileListAbsolute.txt ├── metamorphGraphics.csproj.GenerateResource.cache ├── metamorphGraphics.csprojAssemblyReference.cache ├── metamorphGraphics.exe └── metamorphGraphics.pdb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/README.md -------------------------------------------------------------------------------- /captures/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/captures/help.png -------------------------------------------------------------------------------- /captures/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/captures/interface.png -------------------------------------------------------------------------------- /metamorphCore/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/.gitignore -------------------------------------------------------------------------------- /metamorphCore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/__init__.py -------------------------------------------------------------------------------- /metamorphCore/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/command.py -------------------------------------------------------------------------------- /metamorphCore/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/message.py -------------------------------------------------------------------------------- /metamorphCore/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/module.py -------------------------------------------------------------------------------- /metamorphCore/moduleConfig/lfi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/moduleConfig/lfi.json -------------------------------------------------------------------------------- /metamorphCore/moduleConfig/netscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/moduleConfig/netscan.json -------------------------------------------------------------------------------- /metamorphCore/moduleConfig/netscanPy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/moduleConfig/netscanPy.json -------------------------------------------------------------------------------- /metamorphCore/moduleConfig/rfi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/moduleConfig/rfi.json -------------------------------------------------------------------------------- /metamorphCore/moduleConfig/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/moduleConfig/sitemap.json -------------------------------------------------------------------------------- /metamorphCore/moduleConfig/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/moduleConfig/test.json -------------------------------------------------------------------------------- /metamorphCore/moduleConfig/whois.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/moduleConfig/whois.json -------------------------------------------------------------------------------- /metamorphCore/moduleConfig/xss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/moduleConfig/xss.json -------------------------------------------------------------------------------- /metamorphCore/moduleSources/fuzzing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/moduleSources/fuzzing.c -------------------------------------------------------------------------------- /metamorphCore/moduleSources/netscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/moduleSources/netscan.c -------------------------------------------------------------------------------- /metamorphCore/modules/LFI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/modules/LFI.py -------------------------------------------------------------------------------- /metamorphCore/modules/RFI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/modules/RFI.py -------------------------------------------------------------------------------- /metamorphCore/modules/XSS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/modules/XSS.py -------------------------------------------------------------------------------- /metamorphCore/modules/fuzzing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/modules/fuzzing -------------------------------------------------------------------------------- /metamorphCore/modules/netScan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/modules/netScan.py -------------------------------------------------------------------------------- /metamorphCore/modules/netscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/modules/netscan -------------------------------------------------------------------------------- /metamorphCore/modules/sitemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/modules/sitemap.py -------------------------------------------------------------------------------- /metamorphCore/modules/whois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/modules/whois.py -------------------------------------------------------------------------------- /metamorphCore/profiles/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/profiles/demo.json -------------------------------------------------------------------------------- /metamorphCore/profiles/fast1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/profiles/fast1.json -------------------------------------------------------------------------------- /metamorphCore/profiles/pro1.json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/profiles/pro1.json.json -------------------------------------------------------------------------------- /metamorphCore/profiles/profile1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/profiles/profile1.json -------------------------------------------------------------------------------- /metamorphCore/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphCore/requirements.txt -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics.sln -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/App.config -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/Form1.Designer.cs -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/Form1.cs -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/Form1.resx -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/Program.cs -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/Properties/Resources.resx -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/Properties/Settings.settings -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/bin/Debug/metamorphGraphics.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/bin/Debug/metamorphGraphics.exe -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/bin/Debug/metamorphGraphics.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/bin/Debug/metamorphGraphics.exe.config -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/bin/Debug/metamorphGraphics.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/bin/Debug/metamorphGraphics.pdb -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/metamorphGraphics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/metamorphGraphics.csproj -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/obj/Debug/metamorphGraphics.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/obj/Debug/metamorphGraphics.Form1.resources -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/obj/Debug/metamorphGraphics.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/obj/Debug/metamorphGraphics.Properties.Resources.resources -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/obj/Debug/metamorphGraphics.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e91224c8c3c20a37d9f3cbe81946241a8755950c 2 | -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/obj/Debug/metamorphGraphics.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/obj/Debug/metamorphGraphics.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/obj/Debug/metamorphGraphics.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/obj/Debug/metamorphGraphics.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/obj/Debug/metamorphGraphics.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/obj/Debug/metamorphGraphics.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/obj/Debug/metamorphGraphics.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/obj/Debug/metamorphGraphics.exe -------------------------------------------------------------------------------- /metamorphGraphics/metamorphGraphics/obj/Debug/metamorphGraphics.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPhoenix-0/metamorphReborn/HEAD/metamorphGraphics/metamorphGraphics/obj/Debug/metamorphGraphics.pdb --------------------------------------------------------------------------------