Linux id-dci-web1412.main-hosting.eu 5.14.0-611.20.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 14 06:35:04 EST 2026 x86_64
LiteSpeed
: 2a02:4780:6:1512:0:19fc:adf1:2 | : 216.73.217.34
Cant Read [ /etc/named.conf ]
8.1.34
u435990001
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
gsutil /
third_party /
crcmod /
[ HOME SHELL ]
Name
Size
Permission
Action
docs
[ DIR ]
drwxr-xr-x
python2
[ DIR ]
drwxr-xr-x
python3
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
.hgeol
203
B
-rw-r--r--
.hgignore
53
B
-rw-r--r--
.hgtags
214
B
-rw-r--r--
LICENSE
1.22
KB
-rw-r--r--
MANIFEST.in
192
B
-rw-r--r--
README
3.81
KB
-rw-r--r--
changelog
910
B
-rw-r--r--
setup.py
1.94
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : setup.py
from distutils.core import setup from distutils.extension import Extension import sys,os if sys.version_info[0] == 2: base_dir = 'python2' elif sys.version_info[0] == 3: base_dir = 'python3' setup_dict = dict( name='crcmod', version='1.7', description='CRC Generator', author='Ray Buvel', author_email='rlbuvel@gmail.com', url='http://crcmod.sourceforge.net/', download_url='http://sourceforge.net/projects/crcmod', packages=['crcmod'], package_dir={ 'crcmod' : os.path.join(base_dir,'crcmod'), }, ext_modules=[ Extension('crcmod._crcfunext', [os.path.join(base_dir,'src/_crcfunext.c'), ], ), ], long_description=open('README').read(), license="MIT", classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Intended Audience :: Education', 'Intended Audience :: End Users/Desktop', 'Intended Audience :: Information Technology', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: C', 'Programming Language :: C++', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.4', 'Programming Language :: Python :: 2.5', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.1', 'Topic :: Communications', 'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator', 'Topic :: Scientific/Engineering :: Mathematics', 'Topic :: Utilities', ], ) try: setup(**setup_dict) except KeyboardInterrupt: raise except: # If there are any compilation errors or there are no build tools available # for the extension module, delete the extension module and try to install # the pure Python version. del setup_dict['ext_modules'] setup(**setup_dict)
Close