!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g. PHP/5.2.4-2ubuntu5.12 

uname -a: Linux forum.circlefusion.com 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/doc/denyhosts/examples/scripts/   drwxr-xr-x
Free 11.57 GB of 97.11 GB (11.92%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     restricted_from_invalid.py (884 B)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/bin/env python
import os, sys

def usage():
    print "%s WORK_DIR [num_results]" % sys.argv[0]
    sys.exit(1)

try:
    work_dir = sys.argv[1]
except:
    print "you must specify your DenyHosts WORK_DIR"
    usage()

try: 
    num = int(sys.argv[2])
except:
    num = 10

fname = os.path.join(work_dir, "users-invalid")

try:
    fp = open(fname, "r")
except:
    print fname, "does not exist"
    sys.exit(1)

d = {}

for line in fp:
    try:
        foo = line.split(":")
        username = foo[0]
        attempts = int(foo[1])
        # timestamp = foo[2].strip()
    except:
        continue

    l = d.get(attempts, [])
    l.append(username)
    d[attempts] = l

fp.close()

keys = d.keys()
keys.sort()
keys.reverse()

i = 0
for key in keys:
    l = d.get(key)
    for username in l:
        i += 1
        print username
        if i >= num: break
    if i >= num: break

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0051 ]--