HEX
Server: Apache
System: Linux vpshost0650.publiccloud.com.br 4.4.79-grsec-1.lc.x86_64 #1 SMP Wed Aug 2 14:18:21 -03 2017 x86_64
User: bandeirantesbomb3 (10068)
PHP: 8.0.7
Disabled: apache_child_terminate,dl,escapeshellarg,escapeshellcmd,exec,link,mail,openlog,passthru,pcntl_alarm,pcntl_exec,pcntl_fork,pcntl_get_last_error,pcntl_getpriority,pcntl_setpriority,pcntl_signal,pcntl_signal_dispatch,pcntl_sigprocmask,pcntl_sigtimedwait,pcntl_sigwaitinfo,pcntl_strerror,pcntl_wait,pcntl_waitpid,pcntl_wexitstatus,pcntl_wifexited,pcntl_wifsignaled,pcntl_wifstopped,pcntl_wstopsig,pcntl_wtermsig,php_check_syntax,php_strip_whitespace,popen,proc_close,proc_open,shell_exec,symlink,system
Upload Files
File: //proc/thread-self/root/usr/share/doc/m2crypto-0.21.1/demo/x509/proxy_destroy.py
#!/usr/bin/python
############################################################################
# Matt Rodriguez, LBNL MKRodriguez@lbl.gov
############################################################################ 
"""
Script that destroys a proxy certificate file by overwriting its contents
before the file is removed
""" 

import proxylib
import optparse, os 

USAGEHELP = "proxy_destroy.py file1 file2  Destroys files listed"
JUNK = "LalalAlalaLalalALalalAlalaLalalALalalAlalaLalalALalalAlalaLalalA"

def scrub_file(filename):
    """
    Overwrite the file with junk, before removing it
    """
    s = os.stat(filename)
    proxy_file = file(filename, "w") 
    size = s.st_size 
    while size > 64: 
        proxy_file.write(JUNK)
        size -= 64
    
    proxy_file.flush()
    proxy_file.close()
    os.remove(filename) 


def main():
    parser = optparse.OptionParser() 
    parser.set_usage(USAGEHELP)
    opts, args = parser.parse_args() 
    if len(args) is 0:
        proxy_file = proxylib.get_proxy_filename() 
        scrub_file(proxy_file) 
    
    for proxy_file in args:
        scrub_file(proxy_file)

if __name__ == "__main__": main()