├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── dfshell.py ├── images ├── demo1.png ├── demo2.png └── demo3.png ├── requirements.txt └── webshell.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D3Ext/DFShell/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D3Ext/DFShell/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D3Ext/DFShell/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D3Ext/DFShell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D3Ext/DFShell/HEAD/README.md -------------------------------------------------------------------------------- /dfshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D3Ext/DFShell/HEAD/dfshell.py -------------------------------------------------------------------------------- /images/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D3Ext/DFShell/HEAD/images/demo1.png -------------------------------------------------------------------------------- /images/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D3Ext/DFShell/HEAD/images/demo2.png -------------------------------------------------------------------------------- /images/demo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D3Ext/DFShell/HEAD/images/demo3.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | argparse 2 | requests 3 | -------------------------------------------------------------------------------- /webshell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D3Ext/DFShell/HEAD/webshell.php --------------------------------------------------------------------------------