Linux ubuntu 6.8.0-90-generic #91-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 18 14:14:30 UTC 2025 x86_64
nginx/1.24.0
: 67.217.245.49 | : 216.73.216.153
Cant Read [ /etc/named.conf ]
8.3.6
www-data
Bypass.pw
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
pcp /
pmdas /
txmon /
[ HOME SHELL ]
Name
Size
Permission
Action
Install
1.32
KB
-rwxr-xr-x
Makefile
1.79
KB
-rw-r--r--
README
2.19
KB
-rw-r--r--
Remove
1
KB
-rwxr-xr-x
domain.h
58
B
-rw-r--r--
genload
2.8
KB
-rwxr-xr-x
help
2.1
KB
-rw-r--r--
pmns
1004
B
-rw-r--r--
root
114
B
-rw-r--r--
txmon.c
8.86
KB
-rw-r--r--
txmon.h
1.77
KB
-rw-r--r--
txrecord.c
2.96
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : genload
#! /bin/sh # # Copyright (c) 1997,2003 Silicon Graphics, Inc. All Rights Reserved. # # This program 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; either version 2 of the License, or (at your # option) any later version. # # This program 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. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # # micky mouse transaction load generator ... # # Get standard environment . $PCP_DIR/etc/pcp.env NUMTX=-1 while getopts n:\? c do case $c in n) NUMTX=$OPTARG;; \?) echo "Usage: genload [-n numtx] [tps [avg_serv]]" exit 1 ;; esac done shift `expr $OPTIND - 1` # target TPS [default 10] # TPS=${1-10} # mean of the mean service times [default 10 seconds] # AVG=${2-10} if [ ! -x ./txrecord ] then echo 'Error: no txrecord binary here ... try "make txrecord"?' exit 1 fi # get tx types from txmon PMDA via pmcd on the localhost, then choose tx # type with Zipfian distribution, and artifically chosen service times # ... pipe them to a record-then-sleep droid in the while loop at the # end ... rate throttling relies on O/S pipe-full synchronization # (crude, but simple and effective) # pminfo -f txmon.count \ | tr -d '"\]\[' \ | $PCP_AWK_PROG ' BEGIN { i = 0; w = 2; s = 0; numtx='$NUMTX' } /value/ { name[i] = $4; zipf[i] = s + 1 / w; s = zipf[i] i++; w *= 2 } END { if (i == 0) { print "e Cannot determine transaction type names ... is the txmon PMDA running locally?" exit } # compute mean, drawn from normal distn with mean and std dev AVG for (j=0; j<i; j++) { while (1) { # the csw method y = rand() d = 1 - y h = 0.14 / d x = 1.22 * y * (1.0 + h) t = log(rand() / (1.0 + h/d)) + 0.5 * x*x + 0.1576 if (t <= 0) { if (t >= -0.69314706) x = -x m[j] = '$AVG' + '$AVG' * x if (m[j] >= 0) break } } print "i Mean service time for " name[j] " tx: " m[j] } zipf[i-1] = 1 # force upper bound of last interval while (numtx != 0) { printf "w " for (k=0; k < '$TPS' && numtx != 0; k++) { r = rand() for (j=0; j<i; j++) { if (r <= zipf[j]) break } printf " %s %f",name[j],rand() * m[j] if (numtx > 0) numtx-- } print "" print "s" } }' \ | while read action arg do case $action in i) echo "$arg" ;; e) echo "Error: $arg" exit 1 ;; s) sleep 1 ;; w) ./txrecord $arg ;; esac done
Close