├── LICENSE ├── README.md ├── components ├── __init__.py ├── anti_process.py ├── caller.py ├── generic_sandbox_detection.py ├── paralles_detection.py ├── qemu_detection.py ├── vbox_checks.py ├── vm-detector.dll ├── vmware_checks.py ├── vpc_checks.py ├── wine_detection.py └── xen_detection.py ├── main.py ├── requirements.txt └── sentello.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malwation/sentello/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malwation/sentello/HEAD/README.md -------------------------------------------------------------------------------- /components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/anti_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malwation/sentello/HEAD/components/anti_process.py -------------------------------------------------------------------------------- /components/caller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malwation/sentello/HEAD/components/caller.py -------------------------------------------------------------------------------- /components/generic_sandbox_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malwation/sentello/HEAD/components/generic_sandbox_detection.py -------------------------------------------------------------------------------- /components/paralles_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malwation/sentello/HEAD/components/paralles_detection.py -------------------------------------------------------------------------------- /components/qemu_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malwation/sentello/HEAD/components/qemu_detection.py -------------------------------------------------------------------------------- /components/vbox_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malwation/sentello/HEAD/components/vbox_checks.py -------------------------------------------------------------------------------- /components/vm-detector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malwation/sentello/HEAD/components/vm-detector.dll -------------------------------------------------------------------------------- /components/vmware_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malwation/sentello/HEAD/components/vmware_checks.py -------------------------------------------------------------------------------- /components/vpc_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malwation/sentello/HEAD/components/vpc_checks.py -------------------------------------------------------------------------------- /components/wine_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malwation/sentello/HEAD/components/wine_detection.py -------------------------------------------------------------------------------- /components/xen_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malwation/sentello/HEAD/components/xen_detection.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malwation/sentello/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malwation/sentello/HEAD/requirements.txt -------------------------------------------------------------------------------- /sentello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malwation/sentello/HEAD/sentello.png --------------------------------------------------------------------------------