Dre4m Shell
Server IP : 127.0.0.2  /  Your IP : 3.142.244.250
Web Server : Apache/2.4.18 (Ubuntu)
System :
User : www-data ( )
PHP Version : 7.0.33-0ubuntu0.16.04.16
Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/bin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /usr/bin//lp-shell
#! /usr/bin/python

# Open an interactive launchpadlib Python shell.
# It supports all known LP service instances and API versions. The login
# can optionally happen anonymously.

# Author: Martin Pitt <martin.pitt@ubuntu.com>
# Copyright: (C) 2010 Canonical Ltd.
#
# This package 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, at version 2.
#
# This package 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.

import sys
import code
from optparse import OptionParser

from launchpadlib.launchpad import Launchpad
from launchpadlib.uris import lookup_service_root

def run_command(command, lp):
    exec(command)

def main():
    instance = 'production'
    valid_api_versions = ('beta', '1.0', 'devel')
    api_version = 'devel'

    usage = 'Usage: %prog [-a] [instance] [LP API version]'
    opt_parser = OptionParser(usage)
    opt_parser.add_option('-a', action='store_true',
                          dest='anonymous', default=False,
                          help='Login anonymously into LP.')
    opt_parser.add_option('-c', type=str,
                          dest='command', default=None,
                          help='Run code passed as string.')
    opt_parser.add_option('--ipython', action='store_const',
                          dest='shell', const='ipython', default="ipython",
                          help='Use ipython shell (default).')
    opt_parser.add_option('--python', action='store_const',
                          dest='shell', const='python',
                          help='Use python shell.')


    (options, args) = opt_parser.parse_args()

    if len(args) >= 1:
        try:
            instance = lookup_service_root(args[0])
        except ValueError, err:
            print 'E: %s' % (err)
            print 'I: Falling back to "production".'

    if len(args) >= 2:
        if args[1] in valid_api_versions:
            api_version = args[1]
        else:
            print 'E: "%s" is not a valid LP API version.' % (args[1])
            print 'I: Falling back to "devel".'

    if options.anonymous:
        launchpad = Launchpad.login_anonymously('lp-shell', instance,
                                                version=api_version)
        banner = ('Connected anonymously to LP service "%s" with API version '
                  '"%s":' % (instance, api_version))
    else:
        launchpad = Launchpad.login_with('lp-shell', instance,
                                         version=api_version)
        banner = 'Connected to LP service "%s" with API version "%s":' % \
                 (instance, api_version)

    if options.command is not None:
        run_command(options.command, launchpad)
        return

    banner += '\nNote: LP can be accessed through the "lp" object.'

    sh = None
    if options.shell == "ipython":
        try:
            try: # ipython >= 0.11
                from IPython.frontend.terminal.embed import InteractiveShellEmbed
                sh = InteractiveShellEmbed(banner2=banner, user_ns={'lp': launchpad})
            except ImportError: # ipython < 0.11
                # pylint does not handle nested try-except, disable import error
                # pylint: disable-msg=E0611
                from IPython.Shell import IPShellEmbed
                sh = IPShellEmbed(argv=[], user_ns={'lp': launchpad})
                sh.set_banner(sh.IP.BANNER + '\n' + banner)
            sh.excepthook = sys.__excepthook__
        except ImportError:
            print "E: ipython not available. Using normal python shell."

    if sh:
        sh()
    else:
        class CompleterConsole(code.InteractiveConsole):
            def __init__(self):
                local = {'lp': launchpad}
                code.InteractiveConsole.__init__(self, locals=local)
                try:
                    import readline
                except ImportError:
                    print 'I: readline module not available.'
                else:
                    import rlcompleter
                    readline.parse_and_bind("tab: complete")

        # Disable default apport hook, as lp-shell is intended for interactive use
        # and thus exceptions often bubble up to the top level.
        sys.excepthook = sys.__excepthook__

        console = CompleterConsole()
        console.interact(banner)

if __name__ == '__main__':
    main()

Anon7 - 2022
AnonSec Team