Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.84
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
install /
Delete
Unzip
Name
Size
Permission
Date
Action
.version
41
B
-rw-rw-rw-
2023-11-19 11:41
awk.exe
136
KB
-rwxrwxrwx
2013-03-30 13:29
config.awk
380
B
-rw-rw-rw-
2013-06-24 12:51
folder.ico
3.19
KB
-rw-rw-rw-
2013-03-30 13:29
install.php
27.06
KB
-rw-rw-rw-
2020-12-10 13:00
install.sys
115
B
-rw-rw-rw-
2024-07-26 17:42
php.png
1.32
KB
-rw-rw-rw-
2013-03-30 13:29
portcheck.bat
195
B
-rwxrwxrwx
2013-03-30 13:29
portcheck.php
911
B
-rw-rw-rw-
2013-03-30 13:29
test.php
2.38
KB
-rw-rw-rw-
2013-03-30 13:29
xampp-icon-uninstall.ico
30.17
KB
-rw-rw-rw-
2013-03-30 13:29
xampp.ico
30.17
KB
-rw-rw-rw-
2013-03-30 13:29
xamppbasic.inc
7.35
KB
-rw-rw-rw-
2013-06-24 13:28
xamppserver.inc
149
B
-rw-rw-rw-
2013-03-30 13:29
Save
Rename
<?php $host = "127.0.0.1"; $timeout = 1; $i = 1; $curdir = getcwd(); $curdir = getcwd(); list($partition, $nonpartition) = preg_split ("/:/", $curdir); //Fix by Wiedmann $partwampp = substr(realpath(__FILE__), 0, strrpos(dirname(realpath(__FILE__)), '\\')); $portchecklog = $partwampp."\install\\portcheck.ini"; $port = ereg_replace('-', '', $argv[1]); $werte = substr_count($port, ','); $ports = explode(',', $port); $anzahl = count($ports); $datei = fopen($portchecklog, 'w+'); fputs($datei, "[Ports]\r\n"); while ($i <= $anzahl) { $a = $i - 1; settype($ports[$a], "integer"); if (($handle = @fsockopen($host, $ports[$a], $errno, $errstr, $timeout)) == false) { $print = "Port".$ports[$a]."=FREE\r\n"; } else { $print = "Port".$ports[$a]."=BLOCKED\r\n"; } fputs($datei, $print); @fclose($handle); $i++; } fclose($datei); exit; ?>