[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.142.212.150: ~ $
# passwd.awk --- access password file information
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# May 1993
# Revised October 2000
# Revised December 2010

BEGIN {
    # tailor this to suit your system
    _pw_awklib = "/usr/libexec/awk/"
}

function _pw_init(    oldfs, oldrs, olddol0, pwcat, using_fw, using_fpat)
{
    if (_pw_inited)
        return

    oldfs = FS
    oldrs = RS
    olddol0 = $0
    using_fw = (PROCINFO["FS"] == "FIELDWIDTHS")
    using_fpat = (PROCINFO["FS"] == "FPAT")
    FS = ":"
    RS = "\n"

    pwcat = _pw_awklib "pwcat"
    while ((pwcat | getline) > 0) {
        _pw_byname[$1] = $0
        _pw_byuid[$3] = $0
        _pw_bycount[++_pw_total] = $0
    }
    close(pwcat)
    _pw_count = 0
    _pw_inited = 1
    FS = oldfs
    if (using_fw)
        FIELDWIDTHS = FIELDWIDTHS
    else if (using_fpat)
        FPAT = FPAT
    RS = oldrs
    $0 = olddol0
}
function getpwnam(name)
{
    _pw_init()
    return _pw_byname[name]
}
function getpwuid(uid)
{
    _pw_init()
    return _pw_byuid[uid]
}
function getpwent()
{
    _pw_init()
    if (_pw_count < _pw_total)
        return _pw_bycount[++_pw_count]
    return ""
}
function endpwent()
{
    _pw_count = 0
}

Filemanager

Name Type Size Permission Actions
assert.awk File 382 B 0644
bits2str.awk File 327 B 0644
cliff_rand.awk File 307 B 0644
ctime.awk File 233 B 0644
ftrans.awk File 317 B 0644
getopt.awk File 2.18 KB 0644
gettime.awk File 2.43 KB 0644
group.awk File 1.75 KB 0644
join.awk File 378 B 0644
libintl.awk File 238 B 0644
noassign.awk File 425 B 0644
ord.awk File 937 B 0644
passwd.awk File 1.17 KB 0644
quicksort.awk File 1023 B 0644
readable.awk File 492 B 0644
rewind.awk File 404 B 0644
round.awk File 661 B 0644
strtonum.awk File 1.43 KB 0644
walkarray.awk File 214 B 0644
zerofile.awk File 424 B 0644