├── LICENSE ├── README.md ├── core ├── __init__.py ├── communicate.py ├── console.py ├── file.py ├── ping.py ├── prompt.py ├── server.py ├── shell.py └── valid.py ├── flex.py ├── payload └── modules │ ├── __init__.py │ ├── file.py │ ├── geo.py │ ├── keylogger.py │ ├── schd.py │ ├── screenshot.py │ ├── shell.py │ ├── state.py │ └── sysinfo.py ├── setup ├── install.py ├── pyhook.exe ├── pywin32.exe ├── update.py └── wine.py └── template ├── __init__.py ├── design.py └── template.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/communicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/core/communicate.py -------------------------------------------------------------------------------- /core/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/core/console.py -------------------------------------------------------------------------------- /core/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/core/file.py -------------------------------------------------------------------------------- /core/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/core/ping.py -------------------------------------------------------------------------------- /core/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/core/prompt.py -------------------------------------------------------------------------------- /core/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/core/server.py -------------------------------------------------------------------------------- /core/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/core/shell.py -------------------------------------------------------------------------------- /core/valid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/core/valid.py -------------------------------------------------------------------------------- /flex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/flex.py -------------------------------------------------------------------------------- /payload/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /payload/modules/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/payload/modules/file.py -------------------------------------------------------------------------------- /payload/modules/geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/payload/modules/geo.py -------------------------------------------------------------------------------- /payload/modules/keylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/payload/modules/keylogger.py -------------------------------------------------------------------------------- /payload/modules/schd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/payload/modules/schd.py -------------------------------------------------------------------------------- /payload/modules/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/payload/modules/screenshot.py -------------------------------------------------------------------------------- /payload/modules/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/payload/modules/shell.py -------------------------------------------------------------------------------- /payload/modules/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/payload/modules/state.py -------------------------------------------------------------------------------- /payload/modules/sysinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/payload/modules/sysinfo.py -------------------------------------------------------------------------------- /setup/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/setup/install.py -------------------------------------------------------------------------------- /setup/pyhook.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/setup/pyhook.exe -------------------------------------------------------------------------------- /setup/pywin32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/setup/pywin32.exe -------------------------------------------------------------------------------- /setup/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/setup/update.py -------------------------------------------------------------------------------- /setup/wine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/setup/wine.py -------------------------------------------------------------------------------- /template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/template/design.py -------------------------------------------------------------------------------- /template/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bitwise-01/FleX/HEAD/template/template.py --------------------------------------------------------------------------------