Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 18.190.219.46
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
snap /
certbot /
4557 /
usr /
include /
rpcsvc /
Delete
Unzip
Name
Size
Permission
Date
Action
bootparam_prot.h
3.11
KB
-rw-r--r--
2024-04-08 16:18
bootparam_prot.x
3.05
KB
-rw-r--r--
2024-04-08 16:18
key_prot.h
6.6
KB
-rw-r--r--
2024-04-08 16:18
key_prot.x
6.41
KB
-rw-r--r--
2024-04-08 16:18
klm_prot.h
3.21
KB
-rw-r--r--
2024-04-08 16:18
klm_prot.x
3.65
KB
-rw-r--r--
2024-04-08 16:18
mount.h
3.77
KB
-rw-r--r--
2024-04-08 16:18
mount.x
4.56
KB
-rw-r--r--
2024-04-08 16:18
nfs_prot.h
11.18
KB
-rw-r--r--
2024-04-08 16:18
nfs_prot.x
7.8
KB
-rw-r--r--
2024-04-08 16:18
nlm_prot.h
9.15
KB
-rw-r--r--
2024-04-08 16:18
nlm_prot.x
4.87
KB
-rw-r--r--
2024-04-08 16:18
rex.h
5.13
KB
-rw-r--r--
2024-04-08 16:18
rex.x
7.25
KB
-rw-r--r--
2024-04-08 16:18
rquota.h
2.2
KB
-rw-r--r--
2024-04-08 16:18
rquota.x
1.53
KB
-rw-r--r--
2024-04-08 16:18
rstat.h
3.95
KB
-rw-r--r--
2024-04-08 16:18
rstat.x
3.91
KB
-rw-r--r--
2024-04-08 16:18
rusers.h
3.2
KB
-rw-r--r--
2024-04-08 16:18
rusers.x
5.73
KB
-rw-r--r--
2024-04-08 16:18
sm_inter.h
3.1
KB
-rw-r--r--
2024-04-08 16:18
sm_inter.x
3.66
KB
-rw-r--r--
2024-04-08 16:18
spray.h
1.84
KB
-rw-r--r--
2024-04-08 16:18
spray.x
2.48
KB
-rw-r--r--
2024-04-08 16:18
Save
Rename
/* @(#)rquota.x 2.1 88/08/01 4.0 RPCSRC */ /* @(#)rquota.x 1.2 87/09/20 Copyr 1987 Sun Micro */ /* * Remote quota protocol * Requires unix authentication */ const RQ_PATHLEN = 1024; struct getquota_args { string gqa_pathp<RQ_PATHLEN>; /* path to filesystem of interest */ int gqa_uid; /* inquire about quota for uid */ }; /* * remote quota structure */ struct rquota { int rq_bsize; /* block size for block counts */ bool rq_active; /* indicates whether quota is active */ unsigned int rq_bhardlimit; /* absolute limit on disk blks alloc */ unsigned int rq_bsoftlimit; /* preferred limit on disk blks */ unsigned int rq_curblocks; /* current block count */ unsigned int rq_fhardlimit; /* absolute limit on allocated files */ unsigned int rq_fsoftlimit; /* preferred file limit */ unsigned int rq_curfiles; /* current # allocated files */ unsigned int rq_btimeleft; /* time left for excessive disk use */ unsigned int rq_ftimeleft; /* time left for excessive files */ }; enum gqr_status { Q_OK = 1, /* quota returned */ Q_NOQUOTA = 2, /* noquota for uid */ Q_EPERM = 3 /* no permission to access quota */ }; union getquota_rslt switch (gqr_status status) { case Q_OK: rquota gqr_rquota; /* valid if status == Q_OK */ case Q_NOQUOTA: void; case Q_EPERM: void; }; program RQUOTAPROG { version RQUOTAVERS { /* * Get all quotas */ getquota_rslt RQUOTAPROC_GETQUOTA(getquota_args) = 1; /* * Get active quotas only */ getquota_rslt RQUOTAPROC_GETACTIVEQUOTA(getquota_args) = 2; } = 1; } = 100011;