Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
scripts /
dev /
Delete
Unzip
Name
Size
Permission
Date
Action
bless_tests.php
7.14
KB
-rwxrwxr-x
2022-10-31 11:36
check_parameters.php
12.88
KB
-rwxrwxr-x
2022-10-31 11:36
credits
834
B
-rwxrwxr-x
2022-10-31 11:36
find_tested.php
7.04
KB
-rwxrwxr-x
2022-10-31 11:36
gen_verify_stub
939
B
-rwxrwxr-x
2022-10-31 11:36
genfiles
5.66
KB
-rwxrwxr-x
2022-10-31 11:36
makedist
5.15
KB
-rwxrwxr-x
2022-10-31 11:36
search_underscores.php
3.06
KB
-rwxrwxr-x
2022-10-31 11:36
tidy.php
3.83
KB
-rw-rw-r--
2022-10-31 11:36
Save
Rename
#!/bin/sh # # Generate credits_*.h headers from the ext/*/CREDITS and sapi/*/CREDITS files. # Go to project root directory cd $(CDPATH= cd -- "$(dirname -- "$0")/../../" && pwd -P) awkprog=' BEGIN { FS = "\n|\r\n|\r"; RS = "" } { print "CREDIT_LINE(\""$1"\", \""$2"\");" }' for what in ext sapi do file=ext/standard/credits_$what.h cat >$file <<END /* DO NOT EDIT THIS FILE! it has been automatically created by scripts/dev/credits from the information found in the various ext/.../CREDITS and sapi/.../CREDITS files if you want to change an entry you have to edit the appropriate CREDITS file instead */ END # Do not process skeleton files=`find "$what" -name CREDITS | grep -v "$what"/skeleton/CREDITS` awk "$awkprog" $files | LC_ALL=C sort -f | uniq >> $file echo "Updated $file" done