Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
certifi /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2018-04-05 16:52
__init__.py
63
B
-rw-r--r--
2017-07-04 14:58
__main__.py
41
B
-rw-r--r--
2017-07-04 14:58
cacert.pem
313.89
KB
-rw-r--r--
2017-07-04 14:58
core.py
687
B
-rw-r--r--
2017-10-23 11:20
old_root.pem
25.03
KB
-rw-r--r--
2017-07-04 14:58
weak.pem
338.91
KB
-rw-r--r--
2017-07-04 14:58
Save
Rename
#!/usr/bin/env python # -*- coding: utf-8 -*- """ certifi.py ~~~~~~~~~~ This module returns the installation location of cacert.pem. """ import os import warnings class DeprecatedBundleWarning(DeprecationWarning): """ The weak security bundle is being deprecated. Please bother your service provider to get them to stop using cross-signed roots. """ def where(): return "/etc/ssl/certs/ca-certificates.crt" def old_where(): warnings.warn( "The weak security bundle is being deprecated.", DeprecatedBundleWarning ) f = os.path.split(__file__)[0] return os.path.join(f, 'weak.pem') if __name__ == '__main__': print(where())